チーム、
特定のフラグでコンボボックスを展開したくないという問題があり、警告メッセージを表示したい.
EXTJS には onClick のようなイベントがないので、フォーカス イベントで試しましたが、コンボ ボックスが展開されます。
コード
focus:function() {
if(this.store.baseParams.donotExpandFlag) {
alert("I should not expand this combo");
// What to do here and out side of IF block so that there is conditional expansion
}
}