Hello everyone.
I am trying to place a on the header_row of a nextmatch
I want this grid to get dynamic data, so in the .xet file I use this as id="${row}[actual_id]"
However, even though this works on etemplate in general, and is translated to 0[actual_id], 1[actual_id] etc.
when it’s inside nextmatch it stays ${row}[actual_id].
Because of this, I can’t populate the grid with data. Neither from PHP content (array [0] => row, [1] => row etc.),
neither from JS ( app.appname.et2.getWidgetById(‘grid’).set_value({ content: [ {actual_id : 25}, {actual_id : 20} ], sel_options:[]}) )
Both methods work outside nextmatch though.
Is there a way to have a simple grid with data inside nextmatch header_row?
Thanks!