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

GDBG moveRange HeaderRows

Hi,
How can i swap 2 headers rows ?

thanks

1 Reply

JJ Jisha Joy Syncfusion Team September 26, 2007 04:50 AM UTC

Hi Sim,

Thank you for your interest in Syncfusion products.

There is no direct way to swap row headers.But it can be achieved by handling the event PrepareViewStyleInfo in GriddataBoundGrid and swaping the Cellvalues of row headers.
Here is the code snippets:

void gridDataBoundGrid1_PrepareViewStyleInfo(object sender, Syncfusion.Windows.Forms.Grid.GridPrepareViewStyleInfoEventArgs e)
{
if (e.RowIndex == 0 && e.ColIndex > 0)
{
e.Style.CellValue = gridDataBoundGrid1[1, e.ColIndex].CellValue;

}
if (e.RowIndex == 1 && e.ColIndex > 0)
{
e.Style.CellValue = gridDataBoundGrid1[0, e.ColIndex].CellValue;
}

}


Please refer the sample in the link to illustrate this:
http://websamples.syncfusion.com/samples/Grid.Windows/68582/main.htm

Please try this and let me know if you have any questions.

Regards,
Jisha

Loader.
Live Chat Icon For mobile
Up arrow icon