Skip to main content

Interactive Grid - Add row from another report using JavaScript

There was a requirement to build a page where users can search for data in a report and then choose a row to be added to Interactive Grid (IG), besides regular way of adding rows to IG. There are two approaches (could be more) to achieve this. Old school approach is adding a row to APEX Collections when user chooses a row in report and using same collection in IG query. Other approach could be, doing something with JavaScript (JS) and build solution on top of IG framework using IG JS APIs, without using collections.

When we convert this requirement into technical specification, essentially it has two parts.
  1. Adding new row to IG via JS
  2. Set values for newly added row via JS
Luckily, there are JS APIs and functions already available to achieve both the points.

Adding new row to IG via JS

Adding new empty row via JS is rather straight forward and easy.

    // "order" is IG region static ID
    var $widget = apex.region('order').widget();
    var $grid = $widget.interactiveGrid('getViews', 'grid');
    var $model = $grid.model;

    //insert new record on a model
    var newRecordId = $model.insertNewRecord();

In above code order is IG region static ID. 

Set values for newly added row via JS

Once row is added you can add values into IG columns using below code

    //continuation of above code
    //get the new record
    var $newRecord = $model.getRecord(newRecordId);

    // PRODUCT_ID and ORDER_QUANTITY are column names in IG SQL query
    //update record values
    $model.setValue($newRecord, 'PRODUCT_ID', pProductId);
    //set default quantity to 1
    $model.setValue($newRecord, 'ORDER_QUANTITY', '1');

That's it. 

Here is the link to working example. In this example, there is a Interactive Report (IR) region "Search & Select" and "Product Name" column has a link which calls JS function "addToOrder" with product_id passed as input parameter. Another IG region "Your Order".

JS function code

  function addToOrder(pProductId) {
    // "order" is IG region static ID
    var $widget = apex.region('order').widget();
    var $grid = $widget.interactiveGrid('getViews', 'grid');
    var $model = $grid.model;

    //insert new record on a model
    var newRecordId = $model.insertNewRecord();
    
    //get the new record
    var $newRecord = $model.getRecord(newRecordId);

    // PRODUCT_ID and ORDER_QUANTITY are column names in IG SQL query
    //update record values
    $model.setValue($newRecord, 'PRODUCT_ID', pProductId);
    //set default quantity to 1
    $model.setValue($newRecord, 'ORDER_QUANTITY', '1');    
  }  

Tested with APEX Versions: 18.1,18.2 and 19.1

Thank you.

Comments

Parul Jain said…
Thanks for Sharing this. Great approach.. !! :)
Hari said…
Thank you Parul and Arun.
Veerendra.Patil said…
Hi,
How do you add the ROW in the last?
$model.insertNewRecord() always creates a new row on top.

Unknown said…
hi,
i'm quite new to oracle apex. could you please be so kind to specify what DA do i need to use for example above?
Unknown said…
i have no idea where to put the JS either. please help me. thanks
Hari said…
Hi, What is your requirement? Would it be possible to set-up an example at apex.oracle.com and post details here?
Unknown said…
very good article! but I am still confused about some steps. Could you please share the details of setting up this example?

Popular posts from this blog

Interactive Grid - Conditional Enable/Disable

In this blogpost, I am going to discuss few approaches using which we can conditionally enable/disable Interactive Grid (IG) column(s) based on other column(s) values. Note:    There is a bug  30801170  in APEX 19.2/20.1 with respect to "enable/disable" dynamic actions for IG columns. Workaround for this bug is provided at the end of this blogpost . This bug has been fixed in APEX version 20.2. Client Side Only Conditions If conditions to enable/disable are simple, then we can check those conditions easily on the client side. For e.g. let's consider IG on EMP table with following SQL Query. SELECT EMPNO, ENAME, JOB, MGR, HIREDATE, SAL, COMM, DEPTNO FROM EMP Let's consider the requirement as - Enable "Commission" column only when JOB is equals to 'SALESMAN' and disable "Commission" column in all other cases. This can be done declaratively using dynamic actions (DA) DA "Enable/Disable Commission - 1" Create DA and give it a prope

Interactive Grid - Bulk Operation on Selected Rows

What's the Problem? Let's say you have an IG on employee table and you want to update selected employees commission based on user's input. Ideally, it should be very simple, where you can write UPDATE statement in page process and select IG region as "Editable Region" under "Execution Options" of the page process. But, when you select rows and submit page, you can see that, this process won't get executed! The reason is  Selection of 'Row Selector' check-boxes is not considered as row-change. Thus selected rows are not submitted to server. So, is there any work around?  Yes! Luckily there are lot of JavaScript (JS) APIs available to work with IG. If you are not already aware, you can refer "APEX IG Cookbook"  or  JavaScript API Reference documentation. If we continue with above Employee IG example, when user selects IG rows, enters "Commission %" and clicks on "Update Commission" button, then we can writ

Interactive Grid - Process Filtered Data on Server Side

Recently one of the APEX developers has reached out to me and asked if it's possible to capture filtered rows data of the Interactive Grid on the server-side and do some processing. In APEX 20.1, there is a new API APEX_IG , using which we can achieve this. Photo by Jakub Kapusnak on Unsplash The approach is very simple and straightforward. Get the internal region id based on the Static ID given for the IG region Get the last viewed report id based on region id Open query context for the region and report using region id and report id Fetch and loop through the rows using the query context Do something with fetched rows And finally, close the query context If you have already done this for interactive reports, then you should be already aware of these steps. The only difference here is, we use APEX_IG APIs instead of APEX_IR APIs. For the demo purpose, let's Build an Interactive Grid on EMP table and let's give it a Static ID as emp Create a Textarea page item with