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
390
UltraOptionSet and Eventmanager
posted

Is there a property like the Eventmanager of a Wingrid but for the UltraOptionSet?  I want to be able to suspend the value changed event of the ultraoptionset while I am assigning the initial value to the ultraoptionset.  The ultraoptionset does not have a datasource. 

Parents
No Data
Reply
  • 37774
    Verified Answer
    posted

     I'm pretty sure that only the large controls/components (i.e. grid, toolbarsmanager, etc) have an EventManager property.  In order to handle what you want to do, you should keep a local flag to prevent you from executing your logic in hte ValueChanged event and reset this flag when you are done with your intialization.  Another option would be to remove the event handler, though I am partial to the first method.

    -Matt

Children