Browse Source

Merge pull request #545 in VISUAL/fineui from ~WINDY/fineui:master to master

* commit '41179de20faf0c13878b28ca13b8824472608bf4':
  无JIRA任务 container
  update
  update
  无JIRA任务 container
  无JIRA任务 container
  BI-28479 combo的container少了
es6
windy 6 years ago
parent
commit
0d5c1a9c48
  1. 12
      demo/js/base/button/demo.button.js
  2. 12
      dist/demo.js
  3. 1
      src/case/colorchooser/colorchooser.js
  4. 1
      src/case/colorchooser/colorchooser.simple.js
  5. 1
      src/case/combo/bubblecombo/combo.bubble.js
  6. 1
      src/case/combo/icontextvaluecombo/combo.icontextvalue.js
  7. 1
      src/case/combo/searchtextvaluecombo/combo.searchtextvalue.js
  8. 1
      src/case/combo/staticcombo/combo.static.js
  9. 2
      src/case/richeditor/niceditor/niceditor.js
  10. 1
      src/widget/multiselect/multiselect.combo.js
  11. 1
      src/widget/multiselect/multiselect.insert.combo.js
  12. 1
      src/widget/multiselect/multiselect.insert.combo.nobar.js
  13. 1
      src/widget/searchmultitextvaluecombo/multitextvalue.combo.search.js

12
demo/js/base/button/demo.button.js

