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
455
UltraOptionSet Value
posted

Hi @all

we just installed release 14.1.20141.2059 of the Windows Forms controls and observed a problem, that  was not present with Version 13.2.

If we set the same value for an UltraOptionSet  twice, the value becomes null.

e.g. UltraOptionSet  has initial value 0

     UltraOptionSet.Value = 1; // Value becomes 1

     UltraOptionSet.Value = 2; // Value becomes 2

     UltraOptionSet.Value = 2; // Value becomes null



Is this a known issue?

Best regards,

Alex

Parents
No Data
Reply
  • 18495
    posted

    Hello Alex,

    Thank you for contacting Infragistics.

    I created the attached sample to test the issue you described.  It contains an UltraOptionSet with several items and a button.  When the button is clicked, the UltraOptionSet.Value property is set to 2 and the value of the Value property is printed to Visual Studio's Output window.  When I run the sample, 2 is printed to the Output window every time the button is clicked.

    I'd like you to compare my sample with yours.  If you're not able to determine why your sample is showing the behavior you described, please zip up your project and attach it to this thread.

    UltraOptionSetTest.zip
Children