Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
640
UltraGrid Cell
posted

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 

Parents
No Data
Reply
  • 37774
    posted

    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

Children