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

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

SR Sri Rajan Syncfusion Team May 26, 2008 02:19 PM UTC

Hi Vikas,

Thank you for your patience.

To get the selected rows in a GridControl, you need to use Selections.GetSelectedRanges method. To copy the selected rows in one grid control and pasted it in another grid control, you need to use Model.CutPaste.Copy() and Model.CutPaste.Paste() methods. Please refer the below code for more details.

private void buttonAdv1_Click(object sender, EventArgs e)
{
//To Get the Selected Ranges.
GridRangeInfoList ranges;
this.gridControl1.Model.Selections.GetSelectedRanges(out ranges, true);
foreach (GridRangeInfo sel in ranges)
{
Console.WriteLine("First Row : " + sel.Top.ToString());
}
//To copy range of row from one grid to another.
this.gridControl1.Model.CutPaste.Copy();
this.gridControl2.Focus();
this.gridControl2.CurrentCell.MoveTo(1, 1);
this.gridControl2.Model.CutPaste.Paste();
this.gridControl2.Model.Refresh();
}


Best Regards,
Srirajan



Loader.
Live Chat Icon For mobile
Up arrow icon