APEX: Updating Interactive Grid Cells

Moving from the old tabular form to the interactive grid takes some getting used to. Especially when trying to manually update cells with JavaScript.

Here is an example of how to access and modify particular cells in an interactive grid with JavaScript. The example promotes an employee when the Promote link is clicked, which doubles the employee’s salary, and assigns him a new job.

First I built an interactive grid on the EMP table. I’ve used all the defaults except:
Enable editing with Update Row.
Set the region’s static ID to emps.
Added a link column with target type: URL, URL: #

ir-link

The link text is set to Promote, and I added class (ig-link) so that I can connect a dynamic action to it:

ig-link2

Next I created a dynamic action that fires when the Promote link is clicked.

ig-da1

The true action is a Execute JavaScript Code action, with the following code:

[code language=”javascript”]
//Get the link element that was clicked
var $te = $(this.triggeringElement);

//Get the ID of the row
var rowId = $te.closest(‘tr’).data(‘id’);

//Identify the particular interactive grid
var ig$ = apex.region("emps").widget();

//Fetch the model for the interactive grid
var model = ig$.interactiveGrid("getViews","grid").model;

//Fetch the record for the particular rowId
var record = model.getRecord(rowId);

//Access the cell value via the column name
var sal = model.getValue(record,"SAL");

//Set the values for the JOB and SAL cells
model.setValue(record,"JOB",’MANAGER’);
model.setValue(record,"SAL",sal*2);
[/code]

Here is the working example:

emps

It is worth noting that the <tr> element of the interactive grid row contains the row’s unique identifier. This could be a row ID or a primary key value, depending on how you configured the grid.

 

7 thoughts on “APEX: Updating Interactive Grid Cells

  • March 20, 2017 at 4:13 pm
    Permalink

    Thanks, this worked. Any idea how I can change the color of the value selected? I was doing this based on id

    row_id = $(this.triggeringElement ).attr(‘id’);
    $(row_id).prop(‘class’,’operationPending’);

  • March 22, 2017 at 1:01 pm
    Permalink

    Hi Christoph,
    Thanks for another 2 cents. I went ahead and followed the tutorial. Everything worked 🙂

  • March 23, 2017 at 10:55 am
    Permalink

    Great example of accessing the interactive grid model (the data) , a record and a cell.
    Point is. I-Grid custom code is now JavaScript. No more PL/SAL collections.
    Thanks!

  • November 3, 2017 at 9:04 am
    Permalink

    Hi Christoph, I am not very keen on java script, so I did not manage to make your Dynamic action work. When you say “I added class (ig-link)”, what does it mean really ? Just put “Class=”ig.link”” in Link attributes value ? or is there something else to do ? Thanks for your feedback.

  • November 3, 2017 at 9:28 am
    Permalink

    You are correct: just put class=”ig.link” into the link attributes. This allows the JavaScript to reference the link.

Comments are closed.