Disable default first row selection on Interactive Grid – Oracle APEX by Himansu Behera · Published November 18, 2022 · Updated November 18, 2022 By default the first row is selected in any Interactive Grid.Every time user has uncheck the first row and then select again the row where he want to add new row.Here is a quick solution to get the first row unchecked in an interactive grid.Step 1 > Go to “Attributes” of your Interactive Grid region properties.Step 2 > Go to the option JavaScript Initialization Code of Advanced section.Step 3 > Paste the below code. function(config) { config.initialSelection = false; return config; }Now run your page and you will see first row of Interactive Grid is unchecked.When you click on Add Row button , row will be added into first row of your IG report instead of second row.Thanks
Customise radio group in Oracle APEX April 6, 2023 by Himansu Behera · Published April 6, 2023 · Last modified May 21, 2023
Create dynamic URL on classic report column in Oracle APEX January 30, 2023 by Himansu Behera · Published January 30, 2023 · Last modified February 4, 2023
Configure session timeout for APEX instance October 10, 2022 by Himansu Behera · Published October 10, 2022