
Search In
Step-1 Install the Web LinkedIn module.
Step-2 After that custmozie .py(Python file) file:
In below example, I have custmozied .py file. You can directly copy the below python code in your .py file.
import openerp
import openerp.addons.web
from open
Step-1 Install the live chat (im_livechat) module.
Step-2 After that customize .py(Python file) file:
In below example, I have custmozied the .py file. You can directly paste below python code in your .py file.
class im_livechat_channel(osv.Model):
Helo Readers,
If you want to convert the HTML to PDF read the below code:
When we do this first of all we require the fpdf library file which can be downloaded from the official site of FPDF.
After download it, Just copy the folder into your direct
According to my below code, when we will move the mouse to anywhere like left or right up and down we get the current status of the swipe. Here i have used mousemove() method .
$(function() {
//Enable swiping...
$("#test").swipe(
These methods are used to select the child node of the matched elements.
find()- A find() function searches the whole DOM (document object model) below the current node,i.e., search through the matched elements child, grandchild, great-grandchild…
At the time of registration or change password we need to provide password, so for this we usually implement Confirm password functionality.
Example: In the below example I want to confirm password on form submit, so for this I have created a functi
Access control has a model to which it grants permissions, the permissions it grants and optionally a group.
Access controls are additive, for a given model a user has access all permissions granted to any of its groups:
if the user belongs to one g
Whenever we create a form, we always have a requirement to put validation for empty fields on some input fields. We usually implement this functionality by putting checks on "blur" and onFocus events of the input field.
Example: In the below example
Adaptive payment provides facility to allow payment between sender and multiple recievers.
Steps for adaptive payment are as follows:-
1 First need to create app for paypal.
Get username,passsword,applicationid and signature recieved from paypal.
Whenever we create a form, we always have a requirement to put validation for empty fields on some input fields on form submit. For this we use onSubmit attribute of the form, inside which we can define a function that will have validations.
Example
