Browse Source

默认阻止按钮事件冒泡

es6
windy 5 years ago
parent
commit
b3a1f142b3
  1. 2
      src/case/combo/bubblecombo/popup.bubble.js

2
src/case/combo/bubblecombo/popup.bubble.js

@ -110,9 +110,11 @@ BI.TextBubblePopupBarView = BI.inherit(BI.Widget, {
buttons: [{ buttons: [{
level: "ignore", level: "ignore",
value: false, value: false,
stopPropagation: true,
text: BI.i18nText("BI-Basic_Cancel") text: BI.i18nText("BI-Basic_Cancel")
}, { }, {
value: true, value: true,
stopPropagation: true,
text: BI.i18nText("BI-Basic_Sure") text: BI.i18nText("BI-Basic_Sure")
}] }]
}; };

Loading…
Cancel
Save