Browse Source

无JIRA任务 sign_editor支持显示值居左/居中/居右显示

es6
windy 4 years ago
parent
commit
464f4be63b
  1. 1
      changelog.md
  2. 3
      src/case/editor/editor.sign.js

1
changelog.md

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

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

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

Loading…
Cancel
Save