Start Building Professional
Web Apps Today


 
Categories Question details Back To List
Question  posted by cooltoo on Apr 15, 2008 02:18
open dhtmlx forum
how can i chage of grid cell stage

how can i chage of grid cell stage

if i use click to something cell and then open popup window.
and then when i close to popup window, something charector set to clicked cell in parent windows.

but i can not chage force of grid cell stage.

help me, how can i this problem..

have a nice day~~
Answer posted by Support on Apr 15, 2008 03:09
You can simple select cell by using
    grid.selectCell(row_index,cell_index)
Or you can select cell and switch it to edit state by
    grid.selectCell(row_index,cell_index,false,false,true)

In common case edit operation for grid can be initiated|stoped by
    grid.editCell();
    grid.editStop();