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
DaniHellDaniHell 

How can i modify apex properties by visualforce

I have some apex properties and want to modify them by visualforce

 

kind regards

Saurabh DhobleSaurabh Dhoble

Your description does not tell much, but one way you can do it is via hidden fields :-

 

<apex:inputHidden value="{!theVar}" />

When set, this sets the value of the "theVar" property in the apex code. Again, there are other ways of doing this, so please post a more detailed explanation of your problem.