There are multiple tabs on my page, some of which are supposed to be hidden on page load. User changes a value and then those are shown. Similarly if the same page loads with a specific value (no user interaction) then some tabs are hidden and some are shown. As far as user interaction is concern, showing/hiding of tabs are working fine. But, at page load this is not working because Tabs are not available (displayed) at page load but right after “apexreadyend”. This is what i have tried and all failed
1- Dynamic Action at Page Load → True → Action = Hide → Selection Type = Region → Region = Region1
2- Dynamic Action at Page Load → True → Action = Execute Javascript Code → Code= $x_Hide('SR_Region1'); (Region1 is static id of the region) (this works from Console)
3- Page → Execute when Page Loads → $x_Hide('SR_Region1'); (Region1 is static id of the region) (this works from Console)
Please help