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
720
EditorComponent with UltraGrid
posted

Hi,

 

We use UltraProgressBar in a UltraGrid as EditorComponent (With BindingList)

It works, we can see the progressbar with updated value.

What we want to do is to modify some appearance properties depending on some value.

for that we use : UltraGrid1.Rows(0).Cells(x).EditorComponent

but the value is null and we don't know how to get the control.

 

Thank you

Parents
No Data
Reply
  • 71886
    Offline posted

    Hello Dnx,

    You could try using the following code sample as a possible approach:

    ultragrid1.rows(0).cells(0).EditorComponentResolved


    With the EditorComponentResolved you should be able to get the control so please try this approach.[/code]

     If that is not case and you would like to get the value of the desired cell you could use:

    [code]

    ultragrid1.rows(0).cells(0).Value

     

    Once you find the desired cell you would be able to control the appearance properties of it.

    Please let me know if I misunderstood you.

Children