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 ....
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.
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. }
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.