I'm plugging into the RadComboBox's OnClientItemsRequesting by setting it to "MyItemsRequesting"
function MyItemsRequesting(s, e) {
var txt = e.get_text();
if (txt != txt.trim()) {
e.set_cancel(true);
var d = document.getElementById("mymasternamepageifany" + "_mydropdownid_Input");
if (d != null) d.value = txt.trim();
s.requestItems(txt.trim(), false);
}
/* more code */
}
No comments:
Post a Comment