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

How to Change the Backcolor of a Single Row in GridGroupingControl

How to Change the Backcolor of a Single Row in GridGroupingControl? "_grid.TableModel.RowStyles[2].BackColor = System.Drawing.Color.Yellow;" - Doesn''t work!

1 Reply

ST stanleyj Syncfusion Team December 28, 2005 05:46 AM UTC

Hi Andrey, You will have to handle TableControlPrepareViewStyleInfo or QueryCellStyleInfo handler to change the backcolor of single row. private void gridGroupingControl1_TableControlPrepareViewStyleInfo(object sender, Syncfusion.Windows.Forms.Grid.Grouping.GridTableControlPrepareViewStyleInfoEventArgs e) { GridTableCellStyleInfo style = (GridTableCellStyleInfo) e.Inner.Style; if (style.TableCellIdentity.TableCellType == GridTableCellType.RecordFieldCell || style.TableCellIdentity.TableCellType == GridTableCellType.AlternateRecordFieldCell) if(e.TableControl.TableDescriptor.Name == "TableName" && e.Inner.RowIndex == 5) e.Inner.Style.BackColor = Color.Salmon; } Best regards, Stanley

Loader.
Live Chat Icon For mobile
Up arrow icon