Hello,
I am not quite sure about your scenario.
If you want to hide the dropdown arrow set
ShowToggleImage
property to false.
RadComboBox1.ShowToggleImage = false;
Or if you want to prevent the DropDown from opening, then you can use
OnClientDropDownOpening client-side event which occurs before the
drop-down list opens and cancel the event from there
.
aspx:
Javascript:
Thanks,
Shinu.