Categories | Question details Back To List | ||
grid splitAt and editStop Hello, When i'm editing a cell that is in a frozen column (with splitAt function) and i wan't run the editStop function and the property mygrid.editor is null. But when i'm editing a cell that is not in a frozen column, the property mygrid.editor is not null. It is a bug of frozen column ?? Thanks Answer posted by Alex (support) on Nov 20, 2009 08:44 Hello, in case of split mode please use teh following approach to stop editing: mygrid.editStop(); mygrid._fake.editStop(); and the next one to get editor object: var editor = mygrid.editor||mygrid._fake.editor; |