I want to double click the column header for edit column header value. Can any one give some resolvent?
Double click the column header for edit column header value
Hi @gunsel
column headers is not editable. You’d need to add any editable HTML inside it to allow user to type a char.
All columns by default allow to use HTML so you can construct it like
colHeaders: function(col){ return '<b>' + col + '</b>'}
In your example I would display a column name and change it to an input on the afterOnCellMouseDown
where coords.row < 0
OK, Thanks for your resolvent
I think that we can close the topic.