Skip to Main Content

APEX

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Interactive grid, change value of hidden column, its a bug?

Fernando LimaMay 21 2017 — edited May 22 2017

Hi, i have a problem with interactive grid when dynamic action on change column "CODE_ITEM",

i have a column hidden ("ID_ITEM") but i need change it with javascript or plsql (dynamic action), the item (column) Settings is Value Protected: No.

i'd try 2 methods with js (both works with not hidden example: text field):

apex.item("DML").setValue("X");

or

var $te = $(this.triggeringElement);

var rowId = $te.closest('tr').data('id');

var ig$ = apex.region("REP_DATO").widget();

var model = ig$.interactiveGrid("getViews","grid").model;

var record = model.getRecord(rowId);

model.setValue(record,"DML","X");

i also try with plsql code (works with not hidden example: text field)

:DML:='X';

return item: DML

when is hidden never change..!!! remember i have the item (column) Settings is Value Protected: No.

help me, or it's a bug??.

Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Jun 19 2017
Added on May 21 2017
1 comment
2,005 views