Browse Source

无JIRA任务 视觉调整

es6
王瑞 6 years ago
parent
commit
a9369c3dcc
  1. 6
      src/case/combo/bubblecombo/popup.bubble.js
  2. 5
      src/case/combo/searchtextvaluecombo/combo.searchtextvalue.js

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

@ -124,7 +124,7 @@ BI.shortcut("bi.bubble_bar_popup_view", BI.BubblePopupBarView);
* @extends BI.BubblePopupView
*/
BI.TextBubblePopupBarView = BI.inherit(BI.Widget, {
props: {
baseCls: "bi-text-bubble-bar-popup-view",
text: "",
@ -156,7 +156,7 @@ BI.TextBubblePopupBarView = BI.inherit(BI.Widget, {
buttons: [{
type: "bi.button",
value: BI.i18nText("BI-Basic_Cancel"),
ghost: true,
level: "ignore",
height: 24,
handler: function () {
self.fireEvent(BI.BubblePopupBarView.EVENT_CLICK_TOOLBAR_BUTTON, false);
@ -185,4 +185,4 @@ BI.TextBubblePopupBarView = BI.inherit(BI.Widget, {
}
});
BI.TextBubblePopupBarView.EVENT_CHANGE = "EVENT_CHANGE";
BI.shortcut("bi.text_bubble_bar_popup_view", BI.TextBubblePopupBarView);
BI.shortcut("bi.text_bubble_bar_popup_view", BI.TextBubblePopupBarView);

5
src/case/combo/searchtextvaluecombo/combo.searchtextvalue.js

@ -9,6 +9,7 @@ BI.SearchTextValueCombo = BI.inherit(BI.Widget, {
text: "",
items: [],
tipType: "",
extraCls: "",
warningTitle: "",
attributes: {
tabIndex: 0
@ -30,7 +31,7 @@ BI.SearchTextValueCombo = BI.inherit(BI.Widget, {
},
el: {
type: "bi.search_text_value_trigger",
cls: "search-text-value-trigger",
cls: "search-text-value-trigger " + this.options.extraCls,
ref: function () {
self.trigger = this;
},
@ -153,4 +154,4 @@ BI.SearchTextValueCombo = BI.inherit(BI.Widget, {
});
BI.SearchTextValueCombo.EVENT_CHANGE = "EVENT_CHANGE";
BI.SearchTextValueCombo.EVENT_BEFORE_POPUPVIEW = "EVENT_BEFORE_POPUPVIEW";
BI.shortcut("bi.search_text_value_combo", BI.SearchTextValueCombo);
BI.shortcut("bi.search_text_value_combo", BI.SearchTextValueCombo);

Loading…
Cancel
Save