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
762
Redrawing changed UltraOptionSet
posted

I have a dialog with an UltraCombo and a UltraOptionSet. When I change the UltraCombo selection I change the UltraOptionSet Items.DisplayText. But the radio buttons in the UltraOptionSet still show the old DisplayText until I click on the control. Calling .Invalidate() or .Redraw() have no effect.

How do I redraw the UltraOptionSet with the changed DisplayText?

Parents
No Data
Reply
  • 37774
    Verified Answer
    posted

    I just tested this on my system and the item was correctly refreshed when I changed the DisplayText; what version are you using and do you have the latest hotfix?  If you do have the latest hotfix and you have version 7.3 or higher, you should submit this issue to Developer Support since it sounds like a bug.

    As for working around the issue on your end, you could try doing:

    this.ultraOptionSet1.UIElement.DirtyChildElements(true);

    or this in addition if it doesn't work:

    this.ultraOptionSet1.UIElement.VerifyChildElements();

    -Matt

Children