Change Selection

Hi,

How do I change the selection inside the grid ?
(example a user set a row in a Textbox then click on a button , now i want select the complete row in the GridDataControl)

Thanks in advance

Thomas M.

2 Replies

TM Thomas M November 12, 2009 01:14 PM UTC

I have found , here the response:

public void SetRow(int row)
{
var range = GridRangeInfo.Row(row);
this.dataGrid.Model.SelectedCells = range;
}



GK Ganesan K Syncfusion Team November 13, 2009 05:46 AM UTC

Hi Thomas,

Thanks for your feedbacks.

Thanks
Ganesan

Loader.
Up arrow icon