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
EtienneCoutantEtienneCoutant 

Problem with immediate actions

http://wiki.apexdevnet.com/index.php/Checkbox_in_DataTable

 

I created a page and a class exactly like it is explained in the link above and that worked well. However, when I added the parameter immediate="true" on the actions, it totally stopped working.

 

Anyone has an idea why? What is the impact of  the immediate parameter except skipping validation?

Thanks,

 

Etienne

Best Answer chosen by Admin (Salesforce Developers) 
jwetzlerjwetzler
Well it's not going to apply your values either.  Immediate="true" tells your page to skip everything in the lifecycle and immediately execute your action.

All Answers

jwetzlerjwetzler
Well it's not going to apply your values either.  Immediate="true" tells your page to skip everything in the lifecycle and immediately execute your action.
This was selected as the best answer
hemantgarghemantgarg

can you suggest any workaround of skipping required validations and still executing setters ? I am stuck into a situation where I have an editable pageblock table with remove link with each row, while click on remove I want to remove that row only and does not want to change anything else(skip all validations in other rows and retain all the form-data that user have filled on he page) .