Hi There,
Am using UltrawinEditor.UltraOptionSet radio box in my win form, the form is a dynamic form which display the control accordingly
i need help to hide collection of UltraOptionset Value when i choose option 1 then ultrawinEditor.UltraOptionset should show value as A, B and if i choose option 2 then ultrawinEditor.UltraOptionset value as C,D,E and hide A,B
i have added this value in ultrawinEditor.UltraOptionset collection any idea how can hide in UI during run time.
Thank in advance.
Hello cyus,
A possible approach to achieve this might be by using two or three(depends on your scenario) different value lists and change them when an item is checked.
Please feel free to let me know if this does not suit your needs or if you need additional assistance.
Hi there,
Am using Infragistics.Win.UltraWinEditors.UltraOptionSet and added value during runtime using ValueList.
ValueList vList = new ValueList();
vList.ValueListItems.Add(
"J", "Joy");
"R", "Rest");
this.uopt.ValueList = vList;
when the form is loaded i send the uopt.Value = "J" or NULL when the value is null default i assign value as "J" with uopt.CheckedIndex = 0;
and it work fine, but when i change the value for example uopt.Value as R and Load the vList again it reset the uopt.Value = null please help on this issue.
Hello,
I am just checking about the progress of this thread. Please let me know If you need my further assistance on this.