How do you set focus to a particular cell in a TeeGrid from a program?
How do you select the data in the cell for editing from a program?
Focus & Selection from program
Re: Focus & Selection from program
I figured out the set focus part of it.
TeeGrid1.Selected.Change(TeeGrid1.Columns[Column],Row);
Is there a way to switch this to edit mode (similar to double click)?
TeeGrid1.Selected.Change(TeeGrid1.Columns[Column],Row);
Is there a way to switch this to edit mode (similar to double click)?
Re: Focus & Selection from program
Hello,
Try with this:
Try with this:
Code: Select all
type TCustomTeeGridAccess=class(TCustomTeeGrid);
//...
TCustomTeeGridAccess(TeeGrid1.Grid).StartEditor;
Best Regards,
Yeray Alonso Development & Support Steema Software Av. Montilivi 33, 17003 Girona, Catalonia (SP) | |
Please read our Bug Fixing Policy |