Whenever I select a row the row becomes light blue. I would like to either disable that make it transparent as I want to change cell color where user clicked (which is not visible when the current row is selected).
How can I do that?
Hello,
It seems to me that you need to use the 'ActiveAppearancesEnabled' property:
e.Layout.Override.ActiveAppearancesEnabled = Infragistics.Win.DefaultableBoolean.False;Please feel free to let me know if I misunderstood you or if you have any other questions.
Thanks, I ended up with all these which seems to do the trick:
e.Layout.Override.SelectTypeRow = SelectType.None e.Layout.Override.ActiveRowAppearance.Reset() e.Layout.Override.ActiveRowCellAppearance.Reset() e.Layout.Override.ActiveAppearancesEnabled = Infragistics.Win.DefaultableBoolean.False