Categories | Question details Back To List | ||
Hightlight grid cell text on doubleclick Hi, For now when I double click or single click(if lightmousenavigation is enabled) the cell becomes editable but along with it we want the content of the cell to be highlighted... can this be achieved? Thanks in Advance Answer posted by dhxSupport on Apr 22, 2009 04:37 You can use following code: mygrid.attachEvent("onEditCell",function(stage,rowId,cellIndex){ If your grid has big amound of rows using such code can decrease grid's perfomance. In such case better to implement custom eXcell type. Please see more information here http://dhtmlx.com/docs/products/dhtmlxGrid/doc/articles/Custom_excell_creation.html#grid_cexc |