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.
Up arrow icon