Highlighting configurable per column
Not plannedHi, it would be nice if a column provide her own highlighting configuration like:
Column column = new Column();
column.Hightlighting.Enable = true;
column.Hightlighting.Color = Color.Red;
So it would be possible to set the highlighting configuration independent for each column
0
-
Hi,
You can highlight cells by using the Cell.Highlight(time, color). In the event-driven model you can also subscribe for the grid.RowUpdated event and manualy highlight the cell with needed color and interval. Ex:
grid.RowUpdated += delegate(object sender, GridRowUpdateEventArgs e)
{
if(e.DataField.Id == "some id")
{
e.Row[e.DataField.Id].Highlight(TimeSpan.FromMilliseconds(500), Color.Red);
}
};0
Please sign in to leave a comment.
Comments
1 comment