Hello Telerik Team,
I want all MultiColumn ComboBoxes in a form ReadOnly mode
foreach (Control ctrl in this.Controls){ if (ctrl.GetType() == typeof(RadMultiColumnComboBox)) ((RadMultiColumnComboBox)ctrl).ReadOnly = true; //like that}However, ReadOnly property does not exist.
How can I set MultiColumn ComboBox to ReadOnly ?
