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
FaridKognozFaridKognoz 

Rerender and Getters

I found out that when I "rerender" some part of the page, all the getters execute, not just the getters from variables within the rerender part of the page. Could I control this? How?
mattdarnoldmattdarnold

Check out the documentation on actionRegion. This allows you to specify areas of the page to process during an AJAX request - so it will let you process a request without throwing errors from other parts of the page due to missing field values etc.

 

-- Matt