function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Aladdin USAladdin US 

the types of bindings available in Visual force?

Hi,

     Can anyone help me in this.

Thanks.
NagendraNagendra (Salesforce Developers) 
Hi Aladdin,


There are three types of bindings used in Visualforce
  • Data binding
  • Action bindings
  • Component bindings
Data bindings refer to the data set in the controller.
Action bindings refer to action methods in the controller.
Component bindings refer to other Visualforce components

Hope this helps.

Kindly mark this as solved if the reply was helpful.

Thanks,
Nagendra
Khan AnasKhan Anas (Salesforce Developers) 
Hi,

Greetings to you!

There are three types of bindings used in Visualforce:
  • Data binding: Data bindings refer to the data set in the controller.
  • Action bindings: Action bindings refer to action methods in the controller.
  • Component bindings: Component bindings refer to other Visualforce components.

Data bindings refer to the binding dataset to your page from the controller. Action bindings refer to the binding action methods to your page defined in the controller. Component bindings refer to the binding of other Visualforce components with your page.

I hope it helps you.

Kindly let me know if it helps you and close your query by marking it as solved so that it can help others in the future. It will help to keep this community clean.

Thanks and Regards,
Khan Anas
Aladdin USAladdin US
Hi, 

     one of my friend gave answer as

   1. Using GET-SET in apex, we can bind variables in visual force.
   2. Using methods in controller.