Posted 17 Oct 2011 Link to this post
I'm writing to ask how best to maintain the Empty Message value in a RadComboBox - after the selection of a RadComboBoxItem; <
telerik:RadComboBox
ID
=
"RadComboBox1"
runat
"server"
Skin
"Black"
AutoPostBack
"True"
onselectedindexchanged
"RadComboBox1_SelectedIndexChanged"
Font-Names
"Microsoft Sans Serif"
Width
"160px"
EmptyMessage
"Maines Paper"
MarkFirstMatch
>
<
Items
telerik:RadComboBoxItem
Text
"Sign out"
Value
/>
"Change Password"
</
<script type=
"text/javascript"
function
setEmpty()
{
var
combo = $find(
'<%= RadComboBox1.ClientID %>'
);
combo.clearSelection();
combo.set_emptyMessage(
}
</script>