0
我配置一樣,防止從消息框關閉
Ext.MessageBox.show({
buttons:Ext.MessageBox.OKCANCEL,
prompt:true,
buttonText:{ok:"Button1",cancel:"Button2"},
fn:function(btn, text, cBoxes){
if(btn=='ok'){
// do not close
// return false does not help
}
}
});
我不知道如何防止它關閉按鈕點擊一個消息。特別是,當用戶點擊「確定」按鈕時,我不想讓它關閉。我在Web上看到覆蓋,但不知道如何適當地配置按鈕屬性。我想,這項任務應該有一個非常簡單的解決方案。