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
Mohit KapoorMohit Kapoor 

Is there a way to pass values/variables into an extension from a VF page on Page load

Is there a way to pass values/variables into an extension from a VF page on page load(not via reRender OR maybe force reRender on page load)

This would be used to pass controlling variables to a dynamic controller so that we can make a real time updating and dynamic controllers.

Avidev9Avidev9
Option
1.You can use url params
2. Encapsulate code in VF components and you can always pass value as attribut to component controllers
Mohit KapoorMohit Kapoor

Do you have any example of this which I can use as refference