Categories | Question details Back To List | ||
I am having trouble with the selectCell function while
in edit mode. I can null out the field but the s... I am having trouble with the selectCell function while in edit mode. I can null out the field but the select does not open the field for editing. Answer posted on Mar 05, 2007 09:45 selectCell function only selects a cell by default. To force cell edit you need to set 5th parameter to true: grid_1.selectCell(rowId,cellInd,false,false,true); or use next command combination: grid_1.selectCell(rowId,cellInd);
grid_1.editCell() Answer posted by Inga (Support) on Nov 30, 2014 23:10 Not much can be said in addition to the reply above, but you also can check datagrid update and javascript month calendar and find out what we have probably missed in our explanation. |