HI Everyone,
Can anyone please tell me
1. How to bind the values from ultraFontEditor to a cell in a grid.
2. How to bind the values from ultraColorPicker to a cell in a grid.
Thanks in Advance
Ferdin
Ferdin,
I assume that you want to bind these editors to the cell in the currently active row. If so, then you could do:
this.ultraColorPicker1.DataBindings.Add("Value", this.ultraGrid1.DataSource, "Color Column Key");this.ultraFontNameEditor1.DataBindings.Add("Value", this.ultraGrid1.DataSource, "Font Column Key");
-Matt
You are probably looking forthe Style property of the grid column. You can set the Style to Color or Font to get a color dropdown or a font dropdown in the grid, respectively.
i have a grid with color column, it behaves fine until i assign alternaterow appearance through app styling, it is overridden by the app styling color.
how do i make sure that the color column is unaffected ?