Hi Steve,
Another question for you related to grid editing ;~)
DisplayEditor is invoked on a dbl click on a cell, how can I change that behavior to a single click?
Thank you
Mark
Hey Mark,
Hooking up your own single tap gesture, will work just fine. All the double tap gesture does, is call the following method off of the datasource helper:
-(void)beginEditing:(IGCellPath*)cellPath inGrid:(IGGridView*)gridView;
or in C#
void BeginEditing(IGCellPath path, IGGridView gridView)
As long as you call that method, you'll get the same exact behavior as the double tap.
-SteveZ
steve,
i just tried adding a single tap and taking cell programmatically into edit mode and it seems to work fine, so the double click default event probably checks if cell is already in edit mode and then ignores it, correct?