Hai to all,
I am using ultrawingrid - infragistics 2007 volume 3. I am receiving an error "Can't access SelectionStart unless the Editor is in edit mode." in some form. Anyone guide me to solve this problem.
That's make sense, since you can't select text unless you're in edit mode. You can get into edit mode grid.PerformAction(EnterEditMode).
Hai Korach,
When i trying to use performaction(entereditmode) only , i got this error. That why i got confused. Is there any other issue?
Thanks ...it works for me on AfterEnterEditMode ..try ..this
ultxtEditor.SelectionStart = ultxtEditor.Text.Length;
You might be better off trying to do this in the AfterEnterEditMode event, since at that point you don't have to worry about timing issues with the cell going into edit mode.
-Matt