oracle apex prevent initial load

Solutions on MaxInterview for oracle apex prevent initial load by the best coders in the world

showing results for - "oracle apex prevent initial load"
Lina
27 Apr 2019
1-- 1. Put a HIDDEN field P1_IS_LOADED in the region
2
3-- 2. Requesting datas in region becomes:
4SELECT /* your columns */
5  FROM /* your tables */
6WHERE 1 = 1 
7  AND nvl(:P1_IS_LOADED, 'N') = 'Y'
8   
9-- 3. At page level:
10>> Post-Rendering > After Regions > Computation > add one computation with: 
11	Computation: Static Value: Y