You need to sign in to do that
Don't have an account?

what is data binding in salesforce ..?
Can any body help me what is data binding , what are the types of data binding ,where we use data binding...? give me examples.
You need to sign in to do that
Don't have an account?
Can any body help me what is data binding , what are the types of data binding ,where we use data binding...? give me examples.
I'm not sure exactly in which context you are referring to data binding, but from the Visualforce perspective it means binding a property from the controller to an input on the page.
So if you have a controller that is managing a contact:
You can then bind inputs on the page to the contact instance in the controller:
In the snippet above, the '{!Contact.FirstName}' binds the FirstName field of the Contact property to the input - anything the user enters here will be automatically written to the Contact.FirstName field when the form is submitted.