RadComboBox(autocomplete) is expanding dropdown list when focused. I want to prevent it when there is no text in autocomplete box.
I tried smth like this
function OnClientTextChange (sender, eventArgs) {
if (false && sender.get_text() == "") {
showDropDown(sender, null);
}
but "OnClientTextChange doesn't fire until the user hits Enter or clicks outside the combobox."
I need different way to prevent expanding dropdown when its text is empty.
I fixed it by reading json value which is generated and saved in hidden field