Hi
I am using Infragistics Wingrid 2006 version and using the "IntegerPositive" as the Style of one of the column. I want to change the default blue background color while editing. Please let me know how to change it.
Thanks,
JIJIL
Hi,
I split your posts into a new thread, since they are not related to the thread you posted on. :)
Anyway... what blue background are you referring to? I tried this out with an integer column and I don't see any blue background. The cells are Window color whether editing or not. Perhaps something in your code is applying an appearance to the cell.
Find below the code snippet i have used. Please let me know what i should add extra to remove the bacground blue color.
e.Layout.Bands[0].Columns[2].MaskDisplayMode = Infragistics.Win.UltraWinMaskedEdit.
.IncludeLiterals;
e.Layout.Bands[0].Columns[2].MaskDataMode = Infragistics.Win.UltraWinMaskedEdit.
.IncludeBoth;
// e.Layout.Bands[0].Columns[2].ShowInkButton = ShowInkButton.Never;
e.Layout.Bands[0].Columns[2].Style = Infragistics.Win.UltraWinGrid.
.IntegerPositive;
e.Layout.Bands[0].Columns[2].CellAppearance.BackColorDisabled2 =
.White;
e.Layout.Bands[0].Columns[2].MaskLiteralsAppearance.BackColorDisabled =
e.Layout.Bands[0].Columns[2].MaskLiteralsAppearance.BackColor2 =
e.Layout.Bands[0].Columns[2].MaskLiteralsAppearance.BackColor =