|
|
|
@ -83405,6 +83405,12 @@ BI.shortcut("bi.rich_editor_text_toolbar", BI.RichEditorTextToolbar);/**
|
|
|
|
|
* @extends BI.Widget |
|
|
|
|
*/ |
|
|
|
|
!(function () { |
|
|
|
|
function isIE11Below () { |
|
|
|
|
if (!BI.isIE()) { |
|
|
|
|
return false; |
|
|
|
|
} |
|
|
|
|
return BI.getIEVersion() < 11; |
|
|
|
|
} |
|
|
|
|
BI.NicEditor = BI.inherit(BI.Widget, { |
|
|
|
|
_defaultConfig: function () { |
|
|
|
|
return BI.extend(BI.NicEditor.superclass._defaultConfig.apply(this, arguments), { |
|
|
|
@ -83458,6 +83464,7 @@ BI.shortcut("bi.rich_editor_text_toolbar", BI.RichEditorTextToolbar);/**
|
|
|
|
|
|
|
|
|
|
selectCheck: function (e) { |
|
|
|
|
var t = e.target; |
|
|
|
|
var self = this; |
|
|
|
|
var found = false; |
|
|
|
|
do { |
|
|
|
|
if (t.nodeName !== "svg" && t.className && t.className.indexOf(prefix) != -1) { |
|
|
|
@ -83466,6 +83473,10 @@ BI.shortcut("bi.rich_editor_text_toolbar", BI.RichEditorTextToolbar);/**
|
|
|
|
|
} |
|
|
|
|
if (this.instance.checkToolbar(t)) { |
|
|
|
|
this.instance.saveRng(); |
|
|
|
|
// 如果是点击在toolbar内恢复选取(IE中出现的问题)
|
|
|
|
|
BI.defer(function () { |
|
|
|
|
self.instance.restoreRng(); |
|
|
|
|
}); |
|
|
|
|
return; |
|
|
|
|
} |
|
|
|
|
} while (t = t.parentNode); |
|
|
|
@ -83484,8 +83495,8 @@ BI.shortcut("bi.rich_editor_text_toolbar", BI.RichEditorTextToolbar);/**
|
|
|
|
|
}, |
|
|
|
|
|
|
|
|
|
setValue: function (v) { |
|
|
|
|
v = v || ""; |
|
|
|
|
v = v.startWith("<div>") ? v : "<div>" + v + "</div>"; |
|
|
|
|
v = v || ( isIE11Below() ? "" : "<br>"); |
|
|
|
|
v = ($(v)[0] && $(v)[0].nodeName === "P") ? v : "<p>" + v + "</p>"; |
|
|
|
|
this.instance.setContent(v); |
|
|
|
|
}, |
|
|
|
|
|
|
|
|
@ -83520,7 +83531,7 @@ BI.shortcut("bi.rich_editor_text_toolbar", BI.RichEditorTextToolbar);/**
|
|
|
|
|
nicEditorInstance.superclass._init.apply(this, arguments); |
|
|
|
|
var o = this.options; |
|
|
|
|
var initValue = o.value || "<br>"; |
|
|
|
|
initValue = initValue.startWith("<div>") ? initValue : "<div>" + initValue + "</div>"; |
|
|
|
|
initValue = initValue.startWith("<p>") ? initValue : "<p>" + initValue + "</p>"; |
|
|
|
|
this.ne = this.options.ne; |
|
|
|
|
this.elm = BI.createWidget({ |
|
|
|
|
type: "bi.layout", |
|
|
|
@ -83680,7 +83691,7 @@ BI.shortcut("bi.rich_editor_text_toolbar", BI.RichEditorTextToolbar);/**
|
|
|
|
|
keyDown: function (e, t) { |
|
|
|
|
if (e.keyCode === 8) { |
|
|
|
|
var html = this.elm.element.html().toLowerCase().trim(); |
|
|
|
|
if (html === "<div><br></div>" || html === "<div></div>") { |
|
|
|
|
if (html === "<p><br></p>" || html === "<p></p>") { |
|
|
|
|
e.preventDefault() |
|
|
|
|
return; |
|
|
|
|
} |
|
|
|
@ -83714,7 +83725,7 @@ BI.shortcut("bi.rich_editor_text_toolbar", BI.RichEditorTextToolbar);/**
|
|
|
|
|
var newLine; |
|
|
|
|
var html = this.elm.element.html().toLowerCase().trim(); |
|
|
|
|
if (!html || html === '<br>') { |
|
|
|
|
newLine = $("<div></div>"); |
|
|
|
|
newLine = $(this._getNewLine()); |
|
|
|
|
this.elm.element.html(''); |
|
|
|
|
this.elm.element.append(newLine); |
|
|
|
|
this.setFocus(newLine[0]); |
|
|
|
@ -83817,7 +83828,7 @@ BI.shortcut("bi.rich_editor_text_toolbar", BI.RichEditorTextToolbar);/**
|
|
|
|
|
// 新增一个空行
|
|
|
|
|
var html = last.html().toLowerCase(); |
|
|
|
|
var nodeName = last.nodeName; |
|
|
|
|
if ((html !== "<br>" && html !== "<br\/>") || nodeName !== "DIV") { |
|
|
|
|
if ((html !== "<br>" && html !== "<br\/>") || nodeName !== "P") { |
|
|
|
|
// 最后一个元素不是空行,添加一个空行,重新设置选区
|
|
|
|
|
el.append(newLineHtml); |
|
|
|
|
this.initSelection(); |
|
|
|
@ -83829,7 +83840,7 @@ BI.shortcut("bi.rich_editor_text_toolbar", BI.RichEditorTextToolbar);/**
|
|
|
|
|
}, |
|
|
|
|
|
|
|
|
|
_getNewLine: function () { |
|
|
|
|
return "<div><br></div>"; |
|
|
|
|
return isIE11Below() ? "<p></p>" : "<p><br></p>"; |
|
|
|
|
}, |
|
|
|
|
|
|
|
|
|
_isChildOf: function(child, parent) { |
|
|
|
@ -83846,12 +83857,7 @@ BI.shortcut("bi.rich_editor_text_toolbar", BI.RichEditorTextToolbar);/**
|
|
|
|
|
return false; |
|
|
|
|
}, |
|
|
|
|
|
|
|
|
|
_isIE11Below: function() { |
|
|
|
|
if (!BI.isIE()) { |
|
|
|
|
return false; |
|
|
|
|
} |
|
|
|
|
return BI.getIEVersion() < 11; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
}); |
|
|
|
|
}()); |
|
|
|
|
/** |
|
|
|
@ -104118,6 +104124,7 @@ BI.SearchMultiTextValueCombo = BI.inherit(BI.Single, {
|
|
|
|
|
return BI.extend(BI.SearchMultiTextValueCombo.superclass._defaultConfig.apply(this, arguments), { |
|
|
|
|
baseCls: "bi-multi-select-combo bi-search-multi-text-value-combo", |
|
|
|
|
height: 24, |
|
|
|
|
numOfPage: 10, |
|
|
|
|
items: [] |
|
|
|
|
}); |
|
|
|
|
}, |
|
|
|
@ -104485,14 +104492,14 @@ BI.SearchMultiTextValueCombo = BI.inherit(BI.Single, {
|
|
|
|
|
|
|
|
|
|
_getItemsByTimes: function (items, times) { |
|
|
|
|
var res = []; |
|
|
|
|
for (var i = (times - 1) * 10; items[i] && i < times * 10; i++) { |
|
|
|
|
for (var i = (times - 1) * this.options.numOfPage; items[i] && i < times * this.options.numOfPage; i++) { |
|
|
|
|
res.push(items[i]); |
|
|
|
|
} |
|
|
|
|
return res; |
|
|
|
|
}, |
|
|
|
|
|
|
|
|
|
_hasNextByTimes: function (items, times) { |
|
|
|
|
return times * 10 < items.length; |
|
|
|
|
return times * this.options.numOfPage < items.length; |
|
|
|
|
}, |
|
|
|
|
|
|
|
|
|
_itemsCreator: function (options, callback) { |
|
|
|
@ -104580,7 +104587,8 @@ BI.extend(BI.SearchMultiTextValueCombo, {
|
|
|
|
|
|
|
|
|
|
BI.SearchMultiTextValueCombo.EVENT_CONFIRM = "EVENT_CONFIRM"; |
|
|
|
|
|
|
|
|
|
BI.shortcut("bi.search_multi_text_value_combo", BI.SearchMultiTextValueCombo);BI.SearchMultiSelectTrigger = BI.inherit(BI.Trigger, { |
|
|
|
|
BI.shortcut("bi.search_multi_text_value_combo", BI.SearchMultiTextValueCombo); |
|
|
|
|
BI.SearchMultiSelectTrigger = BI.inherit(BI.Trigger, { |
|
|
|
|
|
|
|
|
|
constants: { |
|
|
|
|
height: 14, |
|
|
|
@ -112575,12 +112583,14 @@ BI.shortcut("bi.all_value_chooser_pane", BI.AllValueChooserPane);BI.AllValueMult
|
|
|
|
|
|
|
|
|
|
render: function () { |
|
|
|
|
var self = this, o = this.options; |
|
|
|
|
var value = this._digestValue(o.value); |
|
|
|
|
return { |
|
|
|
|
type: "bi.search_multi_text_value_combo", |
|
|
|
|
text: o.text, |
|
|
|
|
height: o.height, |
|
|
|
|
items: o.items, |
|
|
|
|
value: o.value, |
|
|
|
|
value: value, |
|
|
|
|
numOfPage: 100, |
|
|
|
|
valueFormatter: o.valueFormatter, |
|
|
|
|
listeners: [{ |
|
|
|
|
eventName: BI.SearchMultiTextValueCombo.EVENT_CONFIRM, |
|
|
|
@ -112595,10 +112605,8 @@ BI.shortcut("bi.all_value_chooser_pane", BI.AllValueChooserPane);BI.AllValueMult
|
|
|
|
|
}, |
|
|
|
|
|
|
|
|
|
setValue: function (v) { |
|
|
|
|
this.combo.setValue({ |
|
|
|
|
type: BI.Selection.Multi, |
|
|
|
|
value: v || [] |
|
|
|
|
}); |
|
|
|
|
var value = this._digestValue(v); |
|
|
|
|
this.combo.setValue(value); |
|
|
|
|
}, |
|
|
|
|
|
|
|
|
|
getValue: function () { |
|
|
|
@ -112617,10 +112625,18 @@ BI.shortcut("bi.all_value_chooser_pane", BI.AllValueChooserPane);BI.AllValueMult
|
|
|
|
|
populate: function (items) { |
|
|
|
|
this.options.items = items; |
|
|
|
|
this.combo.populate.apply(this, arguments); |
|
|
|
|
}, |
|
|
|
|
|
|
|
|
|
_digestValue: function (v) { |
|
|
|
|
return { |
|
|
|
|
type: BI.Selection.Multi, |
|
|
|
|
value: v || [] |
|
|
|
|
}; |
|
|
|
|
} |
|
|
|
|
}); |
|
|
|
|
BI.AllValueMultiTextValueCombo.EVENT_CONFIRM = "AllValueMultiTextValueCombo.EVENT_CONFIRM"; |
|
|
|
|
BI.shortcut("bi.all_value_multi_text_value_combo", BI.AllValueMultiTextValueCombo);BI.AbstractTreeValueChooser = BI.inherit(BI.Widget, { |
|
|
|
|
BI.shortcut("bi.all_value_multi_text_value_combo", BI.AllValueMultiTextValueCombo); |
|
|
|
|
BI.AbstractTreeValueChooser = BI.inherit(BI.Widget, { |
|
|
|
|
|
|
|
|
|
_const: { |
|
|
|
|
perPage: 100 |
|
|
|
|