Browse Source

Pull request #1478: 无JIRA任务 sign_editor支持显示值居左/居中/居右显示

Merge in VISUAL/fineui from ~WINDY/fui:master to master

* commit '464f4be63bf612ef0bf3dce3bcda1fdbc2d1ceff':
  无JIRA任务 sign_editor支持显示值居左/居中/居右显示
es6
guy 4 years ago
parent
commit
d698825301
  1. 1
      changelog.md
  2. 3
      src/case/editor/editor.sign.js

1
changelog.md

@ -1,5 +1,6 @@
# 更新日志
2.0(2020-08)
- bi.sign_editor支持显示值居左/居中/居右显示
- bi.iframe新增EVENT_LOADED事件
- 修复了searcher在允许搜索的情况下输入空格直接退出搜索的问题
- 修复了复选下拉系列'点按空格添加完全匹配项'添加的是显示值而非实际值的问题

3
src/case/editor/editor.sign.js

@ -20,6 +20,7 @@ BI.SignEditor = BI.inherit(BI.Widget, {
allowBlank: true,
watermark: "",
errorText: "",
textAlign: "left",
height: 24
});
},
@ -49,7 +50,7 @@ BI.SignEditor = BI.inherit(BI.Widget, {
title: o.title,
warningTitle: o.warningTitle,
tipType: o.tipType,
textAlign: "left",
textAlign: o.textAlign,
height: o.height,
hgap: o.hgap,
handler: function () {

Loading…
Cancel
Save