|
|
|
@ -50422,13 +50422,13 @@ BI.FormulaEditor = BI.inherit(BI.Single, {
|
|
|
|
|
var fieldFormattedName = this.options.paramFormatter(fieldId) || "undefined"; |
|
|
|
|
var from = this.editor.getCursor(); |
|
|
|
|
// 解决插入字段由括号或其他特殊字符包围时分裂的bug,在两端以不可见字符包裹一下
|
|
|
|
|
var showName = fieldFormattedName.replaceAll(/^<!.*!>$/, function (str) { |
|
|
|
|
var showName = fieldFormattedName.replaceAll("^<!.*!>$", function (str) { |
|
|
|
|
return str.substring(2, str.length - 2); |
|
|
|
|
}); |
|
|
|
|
this.editor.replaceSelection("\u200b" + showName + "\u200b"); |
|
|
|
|
var to = this.editor.getCursor(); |
|
|
|
|
var className = "fieldName"; |
|
|
|
|
if (BI.isNotNull(fieldFormattedName.match(/^<!.*!>$/)) && !force) { |
|
|
|
|
if (BI.isNotNull(fieldFormattedName.match("^<!.*!>$")) && !force) { |
|
|
|
|
className = "error-field"; |
|
|
|
|
} |
|
|
|
|
this.editor.markText(from, to, {className: className, atomic: true, startStyle: "start", endStyle: "end", value: value}); |
|
|
|
@ -52514,6 +52514,8 @@ BI.shortcut("bi.image_button", BI.ImageButton);(function ($) {
|
|
|
|
|
var o = this.options, self = this; |
|
|
|
|
if (BI.isNumber(o.height) && !o.clear && !o.block) { |
|
|
|
|
this.element.css({height: o.height + "px", lineHeight: (o.height - 2) + "px"}); |
|
|
|
|
} else if (o.clear || o.block) { |
|
|
|
|
this.element.css({lineHeight: o.height + "px"}); |
|
|
|
|
} else { |
|
|
|
|
this.element.css({lineHeight: (o.height - 2) + "px"}); |
|
|
|
|
} |
|
|
|
@ -69769,7 +69771,7 @@ BI.ResizableTable = BI.inherit(BI.Widget, {
|
|
|
|
|
if (mouseMoveTracker.isDragging()) { |
|
|
|
|
start = true; |
|
|
|
|
offset += deltaX; |
|
|
|
|
size = BI.clamp(defaultSize + offset, 10, o.width - 15); |
|
|
|
|
size = BI.clamp(defaultSize + offset, 30, o.width - 40); |
|
|
|
|
|
|
|
|
|
self.regionResizerHandler.element.addClass("dragging"); |
|
|
|
|
self._setRegionResizerHandlerPosition(size - 3, 0); |
|
|
|
@ -69777,7 +69779,7 @@ BI.ResizableTable = BI.inherit(BI.Widget, {
|
|
|
|
|
|
|
|
|
|
}, function () { |
|
|
|
|
if (start === true) { |
|
|
|
|
o.regionColumnSize[0] = BI.clamp(size, 10, o.width - 15); |
|
|
|
|
o.regionColumnSize[0] = BI.clamp(size, 30, o.width - 40); |
|
|
|
|
self.table.setRegionColumnSize(o.regionColumnSize); |
|
|
|
|
if (o.isResizeAdapt === true) { |
|
|
|
|
var freezeColumnSize = self._getFreezeColumnSize(); |
|
|
|
@ -112857,6 +112859,9 @@ BI.shortcut("bi.all_value_chooser_pane", BI.AllValueChooserPane);BI.AbstractTree
|
|
|
|
|
|
|
|
|
|
_isMatch: function (parentValues, value, keyword) { |
|
|
|
|
var node = this._getTreeNode(parentValues, value); |
|
|
|
|
if (!node) { |
|
|
|
|
return false; |
|
|
|
|
} |
|
|
|
|
var find = BI.Func.getSearchResult([node.text || node.value], keyword); |
|
|
|
|
return find.find.length > 0 || find.match.length > 0; |
|
|
|
|
}, |
|
|
|
|