Hello
Is it possible to not fire editor functions when loading the grid ?
In my setup I’m defining a column like this:
{data: ‘name’, type:‘dropdown’, source: remoteList('name)}
If I say elsewhere in the js
function remoteList(group) {
console.log(‘loading remote list for group’+group);
return [‘toto’];
}
When I load the grid, columns are defined at startup and remoteList is called I presume for all cells.
How could I call the function only when needed, that is when user double clic on cell to edit or selects the dropdown ?
Thanks for your help