Hi there !
How can I override certain rows in my UltraGrid ( e.g. red backround of row ) IF I'm using the
Managed Preset ( the Look part ) ? The Managed Preset seems to overwrite my custom rowsin initlize_row so the red color never appears ... ?Rgd,EE.
Hi,
A Preset can only set properties on the grid, layout, or override level. So any properties you set on an individual row should override those settings. As a general rule, the more specific settings (like a row) will always take precedence over the mode general settings (like the Override).
Nevermind, it works in the InitilizeRow ...
It seems to overWrite the Managed Preset for the selected row,e.g.
if
((bool)e.Row.Cells["MileStone"].Value == true) e.Row.Appearance.BackColor = Color.Red;