Show icons in grid row for edit and other actions

In each row of grid I want to show icons for various row level actions like edit, detail view etc.

Best would be to show these icons on hover. is it doable

But I am ok with having a separate column for showing these icons always if showing icons on hover is not possible .

When user clicks on the pencil icon the cell will become editable, if user clicks on some other icon a dhtmlx window will open etc…

How to do it?

Best would be to show these icons on hover. is it doable
It’s better to create custom eXcell type which will render image and have custom onmouseover event
Please check tutorial here docs.dhtmlx.com/doku.php?id=dhtm … creation&s[]=custom&s[]=excell

When user clicks on the pencil icon the cell will become editable
You can open cell editor with API using selectCell() or editCell() methods

if user clicks on some other icon a dhtmlx window will open etc…
You can use “onRowSelect” event of the grid to catch then particular cell is selected and show dhtmlx window.
Also you can create custom eXcell type which will encapsulate this action.