I’m using the cellInd to determine which column is selected in a double click event. But this changes when the user moves columns around. How can I pass the column name instead?
The events will always provide column index, but you can convert it to the column ID ( need to be defined by setColumnIds or by column@id ) as
var id = grid.getColumnId(columnIndex);