Hey everyone, Quick question related to Oracle ADF. We have an application which was migrated from 11g to 12c oracle adf. In this application, we have a jsff page within which we have a command button, on a click of this button we are displaying a popup with dynamic region to show another jsff page containing adf based table. This table brings a data from VO(view object) and displays on to the popup table properly. However, issue is the sql query written in view object that returns total 40 records in database editor, but initially only 25 are showed on the popup containing table due to range_size in page definition file and table attribute fetch size = range_size is set which is nothing but 25. After we scroll through these 25 records, we aren't able to see rest of the 15 records on the popup of the table. It always get stuck with message on screen as "Fetching data" but nothing happens further. Neither rest of the data is displayed nor scrolling occurs further. Therefore we would like to know any possible solution for the same?
Table is set with attribute contentDelivery=immediate, while popup is set with attribute contentDelivery=lazyUncached. Is there anything attribute we can setting / missing which will solve this problem? Also, we tried setting range_size in page definition file to -1 but it doesn't seem to work (defaults to 25). This will display all 40 records if we set range_size = 100 without displaying message "Fetching data". Any help will be appreciated.