Hi,
I have UltraOptionSet with 3 items in it. I want item should be default selected when the form loads.
I have set the property of the item state as, but in vein it doesn't checked in states when the page loads.
ultraOptionSet1.Items[0].CheckState = CheckState.Checked;
Hello,
This issue was resolved in the Service Release that was published on Friday, July 11, 2014.
Hello Mateia,
I have submitted this to our developers for them to look at. I will update this thread once I have more information.
I tried this out and it seems to work okay in Form_Load.
this.ultraOptionSet1.CheckedIndex = 3;
However, this does not work:
this.ultraOptionSet1.Items[3].CheckState = CheckState.Checked;
I'm not sure why. I am going to ask Infragistics Developer support to write this up for developer review so we can check it out. But setting the CheckedIndex should get you going for now.
ultraOptionSet1.Items[0].CheckState = CheckState.Checked; //does nothing
I have this problem as well. It's weird.
I am initializing in Form_Load or in the Form_Shown event
Also,in design mode, the checked setting is ignored as well
For example this is ignored in design mode: valueListItem1.CheckState = System.Windows.Forms.CheckState.Checked;
Mike,
Thanks for you quick response.
I got a solution.
Need to set the UltraOptionSet.CheckedIndex={num}
thank u