How to disable AutoPostBack RadComboBox with filter, when an item is selected?
For various reasons can't use AutoPostBack = false.
It has to be through javascript.
I assume, you need a post-back on some event but not when changing the selection in combo and that's why you are setting the AutoPostBack to True.
You can achieve the same functionality with AutoPostBack to false and invoking the postback using built-in javascript method "__doPostBack" method from the desired event (here its OnClientTextChange) and override the RaisePostBackEvent. Perform your code in RaisePostBackEvent function on sever side.
Find the sample code, which post-backs for textchange and not when changing item;