We use cookies to give you the best experience on our website. If you continue to browse, then you agree to our privacy policy and cookie policy. Image for the cookie policy date
close icon

Regarding Grid Control selecting rows and added to the Second grid

Hi

I am using the Grid control.I have set the Allow selection to Alpha,Table and Row,Property like Excel like selection and Excel like property is to be set to true which allow me to select the rows by using the ctrl key.say i wll selct row no. 1,4,5,8,10 rows out of 10 rows but i am not able get the list of the selected rows in the grid and I want also to add the Selected list in some another grid control. Plz help me.

I shal thank for you

Best Regards
Vikas Chopra



1 Reply

JJ Jisha Joy Syncfusion Team May 19, 2008 06:34 AM UTC


Hi Vikas,

This can be achieved by getting the selected ranges by using GetSelectedRows method and iterate through GridRangeInfoList.

Please refer the code:


private void button1_Click(object sender, EventArgs e)
{

GridRangeInfoList rangeList = this.gridControl1.Selections.GetSelectedRows(true, false);
if (rangeList.Count > 0)
{
foreach (GridRangeInfo range in rangeList)
{
for (int row = range.Top; row <= range.Bottom; row++)
{
for (int col = 1; col <= gridControl1.ColCount; col++)
{
this.gridControl2[row, col].CellValue = this.gridControl1[row, col].CellValue;
}
}
}
}

}

Please let me know if this helps.
Regards,
Jisha



Loader.
Live Chat Icon For mobile
Up arrow icon