@ -17,8 +17,7 @@ Demo.Button = BI.inherit(BI.Widget, {
level: "success", level: "success",
height: 30 height: 30
} }
}, }, {
{
el: { el: {
type: "bi.button", type: "bi.button",
text: "表示警告状态的按钮", text: "表示警告状态的按钮",
@ -79,8 +78,7 @@ Demo.Button = BI.inherit(BI.Widget, {
level: "success", level: "success",
height: 30 height: 30
} }
}, }, {
{
el: { el: {
type: "bi.button", type: "bi.button",
text: "表示警告状态的按钮", text: "表示警告状态的按钮",
@ -139,8 +137,7 @@ Demo.Button = BI.inherit(BI.Widget, {
level: "success", level: "success",
height: 30 height: 30
} }
}, }, {
{
el: { el: {
type: "bi.button", type: "bi.button",
text: "表示警告状态的按钮", text: "表示警告状态的按钮",
@ -216,8 +213,7 @@ Demo.Button = BI.inherit(BI.Widget, {
}, },
height: 30 height: 30
} }
} }];
];
// BI.each(items, function (i, item) { // BI.each(items, function (i, item) {
// item.el.handler = function () { // item.el.handler = function () {
// BI.Msg.alert("按钮", this.options.text); // BI.Msg.alert("按钮", this.options.text);

12
dist/demo.js vendored

@ -39,8 +39,7 @@ $(function () {
level: "success", level: "success",
height: 30 height: 30
} }
}, }, {
{
el: { el: {
type: "bi.button", type: "bi.button",
text: "表示警告状态的按钮", text: "表示警告状态的按钮",
@ -101,8 +100,7 @@ $(function () {
level: "success", level: "success",
height: 30 height: 30
} }
}, }, {
{
el: { el: {
type: "bi.button", type: "bi.button",
text: "表示警告状态的按钮", text: "表示警告状态的按钮",
@ -161,8 +159,7 @@ $(function () {
level: "success", level: "success",
height: 30 height: 30
} }
}, }, {
{
el: { el: {
type: "bi.button", type: "bi.button",
text: "表示警告状态的按钮", text: "表示警告状态的按钮",
@ -238,8 +235,7 @@ $(function () {
}, },
height: 30 height: 30
} }
} }];
];
// BI.each(items, function (i, item) { // BI.each(items, function (i, item) {
// item.el.handler = function () { // item.el.handler = function () {
// BI.Msg.alert("按钮", this.options.text); // BI.Msg.alert("按钮", this.options.text);

1
src/case/colorchooser/colorchooser.js

@ -21,6 +21,7 @@ BI.ColorChooser = BI.inherit(BI.Widget, {
this.combo = BI.createWidget({ this.combo = BI.createWidget({
type: "bi.combo", type: "bi.combo",
element: this, element: this,
container: o.container,
adjustLength: 1, adjustLength: 1,
isNeedAdjustWidth: false, isNeedAdjustWidth: false,
isNeedAdjustHeight: false, isNeedAdjustHeight: false,

1
src/case/colorchooser/colorchooser.simple.js

@ -21,6 +21,7 @@ BI.SimpleColorChooser = BI.inherit(BI.Widget, {
this.combo = BI.createWidget({ this.combo = BI.createWidget({
type: "bi.color_chooser", type: "bi.color_chooser",
element: this, element: this,
container: o.container,
value: o.value, value: o.value,
popup: { popup: {
type: "bi.simple_color_chooser_popup" type: "bi.simple_color_chooser_popup"

1
src/case/combo/bubblecombo/combo.bubble.js

@ -36,6 +36,7 @@ BI.BubbleCombo = BI.inherit(BI.Widget, {
element: this, element: this,
trigger: o.trigger, trigger: o.trigger,
toggle: o.toggle, toggle: o.toggle,
container: o.container,
direction: o.direction, direction: o.direction,
isDefaultInit: o.isDefaultInit, isDefaultInit: o.isDefaultInit,
destroyWhenHide: o.destroyWhenHide, destroyWhenHide: o.destroyWhenHide,

1
src/case/combo/icontextvaluecombo/combo.icontextvalue.js

@ -44,6 +44,7 @@ BI.IconTextValueCombo = BI.inherit(BI.Widget, {
this.textIconCombo = BI.createWidget({ this.textIconCombo = BI.createWidget({
type: "bi.combo", type: "bi.combo",
element: this, element: this,
container: o.container,
adjustLength: 2, adjustLength: 2,
el: this.trigger, el: this.trigger,
popup: { popup: {

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

@ -19,6 +19,7 @@ BI.SearchTextValueCombo = BI.inherit(BI.Widget, {
items: [{ items: [{
el: { el: {
type: "bi.combo", type: "bi.combo",
container: o.container,
adjustLength: 2, adjustLength: 2,
toggle: false, toggle: false,
ref: function () { ref: function () {

1
src/case/combo/staticcombo/combo.static.js

@ -45,6 +45,7 @@ BI.StaticCombo = BI.inherit(BI.Widget, {
type: "bi.combo", type: "bi.combo",
element: this, element: this,
adjustLength: 2, adjustLength: 2,
container: o.container,
el: this.trigger, el: this.trigger,
popup: { popup: {
el: this.popup el: this.popup

2
src/case/richeditor/niceditor/niceditor.js

@ -68,7 +68,7 @@
var self = this; var self = this;
var found = false; var found = false;
do { do {
if (t.nodeName !== "svg" && t.className && t.className.indexOf(prefix) != -1) { if (t.nodeName !== "svg" && t.className && t.className.indexOf && t.className.indexOf(prefix) != -1) {
return; return;
// return false; // return false;
} }

1
src/widget/multiselect/multiselect.combo.js

@ -119,6 +119,7 @@ BI.MultiSelectCombo = BI.inherit(BI.Single, {
this.combo = BI.createWidget({ this.combo = BI.createWidget({
type: "bi.combo", type: "bi.combo",
toggle: false, toggle: false,
container: o.container,
el: this.trigger, el: this.trigger,
adjustLength: 1, adjustLength: 1,
popup: { popup: {

1
src/widget/multiselect/multiselect.insert.combo.js

@ -114,6 +114,7 @@ BI.MultiSelectInsertCombo = BI.inherit(BI.Single, {
toggle: false, toggle: false,
el: this.trigger, el: this.trigger,
adjustLength: 1, adjustLength: 1,
container: o.container,
popup: { popup: {
type: "bi.multi_select_popup_view", type: "bi.multi_select_popup_view",
ref: function () { ref: function () {

1
src/widget/multiselect/multiselect.insert.combo.nobar.js

@ -121,6 +121,7 @@ BI.MultiSelectInsertNoBarCombo = BI.inherit(BI.Single, {
this.combo = BI.createWidget({ this.combo = BI.createWidget({
type: "bi.combo", type: "bi.combo",
toggle: false, toggle: false,
container: o.container,
el: this.trigger, el: this.trigger,
adjustLength: 1, adjustLength: 1,
popup: { popup: {

1
src/widget/searchmultitextvaluecombo/multitextvalue.combo.search.js

@ -124,6 +124,7 @@ BI.SearchMultiTextValueCombo = BI.inherit(BI.Single, {
this.combo = BI.createWidget({ this.combo = BI.createWidget({
type: "bi.combo", type: "bi.combo",
toggle: false, toggle: false,
container: o.container,
el: this.trigger, el: this.trigger,
adjustLength: 1, adjustLength: 1,
popup: { popup: {

Loading…
Cancel
Save