AD
Administrator
Syncfusion Team
August 16, 2004 12:56 PM UTC
Instead of using a TextBox celltype, you might try using a MaskEdit cell with mask ####.
If this does not serve your needs, you can go back to using a TextBox, and handle the CurrentCellValidateString event. In the handler, check e.Text to make sure it is a valid entry, and set e.Cance = true if it is not.
AD
Administrator
Syncfusion Team
August 17, 2004 05:26 AM UTC
Thanks Clay
Another question. I have some code that programatically highlights a grid row, I would also like to after selecting the row to "focus" on my editable textbox column. SO that the user doestn have to click inside the grid cell to begin the editing process. Is there a way I can achieve this?
Thanks. Mark (vb.net)
AD
Administrator
Syncfusion Team
August 17, 2004 06:03 AM UTC
You can try
grid.CurrentCell.MoveTo(someRow, someCol, GridSetCurrentCellOptions.SetFocus);