Hi,
I need to filter a Multiselect Option Set control, placed into a column of an editable grid.
In fact my problem is to get the control used for this Multiselect Option Set, placed into a column of an editable grid.
I was able to get the gridRow from the grid:
var myRows = gridContext.getGrid().getRows();
var gridRow = myRows.get(0);
In browser debugger I've found available the method:
gridRow.getControl()
but it returns a empty Array
Any idea, please?