Hi
i am converting a html table into dhtmlxgrid in a page
But row select doesnt work as in focus doesnt stay on any row after i click on it. Can you please tell me what could be te problem?
dhxTblGrid = new dhtmlXGridFromTable(‘tblToGrid’);
var filterText = “”;
for (var j = 0; j < dhxTblGrid.getColumnCount(); j++) {
if (j ==0)
filterText = “#text_filter”;
else
filterText += “,#text_filter”;
}
dhxTblGrid.attachHeader(filterText);
I am adding rows using addRow method(). If i use onRowSelect event, it fires on row hover itself and not on row click. But onRowDblClicked event works fine.
G