Apex 21.2.0
during my search foud this topic where @john-snyders-oracle resolved a problem but it was specific requirement to replace 1000 to 250.
https://community.oracle.com/tech/developers/discussion/4140228/interactive-grid-change-rows-per-page
in IG we can set no. of rows per page using : Actions -> Format -> Rows Per Page which are pre-defined 5,10,15...
can i customize no. of rows per page which should be user input so, user can enter any value or any other mechanism like select list etc.? if yes, please help and guide for this.
in JavaScript Initialization Code alreay have this code: (may be the solution require to add code here in config).
function(config) {
let $ = apex.jQuery,
toolbarData = $.apex.interactiveGrid.copyDefaultToolbar(),
toolbarGroup = toolbarData.toolbarFind("actions3");
toolbarGroup.controls.push({
type: "STATIC",
label: "[ Schedule Master ]",
id: 'schedmasterID'
});
config.toolbarData = toolbarData;
return config;
}
regards
have Stacked Master-Detail page means there are 2 IG regions and this requirement is for both.