The RadCombox I am using has only two values "AND" and "OR". How do I make the combo box shorter?
Please have a look at the attached screen shot and the corresponding code block below:
<
telerik:RadComboBox
ID
=
"drpFilterType"
runat
=
"server"
AutoPostBack
=
"true"
EnableViewState
=
"true"
Width
=
"100px"
Skin
=
"Default"
MarkFirstMatch
=
"True"
>
<
Items
>
<
telerik:RadComboBoxItem
Text
=
"AND"
Selected
=
"true"
Value
=
"AND"
/>
<
telerik:RadComboBoxItem
Text
=
"OR"
Value
=
"OR"
/>
</
Items
>
</
telerik:RadComboBox
>