I am trying to add a blank item to RadComboBox
Using the dropdownlist, you can call:
.Insert(Index, ListItem)
This doesn't work in RadComboBox, so I found on your forums that you use:
.Add(RadComboBoxItem)
I create a new RadComboxItem. I add it to a RadComboxBox after the databind. It only works for one RCB, even though I specified it as New. The funny thing is it works for the 2nd RCB, not the first, or the 10 that follow it. I created a second RCBI and that worked.
My question is, why do I have to create a blank RadComboBoxItem for each RadComboBox, and is there a way to set the index? Why didn't you inherit the Dropdownlist methods?
Thanks
Using the dropdownlist, you can call:
.Insert(Index, ListItem)
This doesn't work in RadComboBox, so I found on your forums that you use:
.Add(RadComboBoxItem)
I create a new RadComboxItem. I add it to a RadComboxBox after the databind. It only works for one RCB, even though I specified it as New. The funny thing is it works for the 2nd RCB, not the first, or the 10 that follow it. I created a second RCBI and that worked.
My question is, why do I have to create a blank RadComboBoxItem for each RadComboBox, and is there a way to set the index? Why didn't you inherit the Dropdownlist methods?
Thanks