Double click the column header for edit column header value

Tags: #<Tag:0x00007f8b25b403e0>

I want to double click the column header for edit column header value. Can any one give some resolvent?

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

You’re welcome @gunsel

I think that we can close the topic.