Thanks Princy!
Here is the exact script I ended up using (based on your advice)
function OnClientDropDownClosing(sender, eventArgs) { if( eventArgs.get_domEvent().type == 'click' ) { eventArgs.set_cancel(true); } }
It seems to work for me, since all mouse clicks outside of the combobox have the DOM event of 'mousedown'.