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
35
Checked item UltraOptionSet
posted

hi , i'm working in a project that need to use a optionset inside of a ultratabcontrol and i dont know how i can get the checked item of this optionset ??? 

i used the foreach from a sqlserver database to generate this optionset items ...

please help me ....

  • 715
    posted

    Hello bilal regragui ,

    I am still following your thread. Please do not hesitate to contact us if you have any other questions with this matter.

  • 715
    posted

    Hello bilal regragui ,

    Thank you for posting in the Infragistics forums.

    If you know what's the instance of the UltraOptionSet control you could use the following code to get the checked item:  if (ultraOptionSet1.CheckedItem != null)
    {
       ValueListItem checkedItem = ultraOptionSet1.CheckedItem;
       //Do what you need with the checked item if any.
    }

    Please feel free to let us know if you have any other questions with this matter.