windy 6 years ago
parent
commit
8f9bda6ade
  1. 48
      demo/js/case/combo/demo.text_value_combo.js
  2. 68
      dist/_fineui.min.js
  3. 10
      dist/base.js
  4. 10
      dist/bundle.js
  5. 68
      dist/bundle.min.js
  6. 48
      dist/demo.js
  7. 10
      dist/fineui.js
  8. 68
      dist/fineui.min.js
  9. 10
      src/base/layer/layer.popup.js

48
demo/js/case/combo/demo.text_value_combo.js

@ -29,54 +29,6 @@ Demo.TextValueCombo = BI.inherit(BI.Widget, {
text: "MVC-3",
iconCls: "pull-right-font",
value: 3
}, {
text: "MVC-3",
iconCls: "pull-right-font",
value: 3
}, {
text: "MVC-3",
iconCls: "pull-right-font",
value: 3
}, {
text: "MVC-3",
iconCls: "pull-right-font",
value: 3
}, {
text: "MVC-3",
iconCls: "pull-right-font",
value: 3
}, {
text: "MVC-3",
iconCls: "pull-right-font",
value: 3
}, {
text: "MVC-3",
iconCls: "pull-right-font",
value: 3
}, {
text: "MVC-3",
iconCls: "pull-right-font",
value: 3
}, {
text: "MVC-3",
iconCls: "pull-right-font",
value: 3
}, {
text: "MVC-3",
iconCls: "pull-right-font",
value: 3
}, {
text: "MVC-3",
iconCls: "pull-right-font",
value: 3
}, {
text: "MVC-3",
iconCls: "pull-right-font",
value: 3
}, {
text: "MVC-3",
iconCls: "pull-right-font",
value: 3
}]
}, {
type: "bi.search_multi_text_value_combo",

68
dist/_fineui.min.js vendored

File diff suppressed because one or more lines are too long

10
dist/base.js vendored

@ -15622,14 +15622,8 @@ BI.PopupView = BI.inherit(BI.Widget, {
_init: function () {
BI.PopupView.superclass._init.apply(this, arguments);
var self = this, o = this.options;
this.wheelHandler = new BI.WheelHandler(function (deltaX, deltaY) {
var scrollTop = self.button_group.element.scrollTop();
scrollTop += deltaY;
self.button_group.element.scrollTop(scrollTop);
}, false, true);
var fn = function (e) {
self.wheelHandler.onWheel(e.originalEvent);
e.stopEvent();
e.stopPropagation();
}, stop = function (e) {
e.stopEvent();
return false;
@ -15640,7 +15634,7 @@ BI.PopupView = BI.inherit(BI.Widget, {
"max-width": o.maxWidth + "px"
}).bind({click: fn});
this.element.bind("mousewheel", BI.bind(fn, this));
this.element.bind("mousewheel", fn);
o.stopPropagation && this.element.bind({mousedown: fn, mouseup: fn, mouseover: fn});
o.stopEvent && this.element.bind({mousedown: stop, mouseup: stop, mouseover: stop});

10
dist/bundle.js vendored

@ -51430,14 +51430,8 @@ BI.PopupView = BI.inherit(BI.Widget, {
_init: function () {
BI.PopupView.superclass._init.apply(this, arguments);
var self = this, o = this.options;
this.wheelHandler = new BI.WheelHandler(function (deltaX, deltaY) {
var scrollTop = self.button_group.element.scrollTop();
scrollTop += deltaY;
self.button_group.element.scrollTop(scrollTop);
}, false, true);
var fn = function (e) {
self.wheelHandler.onWheel(e.originalEvent);
e.stopEvent();
e.stopPropagation();
}, stop = function (e) {
e.stopEvent();
return false;
@ -51448,7 +51442,7 @@ BI.PopupView = BI.inherit(BI.Widget, {
"max-width": o.maxWidth + "px"
}).bind({click: fn});
this.element.bind("mousewheel", BI.bind(fn, this));
this.element.bind("mousewheel", fn);
o.stopPropagation && this.element.bind({mousedown: fn, mouseup: fn, mouseover: fn});
o.stopEvent && this.element.bind({mousedown: stop, mouseup: stop, mouseover: stop});

68
dist/bundle.min.js vendored

File diff suppressed because one or more lines are too long

48
dist/demo.js vendored

@ -2228,54 +2228,6 @@ Demo.TextValueCombo = BI.inherit(BI.Widget, {
text: "MVC-3",
iconCls: "pull-right-font",
value: 3
}, {
text: "MVC-3",
iconCls: "pull-right-font",
value: 3
}, {
text: "MVC-3",
iconCls: "pull-right-font",
value: 3
}, {
text: "MVC-3",
iconCls: "pull-right-font",
value: 3
}, {
text: "MVC-3",
iconCls: "pull-right-font",
value: 3
}, {
text: "MVC-3",
iconCls: "pull-right-font",
value: 3
}, {
text: "MVC-3",
iconCls: "pull-right-font",
value: 3
}, {
text: "MVC-3",
iconCls: "pull-right-font",
value: 3
}, {
text: "MVC-3",
iconCls: "pull-right-font",
value: 3
}, {
text: "MVC-3",
iconCls: "pull-right-font",
value: 3
}, {
text: "MVC-3",
iconCls: "pull-right-font",
value: 3
}, {
text: "MVC-3",
iconCls: "pull-right-font",
value: 3
}, {
text: "MVC-3",
iconCls: "pull-right-font",
value: 3
}]
}, {
type: "bi.search_multi_text_value_combo",

10
dist/fineui.js vendored

@ -51679,14 +51679,8 @@ BI.PopupView = BI.inherit(BI.Widget, {
_init: function () {
BI.PopupView.superclass._init.apply(this, arguments);
var self = this, o = this.options;
this.wheelHandler = new BI.WheelHandler(function (deltaX, deltaY) {
var scrollTop = self.button_group.element.scrollTop();
scrollTop += deltaY;
self.button_group.element.scrollTop(scrollTop);
}, false, true);
var fn = function (e) {
self.wheelHandler.onWheel(e.originalEvent);
e.stopEvent();
e.stopPropagation();
}, stop = function (e) {
e.stopEvent();
return false;
@ -51697,7 +51691,7 @@ BI.PopupView = BI.inherit(BI.Widget, {
"max-width": o.maxWidth + "px"
}).bind({click: fn});
this.element.bind("mousewheel", BI.bind(fn, this));
this.element.bind("mousewheel", fn);
o.stopPropagation && this.element.bind({mousedown: fn, mouseup: fn, mouseover: fn});
o.stopEvent && this.element.bind({mousedown: stop, mouseup: stop, mouseover: stop});

68
dist/fineui.min.js vendored

File diff suppressed because one or more lines are too long

10
src/base/layer/layer.popup.js

@ -44,14 +44,8 @@ BI.PopupView = BI.inherit(BI.Widget, {
_init: function () {
BI.PopupView.superclass._init.apply(this, arguments);
var self = this, o = this.options;
this.wheelHandler = new BI.WheelHandler(function (deltaX, deltaY) {
var scrollTop = self.button_group.element.scrollTop();
scrollTop += deltaY;
self.button_group.element.scrollTop(scrollTop);
}, false, true);
var fn = function (e) {
self.wheelHandler.onWheel(e.originalEvent);
e.stopEvent();
e.stopPropagation();
}, stop = function (e) {
e.stopEvent();
return false;
@ -62,7 +56,7 @@ BI.PopupView = BI.inherit(BI.Widget, {
"max-width": o.maxWidth + "px"
}).bind({click: fn});
this.element.bind("mousewheel", BI.bind(fn, this));
this.element.bind("mousewheel", fn);
o.stopPropagation && this.element.bind({mousedown: fn, mouseup: fn, mouseover: fn});
o.stopEvent && this.element.bind({mousedown: stop, mouseup: stop, mouseover: stop});

Loading…
Cancel
Save