ADF Popup is a container and the data is delivered to the client based on the property "contentDelivery". The possible options for this property are lazy, immediate and uncached.
lazy: Use the option lazy, when you dont want the content to be loaded till the popup gets opened once. In this option, the content would be cached.
lazyUncached: As the name signifies, it too doesnt load the content till the pop up is opened up, like in the previous case.But, the data wouldnt be cached. One should use this property when the popup has data which can be modified. This option makes sure that the data is loaded everytime a popup is opened up thus avoids stale data.
immediate: Loads contents of the popup on the page load. This ensures the data is displayed fast and ideally this option should be set when the usecase mandates the user to click the popup.
ADF Popup supports two serverside events: a) PopupFetchEvent b)PopupCanceledEvent
lazy: Use the option lazy, when you dont want the content to be loaded till the popup gets opened once. In this option, the content would be cached.
lazyUncached: As the name signifies, it too doesnt load the content till the pop up is opened up, like in the previous case.But, the data wouldnt be cached. One should use this property when the popup has data which can be modified. This option makes sure that the data is loaded everytime a popup is opened up thus avoids stale data.
immediate: Loads contents of the popup on the page load. This ensures the data is displayed fast and ideally this option should be set when the usecase mandates the user to click the popup.
ADF Popup supports two serverside events: a) PopupFetchEvent b)PopupCanceledEvent
Popup Fetch Event s invoked during content delivery which means, this event gets raised only when the content delivery property is set to lazy/lazy uncached
No comments:
Post a Comment