Focus in cell (1,1)

Hi Can i when click a button to force the focus is in a grid and in cell (1,1)? In my application i have 3 buttons and three grids, when i click one button i need the focus go to one grid and go to cell (1,1). Thanks

2 Replies

AD Administrator Syncfusion Team August 10, 2005 01:28 PM UTC

Try using this code in your button handler: grid.Focus(); grid.CurrentCell.MoveTo(1,1);


LF Liliana Faerman August 10, 2005 01:40 PM UTC

Thsnks Clay >Try using this code in your button handler: > >grid.Focus(); >grid.CurrentCell.MoveTo(1,1); >

Loader.
Up arrow icon