Karla Cornejotoshareapex.hashnode.dev·Aug 29, 2024Seleccionar un registro en IGrid e IReport para refrescar una región con gráficosEn este articulo veremos dos maneras de seleccionar un registro, en un Interactive Grid e Interactive Report, y al momento de obtener el registro refrescaremos una región de gráficos. Demo01: Interactive Grid Creamos una region de tipo Interactive G...186 readsApex
Hamza Al-abbasiorcl.hashnode.dev·Aug 16, 2024Interactive Grid: How to add a new record after the last oneIn Interactive Grid there are built-in actions such as row-add-row and selection-add-row. The row-add-row action adds after the current context row and selection-add-row action adds after the current selection or before the first row. In some cases, ...104 reads#oracle-apex
Hamza Al-abbasiorcl.hashnode.dev·Aug 9, 2024Interactive Grid: Prevent modify/delete record based on a specific column valueIn most cases we need some records in Interactive Grid NOT to be modified/deleted based on a specific column value. In this post, I will explain how to do this using Allowed Row Operations Column attribute in Interactive Grid. Assume that we have an ...79 reads#oracle-apex
Ashish Sahayblogs.ashishsahay.com·Apr 9, 2024Interactive Grid shortcodesDisable reordering and Resize // Disable Reorder and Resize column function(options){ options.defaultGridViewOptions = { reorderColumns: false, resizeColumns: false }; return options; } Hide Save Button #gridID button[da...APEXApex
Petar Simicpetarsimic.hashnode.dev·Dec 8, 2023Oracle APEX: IG Options You Might Not Know AboutWhile seeking ways to improve our Oracle APEX Component Designer, I discovered some useful features in the Interactive Grid documentation. I’ll give you a quick rundown in this blog, and you can look forward to seeing them soon in our APEX Component ...9 likes·2.8K readsinteractive-grid