From e7b754e5b79e42ce2b4671829fb68109ffe50246 Mon Sep 17 00:00:00 2001 From: iapyang Date: Mon, 28 Aug 2017 20:14:06 +0800 Subject: [PATCH 1/2] add ui doc --- uidoc/.gitignore | 13 +++ uidoc/LICENSE | 21 +++++ uidoc/README.md | 2 + uidoc/SUMMARY.md | 25 ++++++ uidoc/book.json | 23 +++++ uidoc/detailed/bi.button/general.md | 2 + uidoc/detailed/bi.button/tooltip.md | 2 + uidoc/detailed/bi.multi_select_item.md | 2 + uidoc/detailed/bi.segment.md | 2 + uidoc/detailed/bi.single_select_item.md | 2 + uidoc/detailed/node.md | 2 + uidoc/detailed/table/bi.excel_table.md | 57 ++++++++++++ uidoc/detailed/table/bi.preview_table.md | 2 + uidoc/detailed/table/bi.responsive_table.md | 2 + uidoc/detailed/text_input/bi.clear_editor.md | 42 +++++++++ uidoc/detailed/text_input/bi.search_editor.md | 60 +++++++++++++ uidoc/detailed/text_input/bi.text_editor.md | 89 +++++++++++++++++++ uidoc/detailed/tree/bi.multi_tree_combo.md | 2 + uidoc/detailed/tree/bi.switch_tree.md | 2 + uidoc/gh.js | 5 ++ uidoc/package.json | 30 +++++++ 21 files changed, 387 insertions(+) create mode 100644 uidoc/.gitignore create mode 100644 uidoc/LICENSE create mode 100644 uidoc/README.md create mode 100644 uidoc/SUMMARY.md create mode 100644 uidoc/book.json create mode 100644 uidoc/detailed/bi.button/general.md create mode 100644 uidoc/detailed/bi.button/tooltip.md create mode 100644 uidoc/detailed/bi.multi_select_item.md create mode 100644 uidoc/detailed/bi.segment.md create mode 100644 uidoc/detailed/bi.single_select_item.md create mode 100644 uidoc/detailed/node.md create mode 100644 uidoc/detailed/table/bi.excel_table.md create mode 100644 uidoc/detailed/table/bi.preview_table.md create mode 100644 uidoc/detailed/table/bi.responsive_table.md create mode 100644 uidoc/detailed/text_input/bi.clear_editor.md create mode 100644 uidoc/detailed/text_input/bi.search_editor.md create mode 100644 uidoc/detailed/text_input/bi.text_editor.md create mode 100644 uidoc/detailed/tree/bi.multi_tree_combo.md create mode 100644 uidoc/detailed/tree/bi.switch_tree.md create mode 100644 uidoc/gh.js create mode 100644 uidoc/package.json diff --git a/uidoc/.gitignore b/uidoc/.gitignore new file mode 100644 index 000000000..44caa22de --- /dev/null +++ b/uidoc/.gitignore @@ -0,0 +1,13 @@ +.DS_Store +.svn +.sass-cache +.vscode +.tmp +node_modules +bower_components +tmp +dist +archive +archive.zip +*.log +_book \ No newline at end of file diff --git a/uidoc/LICENSE b/uidoc/LICENSE new file mode 100644 index 000000000..8fdf076ab --- /dev/null +++ b/uidoc/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2017 gittz + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/uidoc/README.md b/uidoc/README.md new file mode 100644 index 000000000..c8ed22556 --- /dev/null +++ b/uidoc/README.md @@ -0,0 +1,2 @@ +# FineUIdocs +FineUI的交互、前端以及视觉文档规范 diff --git a/uidoc/SUMMARY.md b/uidoc/SUMMARY.md new file mode 100644 index 000000000..bc7b53ac4 --- /dev/null +++ b/uidoc/SUMMARY.md @@ -0,0 +1,25 @@ +# Summary + +## 总览 +* [文档规范](README.md) + +## 详细控件 +* 按钮组 + * [通用按钮](detailed/bi.button/general.md) + * [带提示的按钮](detailed/bi.button/tooltip.md) +* [单选框](detailed/bi.single_select_item.md) +* [复选框](detailed/bi.multi_select_item.md) +* [node节点](detailed/node.md) +* [segment组件](detailed/bi.segment.md) +* 树形结构 + * [bi.multi_tree_combo](detailed/tree/bi.multi_tree_combo.md) + * [bi.switch_tree](detailed/tree/bi.switch_tree.md) +* 表格 + * [bi.preview_table](detailed/table/bi.preview_table.md) + * [bi.responsive_table](detailed/table/bi.responsive_table.md) + * [bi.excel_table](detailed/table/bi.excel_table.md) +* 文本框控件 + * [bi.text_editor](detailed/text_input/bi.text_editor.md) + * [bi.search_editor](detailed/text_input/bi.search_editor.md) + * [bi.clear_editor](detailed/text_input/bi.clear_editor.md) + diff --git a/uidoc/book.json b/uidoc/book.json new file mode 100644 index 000000000..b3fdd5aea --- /dev/null +++ b/uidoc/book.json @@ -0,0 +1,23 @@ +{ + "plugins": [ + "jsfiddle", + "splitter", + "theme-api" + ], + "pluginsConfig": { + "theme-default": { + "showLevel": true + }, + "jsfiddle": { + "type": "script", + "tabs": [ + "result", + "js", + "html" + ], + "height": "100", + "width": "500", + "fontColor": "00FF00" + } + } +} \ No newline at end of file diff --git a/uidoc/detailed/bi.button/general.md b/uidoc/detailed/bi.button/general.md new file mode 100644 index 000000000..94cb76a4b --- /dev/null +++ b/uidoc/detailed/bi.button/general.md @@ -0,0 +1,2 @@ +# 通用按钮 + diff --git a/uidoc/detailed/bi.button/tooltip.md b/uidoc/detailed/bi.button/tooltip.md new file mode 100644 index 000000000..97e017024 --- /dev/null +++ b/uidoc/detailed/bi.button/tooltip.md @@ -0,0 +1,2 @@ +# 带提示的按钮 + diff --git a/uidoc/detailed/bi.multi_select_item.md b/uidoc/detailed/bi.multi_select_item.md new file mode 100644 index 000000000..562f554c4 --- /dev/null +++ b/uidoc/detailed/bi.multi_select_item.md @@ -0,0 +1,2 @@ +# 复选框 + diff --git a/uidoc/detailed/bi.segment.md b/uidoc/detailed/bi.segment.md new file mode 100644 index 000000000..541ac523f --- /dev/null +++ b/uidoc/detailed/bi.segment.md @@ -0,0 +1,2 @@ +# segment组件 + diff --git a/uidoc/detailed/bi.single_select_item.md b/uidoc/detailed/bi.single_select_item.md new file mode 100644 index 000000000..ff75eac3a --- /dev/null +++ b/uidoc/detailed/bi.single_select_item.md @@ -0,0 +1,2 @@ +# 单选框 + diff --git a/uidoc/detailed/node.md b/uidoc/detailed/node.md new file mode 100644 index 000000000..fb1feee2c --- /dev/null +++ b/uidoc/detailed/node.md @@ -0,0 +1,2 @@ +# node节点 + diff --git a/uidoc/detailed/table/bi.excel_table.md b/uidoc/detailed/table/bi.excel_table.md new file mode 100644 index 000000000..1dea283d5 --- /dev/null +++ b/uidoc/detailed/table/bi.excel_table.md @@ -0,0 +1,57 @@ +# bi.excel_table + +{% method %} +[source](https://jsfiddle.net/fineui/cbmv07g4/) + +{% common %} +```javascript +BI.createWidget({ + type: "bi.excel_table", + element: "#wrapper", + width: 500, + columnSize: [200,200,200,200,200], + items: [ + [{ + type: "bi.label", + cls: "layout-bg1", + text: "第一行第一列" + }, { + type: "bi.label", + cls: "layout-bg2", + text: "第一行第二列" + }], + [{ + type: "bi.label", + cls: "layout-bg3", + text: "第二行第一列" + }, { + type: "bi.label", + cls: "layout-bg4", + text: "第二行第二列" + }] + ] +}); +``` + +{% endmethod %} + +| 参数 | 说明 | 类型 | 默认值 | +| ---------------- | ------------- | -------------------- | ----------------- | +| isNeedResize | 是否需要调整大小 | bool | false | +| isResizeAdapt | 是否调整时自适应 | bool | true | +| isNeedMerge | 是否需要合并单元格 | bool | false | +| mergeCols | 合并的单元格列号 | array | [] | +| mergeRule | 合并规则, 默认相等时合并 | function(row1, row2) | 默认row1 = row2 时合并 | +| columnSize | 单元格宽度集合 | array | [] | +| headerRowSize | 表头高度 | number | 37 | +| footerRowSize | 表尾高度 | number | 37 | +| rowSize | 普通单元格高度 | number | 37 | +| regionColumnSize | | bool | false | +| items | 子组件 | array | [] | + + + + + + + diff --git a/uidoc/detailed/table/bi.preview_table.md b/uidoc/detailed/table/bi.preview_table.md new file mode 100644 index 000000000..1024bd88d --- /dev/null +++ b/uidoc/detailed/table/bi.preview_table.md @@ -0,0 +1,2 @@ +# bi.preview_table + diff --git a/uidoc/detailed/table/bi.responsive_table.md b/uidoc/detailed/table/bi.responsive_table.md new file mode 100644 index 000000000..475b738fe --- /dev/null +++ b/uidoc/detailed/table/bi.responsive_table.md @@ -0,0 +1,2 @@ +# bi.responsive_table + diff --git a/uidoc/detailed/text_input/bi.clear_editor.md b/uidoc/detailed/text_input/bi.clear_editor.md new file mode 100644 index 000000000..2db9d44b4 --- /dev/null +++ b/uidoc/detailed/text_input/bi.clear_editor.md @@ -0,0 +1,42 @@ +# bi.clear_editor + +## 带清除按钮的输入框 + +{% method %} +[source](https://jsfiddle.net/fineui/ppgph3qu/) + +{% common %} +```javascript +BI.createWidget({ + type: 'bi.clear_editor', + cls: "bi-border", + element: '#wrapper', + width: 300, + watermark:"带清除按钮的输入框", +}); +``` + +{% endmethod %} + +##API + +| 参数 | 说明 | 类型 | 可选值 | 默认值 +| :------ |:------------- | :-----| :----|:----| +| hgap | 效果相当于文本框左右padding值 | number | | 4 | +| vgap | 效果相当于文本框上下padding值 | number | | 2 | +| lgap | 效果相当于文本框left-padding值 | number | | 0 | +| rgap | 效果相当于文本框right-padding值 | number | | 0 | +| tgap |效果相当于文本框top-padding值 | number | | 0 | +| bgap | 效果相当于文本框bottom-padding值 | number | | 0 | +| validationChecker | 输入较验函数 |function| | | +| quitChecker | 是否允许退出编辑函数 | function | | | +| mouseOut | | boolean | true,false | false | +| allowBlank | 是否允许空值 | boolean | true,false | false | +| watermark | 文本框placeholder | string | | null | +| value | 文本框默认值 | string | | | +| errorText | 错误提示 | string | | null | +| width | 文本框宽度 | number | | | +| height | 文本框高度 | number | | 30 | + +# + diff --git a/uidoc/detailed/text_input/bi.search_editor.md b/uidoc/detailed/text_input/bi.search_editor.md new file mode 100644 index 000000000..55a91b098 --- /dev/null +++ b/uidoc/detailed/text_input/bi.search_editor.md @@ -0,0 +1,60 @@ + +## bi.search_editor +### 搜索框 + +{% method %} +[source](https://jsfiddle.net/fineui/4a1rLppw/) + +{% common %} +```javascript +BI.createWidget({ + type: 'bi.search_editor', + element: '#wrapper', + width: 300, + watermark:"搜索", +}); +``` + +{% endmethod %} + +## bi.small_search_editor +### 小一号的搜索框 +##### height默认为24 + +{% method %} +[source](https://jsfiddle.net/fineui/wwzza22k/) + +{% common %} +```javascript +BI.createWidget({ + type: 'bi.search_editor', + element: '#wrapper', + width: 300, + watermark:"搜索", +}); +``` + +{% endmethod %} +##API + +| 参数 | 说明 | 类型 | 可选值 | 默认值 +| :------ |:------------- | :-----| :----|:----| +| hgap | 效果相当于文本框左右padding值 | number | | 4 | +| vgap | 效果相当于文本框上下padding值 | number | | 2 | +| lgap | 效果相当于文本框left-padding值 | number | | 0 | +| rgap | 效果相当于文本框right-padding值 | number | | 0 | +| tgap |效果相当于文本框top-padding值 | number | | 0 | +| bgap | 效果相当于文本框bottom-padding值 | number | | 0 | +| validationChecker | 输入较验函数 |function| | | +| quitChecker | 是否允许退出编辑函数 | function | | | +| mouseOut | | boolean | true,false | false | +| allowBlank | 是否允许空值 | boolean | true,false | false | +| watermark | 文本框placeholder | string | | null | +| value | 文本框默认值 | string | | | +| errorText | 错误提示 | string | | null | +| width | 文本框宽度 | number | | | +| height | 文本框高度 | number | | 30 | + +# + + diff --git a/uidoc/detailed/text_input/bi.text_editor.md b/uidoc/detailed/text_input/bi.text_editor.md new file mode 100644 index 000000000..eae568c6b --- /dev/null +++ b/uidoc/detailed/text_input/bi.text_editor.md @@ -0,0 +1,89 @@ +#bi.text_editor +#####通过鼠标或键盘输入字符 + +## 基础用法 + +{% method %} +[source](https://jsfiddle.net/fineui/cna5o200/) + +{% common %} +```javascript +BI.createWidget({ + type: "bi.text_editor", + element: "#wrapper", + width: 200, + height: 30, + watermark:"请输入内容" +}); +``` + +{% endmethod %} + +## 不可为空输入框 + +{% method %} +[source](https://jsfiddle.net/fineui/d7td9tfr/) + +{% common %} +```javascript +BI.createWidget({ + type: "bi.text_editor", + element: "#wrapper", + width: 200, + height: 30, + watermark:"这个不予许空", + value: "这是一个不可为空的输入框", + allowBlank: false, + errorText: "不允许为空" +}); +``` + +{% endmethod %} + +## 可为空输入框 + +{% method %} +[source](https://jsfiddle.net/fineui/kjmyg9ps/) + +{% common %} +```javascript +BI.createWidget({ + type: "bi.text_editor", + element: "#wrapper", + width: 200, + height: 30, + allowBlank: true, + errorText: "不能输入只输入a!", + validationChecker: function (v) { + if (v == "a") { + return false; + } + return true; + }, +}); +``` + +{% endmethod %} + +##API + +| 参数 | 说明 | 类型 | 可选值 | 默认值 +| :------ |:------------- | :-----| :----|:----| +| hgap | 效果相当于文本框左右padding值 | number | | 4 | +| vgap | 效果相当于文本框上下padding值 | number | | 2 | +| lgap | 效果相当于文本框left-padding值 | number | | 0 | +| rgap | 效果相当于文本框right-padding值 | number | | 0 | +| tgap |效果相当于文本框top-padding值 | number | | 0 | +| bgap | 效果相当于文本框bottom-padding值 | number | | 0 | +| validationChecker | 输入较验函数 |function| | | +| quitChecker | 是否允许退出编辑函数 | function | | | +| mouseOut | | boolean | true,false | false | +| allowBlank | 是否允许空值 | boolean | true,false | false | +| watermark | 文本框placeholder | string | | null | +| value | 文本框默认值 | string | | | +| errorText | 错误提示 | string | | null | +| width | 文本框宽度 | number | | | +| height | 文本框高度 | number | | 30 | + +# + diff --git a/uidoc/detailed/tree/bi.multi_tree_combo.md b/uidoc/detailed/tree/bi.multi_tree_combo.md new file mode 100644 index 000000000..821b51b8c --- /dev/null +++ b/uidoc/detailed/tree/bi.multi_tree_combo.md @@ -0,0 +1,2 @@ +# bi.multi_tree_combo + diff --git a/uidoc/detailed/tree/bi.switch_tree.md b/uidoc/detailed/tree/bi.switch_tree.md new file mode 100644 index 000000000..01f9fa009 --- /dev/null +++ b/uidoc/detailed/tree/bi.switch_tree.md @@ -0,0 +1,2 @@ +# bi.switch_tree + diff --git a/uidoc/gh.js b/uidoc/gh.js new file mode 100644 index 000000000..d77110a6a --- /dev/null +++ b/uidoc/gh.js @@ -0,0 +1,5 @@ +const gh = require('gh-pages'); + +gh.publish('_book', () => { + console.info('upload successfully'); +}); \ No newline at end of file diff --git a/uidoc/package.json b/uidoc/package.json new file mode 100644 index 000000000..c205aa179 --- /dev/null +++ b/uidoc/package.json @@ -0,0 +1,30 @@ +{ + "name": "fineuidocs", + "version": "1.0.0", + "description": "FineUI的交互、前端以及视觉文档规范", + "main": "index.js", + "scripts": { + "init": "gitbook init", + "serve": "gitbook serve", + "build": "gitbook build", + "gh": "gitbook build && node gh" + }, + "repository": { + "type": "git", + "url": "git+https://gittz@github.com/gittz/FineUIdocs.git" + }, + "author": "", + "license": "MIT", + "bugs": { + "url": "https://github.com/gittz/FineUIdocs/issues" + }, + "homepage": "https://github.com/gittz/FineUIdocs#readme", + "devDependencies": { + "gh-pages": "^1.0.0", + "gitbook-cli": "^2.3.2", + "gitbook-plugin-jsfiddle": "^1.0.0", + "gitbook-plugin-splitter": "0.0.8", + "gitbook-plugin-theme-api": "^1.1.2", + "gitbook-plugin-toggle-chapters": "0.0.3" + } +} From b69e5b6d3d7cbd06a6fe990a39c3ef6fb607ae70 Mon Sep 17 00:00:00 2001 From: iapyang Date: Mon, 28 Aug 2017 20:16:58 +0800 Subject: [PATCH 2/2] update docs --- docs/detailed/bi.button/general.html | 543 ++++++++++++++ docs/detailed/bi.button/tooltip.html | 545 ++++++++++++++ docs/detailed/bi.multi_select_item.html | 545 ++++++++++++++ docs/detailed/bi.segment.html | 543 ++++++++++++++ docs/detailed/bi.single_select_item.html | 545 ++++++++++++++ docs/detailed/node.html | 545 ++++++++++++++ docs/detailed/table/bi.excel_table.html | 651 ++++++++++++++++ docs/detailed/table/bi.preview_table.html | 543 ++++++++++++++ docs/detailed/table/bi.responsive_table.html | 545 ++++++++++++++ docs/detailed/text_input/bi.clear_editor.html | 675 +++++++++++++++++ .../detailed/text_input/bi.search_editor.html | 688 +++++++++++++++++ docs/detailed/text_input/bi.text_editor.html | 710 ++++++++++++++++++ docs/detailed/tree/bi.multi_tree_combo.html | 543 ++++++++++++++ docs/detailed/tree/bi.switch_tree.html | 543 ++++++++++++++ docs/gh.js | 5 + .../gitbook-plugin-theme-api/theme-api.css | 6 + .../gitbook-plugin-theme-api/theme-api.js | 1 + docs/index.html | 271 ++++++- docs/interaction/controls/input.html | 350 --------- docs/interaction/controls/input/readme.md | 1 - docs/interaction/controls/readme.html | 334 -------- docs/interaction/modules/readme.html | 334 -------- docs/interaction/readme.html | 334 -------- docs/interaction/rules/readme.html | 328 -------- docs/package.json | 8 +- docs/search_index.json | 2 +- 26 files changed, 8425 insertions(+), 1713 deletions(-) create mode 100644 docs/detailed/bi.button/general.html create mode 100644 docs/detailed/bi.button/tooltip.html create mode 100644 docs/detailed/bi.multi_select_item.html create mode 100644 docs/detailed/bi.segment.html create mode 100644 docs/detailed/bi.single_select_item.html create mode 100644 docs/detailed/node.html create mode 100644 docs/detailed/table/bi.excel_table.html create mode 100644 docs/detailed/table/bi.preview_table.html create mode 100644 docs/detailed/table/bi.responsive_table.html create mode 100644 docs/detailed/text_input/bi.clear_editor.html create mode 100644 docs/detailed/text_input/bi.search_editor.html create mode 100644 docs/detailed/text_input/bi.text_editor.html create mode 100644 docs/detailed/tree/bi.multi_tree_combo.html create mode 100644 docs/detailed/tree/bi.switch_tree.html create mode 100644 docs/gh.js create mode 100644 docs/gitbook/gitbook-plugin-theme-api/theme-api.css create mode 100644 docs/gitbook/gitbook-plugin-theme-api/theme-api.js delete mode 100644 docs/interaction/controls/input.html delete mode 100644 docs/interaction/controls/input/readme.md delete mode 100644 docs/interaction/controls/readme.html delete mode 100644 docs/interaction/modules/readme.html delete mode 100644 docs/interaction/readme.html delete mode 100644 docs/interaction/rules/readme.html diff --git a/docs/detailed/bi.button/general.html b/docs/detailed/bi.button/general.html new file mode 100644 index 000000000..aba14c86e --- /dev/null +++ b/docs/detailed/bi.button/general.html @@ -0,0 +1,543 @@ + + + + + + + 通用按钮 · GitBook + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ + + + + + + + +
+ +
+ +
+ + + + + + + + +
+
+ +
+
+ +
+ +

通用按钮

+ + +
+ +
+
+
+ +

results matching ""

+
    + +
    +
    + +

    No results matching ""

    + +
    +
    +
    + +
    +
    + +
    + + + + +
    + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/detailed/bi.button/tooltip.html b/docs/detailed/bi.button/tooltip.html new file mode 100644 index 000000000..8bd067d1c --- /dev/null +++ b/docs/detailed/bi.button/tooltip.html @@ -0,0 +1,545 @@ + + + + + + + 带提示的按钮 · GitBook + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + + + + + + + + +
    + +
    + +
    + + + + + + + + +
    +
    + +
    +
    + +
    + +

    带提示的按钮

    + + +
    + +
    +
    +
    + +

    results matching ""

    +
      + +
      +
      + +

      No results matching ""

      + +
      +
      +
      + +
      +
      + +
      + + + + +
      + + +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/detailed/bi.multi_select_item.html b/docs/detailed/bi.multi_select_item.html new file mode 100644 index 000000000..7c4001196 --- /dev/null +++ b/docs/detailed/bi.multi_select_item.html @@ -0,0 +1,545 @@ + + + + + + + 复选框 · GitBook + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      +
      + + + + + + + + +
      + +
      + +
      + + + + + + + + +
      +
      + +
      +
      + +
      + +

      复选框

      + + +
      + +
      +
      +
      + +

      results matching ""

      +
        + +
        +
        + +

        No results matching ""

        + +
        +
        +
        + +
        +
        + +
        + + + + +
        + + +
        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/detailed/bi.segment.html b/docs/detailed/bi.segment.html new file mode 100644 index 000000000..a7ff019e3 --- /dev/null +++ b/docs/detailed/bi.segment.html @@ -0,0 +1,543 @@ + + + + + + + segment组件 · GitBook + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        +
        + + + + + + + + +
        + +
        + +
        + + + + + + + + +
        +
        + +
        +
        + +
        + +

        segment组件

        + + +
        + +
        +
        +
        + +

        results matching ""

        +
          + +
          +
          + +

          No results matching ""

          + +
          +
          +
          + +
          +
          + +
          + + + + +
          + + +
          + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/detailed/bi.single_select_item.html b/docs/detailed/bi.single_select_item.html new file mode 100644 index 000000000..e428caafb --- /dev/null +++ b/docs/detailed/bi.single_select_item.html @@ -0,0 +1,545 @@ + + + + + + + 单选框 · GitBook + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
          +
          + + + + + + + + +
          + +
          + +
          + + + + + + + + +
          +
          + +
          +
          + +
          + +

          单选框

          + + +
          + +
          +
          +
          + +

          results matching ""

          +
            + +
            +
            + +

            No results matching ""

            + +
            +
            +
            + +
            +
            + +
            + + + + +
            + + +
            + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/detailed/node.html b/docs/detailed/node.html new file mode 100644 index 000000000..f598a8584 --- /dev/null +++ b/docs/detailed/node.html @@ -0,0 +1,545 @@ + + + + + + + node节点 · GitBook + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
            +
            + + + + + + + + +
            + +
            + +
            + + + + + + + + +
            +
            + +
            +
            + +
            + +

            node节点

            + + +
            + +
            +
            +
            + +

            results matching ""

            +
              + +
              +
              + +

              No results matching ""

              + +
              +
              +
              + +
              +
              + +
              + + + + +
              + + +
              + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/detailed/table/bi.excel_table.html b/docs/detailed/table/bi.excel_table.html new file mode 100644 index 000000000..c0f47f839 --- /dev/null +++ b/docs/detailed/table/bi.excel_table.html @@ -0,0 +1,651 @@ + + + + + + + bi.excel_table · GitBook + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
              +
              + + + + + + + + +
              + +
              + +
              + + + + + + + + +
              +
              + +
              +
              + +
              + +

              bi.excel_table

              +
              BI.createWidget({
              +  type: "bi.excel_table",
              +  element: "#wrapper",
              +  width: 500,
              +  columnSize: [200,200,200,200,200],
              +  items: [
              +    [{
              +      type: "bi.label",
              +      cls: "layout-bg1",
              +      text: "第一行第一列"
              +    }, {
              +      type: "bi.label",
              +      cls: "layout-bg2",
              +      text: "第一行第二列"
              +    }],
              +    [{
              +      type: "bi.label",
              +      cls: "layout-bg3",
              +      text: "第二行第一列"
              +    }, {
              +      type: "bi.label",
              +      cls: "layout-bg4",
              +      text: "第二行第二列"
              +    }]
              +  ] 
              +});
              +
              +
              + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
              参数说明类型默认值
              isNeedResize是否需要调整大小boolfalse
              isResizeAdapt是否调整时自适应booltrue
              isNeedMerge是否需要合并单元格boolfalse
              mergeCols合并的单元格列号array[]
              mergeRule合并规则, 默认相等时合并function(row1, row2)默认row1 = row2 时合并
              columnSize单元格宽度集合array[]
              headerRowSize表头高度number37
              footerRowSize表尾高度number37
              rowSize普通单元格高度number37
              regionColumnSizeboolfalse
              items子组件array[]
              + + +
              + +
              +
              +
              + +

              results matching ""

              +
                + +
                +
                + +

                No results matching ""

                + +
                +
                +
                + +
                +
                + +
                + + + + +
                + + +
                + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/detailed/table/bi.preview_table.html b/docs/detailed/table/bi.preview_table.html new file mode 100644 index 000000000..1db19b9da --- /dev/null +++ b/docs/detailed/table/bi.preview_table.html @@ -0,0 +1,543 @@ + + + + + + + bi.preview_table · GitBook + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                +
                + + + + + + + + +
                + +
                + +
                + + + + + + + + +
                +
                + +
                +
                + +
                + +

                bi.preview_table

                + + +
                + +
                +
                +
                + +

                results matching ""

                +
                  + +
                  +
                  + +

                  No results matching ""

                  + +
                  +
                  +
                  + +
                  +
                  + +
                  + + + + +
                  + + +
                  + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/detailed/table/bi.responsive_table.html b/docs/detailed/table/bi.responsive_table.html new file mode 100644 index 000000000..e441f133b --- /dev/null +++ b/docs/detailed/table/bi.responsive_table.html @@ -0,0 +1,545 @@ + + + + + + + bi.responsive_table · GitBook + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                  +
                  + + + + + + + + +
                  + +
                  + +
                  + + + + + + + + +
                  +
                  + +
                  +
                  + +
                  + +

                  bi.responsive_table

                  + + +
                  + +
                  +
                  +
                  + +

                  results matching ""

                  +
                    + +
                    +
                    + +

                    No results matching ""

                    + +
                    +
                    +
                    + +
                    +
                    + +
                    + + + + +
                    + + +
                    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/detailed/text_input/bi.clear_editor.html b/docs/detailed/text_input/bi.clear_editor.html new file mode 100644 index 000000000..ebbc557d8 --- /dev/null +++ b/docs/detailed/text_input/bi.clear_editor.html @@ -0,0 +1,675 @@ + + + + + + + bi.clear_editor · GitBook + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                    +
                    + + + + + + + + +
                    + +
                    + +
                    + + + + + + + + +
                    +
                    + +
                    +
                    + +
                    + +

                    bi.clear_editor

                    +

                    带清除按钮的输入框

                    +
                    BI.createWidget({
                    +    type: 'bi.clear_editor',
                    +    cls: "bi-border",
                    +    element: '#wrapper',
                    +    width: 300,
                    +    watermark:"带清除按钮的输入框",
                    +});
                    +
                    +
                    + +

                    API

                    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                    参数说明类型可选值默认值
                    hgap效果相当于文本框左右padding值number4
                    vgap效果相当于文本框上下padding值number2
                    lgap效果相当于文本框left-padding值number0
                    rgap效果相当于文本框right-padding值number0
                    tgap效果相当于文本框top-padding值number0
                    bgap效果相当于文本框bottom-padding值number0
                    validationChecker输入较验函数function
                    quitChecker是否允许退出编辑函数function
                    mouseOutbooleantrue,falsefalse
                    allowBlank是否允许空值booleantrue,falsefalse
                    watermark文本框placeholderstringnull
                    value文本框默认值string
                    errorText错误提示stringnull
                    width文本框宽度number
                    height文本框高度number30
                    +

                    #

                    + + +
                    + +
                    +
                    +
                    + +

                    results matching ""

                    +
                      + +
                      +
                      + +

                      No results matching ""

                      + +
                      +
                      +
                      + +
                      +
                      + +
                      + + + + +
                      + + +
                      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/detailed/text_input/bi.search_editor.html b/docs/detailed/text_input/bi.search_editor.html new file mode 100644 index 000000000..166c9ef42 --- /dev/null +++ b/docs/detailed/text_input/bi.search_editor.html @@ -0,0 +1,688 @@ + + + + + + + bi.search_editor · GitBook + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                      +
                      + + + + + + + + +
                      + +
                      + +
                      + + + + + + + + +
                      +
                      + +
                      +
                      + +
                      + +

                      bi.search_editor

                      +

                      搜索框

                      +
                      BI.createWidget({
                      +    type: 'bi.search_editor',
                      +    element: '#wrapper',
                      +    width: 300,
                      +    watermark:"搜索",
                      +});
                      +
                      +
                      + +

                      bi.small_search_editor

                      +

                      小一号的搜索框

                      +
                      height默认为24
                      +

                      BI.createWidget({
                      +    type: 'bi.search_editor',
                      +    element: '#wrapper',
                      +    width: 300,
                      +    watermark:"搜索",
                      +});
                      +
                      +
                      </div></div>

                      +

                      API

                      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                      参数说明类型可选值默认值
                      hgap效果相当于文本框左右padding值number4
                      vgap效果相当于文本框上下padding值number2
                      lgap效果相当于文本框left-padding值number0
                      rgap效果相当于文本框right-padding值number0
                      tgap效果相当于文本框top-padding值number0
                      bgap效果相当于文本框bottom-padding值number0
                      validationChecker输入较验函数function
                      quitChecker是否允许退出编辑函数function
                      mouseOutbooleantrue,falsefalse
                      allowBlank是否允许空值booleantrue,falsefalse
                      watermark文本框placeholderstringnull
                      value文本框默认值string
                      errorText错误提示stringnull
                      width文本框宽度number
                      height文本框高度number30
                      +

                      #

                      + + +
                      + +
                      +
                      +
                      + +

                      results matching ""

                      +
                        + +
                        +
                        + +

                        No results matching ""

                        + +
                        +
                        +
                        + +
                        +
                        + +
                        + + + + +
                        + + +
                        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/detailed/text_input/bi.text_editor.html b/docs/detailed/text_input/bi.text_editor.html new file mode 100644 index 000000000..6a1744136 --- /dev/null +++ b/docs/detailed/text_input/bi.text_editor.html @@ -0,0 +1,710 @@ + + + + + + + bi.text_editor · GitBook + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                        +
                        + + + + + + + + +
                        + +
                        + +
                        + + + + + + + + +
                        +
                        + +
                        +
                        + +
                        + +

                        bi.text_editor

                        +
                        通过鼠标或键盘输入字符
                        +

                        基础用法

                        +
                        BI.createWidget({
                        +  type: "bi.text_editor",
                        +  element: "#wrapper",
                        +  width: 200,
                        +  height: 30,
                        +  watermark:"请输入内容"
                        +});
                        +
                        +
                        + +

                        不可为空输入框

                        +
                        BI.createWidget({
                        +  type: "bi.text_editor",
                        +  element: "#wrapper",
                        +  width: 200,
                        +  height: 30,
                        +  watermark:"这个不予许空",
                        +  value: "这是一个不可为空的输入框",
                        +  allowBlank: false,
                        +  errorText:  "不允许为空"      
                        +});
                        +
                        +
                        + +

                        可为空输入框

                        +
                        BI.createWidget({
                        +  type: "bi.text_editor",
                        +  element: "#wrapper",
                        +  width: 200,
                        +  height: 30,
                        +  allowBlank: true,
                        +  errorText: "不能输入只输入a!",
                        +  validationChecker: function (v) {
                        +    if (v == "a") {
                        +      return false;
                        +    }
                        +    return true;
                        +  },
                        +});
                        +
                        +
                        + +

                        API

                        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                        参数说明类型可选值默认值
                        hgap效果相当于文本框左右padding值number4
                        vgap效果相当于文本框上下padding值number2
                        lgap效果相当于文本框left-padding值number0
                        rgap效果相当于文本框right-padding值number0
                        tgap效果相当于文本框top-padding值number0
                        bgap效果相当于文本框bottom-padding值number0
                        validationChecker输入较验函数function
                        quitChecker是否允许退出编辑函数function
                        mouseOutbooleantrue,falsefalse
                        allowBlank是否允许空值booleantrue,falsefalse
                        watermark文本框placeholderstringnull
                        value文本框默认值string
                        errorText错误提示stringnull
                        width文本框宽度number
                        height文本框高度number30
                        +

                        #

                        + + +
                        + +
                        +
                        +
                        + +

                        results matching ""

                        +
                          + +
                          +
                          + +

                          No results matching ""

                          + +
                          +
                          +
                          + +
                          +
                          + +
                          + + + + +
                          + + +
                          + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/detailed/tree/bi.multi_tree_combo.html b/docs/detailed/tree/bi.multi_tree_combo.html new file mode 100644 index 000000000..e5c9426b8 --- /dev/null +++ b/docs/detailed/tree/bi.multi_tree_combo.html @@ -0,0 +1,543 @@ + + + + + + + bi.multi_tree_combo · GitBook + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                          +
                          + + + + + + + + +
                          + +
                          + +
                          + + + + + + + + +
                          +
                          + +
                          +
                          + +
                          + +

                          bi.multi_tree_combo

                          + + +
                          + +
                          +
                          +
                          + +

                          results matching ""

                          +
                            + +
                            +
                            + +

                            No results matching ""

                            + +
                            +
                            +
                            + +
                            +
                            + +
                            + + + + +
                            + + +
                            + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/detailed/tree/bi.switch_tree.html b/docs/detailed/tree/bi.switch_tree.html new file mode 100644 index 000000000..92f78a82b --- /dev/null +++ b/docs/detailed/tree/bi.switch_tree.html @@ -0,0 +1,543 @@ + + + + + + + bi.switch_tree · GitBook + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                            +
                            + + + + + + + + +
                            + +
                            + +
                            + + + + + + + + +
                            +
                            + +
                            +
                            + +
                            + +

                            bi.switch_tree

                            + + +
                            + +
                            +
                            +
                            + +

                            results matching ""

                            +
                              + +
                              +
                              + +

                              No results matching ""

                              + +
                              +
                              +
                              + +
                              +
                              + +
                              + + + + +
                              + + +
                              + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/gh.js b/docs/gh.js new file mode 100644 index 000000000..d77110a6a --- /dev/null +++ b/docs/gh.js @@ -0,0 +1,5 @@ +const gh = require('gh-pages'); + +gh.publish('_book', () => { + console.info('upload successfully'); +}); \ No newline at end of file diff --git a/docs/gitbook/gitbook-plugin-theme-api/theme-api.css b/docs/gitbook/gitbook-plugin-theme-api/theme-api.css new file mode 100644 index 000000000..51f8b35a8 --- /dev/null +++ b/docs/gitbook/gitbook-plugin-theme-api/theme-api.css @@ -0,0 +1,6 @@ +/*! + * Preboot v2 + * + * Open sourced under MIT license by @mdo. + * Some variables and mixins from Bootstrap (Apache 2 license). + */.api-method{margin:30px -30px}.api-method:last-of-type{margin-bottom:0}.api-method .api-method-definition{padding:0 30px}.api-method .api-method-code{padding:30px 30px 15px;background-color:#FEFEFE;border-top:1px solid #F1EFEF;border-bottom:1px solid #F1EFEF}.api-method .api-method-code pre>code{white-space:pre-wrap;white-space:-moz- pre-wrap;white-space:- pre-wrap;white-space:-o- pre-wrap;word-wrap:break-word}.api-method:after{clear:both}.book.two-columns .api-method{position:relative;width:calc(100% + 60px)}.book.two-columns .api-method:after{content:" ";display:block;visibility:hidden;clear:both}.book.two-columns .api-method .api-method-title{margin-top:0}.book.two-columns .api-method .api-method-definition{float:left;width:50%}.book.two-columns .api-method .api-method-code{position:relative;float:left;width:50%;padding:30px 30px 15px;border-left:1px solid #F1EFEF;border-top:none;border-bottom:none;transition:opacity .3s ease}.book.two-columns .page-wrapper.comments-open-from-definition .api-method-code{opacity:.1}.book-header{padding:0;position:fixed;top:0;left:0;right:0;background-color:#FFF;border-bottom:1px solid rgba(0,0,0,.07);-webkit-transition:left 250ms ease;-moz-transition:left 250ms ease;-o-transition:left 250ms ease;transition:left 250ms ease}.book.with-summary .book-header{left:300px}@media (max-width:600px){.book.with-summary .book-header{left:0}}.book-header .btn.lang-switcher{text-transform:none;font-weight:500;border-radius:0}.book-header .btn.lang-switcher.active{background-color:#03677D;color:#FFF}#book-search-results .search-results{padding:20px 30px 0}#book-search-input{padding:5px;margin-top:0}.book .book-body .page-wrapper .page-inner .comments-section{max-width:calc(100% - 40px)}.book .book-body .page-wrapper .page-inner .comments-section .comments-area{z-index:1}.book .book-body .page-wrapper.comments-open-from-definition .page-inner{left:0!important}.color-theme-3 .dropdown-menu{background-color:#2D3134;border-color:#373B3E}.color-theme-3 .dropdown-menu .dropdown-caret .caret-inner{border-bottom:9px solid #2D3134}.color-theme-3 .dropdown-menu .buttons{border-color:#373B3E}.color-theme-3 .dropdown-menu .button{color:#D0D4D7}.color-theme-3 .dropdown-menu .button:hover{color:#EEE}.book.color-theme-3 .book-header{color:#D0D4D7;background:#272B2D}.book.color-theme-3 .book-header .btn{color:#D0D4D7}.book.color-theme-3 .book-header .btn:hover{color:#EEE;background:0 0}.book.color-theme-3 .book-header .btn.lang-switcher.active{background-color:#186469}.book.color-theme-3 .book-header .btn.lang-switcher.active:hover{background-color:#186469}.book.color-theme-3 .book-header h1{color:#EEE}.book.color-theme-3 .book-body section a{color:#3EAAB1}.book.color-theme-3 .book-body section .api-method-code{color:#EEE;background-color:#272B2D}.book.color-theme-3 .book-body section .api-method-code h1,.book.color-theme-3 .book-body section .api-method-code h2,.book.color-theme-3 .book-body section .api-method-code h3,.book.color-theme-3 .book-body section .api-method-code h4,.book.color-theme-3 .book-body section .api-method-code h5,.book.color-theme-3 .book-body section .api-method-code h6{color:#fff}.book.color-theme-3 .book-body section .api-method-code h6{color:#D0D4D7}.book.color-theme-3 .book-body section .api-method-code hr{background-color:#373B3E}.book.color-theme-3 .book-body section .api-method-code blockquote{border-color:#373B3E}.book.color-theme-3 .book-body section .api-method-code code,.book.color-theme-3 .book-body section .api-method-code pre{color:#EEE;background-color:#2D3134;border-radius:3px}.book.color-theme-3 .book-body section .api-method-code table{border-collapse:separate;border:1px solid #373B3E;border-radius:3px}.book.color-theme-3 .book-body section .api-method-code table td,.book.color-theme-3 .book-body section .api-method-code table th{border:none}.book.color-theme-3 .book-body section .api-method-code table th{border-bottom:1px solid #373B3E}.book.color-theme-3 .book-body section .api-method-code table tr{color:#EEE;background-color:transparent}.book.color-theme-3 .book-body section .api-method-code table tr:nth-child(2n){background-color:#2D3134}.book.color-theme-3 .book-body .page-wrapper .page-inner section.normal .api-method-code code .hljs,.book.color-theme-3 .book-body .page-wrapper .page-inner section.normal .api-method-code pre .hljs{display:block;overflow-x:auto;padding:.5em;background:#474949;color:#d1d9e1}.book.color-theme-3 .book-body .page-wrapper .page-inner section.normal .api-method-code code .hljs-comment,.book.color-theme-3 .book-body .page-wrapper .page-inner section.normal .api-method-code code .hljs-quote,.book.color-theme-3 .book-body .page-wrapper .page-inner section.normal .api-method-code pre .hljs-comment,.book.color-theme-3 .book-body .page-wrapper .page-inner section.normal .api-method-code pre .hljs-quote{color:#969896;font-style:italic}.book.color-theme-3 .book-body .page-wrapper .page-inner section.normal .api-method-code code .hljs-addition,.book.color-theme-3 .book-body .page-wrapper .page-inner section.normal .api-method-code code .hljs-keyword,.book.color-theme-3 .book-body .page-wrapper .page-inner section.normal .api-method-code code .hljs-literal,.book.color-theme-3 .book-body .page-wrapper .page-inner section.normal .api-method-code code .hljs-selector-tag,.book.color-theme-3 .book-body .page-wrapper .page-inner section.normal .api-method-code code .hljs-type,.book.color-theme-3 .book-body .page-wrapper .page-inner section.normal .api-method-code pre .hljs-addition,.book.color-theme-3 .book-body .page-wrapper .page-inner section.normal .api-method-code pre .hljs-keyword,.book.color-theme-3 .book-body .page-wrapper .page-inner section.normal .api-method-code pre .hljs-literal,.book.color-theme-3 .book-body .page-wrapper .page-inner section.normal .api-method-code pre .hljs-selector-tag,.book.color-theme-3 .book-body .page-wrapper .page-inner section.normal .api-method-code pre .hljs-type{color:#c9c}.book.color-theme-3 .book-body .page-wrapper .page-inner section.normal .api-method-code code .hljs-number,.book.color-theme-3 .book-body .page-wrapper .page-inner section.normal .api-method-code code .hljs-selector-attr,.book.color-theme-3 .book-body .page-wrapper .page-inner section.normal .api-method-code code .hljs-selector-pseudo,.book.color-theme-3 .book-body .page-wrapper .page-inner section.normal .api-method-code pre .hljs-number,.book.color-theme-3 .book-body .page-wrapper .page-inner section.normal .api-method-code pre .hljs-selector-attr,.book.color-theme-3 .book-body .page-wrapper .page-inner section.normal .api-method-code pre .hljs-selector-pseudo{color:#f99157}.book.color-theme-3 .book-body .page-wrapper .page-inner section.normal .api-method-code code .hljs-doctag,.book.color-theme-3 .book-body .page-wrapper .page-inner section.normal .api-method-code code .hljs-regexp,.book.color-theme-3 .book-body .page-wrapper .page-inner section.normal .api-method-code code .hljs-string,.book.color-theme-3 .book-body .page-wrapper .page-inner section.normal .api-method-code pre .hljs-doctag,.book.color-theme-3 .book-body .page-wrapper .page-inner section.normal .api-method-code pre .hljs-regexp,.book.color-theme-3 .book-body .page-wrapper .page-inner section.normal .api-method-code pre .hljs-string{color:#8abeb7}.book.color-theme-3 .book-body .page-wrapper .page-inner section.normal .api-method-code code .hljs-built_in,.book.color-theme-3 .book-body .page-wrapper .page-inner section.normal .api-method-code code .hljs-name,.book.color-theme-3 .book-body .page-wrapper .page-inner section.normal .api-method-code code .hljs-section,.book.color-theme-3 .book-body .page-wrapper .page-inner section.normal .api-method-code code .hljs-title,.book.color-theme-3 .book-body .page-wrapper .page-inner section.normal .api-method-code pre .hljs-built_in,.book.color-theme-3 .book-body .page-wrapper .page-inner section.normal .api-method-code pre .hljs-name,.book.color-theme-3 .book-body .page-wrapper .page-inner section.normal .api-method-code pre .hljs-section,.book.color-theme-3 .book-body .page-wrapper .page-inner section.normal .api-method-code pre .hljs-title{color:#b5bd68}.book.color-theme-3 .book-body .page-wrapper .page-inner section.normal .api-method-code code .hljs-class .hljs-title,.book.color-theme-3 .book-body .page-wrapper .page-inner section.normal .api-method-code code .hljs-selector-id,.book.color-theme-3 .book-body .page-wrapper .page-inner section.normal .api-method-code code .hljs-template-variable,.book.color-theme-3 .book-body .page-wrapper .page-inner section.normal .api-method-code code .hljs-variable,.book.color-theme-3 .book-body .page-wrapper .page-inner section.normal .api-method-code pre .hljs-class .hljs-title,.book.color-theme-3 .book-body .page-wrapper .page-inner section.normal .api-method-code pre .hljs-selector-id,.book.color-theme-3 .book-body .page-wrapper .page-inner section.normal .api-method-code pre .hljs-template-variable,.book.color-theme-3 .book-body .page-wrapper .page-inner section.normal .api-method-code pre .hljs-variable{color:#fc6}.book.color-theme-3 .book-body .page-wrapper .page-inner section.normal .api-method-code code .hljs-name,.book.color-theme-3 .book-body .page-wrapper .page-inner section.normal .api-method-code code .hljs-section,.book.color-theme-3 .book-body .page-wrapper .page-inner section.normal .api-method-code code .hljs-strong,.book.color-theme-3 .book-body .page-wrapper .page-inner section.normal .api-method-code pre .hljs-name,.book.color-theme-3 .book-body .page-wrapper .page-inner section.normal .api-method-code pre .hljs-section,.book.color-theme-3 .book-body .page-wrapper .page-inner section.normal .api-method-code pre .hljs-strong{font-weight:700}.book.color-theme-3 .book-body .page-wrapper .page-inner section.normal .api-method-code code .hljs-bullet,.book.color-theme-3 .book-body .page-wrapper .page-inner section.normal .api-method-code code .hljs-link,.book.color-theme-3 .book-body .page-wrapper .page-inner section.normal .api-method-code code .hljs-meta,.book.color-theme-3 .book-body .page-wrapper .page-inner section.normal .api-method-code code .hljs-subst,.book.color-theme-3 .book-body .page-wrapper .page-inner section.normal .api-method-code code .hljs-symbol,.book.color-theme-3 .book-body .page-wrapper .page-inner section.normal .api-method-code pre .hljs-bullet,.book.color-theme-3 .book-body .page-wrapper .page-inner section.normal .api-method-code pre .hljs-link,.book.color-theme-3 .book-body .page-wrapper .page-inner section.normal .api-method-code pre .hljs-meta,.book.color-theme-3 .book-body .page-wrapper .page-inner section.normal .api-method-code pre .hljs-subst,.book.color-theme-3 .book-body .page-wrapper .page-inner section.normal .api-method-code pre .hljs-symbol{color:#f99157}.book.color-theme-3 .book-body .page-wrapper .page-inner section.normal .api-method-code code .hljs-deletion,.book.color-theme-3 .book-body .page-wrapper .page-inner section.normal .api-method-code pre .hljs-deletion{color:#dc322f}.book.color-theme-3 .book-body .page-wrapper .page-inner section.normal .api-method-code code .hljs-formula,.book.color-theme-3 .book-body .page-wrapper .page-inner section.normal .api-method-code pre .hljs-formula{background:#eee8d5}.book.color-theme-3 .book-body .page-wrapper .page-inner section.normal .api-method-code code .hljs-attr,.book.color-theme-3 .book-body .page-wrapper .page-inner section.normal .api-method-code code .hljs-attribute,.book.color-theme-3 .book-body .page-wrapper .page-inner section.normal .api-method-code pre .hljs-attr,.book.color-theme-3 .book-body .page-wrapper .page-inner section.normal .api-method-code pre .hljs-attribute{color:#81a2be}.book.color-theme-3 .book-body .page-wrapper .page-inner section.normal .api-method-code code .hljs-emphasis,.book.color-theme-3 .book-body .page-wrapper .page-inner section.normal .api-method-code pre .hljs-emphasis{font-style:italic}.page-inner{max-width:100%;padding:0;margin-top:50px}.markdown-section{padding:20px 30px 0} \ No newline at end of file diff --git a/docs/gitbook/gitbook-plugin-theme-api/theme-api.js b/docs/gitbook/gitbook-plugin-theme-api/theme-api.js new file mode 100644 index 000000000..07e6c21f7 --- /dev/null +++ b/docs/gitbook/gitbook-plugin-theme-api/theme-api.js @@ -0,0 +1 @@ +require(["gitbook","jquery"],function(t,e){function n(e){r=t.storage.get("themeApi",{split:e.split,currentLang:null})}function a(){t.storage.set("themeApi",r),i()}function i(){e(".book").toggleClass("two-columns",r.split),s=e(".api-method-sample"),s.each(function(){var t=!(e(this).data("lang")==r.currentLang);e(this).toggleClass("hidden",t)})}function o(){t.toolbar.removeButtons(c),c=[],s=e(".api-method-sample");var n=[],i=!1;s.each(function(){var t,a,o=!1,s=e(this).data("lang"),c=e(this).data("name");s==r.currentLang&&(i=!0,o=!0),t=e.grep(n,function(t){return t.name==c}),a=!!t.length,a||n.push({name:c,lang:s,"default":o})}),n.reverse(),e.each(n,function(o,s){var l,g=s["default"]||!i&&o==n.length-1;l=t.toolbar.createButton({text:s.name,position:"right",className:"lang-switcher"+(g?" active":""),onClick:function(t){r.currentLang=s.lang,a(),e(".btn.lang-switcher.active").removeClass("active"),e(t.currentTarget).addClass("active")}}),c.push(l),g&&(r.currentLang=s.lang)})}var s,r,c=[],l=[{config:"light",text:"Light",id:0},{config:"dark",text:"Dark",id:3}];t.events.bind("start",function(e,i){var o=i["theme-api"];t.toolbar.createButton({icon:"fa fa-columns",label:"Change Layout",onClick:function(){r.split=!r.split,a()}}),t.fontsettings.setThemes(l),t.fontsettings.setTheme(o.theme),n(o)}),t.events.on("page.change",function(){o(),i()}),t.events.on("comment.toggled",function(e,n,a){if(n.parents(".api-method-definition").length){var i=t.state.$book.find(".page-wrapper");i.toggleClass("comments-open-from-definition",a&&r.split)}})}); diff --git a/docs/index.html b/docs/index.html index ce8b21fa8..a8e8f3d11 100644 --- a/docs/index.html +++ b/docs/index.html @@ -32,6 +32,10 @@ + + + + @@ -61,8 +65,6 @@ - - @@ -111,18 +113,49 @@ -
                            • 交互规范
                            • +
                            • 详细控件
                            • -
                            • +
                            • - + 2.1. - 交互规范 + 按钮组 + + + + + + - +
                            • + +
                            • + + 2.2. - 控件类 + 单选框 + + + + + +
                            • + +
                            • + + + + + 2.3. + + 复选框 + + + + + +
                            • + +
                            • + + + + + 2.4. + + node节点 + + + + + +
                            • + +
                            • + + + + + 2.5. + + segment组件 + + + + + +
                            • + +
                            • + + + + + 2.6. + + 树形结构 + + + + + + + +
                            • + +
                            • + + + + + 2.7. + + 表格 + + + + +
                                -
                              • +
                              • - + - 2.2.1. + 2.7.1. - 输入框 + bi.preview_table + + + + + +
                              • + +
                              • + + + + + 2.7.2. + + bi.responsive_table + + + + + +
                              • + +
                              • + + + + + 2.7.3. + + bi.excel_table @@ -166,14 +345,30 @@
                              • -
                              • +
                              • - + - 2.3. + 2.8. + + 文本框控件 + + + + + + + +
                              • + @@ -269,20 +484,14 @@ - - - - - - - + @@ -323,6 +532,10 @@ + + + + diff --git a/docs/interaction/controls/input.html b/docs/interaction/controls/input.html deleted file mode 100644 index 9662f1063..000000000 --- a/docs/interaction/controls/input.html +++ /dev/null @@ -1,350 +0,0 @@ - - - - - - - 输入框 · GitBook - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                                -
                                - - - - - - - - -
                                - -
                                - -
                                - - - - - - - - -
                                -
                                - -
                                -
                                - -
                                - -

                                输入框

                                -

                                不可为空输入框A

                                -
                                  -
                                • 目前组件暂不支持此交互
                                • -
                                -

                                不可为空输入框B

                                -

                                source

                                -

                                不可为空输入框C

                                -
                                  -
                                • 目前组件暂不支持此交互
                                • -
                                -

                                可为空输入框A

                                -

                                source

                                -

                                可为空输入框B

                                -

                                source

                                -

                                搜索框

                                -

                                source

                                - - -
                                - -
                                -
                                -
                                - -

                                results matching ""

                                -
                                  - -
                                  -
                                  - -

                                  No results matching ""

                                  - -
                                  -
                                  -
                                  - -
                                  -
                                  - -
                                  - - - - - - - - - - - - - - -
                                  - - -
                                  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/docs/interaction/controls/input/readme.md b/docs/interaction/controls/input/readme.md deleted file mode 100644 index 44a83de89..000000000 --- a/docs/interaction/controls/input/readme.md +++ /dev/null @@ -1 +0,0 @@ -## 输入框 \ No newline at end of file diff --git a/docs/interaction/controls/readme.html b/docs/interaction/controls/readme.html deleted file mode 100644 index 71abff099..000000000 --- a/docs/interaction/controls/readme.html +++ /dev/null @@ -1,334 +0,0 @@ - - - - - - - 控件类 · GitBook - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                                  -
                                  - - - - - - - - -
                                  - -
                                  - -
                                  - - - - - - - - -
                                  -
                                  - -
                                  -
                                  - -
                                  - -

                                  controls

                                  - - -
                                  - -
                                  -
                                  -
                                  - -

                                  results matching ""

                                  -
                                    - -
                                    -
                                    - -

                                    No results matching ""

                                    - -
                                    -
                                    -
                                    - -
                                    -
                                    - -
                                    - - - - - - - - - - - - - - -
                                    - - -
                                    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/docs/interaction/modules/readme.html b/docs/interaction/modules/readme.html deleted file mode 100644 index 4fd243ec0..000000000 --- a/docs/interaction/modules/readme.html +++ /dev/null @@ -1,334 +0,0 @@ - - - - - - - 模块类 · GitBook - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                                    -
                                    - - - - - - - - -
                                    - -
                                    - -
                                    - - - - - - - - -
                                    -
                                    - -
                                    -
                                    - -
                                    - -

                                    modules

                                    - - -
                                    - -
                                    -
                                    -
                                    - -

                                    results matching ""

                                    -
                                      - -
                                      -
                                      - -

                                      No results matching ""

                                      - -
                                      -
                                      -
                                      - -
                                      -
                                      - -
                                      - - - - - - - - - - - - - - -
                                      - - -
                                      - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/docs/interaction/readme.html b/docs/interaction/readme.html deleted file mode 100644 index 1541d7528..000000000 --- a/docs/interaction/readme.html +++ /dev/null @@ -1,334 +0,0 @@ - - - - - - - 交互规范 · GitBook - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                                      -
                                      - - - - - - - - -
                                      - -
                                      - -
                                      - - - - - - - - -
                                      -
                                      - -
                                      -
                                      - -
                                      - -

                                      interaction rules

                                      - - -
                                      - -
                                      -
                                      -
                                      - -

                                      results matching ""

                                      -
                                        - -
                                        -
                                        - -

                                        No results matching ""

                                        - -
                                        -
                                        -
                                        - -
                                        -
                                        - -
                                        - - - - - - - - - - - - - - -
                                        - - -
                                        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/docs/interaction/rules/readme.html b/docs/interaction/rules/readme.html deleted file mode 100644 index 241d30730..000000000 --- a/docs/interaction/rules/readme.html +++ /dev/null @@ -1,328 +0,0 @@ - - - - - - - 规则类 · GitBook - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                                        -
                                        - - - - - - - - -
                                        - -
                                        - -
                                        - - - - - - - - -
                                        -
                                        - -
                                        -
                                        - -
                                        - -

                                        rules

                                        - - -
                                        - -
                                        -
                                        -
                                        - -

                                        results matching ""

                                        -
                                          - -
                                          -
                                          - -

                                          No results matching ""

                                          - -
                                          -
                                          -
                                          - -
                                          -
                                          - -
                                          - - - - - - - - - - -
                                          - - -
                                          - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/docs/package.json b/docs/package.json index 7da4dac42..c205aa179 100644 --- a/docs/package.json +++ b/docs/package.json @@ -6,7 +6,8 @@ "scripts": { "init": "gitbook init", "serve": "gitbook serve", - "build": "gitbook build" + "build": "gitbook build", + "gh": "gitbook build && node gh" }, "repository": { "type": "git", @@ -19,8 +20,11 @@ }, "homepage": "https://github.com/gittz/FineUIdocs#readme", "devDependencies": { + "gh-pages": "^1.0.0", "gitbook-cli": "^2.3.2", "gitbook-plugin-jsfiddle": "^1.0.0", - "gitbook-plugin-splitter": "0.0.8" + "gitbook-plugin-splitter": "0.0.8", + "gitbook-plugin-theme-api": "^1.1.2", + "gitbook-plugin-toggle-chapters": "0.0.3" } } diff --git a/docs/search_index.json b/docs/search_index.json index c0ef32275..e19cec72f 100644 --- a/docs/search_index.json +++ b/docs/search_index.json @@ -1 +1 @@ -{"index":{"version":"0.5.12","fields":[{"name":"title","boost":10},{"name":"keywords","boost":15},{"name":"body","boost":1}],"ref":"url","documentStore":{"store":{"./":["fineuidoc","fineui的交互、前端以及视觉文档规范","文档规范"],"interaction/readme.html":["interact","rule","交互规范"],"interaction/controls/readme.html":["control","控件类"],"interaction/controls/input.html":["sourc","不可为空输入框a","不可为空输入框b","不可为空输入框c","可为空输入框a","可为空输入框b","搜索框","目前组件暂不支持此交互","输入框"],"interaction/modules/readme.html":["modul","模块类"],"interaction/rules/readme.html":["rule","规则类"]},"length":6},"tokenStore":{"root":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"e":{"docs":{},"u":{"docs":{},"i":{"docs":{},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{"./":{"ref":"./","tf":0.5}}}}},"的":{"docs":{},"交":{"docs":{},"互":{"docs":{},"、":{"docs":{},"前":{"docs":{},"端":{"docs":{},"以":{"docs":{},"及":{"docs":{},"视":{"docs":{},"觉":{"docs":{},"文":{"docs":{},"档":{"docs":{},"规":{"docs":{},"范":{"docs":{"./":{"ref":"./","tf":0.5}}}}}}}}}}}}}}}}}}}}}},"文":{"docs":{},"档":{"docs":{},"规":{"docs":{},"范":{"docs":{"./":{"ref":"./","tf":10}}}}}},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"interaction/readme.html":{"ref":"interaction/readme.html","tf":0.5}}}}}}}}}},"r":{"docs":{},"u":{"docs":{},"l":{"docs":{},"e":{"docs":{"interaction/readme.html":{"ref":"interaction/readme.html","tf":0.5},"interaction/rules/readme.html":{"ref":"interaction/rules/readme.html","tf":1}}}}}},"交":{"docs":{},"互":{"docs":{},"规":{"docs":{},"范":{"docs":{"interaction/readme.html":{"ref":"interaction/readme.html","tf":10}}}}}},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{},"r":{"docs":{},"o":{"docs":{},"l":{"docs":{"interaction/controls/readme.html":{"ref":"interaction/controls/readme.html","tf":1}}}}}}}}},"控":{"docs":{},"件":{"docs":{},"类":{"docs":{"interaction/controls/readme.html":{"ref":"interaction/controls/readme.html","tf":10}}}}},"s":{"docs":{},"o":{"docs":{},"u":{"docs":{},"r":{"docs":{},"c":{"docs":{"interaction/controls/input.html":{"ref":"interaction/controls/input.html","tf":0.3076923076923077}}}}}}},"不":{"docs":{},"可":{"docs":{},"为":{"docs":{},"空":{"docs":{},"输":{"docs":{},"入":{"docs":{},"框":{"docs":{},"a":{"docs":{"interaction/controls/input.html":{"ref":"interaction/controls/input.html","tf":0.07692307692307693}}},"b":{"docs":{"interaction/controls/input.html":{"ref":"interaction/controls/input.html","tf":0.07692307692307693}}},"c":{"docs":{"interaction/controls/input.html":{"ref":"interaction/controls/input.html","tf":0.07692307692307693}}}}}}}}}},"可":{"docs":{},"为":{"docs":{},"空":{"docs":{},"输":{"docs":{},"入":{"docs":{},"框":{"docs":{},"a":{"docs":{"interaction/controls/input.html":{"ref":"interaction/controls/input.html","tf":0.07692307692307693}}},"b":{"docs":{"interaction/controls/input.html":{"ref":"interaction/controls/input.html","tf":0.07692307692307693}}}}}}}}},"搜":{"docs":{},"索":{"docs":{},"框":{"docs":{"interaction/controls/input.html":{"ref":"interaction/controls/input.html","tf":0.07692307692307693}}}}},"目":{"docs":{},"前":{"docs":{},"组":{"docs":{},"件":{"docs":{},"暂":{"docs":{},"不":{"docs":{},"支":{"docs":{},"持":{"docs":{},"此":{"docs":{},"交":{"docs":{},"互":{"docs":{"interaction/controls/input.html":{"ref":"interaction/controls/input.html","tf":0.15384615384615385}}}}}}}}}}}}},"输":{"docs":{},"入":{"docs":{},"框":{"docs":{"interaction/controls/input.html":{"ref":"interaction/controls/input.html","tf":10.076923076923077}}}}},"m":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"l":{"docs":{"interaction/modules/readme.html":{"ref":"interaction/modules/readme.html","tf":1}}}}}}},"模":{"docs":{},"块":{"docs":{},"类":{"docs":{"interaction/modules/readme.html":{"ref":"interaction/modules/readme.html","tf":10}}}}},"规":{"docs":{},"则":{"docs":{},"类":{"docs":{"interaction/rules/readme.html":{"ref":"interaction/rules/readme.html","tf":10}}}}}},"length":21},"corpusTokens":["control","fineuidoc","fineui的交互、前端以及视觉文档规范","interact","modul","rule","sourc","不可为空输入框a","不可为空输入框b","不可为空输入框c","交互规范","可为空输入框a","可为空输入框b","控件类","搜索框","文档规范","模块类","目前组件暂不支持此交互","规则类","输入框"],"pipeline":["stopWordFilter","stemmer"]},"store":{"./":{"url":"./","title":"文档规范","keywords":"","body":"FineUIdocs\nFineUI的交互、前端以及视觉文档规范\n"},"interaction/readme.html":{"url":"interaction/readme.html","title":"交互规范","keywords":"","body":"interaction rules\n"},"interaction/controls/readme.html":{"url":"interaction/controls/readme.html","title":"控件类","keywords":"","body":"controls\n"},"interaction/controls/input.html":{"url":"interaction/controls/input.html","title":"输入框","keywords":"","body":"输入框\n不可为空输入框A\n\n目前组件暂不支持此交互\n\n不可为空输入框B\nsource\n不可为空输入框C\n\n目前组件暂不支持此交互\n\n可为空输入框A\nsource\n可为空输入框B\nsource\n搜索框\nsource\n"},"interaction/modules/readme.html":{"url":"interaction/modules/readme.html","title":"模块类","keywords":"","body":"modules\n"},"interaction/rules/readme.html":{"url":"interaction/rules/readme.html","title":"规则类","keywords":"","body":"rules\n"}}} \ No newline at end of file +{"index":{"version":"0.5.12","fields":[{"name":"title","boost":10},{"name":"keywords","boost":15},{"name":"body","boost":1}],"ref":"url","documentStore":{"store":{"./":["fineuidoc","fineui的交互、前端以及视觉文档规范","文档规范"],"detailed/bi.button/general.html":["通用按钮"],"detailed/bi.button/tooltip.html":["带提示的按钮"],"detailed/bi.single_select_item.html":["单选框"],"detailed/bi.multi_select_item.html":["复选框"],"detailed/node.html":["node节点"],"detailed/bi.segment.html":["segment组件"],"detailed/tree/bi.multi_tree_combo.html":["bi.multi_tree_combo"],"detailed/tree/bi.switch_tree.html":["bi.switch_tre"],"detailed/table/bi.preview_table.html":["bi.preview_t"],"detailed/table/bi.responsive_table.html":["bi.responsive_t"],"detailed/table/bi.excel_table.html":["\"#wrapper\",","\"bi.excel_table\",","\"bi.label\",","\"layout","\"第一行第一列\"","\"第一行第二列\"","\"第二行第一列\"","\"第二行第二列\"","37","500,","=","[","[200,200,200,200,200],","[]","[{","]","array","bg1\",","bg2\",","bg3\",","bg4\",","bi.createwidget({","bi.excel_t","bool","cls:","columns","columnsize:","element:","fals","footerrows","function(row1,","headerrows","isneedmerg","isneedres","isresizeadapt","item","items:","mergecol","mergerul","number","regioncolumns","row2","row2)","rowsiz","sourc","text:","true","type:","width:","{","});","},","}]","}],","单元格宽度集合","参数","合并的单元格列号","合并规则,","子组件","时合并","是否调整时自适应","是否需要合并单元格","是否需要调整大小","普通单元格高度","类型","表头高度","表尾高度","说明","默认row1","默认值","默认相等时合并"],"detailed/text_input/bi.text_editor.html":["\"#wrapper\",","\"a\")","\"bi.text_editor\",","\"不允许为空\"","\"不能输入只输入a!\",","\"这是一个不可为空的输入框\",","#","(v","(v)","0","2","200,","30","30,","4","==","allowblank","allowblank:","api","bgap","bi.createwidget({","bi.text_editor","boolean","element:","errortext","errortext:","fals","false,","false;","function","height","height:","hgap","lgap","mouseout","null","number","padding值","quitcheck","return","rgap","sourc","string","tgap","true,","true,fals","true;","type:","validationcheck","validationchecker:","valu","value:","vgap","watermark","watermark:\"请输入内容\"","watermark:\"这个不予许空\",","width","width:","{","}","});","},","不可为空输入框","参数","可为空输入框","可选值","基础用法","效果相当于文本框bottom","效果相当于文本框left","效果相当于文本框right","效果相当于文本框top","效果相当于文本框上下padding值","效果相当于文本框左右padding值","文本框placehold","文本框宽度","文本框高度","文本框默认值","是否允许空值","是否允许退出编辑函数","类型","说明","输入较验函数","通过鼠标或键盘输入字符","错误提示","默认值"],"detailed/text_input/bi.search_editor.html":["#","'#wrapper',","'bi.search_editor',","0","2","30","300,","4","allowblank","api","bgap","bi.createwidget({","bi.search_editor","bi.small_search_editor","boolean","element:","errortext","fals","function","height","height默认为24","hgap","lgap","mouseout","null","number","padding值","quitcheck","rgap","sourc","string","tgap","true,fals","type:","validationcheck","valu","vgap","watermark","watermark:\"搜索\",","width","width:","});","参数","可选值","小一号的搜索框","搜索框","效果相当于文本框bottom","效果相当于文本框left","效果相当于文本框right","效果相当于文本框top","效果相当于文本框上下padding值","效果相当于文本框左右padding值","文本框placehold","文本框宽度","文本框高度","文本框默认值","是否允许空值","是否允许退出编辑函数","类型","说明","输入较验函数","错误提示","默认值"],"detailed/text_input/bi.clear_editor.html":["\"bi","#","'#wrapper',","'bi.clear_editor',","0","2","30","300,","4","allowblank","api","bgap","bi.clear_editor","bi.createwidget({","boolean","border\",","cls:","element:","errortext","fals","function","height","hgap","lgap","mouseout","null","number","padding值","quitcheck","rgap","sourc","string","tgap","true,fals","type:","validationcheck","valu","vgap","watermark","watermark:\"带清除按钮的输入框\",","width","width:","});","参数","可选值","带清除按钮的输入框","效果相当于文本框bottom","效果相当于文本框left","效果相当于文本框right","效果相当于文本框top","效果相当于文本框上下padding值","效果相当于文本框左右padding值","文本框placehold","文本框宽度","文本框高度","文本框默认值","是否允许空值","是否允许退出编辑函数","类型","说明","输入较验函数","错误提示","默认值"]},"length":15},"tokenStore":{"root":{"0":{"docs":{"detailed/text_input/bi.text_editor.html":{"ref":"detailed/text_input/bi.text_editor.html","tf":0.030303030303030304},"detailed/text_input/bi.search_editor.html":{"ref":"detailed/text_input/bi.search_editor.html","tf":0.043010752688172046},"detailed/text_input/bi.clear_editor.html":{"ref":"detailed/text_input/bi.clear_editor.html","tf":0.04819277108433735}}},"2":{"0":{"0":{"docs":{},",":{"docs":{"detailed/text_input/bi.text_editor.html":{"ref":"detailed/text_input/bi.text_editor.html","tf":0.022727272727272728}}}},"docs":{}},"docs":{"detailed/text_input/bi.text_editor.html":{"ref":"detailed/text_input/bi.text_editor.html","tf":0.007575757575757576},"detailed/text_input/bi.search_editor.html":{"ref":"detailed/text_input/bi.search_editor.html","tf":0.010752688172043012},"detailed/text_input/bi.clear_editor.html":{"ref":"detailed/text_input/bi.clear_editor.html","tf":0.012048192771084338}}},"3":{"0":{"0":{"docs":{},",":{"docs":{"detailed/text_input/bi.search_editor.html":{"ref":"detailed/text_input/bi.search_editor.html","tf":0.021505376344086023},"detailed/text_input/bi.clear_editor.html":{"ref":"detailed/text_input/bi.clear_editor.html","tf":0.012048192771084338}}}},"docs":{"detailed/text_input/bi.text_editor.html":{"ref":"detailed/text_input/bi.text_editor.html","tf":0.007575757575757576},"detailed/text_input/bi.search_editor.html":{"ref":"detailed/text_input/bi.search_editor.html","tf":0.010752688172043012},"detailed/text_input/bi.clear_editor.html":{"ref":"detailed/text_input/bi.clear_editor.html","tf":0.012048192771084338}},",":{"docs":{"detailed/text_input/bi.text_editor.html":{"ref":"detailed/text_input/bi.text_editor.html","tf":0.022727272727272728}}}},"7":{"docs":{"detailed/table/bi.excel_table.html":{"ref":"detailed/table/bi.excel_table.html","tf":0.02912621359223301}}},"docs":{}},"4":{"docs":{"detailed/text_input/bi.text_editor.html":{"ref":"detailed/text_input/bi.text_editor.html","tf":0.007575757575757576},"detailed/text_input/bi.search_editor.html":{"ref":"detailed/text_input/bi.search_editor.html","tf":0.010752688172043012},"detailed/text_input/bi.clear_editor.html":{"ref":"detailed/text_input/bi.clear_editor.html","tf":0.012048192771084338}}},"5":{"0":{"0":{"docs":{},",":{"docs":{"detailed/table/bi.excel_table.html":{"ref":"detailed/table/bi.excel_table.html","tf":0.009708737864077669}}}},"docs":{}},"docs":{}},"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"e":{"docs":{},"u":{"docs":{},"i":{"docs":{},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{"./":{"ref":"./","tf":0.5}}}}},"的":{"docs":{},"交":{"docs":{},"互":{"docs":{},"、":{"docs":{},"前":{"docs":{},"端":{"docs":{},"以":{"docs":{},"及":{"docs":{},"视":{"docs":{},"觉":{"docs":{},"文":{"docs":{},"档":{"docs":{},"规":{"docs":{},"范":{"docs":{"./":{"ref":"./","tf":0.5}}}}}}}}}}}}}}}}}}}}},"a":{"docs":{},"l":{"docs":{},"s":{"docs":{"detailed/table/bi.excel_table.html":{"ref":"detailed/table/bi.excel_table.html","tf":0.02912621359223301},"detailed/text_input/bi.text_editor.html":{"ref":"detailed/text_input/bi.text_editor.html","tf":0.015151515151515152},"detailed/text_input/bi.search_editor.html":{"ref":"detailed/text_input/bi.search_editor.html","tf":0.021505376344086023},"detailed/text_input/bi.clear_editor.html":{"ref":"detailed/text_input/bi.clear_editor.html","tf":0.024096385542168676}},"e":{"docs":{},",":{"docs":{"detailed/text_input/bi.text_editor.html":{"ref":"detailed/text_input/bi.text_editor.html","tf":0.007575757575757576}}},";":{"docs":{"detailed/text_input/bi.text_editor.html":{"ref":"detailed/text_input/bi.text_editor.html","tf":0.007575757575757576}}}}}}},"o":{"docs":{},"o":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"r":{"docs":{},"o":{"docs":{},"w":{"docs":{},"s":{"docs":{"detailed/table/bi.excel_table.html":{"ref":"detailed/table/bi.excel_table.html","tf":0.009708737864077669}}}}}}}}}}},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{"detailed/text_input/bi.text_editor.html":{"ref":"detailed/text_input/bi.text_editor.html","tf":0.022727272727272728},"detailed/text_input/bi.search_editor.html":{"ref":"detailed/text_input/bi.search_editor.html","tf":0.021505376344086023},"detailed/text_input/bi.clear_editor.html":{"ref":"detailed/text_input/bi.clear_editor.html","tf":0.024096385542168676}},"(":{"docs":{},"r":{"docs":{},"o":{"docs":{},"w":{"1":{"docs":{},",":{"docs":{"detailed/table/bi.excel_table.html":{"ref":"detailed/table/bi.excel_table.html","tf":0.009708737864077669}}}},"docs":{}}}}}}}}}}}}},"文":{"docs":{},"档":{"docs":{},"规":{"docs":{},"范":{"docs":{"./":{"ref":"./","tf":10}}}}},"本":{"docs":{},"框":{"docs":{},"p":{"docs":{},"l":{"docs":{},"a":{"docs":{},"c":{"docs":{},"e":{"docs":{},"h":{"docs":{},"o":{"docs":{},"l":{"docs":{},"d":{"docs":{"detailed/text_input/bi.text_editor.html":{"ref":"detailed/text_input/bi.text_editor.html","tf":0.007575757575757576},"detailed/text_input/bi.search_editor.html":{"ref":"detailed/text_input/bi.search_editor.html","tf":0.010752688172043012},"detailed/text_input/bi.clear_editor.html":{"ref":"detailed/text_input/bi.clear_editor.html","tf":0.012048192771084338}}}}}}}}}}},"宽":{"docs":{},"度":{"docs":{"detailed/text_input/bi.text_editor.html":{"ref":"detailed/text_input/bi.text_editor.html","tf":0.007575757575757576},"detailed/text_input/bi.search_editor.html":{"ref":"detailed/text_input/bi.search_editor.html","tf":0.010752688172043012},"detailed/text_input/bi.clear_editor.html":{"ref":"detailed/text_input/bi.clear_editor.html","tf":0.012048192771084338}}}},"高":{"docs":{},"度":{"docs":{"detailed/text_input/bi.text_editor.html":{"ref":"detailed/text_input/bi.text_editor.html","tf":0.007575757575757576},"detailed/text_input/bi.search_editor.html":{"ref":"detailed/text_input/bi.search_editor.html","tf":0.010752688172043012},"detailed/text_input/bi.clear_editor.html":{"ref":"detailed/text_input/bi.clear_editor.html","tf":0.012048192771084338}}}},"默":{"docs":{},"认":{"docs":{},"值":{"docs":{"detailed/text_input/bi.text_editor.html":{"ref":"detailed/text_input/bi.text_editor.html","tf":0.007575757575757576},"detailed/text_input/bi.search_editor.html":{"ref":"detailed/text_input/bi.search_editor.html","tf":0.010752688172043012},"detailed/text_input/bi.clear_editor.html":{"ref":"detailed/text_input/bi.clear_editor.html","tf":0.012048192771084338}}}}}}}},"通":{"docs":{},"用":{"docs":{},"按":{"docs":{},"钮":{"docs":{"detailed/bi.button/general.html":{"ref":"detailed/bi.button/general.html","tf":11}}}}},"过":{"docs":{},"鼠":{"docs":{},"标":{"docs":{},"或":{"docs":{},"键":{"docs":{},"盘":{"docs":{},"输":{"docs":{},"入":{"docs":{},"字":{"docs":{},"符":{"docs":{"detailed/text_input/bi.text_editor.html":{"ref":"detailed/text_input/bi.text_editor.html","tf":0.007575757575757576}}}}}}}}}}}}},"带":{"docs":{},"提":{"docs":{},"示":{"docs":{},"的":{"docs":{},"按":{"docs":{},"钮":{"docs":{"detailed/bi.button/tooltip.html":{"ref":"detailed/bi.button/tooltip.html","tf":11}}}}}}},"清":{"docs":{},"除":{"docs":{},"按":{"docs":{},"钮":{"docs":{},"的":{"docs":{},"输":{"docs":{},"入":{"docs":{},"框":{"docs":{"detailed/text_input/bi.clear_editor.html":{"ref":"detailed/text_input/bi.clear_editor.html","tf":0.012048192771084338}}}}}}}}}}},"单":{"docs":{},"选":{"docs":{},"框":{"docs":{"detailed/bi.single_select_item.html":{"ref":"detailed/bi.single_select_item.html","tf":11}}}},"元":{"docs":{},"格":{"docs":{},"宽":{"docs":{},"度":{"docs":{},"集":{"docs":{},"合":{"docs":{"detailed/table/bi.excel_table.html":{"ref":"detailed/table/bi.excel_table.html","tf":0.009708737864077669}}}}}}}}},"复":{"docs":{},"选":{"docs":{},"框":{"docs":{"detailed/bi.multi_select_item.html":{"ref":"detailed/bi.multi_select_item.html","tf":11}}}}},"n":{"docs":{},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{},"节":{"docs":{},"点":{"docs":{"detailed/node.html":{"ref":"detailed/node.html","tf":11}}}}}}},"u":{"docs":{},"m":{"docs":{},"b":{"docs":{},"e":{"docs":{},"r":{"docs":{"detailed/table/bi.excel_table.html":{"ref":"detailed/table/bi.excel_table.html","tf":0.02912621359223301},"detailed/text_input/bi.text_editor.html":{"ref":"detailed/text_input/bi.text_editor.html","tf":0.06060606060606061},"detailed/text_input/bi.search_editor.html":{"ref":"detailed/text_input/bi.search_editor.html","tf":0.08602150537634409},"detailed/text_input/bi.clear_editor.html":{"ref":"detailed/text_input/bi.clear_editor.html","tf":0.0963855421686747}}}}}},"l":{"docs":{},"l":{"docs":{"detailed/text_input/bi.text_editor.html":{"ref":"detailed/text_input/bi.text_editor.html","tf":0.015151515151515152},"detailed/text_input/bi.search_editor.html":{"ref":"detailed/text_input/bi.search_editor.html","tf":0.021505376344086023},"detailed/text_input/bi.clear_editor.html":{"ref":"detailed/text_input/bi.clear_editor.html","tf":0.024096385542168676}}}}}},"s":{"docs":{},"e":{"docs":{},"g":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"组":{"docs":{},"件":{"docs":{"detailed/bi.segment.html":{"ref":"detailed/bi.segment.html","tf":11}}}}}}}}}},"o":{"docs":{},"u":{"docs":{},"r":{"docs":{},"c":{"docs":{"detailed/table/bi.excel_table.html":{"ref":"detailed/table/bi.excel_table.html","tf":0.009708737864077669},"detailed/text_input/bi.text_editor.html":{"ref":"detailed/text_input/bi.text_editor.html","tf":0.022727272727272728},"detailed/text_input/bi.search_editor.html":{"ref":"detailed/text_input/bi.search_editor.html","tf":0.021505376344086023},"detailed/text_input/bi.clear_editor.html":{"ref":"detailed/text_input/bi.clear_editor.html","tf":0.012048192771084338}}}}}},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{"detailed/text_input/bi.text_editor.html":{"ref":"detailed/text_input/bi.text_editor.html","tf":0.022727272727272728},"detailed/text_input/bi.search_editor.html":{"ref":"detailed/text_input/bi.search_editor.html","tf":0.03225806451612903},"detailed/text_input/bi.clear_editor.html":{"ref":"detailed/text_input/bi.clear_editor.html","tf":0.03614457831325301}}}}}}}},"b":{"docs":{},"i":{"docs":{},".":{"docs":{},"m":{"docs":{},"u":{"docs":{},"l":{"docs":{},"t":{"docs":{},"i":{"docs":{},"_":{"docs":{},"t":{"docs":{},"r":{"docs":{},"e":{"docs":{},"e":{"docs":{},"_":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"b":{"docs":{},"o":{"docs":{"detailed/tree/bi.multi_tree_combo.html":{"ref":"detailed/tree/bi.multi_tree_combo.html","tf":11}}}}}}}}}}}}}}}}}},"s":{"docs":{},"w":{"docs":{},"i":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{},"_":{"docs":{},"t":{"docs":{},"r":{"docs":{},"e":{"docs":{"detailed/tree/bi.switch_tree.html":{"ref":"detailed/tree/bi.switch_tree.html","tf":11}}}}}}}}}}},"e":{"docs":{},"a":{"docs":{},"r":{"docs":{},"c":{"docs":{},"h":{"docs":{},"_":{"docs":{},"e":{"docs":{},"d":{"docs":{},"i":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{"detailed/text_input/bi.search_editor.html":{"ref":"detailed/text_input/bi.search_editor.html","tf":10.010752688172044}}}}}}}}}}}}}},"m":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},"_":{"docs":{},"s":{"docs":{},"e":{"docs":{},"a":{"docs":{},"r":{"docs":{},"c":{"docs":{},"h":{"docs":{},"_":{"docs":{},"e":{"docs":{},"d":{"docs":{},"i":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{"detailed/text_input/bi.search_editor.html":{"ref":"detailed/text_input/bi.search_editor.html","tf":0.010752688172043012}}}}}}}}}}}}}}}}}}}}},"p":{"docs":{},"r":{"docs":{},"e":{"docs":{},"v":{"docs":{},"i":{"docs":{},"e":{"docs":{},"w":{"docs":{},"_":{"docs":{},"t":{"docs":{"detailed/table/bi.preview_table.html":{"ref":"detailed/table/bi.preview_table.html","tf":11}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"p":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"i":{"docs":{},"v":{"docs":{},"e":{"docs":{},"_":{"docs":{},"t":{"docs":{"detailed/table/bi.responsive_table.html":{"ref":"detailed/table/bi.responsive_table.html","tf":11}}}}}}}}}}}}}},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"w":{"docs":{},"i":{"docs":{},"d":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"(":{"docs":{},"{":{"docs":{"detailed/table/bi.excel_table.html":{"ref":"detailed/table/bi.excel_table.html","tf":0.009708737864077669},"detailed/text_input/bi.text_editor.html":{"ref":"detailed/text_input/bi.text_editor.html","tf":0.022727272727272728},"detailed/text_input/bi.search_editor.html":{"ref":"detailed/text_input/bi.search_editor.html","tf":0.021505376344086023},"detailed/text_input/bi.clear_editor.html":{"ref":"detailed/text_input/bi.clear_editor.html","tf":0.012048192771084338}}}}}}}}}}}}}}},"l":{"docs":{},"e":{"docs":{},"a":{"docs":{},"r":{"docs":{},"_":{"docs":{},"e":{"docs":{},"d":{"docs":{},"i":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{"detailed/text_input/bi.clear_editor.html":{"ref":"detailed/text_input/bi.clear_editor.html","tf":10.012048192771084}}}}}}}}}}}}}},"e":{"docs":{},"x":{"docs":{},"c":{"docs":{},"e":{"docs":{},"l":{"docs":{},"_":{"docs":{},"t":{"docs":{"detailed/table/bi.excel_table.html":{"ref":"detailed/table/bi.excel_table.html","tf":10.009708737864077}}}}}}}}},"t":{"docs":{},"e":{"docs":{},"x":{"docs":{},"t":{"docs":{},"_":{"docs":{},"e":{"docs":{},"d":{"docs":{},"i":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{"detailed/text_input/bi.text_editor.html":{"ref":"detailed/text_input/bi.text_editor.html","tf":10.007575757575758}}}}}}}}}}}}}}},"g":{"1":{"docs":{},"\"":{"docs":{},",":{"docs":{"detailed/table/bi.excel_table.html":{"ref":"detailed/table/bi.excel_table.html","tf":0.009708737864077669}}}}},"2":{"docs":{},"\"":{"docs":{},",":{"docs":{"detailed/table/bi.excel_table.html":{"ref":"detailed/table/bi.excel_table.html","tf":0.009708737864077669}}}}},"3":{"docs":{},"\"":{"docs":{},",":{"docs":{"detailed/table/bi.excel_table.html":{"ref":"detailed/table/bi.excel_table.html","tf":0.009708737864077669}}}}},"4":{"docs":{},"\"":{"docs":{},",":{"docs":{"detailed/table/bi.excel_table.html":{"ref":"detailed/table/bi.excel_table.html","tf":0.009708737864077669}}}}},"docs":{},"a":{"docs":{},"p":{"docs":{"detailed/text_input/bi.text_editor.html":{"ref":"detailed/text_input/bi.text_editor.html","tf":0.007575757575757576},"detailed/text_input/bi.search_editor.html":{"ref":"detailed/text_input/bi.search_editor.html","tf":0.010752688172043012},"detailed/text_input/bi.clear_editor.html":{"ref":"detailed/text_input/bi.clear_editor.html","tf":0.012048192771084338}}}}},"o":{"docs":{},"o":{"docs":{},"l":{"docs":{"detailed/table/bi.excel_table.html":{"ref":"detailed/table/bi.excel_table.html","tf":0.038834951456310676}},"e":{"docs":{},"a":{"docs":{},"n":{"docs":{"detailed/text_input/bi.text_editor.html":{"ref":"detailed/text_input/bi.text_editor.html","tf":0.015151515151515152},"detailed/text_input/bi.search_editor.html":{"ref":"detailed/text_input/bi.search_editor.html","tf":0.021505376344086023},"detailed/text_input/bi.clear_editor.html":{"ref":"detailed/text_input/bi.clear_editor.html","tf":0.024096385542168676}}}}}}},"r":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{},"\"":{"docs":{},",":{"docs":{"detailed/text_input/bi.clear_editor.html":{"ref":"detailed/text_input/bi.clear_editor.html","tf":0.012048192771084338}}}}}}}}}},"\"":{"docs":{},"#":{"docs":{},"w":{"docs":{},"r":{"docs":{},"a":{"docs":{},"p":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"\"":{"docs":{},",":{"docs":{"detailed/table/bi.excel_table.html":{"ref":"detailed/table/bi.excel_table.html","tf":0.009708737864077669},"detailed/text_input/bi.text_editor.html":{"ref":"detailed/text_input/bi.text_editor.html","tf":0.022727272727272728}}}}}}}}}}}},"b":{"docs":{},"i":{"docs":{"detailed/text_input/bi.clear_editor.html":{"ref":"detailed/text_input/bi.clear_editor.html","tf":0.012048192771084338}},".":{"docs":{},"e":{"docs":{},"x":{"docs":{},"c":{"docs":{},"e":{"docs":{},"l":{"docs":{},"_":{"docs":{},"t":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"\"":{"docs":{},",":{"docs":{"detailed/table/bi.excel_table.html":{"ref":"detailed/table/bi.excel_table.html","tf":0.009708737864077669}}}}}}}}}}}}}}},"l":{"docs":{},"a":{"docs":{},"b":{"docs":{},"e":{"docs":{},"l":{"docs":{},"\"":{"docs":{},",":{"docs":{"detailed/table/bi.excel_table.html":{"ref":"detailed/table/bi.excel_table.html","tf":0.038834951456310676}}}}}}}}},"t":{"docs":{},"e":{"docs":{},"x":{"docs":{},"t":{"docs":{},"_":{"docs":{},"e":{"docs":{},"d":{"docs":{},"i":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"\"":{"docs":{},",":{"docs":{"detailed/text_input/bi.text_editor.html":{"ref":"detailed/text_input/bi.text_editor.html","tf":0.022727272727272728}}}}}}}}}}}}}}}}}},"l":{"docs":{},"a":{"docs":{},"y":{"docs":{},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{"detailed/table/bi.excel_table.html":{"ref":"detailed/table/bi.excel_table.html","tf":0.038834951456310676}}}}}}}},"第":{"docs":{},"一":{"docs":{},"行":{"docs":{},"第":{"docs":{},"一":{"docs":{},"列":{"docs":{},"\"":{"docs":{"detailed/table/bi.excel_table.html":{"ref":"detailed/table/bi.excel_table.html","tf":0.009708737864077669}}}}},"二":{"docs":{},"列":{"docs":{},"\"":{"docs":{"detailed/table/bi.excel_table.html":{"ref":"detailed/table/bi.excel_table.html","tf":0.009708737864077669}}}}}}}},"二":{"docs":{},"行":{"docs":{},"第":{"docs":{},"一":{"docs":{},"列":{"docs":{},"\"":{"docs":{"detailed/table/bi.excel_table.html":{"ref":"detailed/table/bi.excel_table.html","tf":0.009708737864077669}}}}},"二":{"docs":{},"列":{"docs":{},"\"":{"docs":{"detailed/table/bi.excel_table.html":{"ref":"detailed/table/bi.excel_table.html","tf":0.009708737864077669}}}}}}}}},"a":{"docs":{},"\"":{"docs":{},")":{"docs":{"detailed/text_input/bi.text_editor.html":{"ref":"detailed/text_input/bi.text_editor.html","tf":0.007575757575757576}}}}},"不":{"docs":{},"允":{"docs":{},"许":{"docs":{},"为":{"docs":{},"空":{"docs":{},"\"":{"docs":{"detailed/text_input/bi.text_editor.html":{"ref":"detailed/text_input/bi.text_editor.html","tf":0.007575757575757576}}}}}}},"能":{"docs":{},"输":{"docs":{},"入":{"docs":{},"只":{"docs":{},"输":{"docs":{},"入":{"docs":{},"a":{"docs":{},"!":{"docs":{},"\"":{"docs":{},",":{"docs":{"detailed/text_input/bi.text_editor.html":{"ref":"detailed/text_input/bi.text_editor.html","tf":0.007575757575757576}}}}}}}}}}}}},"这":{"docs":{},"是":{"docs":{},"一":{"docs":{},"个":{"docs":{},"不":{"docs":{},"可":{"docs":{},"为":{"docs":{},"空":{"docs":{},"的":{"docs":{},"输":{"docs":{},"入":{"docs":{},"框":{"docs":{},"\"":{"docs":{},",":{"docs":{"detailed/text_input/bi.text_editor.html":{"ref":"detailed/text_input/bi.text_editor.html","tf":0.007575757575757576}}}}}}}}}}}}}}}}},"=":{"docs":{"detailed/table/bi.excel_table.html":{"ref":"detailed/table/bi.excel_table.html","tf":0.009708737864077669}},"=":{"docs":{"detailed/text_input/bi.text_editor.html":{"ref":"detailed/text_input/bi.text_editor.html","tf":0.007575757575757576}}}},"[":{"2":{"0":{"0":{"docs":{},",":{"2":{"0":{"0":{"docs":{},",":{"2":{"0":{"0":{"docs":{},",":{"2":{"0":{"0":{"docs":{},",":{"2":{"0":{"0":{"docs":{},"]":{"docs":{},",":{"docs":{"detailed/table/bi.excel_table.html":{"ref":"detailed/table/bi.excel_table.html","tf":0.009708737864077669}}}}},"docs":{}},"docs":{}},"docs":{}}},"docs":{}},"docs":{}},"docs":{}}},"docs":{}},"docs":{}},"docs":{}}},"docs":{}},"docs":{}},"docs":{}}},"docs":{}},"docs":{}},"docs":{"detailed/table/bi.excel_table.html":{"ref":"detailed/table/bi.excel_table.html","tf":0.009708737864077669}},"]":{"docs":{"detailed/table/bi.excel_table.html":{"ref":"detailed/table/bi.excel_table.html","tf":0.02912621359223301}}},"{":{"docs":{"detailed/table/bi.excel_table.html":{"ref":"detailed/table/bi.excel_table.html","tf":0.019417475728155338}}}},"]":{"docs":{"detailed/table/bi.excel_table.html":{"ref":"detailed/table/bi.excel_table.html","tf":0.009708737864077669}}},"a":{"docs":{},"r":{"docs":{},"r":{"docs":{},"a":{"docs":{},"y":{"docs":{"detailed/table/bi.excel_table.html":{"ref":"detailed/table/bi.excel_table.html","tf":0.02912621359223301}}}}}},"l":{"docs":{},"l":{"docs":{},"o":{"docs":{},"w":{"docs":{},"b":{"docs":{},"l":{"docs":{},"a":{"docs":{},"n":{"docs":{},"k":{"docs":{"detailed/text_input/bi.text_editor.html":{"ref":"detailed/text_input/bi.text_editor.html","tf":0.007575757575757576},"detailed/text_input/bi.search_editor.html":{"ref":"detailed/text_input/bi.search_editor.html","tf":0.010752688172043012},"detailed/text_input/bi.clear_editor.html":{"ref":"detailed/text_input/bi.clear_editor.html","tf":0.012048192771084338}},":":{"docs":{"detailed/text_input/bi.text_editor.html":{"ref":"detailed/text_input/bi.text_editor.html","tf":0.015151515151515152}}}}}}}}}}}},"p":{"docs":{},"i":{"docs":{"detailed/text_input/bi.text_editor.html":{"ref":"detailed/text_input/bi.text_editor.html","tf":0.007575757575757576},"detailed/text_input/bi.search_editor.html":{"ref":"detailed/text_input/bi.search_editor.html","tf":0.010752688172043012},"detailed/text_input/bi.clear_editor.html":{"ref":"detailed/text_input/bi.clear_editor.html","tf":0.012048192771084338}}}}},"c":{"docs":{},"l":{"docs":{},"s":{"docs":{},":":{"docs":{"detailed/table/bi.excel_table.html":{"ref":"detailed/table/bi.excel_table.html","tf":0.038834951456310676},"detailed/text_input/bi.clear_editor.html":{"ref":"detailed/text_input/bi.clear_editor.html","tf":0.012048192771084338}}}}},"o":{"docs":{},"l":{"docs":{},"u":{"docs":{},"m":{"docs":{},"n":{"docs":{},"s":{"docs":{"detailed/table/bi.excel_table.html":{"ref":"detailed/table/bi.excel_table.html","tf":0.009708737864077669}},"i":{"docs":{},"z":{"docs":{},"e":{"docs":{},":":{"docs":{"detailed/table/bi.excel_table.html":{"ref":"detailed/table/bi.excel_table.html","tf":0.009708737864077669}}}}}}}}}}}}},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},":":{"docs":{"detailed/table/bi.excel_table.html":{"ref":"detailed/table/bi.excel_table.html","tf":0.009708737864077669},"detailed/text_input/bi.text_editor.html":{"ref":"detailed/text_input/bi.text_editor.html","tf":0.022727272727272728},"detailed/text_input/bi.search_editor.html":{"ref":"detailed/text_input/bi.search_editor.html","tf":0.021505376344086023},"detailed/text_input/bi.clear_editor.html":{"ref":"detailed/text_input/bi.clear_editor.html","tf":0.012048192771084338}}}}}}}}},"r":{"docs":{},"r":{"docs":{},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{},"e":{"docs":{},"x":{"docs":{},"t":{"docs":{"detailed/text_input/bi.text_editor.html":{"ref":"detailed/text_input/bi.text_editor.html","tf":0.007575757575757576},"detailed/text_input/bi.search_editor.html":{"ref":"detailed/text_input/bi.search_editor.html","tf":0.010752688172043012},"detailed/text_input/bi.clear_editor.html":{"ref":"detailed/text_input/bi.clear_editor.html","tf":0.012048192771084338}},":":{"docs":{"detailed/text_input/bi.text_editor.html":{"ref":"detailed/text_input/bi.text_editor.html","tf":0.015151515151515152}}}}}}}}}}}},"h":{"docs":{},"e":{"docs":{},"a":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{},"r":{"docs":{},"o":{"docs":{},"w":{"docs":{},"s":{"docs":{"detailed/table/bi.excel_table.html":{"ref":"detailed/table/bi.excel_table.html","tf":0.009708737864077669}}}}}}}}}},"i":{"docs":{},"g":{"docs":{},"h":{"docs":{},"t":{"docs":{"detailed/text_input/bi.text_editor.html":{"ref":"detailed/text_input/bi.text_editor.html","tf":0.007575757575757576},"detailed/text_input/bi.search_editor.html":{"ref":"detailed/text_input/bi.search_editor.html","tf":0.010752688172043012},"detailed/text_input/bi.clear_editor.html":{"ref":"detailed/text_input/bi.clear_editor.html","tf":0.012048192771084338}},":":{"docs":{"detailed/text_input/bi.text_editor.html":{"ref":"detailed/text_input/bi.text_editor.html","tf":0.022727272727272728}}},"默":{"docs":{},"认":{"docs":{},"为":{"2":{"4":{"docs":{"detailed/text_input/bi.search_editor.html":{"ref":"detailed/text_input/bi.search_editor.html","tf":0.010752688172043012}}},"docs":{}},"docs":{}}}}}}}}},"g":{"docs":{},"a":{"docs":{},"p":{"docs":{"detailed/text_input/bi.text_editor.html":{"ref":"detailed/text_input/bi.text_editor.html","tf":0.007575757575757576},"detailed/text_input/bi.search_editor.html":{"ref":"detailed/text_input/bi.search_editor.html","tf":0.010752688172043012},"detailed/text_input/bi.clear_editor.html":{"ref":"detailed/text_input/bi.clear_editor.html","tf":0.012048192771084338}}}}}},"i":{"docs":{},"s":{"docs":{},"n":{"docs":{},"e":{"docs":{},"e":{"docs":{},"d":{"docs":{},"m":{"docs":{},"e":{"docs":{},"r":{"docs":{},"g":{"docs":{"detailed/table/bi.excel_table.html":{"ref":"detailed/table/bi.excel_table.html","tf":0.009708737864077669}}}}}},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{"detailed/table/bi.excel_table.html":{"ref":"detailed/table/bi.excel_table.html","tf":0.009708737864077669}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"i":{"docs":{},"z":{"docs":{},"e":{"docs":{},"a":{"docs":{},"d":{"docs":{},"a":{"docs":{},"p":{"docs":{},"t":{"docs":{"detailed/table/bi.excel_table.html":{"ref":"detailed/table/bi.excel_table.html","tf":0.009708737864077669}}}}}}}}}}}}}},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{"detailed/table/bi.excel_table.html":{"ref":"detailed/table/bi.excel_table.html","tf":0.009708737864077669}},"s":{"docs":{},":":{"docs":{"detailed/table/bi.excel_table.html":{"ref":"detailed/table/bi.excel_table.html","tf":0.009708737864077669}}}}}}}},"m":{"docs":{},"e":{"docs":{},"r":{"docs":{},"g":{"docs":{},"e":{"docs":{},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{"detailed/table/bi.excel_table.html":{"ref":"detailed/table/bi.excel_table.html","tf":0.009708737864077669}}}}},"r":{"docs":{},"u":{"docs":{},"l":{"docs":{"detailed/table/bi.excel_table.html":{"ref":"detailed/table/bi.excel_table.html","tf":0.009708737864077669}}}}}}}}},"o":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{"detailed/text_input/bi.text_editor.html":{"ref":"detailed/text_input/bi.text_editor.html","tf":0.007575757575757576},"detailed/text_input/bi.search_editor.html":{"ref":"detailed/text_input/bi.search_editor.html","tf":0.010752688172043012},"detailed/text_input/bi.clear_editor.html":{"ref":"detailed/text_input/bi.clear_editor.html","tf":0.012048192771084338}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"g":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},"u":{"docs":{},"m":{"docs":{},"n":{"docs":{},"s":{"docs":{"detailed/table/bi.excel_table.html":{"ref":"detailed/table/bi.excel_table.html","tf":0.009708737864077669}}}}}}}}}}}}},"t":{"docs":{},"u":{"docs":{},"r":{"docs":{},"n":{"docs":{"detailed/text_input/bi.text_editor.html":{"ref":"detailed/text_input/bi.text_editor.html","tf":0.015151515151515152}}}}}}},"o":{"docs":{},"w":{"2":{"docs":{"detailed/table/bi.excel_table.html":{"ref":"detailed/table/bi.excel_table.html","tf":0.009708737864077669}},")":{"docs":{"detailed/table/bi.excel_table.html":{"ref":"detailed/table/bi.excel_table.html","tf":0.009708737864077669}}}},"docs":{},"s":{"docs":{},"i":{"docs":{},"z":{"docs":{"detailed/table/bi.excel_table.html":{"ref":"detailed/table/bi.excel_table.html","tf":0.009708737864077669}}}}}}},"g":{"docs":{},"a":{"docs":{},"p":{"docs":{"detailed/text_input/bi.text_editor.html":{"ref":"detailed/text_input/bi.text_editor.html","tf":0.007575757575757576},"detailed/text_input/bi.search_editor.html":{"ref":"detailed/text_input/bi.search_editor.html","tf":0.010752688172043012},"detailed/text_input/bi.clear_editor.html":{"ref":"detailed/text_input/bi.clear_editor.html","tf":0.012048192771084338}}}}}},"t":{"docs":{},"e":{"docs":{},"x":{"docs":{},"t":{"docs":{},":":{"docs":{"detailed/table/bi.excel_table.html":{"ref":"detailed/table/bi.excel_table.html","tf":0.038834951456310676}}}}}},"r":{"docs":{},"u":{"docs":{},"e":{"docs":{"detailed/table/bi.excel_table.html":{"ref":"detailed/table/bi.excel_table.html","tf":0.009708737864077669}},",":{"docs":{"detailed/text_input/bi.text_editor.html":{"ref":"detailed/text_input/bi.text_editor.html","tf":0.007575757575757576}},"f":{"docs":{},"a":{"docs":{},"l":{"docs":{},"s":{"docs":{"detailed/text_input/bi.text_editor.html":{"ref":"detailed/text_input/bi.text_editor.html","tf":0.015151515151515152},"detailed/text_input/bi.search_editor.html":{"ref":"detailed/text_input/bi.search_editor.html","tf":0.021505376344086023},"detailed/text_input/bi.clear_editor.html":{"ref":"detailed/text_input/bi.clear_editor.html","tf":0.024096385542168676}}}}}}},";":{"docs":{"detailed/text_input/bi.text_editor.html":{"ref":"detailed/text_input/bi.text_editor.html","tf":0.007575757575757576}}}}}},"y":{"docs":{},"p":{"docs":{},"e":{"docs":{},":":{"docs":{"detailed/table/bi.excel_table.html":{"ref":"detailed/table/bi.excel_table.html","tf":0.04854368932038835},"detailed/text_input/bi.text_editor.html":{"ref":"detailed/text_input/bi.text_editor.html","tf":0.022727272727272728},"detailed/text_input/bi.search_editor.html":{"ref":"detailed/text_input/bi.search_editor.html","tf":0.021505376344086023},"detailed/text_input/bi.clear_editor.html":{"ref":"detailed/text_input/bi.clear_editor.html","tf":0.012048192771084338}}}}}},"g":{"docs":{},"a":{"docs":{},"p":{"docs":{"detailed/text_input/bi.text_editor.html":{"ref":"detailed/text_input/bi.text_editor.html","tf":0.007575757575757576},"detailed/text_input/bi.search_editor.html":{"ref":"detailed/text_input/bi.search_editor.html","tf":0.010752688172043012},"detailed/text_input/bi.clear_editor.html":{"ref":"detailed/text_input/bi.clear_editor.html","tf":0.012048192771084338}}}}}},"w":{"docs":{},"i":{"docs":{},"d":{"docs":{},"t":{"docs":{},"h":{"docs":{"detailed/text_input/bi.text_editor.html":{"ref":"detailed/text_input/bi.text_editor.html","tf":0.007575757575757576},"detailed/text_input/bi.search_editor.html":{"ref":"detailed/text_input/bi.search_editor.html","tf":0.010752688172043012},"detailed/text_input/bi.clear_editor.html":{"ref":"detailed/text_input/bi.clear_editor.html","tf":0.012048192771084338}},":":{"docs":{"detailed/table/bi.excel_table.html":{"ref":"detailed/table/bi.excel_table.html","tf":0.009708737864077669},"detailed/text_input/bi.text_editor.html":{"ref":"detailed/text_input/bi.text_editor.html","tf":0.022727272727272728},"detailed/text_input/bi.search_editor.html":{"ref":"detailed/text_input/bi.search_editor.html","tf":0.021505376344086023},"detailed/text_input/bi.clear_editor.html":{"ref":"detailed/text_input/bi.clear_editor.html","tf":0.012048192771084338}}}}}}},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"m":{"docs":{},"a":{"docs":{},"r":{"docs":{},"k":{"docs":{"detailed/text_input/bi.text_editor.html":{"ref":"detailed/text_input/bi.text_editor.html","tf":0.007575757575757576},"detailed/text_input/bi.search_editor.html":{"ref":"detailed/text_input/bi.search_editor.html","tf":0.010752688172043012},"detailed/text_input/bi.clear_editor.html":{"ref":"detailed/text_input/bi.clear_editor.html","tf":0.012048192771084338}},":":{"docs":{},"\"":{"docs":{},"请":{"docs":{},"输":{"docs":{},"入":{"docs":{},"内":{"docs":{},"容":{"docs":{},"\"":{"docs":{"detailed/text_input/bi.text_editor.html":{"ref":"detailed/text_input/bi.text_editor.html","tf":0.007575757575757576}}}}}}}},"这":{"docs":{},"个":{"docs":{},"不":{"docs":{},"予":{"docs":{},"许":{"docs":{},"空":{"docs":{},"\"":{"docs":{},",":{"docs":{"detailed/text_input/bi.text_editor.html":{"ref":"detailed/text_input/bi.text_editor.html","tf":0.007575757575757576}}}}}}}}}},"搜":{"docs":{},"索":{"docs":{},"\"":{"docs":{},",":{"docs":{"detailed/text_input/bi.search_editor.html":{"ref":"detailed/text_input/bi.search_editor.html","tf":0.021505376344086023}}}}}},"带":{"docs":{},"清":{"docs":{},"除":{"docs":{},"按":{"docs":{},"钮":{"docs":{},"的":{"docs":{},"输":{"docs":{},"入":{"docs":{},"框":{"docs":{},"\"":{"docs":{},",":{"docs":{"detailed/text_input/bi.clear_editor.html":{"ref":"detailed/text_input/bi.clear_editor.html","tf":0.012048192771084338}}}}}}}}}}}}}}}}}}}}}}}},"{":{"docs":{"detailed/table/bi.excel_table.html":{"ref":"detailed/table/bi.excel_table.html","tf":0.019417475728155338},"detailed/text_input/bi.text_editor.html":{"ref":"detailed/text_input/bi.text_editor.html","tf":0.015151515151515152}}},"}":{"docs":{"detailed/text_input/bi.text_editor.html":{"ref":"detailed/text_input/bi.text_editor.html","tf":0.007575757575757576}},")":{"docs":{},";":{"docs":{"detailed/table/bi.excel_table.html":{"ref":"detailed/table/bi.excel_table.html","tf":0.009708737864077669},"detailed/text_input/bi.text_editor.html":{"ref":"detailed/text_input/bi.text_editor.html","tf":0.022727272727272728},"detailed/text_input/bi.search_editor.html":{"ref":"detailed/text_input/bi.search_editor.html","tf":0.021505376344086023},"detailed/text_input/bi.clear_editor.html":{"ref":"detailed/text_input/bi.clear_editor.html","tf":0.012048192771084338}}}},",":{"docs":{"detailed/table/bi.excel_table.html":{"ref":"detailed/table/bi.excel_table.html","tf":0.019417475728155338},"detailed/text_input/bi.text_editor.html":{"ref":"detailed/text_input/bi.text_editor.html","tf":0.007575757575757576}}},"]":{"docs":{"detailed/table/bi.excel_table.html":{"ref":"detailed/table/bi.excel_table.html","tf":0.009708737864077669}},",":{"docs":{"detailed/table/bi.excel_table.html":{"ref":"detailed/table/bi.excel_table.html","tf":0.009708737864077669}}}}},"参":{"docs":{},"数":{"docs":{"detailed/table/bi.excel_table.html":{"ref":"detailed/table/bi.excel_table.html","tf":0.009708737864077669},"detailed/text_input/bi.text_editor.html":{"ref":"detailed/text_input/bi.text_editor.html","tf":0.007575757575757576},"detailed/text_input/bi.search_editor.html":{"ref":"detailed/text_input/bi.search_editor.html","tf":0.010752688172043012},"detailed/text_input/bi.clear_editor.html":{"ref":"detailed/text_input/bi.clear_editor.html","tf":0.012048192771084338}}}},"合":{"docs":{},"并":{"docs":{},"的":{"docs":{},"单":{"docs":{},"元":{"docs":{},"格":{"docs":{},"列":{"docs":{},"号":{"docs":{"detailed/table/bi.excel_table.html":{"ref":"detailed/table/bi.excel_table.html","tf":0.009708737864077669}}}}}}}},"规":{"docs":{},"则":{"docs":{},",":{"docs":{"detailed/table/bi.excel_table.html":{"ref":"detailed/table/bi.excel_table.html","tf":0.009708737864077669}}}}}}},"子":{"docs":{},"组":{"docs":{},"件":{"docs":{"detailed/table/bi.excel_table.html":{"ref":"detailed/table/bi.excel_table.html","tf":0.009708737864077669}}}}},"时":{"docs":{},"合":{"docs":{},"并":{"docs":{"detailed/table/bi.excel_table.html":{"ref":"detailed/table/bi.excel_table.html","tf":0.009708737864077669}}}}},"是":{"docs":{},"否":{"docs":{},"调":{"docs":{},"整":{"docs":{},"时":{"docs":{},"自":{"docs":{},"适":{"docs":{},"应":{"docs":{"detailed/table/bi.excel_table.html":{"ref":"detailed/table/bi.excel_table.html","tf":0.009708737864077669}}}}}}}},"需":{"docs":{},"要":{"docs":{},"合":{"docs":{},"并":{"docs":{},"单":{"docs":{},"元":{"docs":{},"格":{"docs":{"detailed/table/bi.excel_table.html":{"ref":"detailed/table/bi.excel_table.html","tf":0.009708737864077669}}}}}}},"调":{"docs":{},"整":{"docs":{},"大":{"docs":{},"小":{"docs":{"detailed/table/bi.excel_table.html":{"ref":"detailed/table/bi.excel_table.html","tf":0.009708737864077669}}}}}}}},"允":{"docs":{},"许":{"docs":{},"空":{"docs":{},"值":{"docs":{"detailed/text_input/bi.text_editor.html":{"ref":"detailed/text_input/bi.text_editor.html","tf":0.007575757575757576},"detailed/text_input/bi.search_editor.html":{"ref":"detailed/text_input/bi.search_editor.html","tf":0.010752688172043012},"detailed/text_input/bi.clear_editor.html":{"ref":"detailed/text_input/bi.clear_editor.html","tf":0.012048192771084338}}}},"退":{"docs":{},"出":{"docs":{},"编":{"docs":{},"辑":{"docs":{},"函":{"docs":{},"数":{"docs":{"detailed/text_input/bi.text_editor.html":{"ref":"detailed/text_input/bi.text_editor.html","tf":0.007575757575757576},"detailed/text_input/bi.search_editor.html":{"ref":"detailed/text_input/bi.search_editor.html","tf":0.010752688172043012},"detailed/text_input/bi.clear_editor.html":{"ref":"detailed/text_input/bi.clear_editor.html","tf":0.012048192771084338}}}}}}}}}}}},"普":{"docs":{},"通":{"docs":{},"单":{"docs":{},"元":{"docs":{},"格":{"docs":{},"高":{"docs":{},"度":{"docs":{"detailed/table/bi.excel_table.html":{"ref":"detailed/table/bi.excel_table.html","tf":0.009708737864077669}}}}}}}}},"类":{"docs":{},"型":{"docs":{"detailed/table/bi.excel_table.html":{"ref":"detailed/table/bi.excel_table.html","tf":0.009708737864077669},"detailed/text_input/bi.text_editor.html":{"ref":"detailed/text_input/bi.text_editor.html","tf":0.007575757575757576},"detailed/text_input/bi.search_editor.html":{"ref":"detailed/text_input/bi.search_editor.html","tf":0.010752688172043012},"detailed/text_input/bi.clear_editor.html":{"ref":"detailed/text_input/bi.clear_editor.html","tf":0.012048192771084338}}}},"表":{"docs":{},"头":{"docs":{},"高":{"docs":{},"度":{"docs":{"detailed/table/bi.excel_table.html":{"ref":"detailed/table/bi.excel_table.html","tf":0.009708737864077669}}}}},"尾":{"docs":{},"高":{"docs":{},"度":{"docs":{"detailed/table/bi.excel_table.html":{"ref":"detailed/table/bi.excel_table.html","tf":0.009708737864077669}}}}}},"说":{"docs":{},"明":{"docs":{"detailed/table/bi.excel_table.html":{"ref":"detailed/table/bi.excel_table.html","tf":0.009708737864077669},"detailed/text_input/bi.text_editor.html":{"ref":"detailed/text_input/bi.text_editor.html","tf":0.007575757575757576},"detailed/text_input/bi.search_editor.html":{"ref":"detailed/text_input/bi.search_editor.html","tf":0.010752688172043012},"detailed/text_input/bi.clear_editor.html":{"ref":"detailed/text_input/bi.clear_editor.html","tf":0.012048192771084338}}}},"默":{"docs":{},"认":{"docs":{},"r":{"docs":{},"o":{"docs":{},"w":{"1":{"docs":{"detailed/table/bi.excel_table.html":{"ref":"detailed/table/bi.excel_table.html","tf":0.009708737864077669}}},"docs":{}}}},"值":{"docs":{"detailed/table/bi.excel_table.html":{"ref":"detailed/table/bi.excel_table.html","tf":0.009708737864077669},"detailed/text_input/bi.text_editor.html":{"ref":"detailed/text_input/bi.text_editor.html","tf":0.007575757575757576},"detailed/text_input/bi.search_editor.html":{"ref":"detailed/text_input/bi.search_editor.html","tf":0.010752688172043012},"detailed/text_input/bi.clear_editor.html":{"ref":"detailed/text_input/bi.clear_editor.html","tf":0.012048192771084338}}},"相":{"docs":{},"等":{"docs":{},"时":{"docs":{},"合":{"docs":{},"并":{"docs":{"detailed/table/bi.excel_table.html":{"ref":"detailed/table/bi.excel_table.html","tf":0.009708737864077669}}}}}}}}},"#":{"docs":{"detailed/text_input/bi.text_editor.html":{"ref":"detailed/text_input/bi.text_editor.html","tf":0.007575757575757576},"detailed/text_input/bi.search_editor.html":{"ref":"detailed/text_input/bi.search_editor.html","tf":0.010752688172043012},"detailed/text_input/bi.clear_editor.html":{"ref":"detailed/text_input/bi.clear_editor.html","tf":0.012048192771084338}}},"(":{"docs":{},"v":{"docs":{"detailed/text_input/bi.text_editor.html":{"ref":"detailed/text_input/bi.text_editor.html","tf":0.007575757575757576}},")":{"docs":{"detailed/text_input/bi.text_editor.html":{"ref":"detailed/text_input/bi.text_editor.html","tf":0.007575757575757576}}}}},"l":{"docs":{},"g":{"docs":{},"a":{"docs":{},"p":{"docs":{"detailed/text_input/bi.text_editor.html":{"ref":"detailed/text_input/bi.text_editor.html","tf":0.007575757575757576},"detailed/text_input/bi.search_editor.html":{"ref":"detailed/text_input/bi.search_editor.html","tf":0.010752688172043012},"detailed/text_input/bi.clear_editor.html":{"ref":"detailed/text_input/bi.clear_editor.html","tf":0.012048192771084338}}}}}},"p":{"docs":{},"a":{"docs":{},"d":{"docs":{},"d":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"值":{"docs":{"detailed/text_input/bi.text_editor.html":{"ref":"detailed/text_input/bi.text_editor.html","tf":0.030303030303030304},"detailed/text_input/bi.search_editor.html":{"ref":"detailed/text_input/bi.search_editor.html","tf":0.043010752688172046},"detailed/text_input/bi.clear_editor.html":{"ref":"detailed/text_input/bi.clear_editor.html","tf":0.04819277108433735}}}}}}}}}},"q":{"docs":{},"u":{"docs":{},"i":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{},"e":{"docs":{},"c":{"docs":{},"k":{"docs":{"detailed/text_input/bi.text_editor.html":{"ref":"detailed/text_input/bi.text_editor.html","tf":0.007575757575757576},"detailed/text_input/bi.search_editor.html":{"ref":"detailed/text_input/bi.search_editor.html","tf":0.010752688172043012},"detailed/text_input/bi.clear_editor.html":{"ref":"detailed/text_input/bi.clear_editor.html","tf":0.012048192771084338}}}}}}}}}}},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"i":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"c":{"docs":{},"h":{"docs":{},"e":{"docs":{},"c":{"docs":{},"k":{"docs":{"detailed/text_input/bi.text_editor.html":{"ref":"detailed/text_input/bi.text_editor.html","tf":0.007575757575757576},"detailed/text_input/bi.search_editor.html":{"ref":"detailed/text_input/bi.search_editor.html","tf":0.010752688172043012},"detailed/text_input/bi.clear_editor.html":{"ref":"detailed/text_input/bi.clear_editor.html","tf":0.012048192771084338}},"e":{"docs":{},"r":{"docs":{},":":{"docs":{"detailed/text_input/bi.text_editor.html":{"ref":"detailed/text_input/bi.text_editor.html","tf":0.007575757575757576}}}}}}}}}}}}}}}}},"u":{"docs":{"detailed/text_input/bi.text_editor.html":{"ref":"detailed/text_input/bi.text_editor.html","tf":0.007575757575757576},"detailed/text_input/bi.search_editor.html":{"ref":"detailed/text_input/bi.search_editor.html","tf":0.010752688172043012},"detailed/text_input/bi.clear_editor.html":{"ref":"detailed/text_input/bi.clear_editor.html","tf":0.012048192771084338}},"e":{"docs":{},":":{"docs":{"detailed/text_input/bi.text_editor.html":{"ref":"detailed/text_input/bi.text_editor.html","tf":0.007575757575757576}}}}}}},"g":{"docs":{},"a":{"docs":{},"p":{"docs":{"detailed/text_input/bi.text_editor.html":{"ref":"detailed/text_input/bi.text_editor.html","tf":0.007575757575757576},"detailed/text_input/bi.search_editor.html":{"ref":"detailed/text_input/bi.search_editor.html","tf":0.010752688172043012},"detailed/text_input/bi.clear_editor.html":{"ref":"detailed/text_input/bi.clear_editor.html","tf":0.012048192771084338}}}}}},"不":{"docs":{},"可":{"docs":{},"为":{"docs":{},"空":{"docs":{},"输":{"docs":{},"入":{"docs":{},"框":{"docs":{"detailed/text_input/bi.text_editor.html":{"ref":"detailed/text_input/bi.text_editor.html","tf":0.007575757575757576}}}}}}}}},"可":{"docs":{},"为":{"docs":{},"空":{"docs":{},"输":{"docs":{},"入":{"docs":{},"框":{"docs":{"detailed/text_input/bi.text_editor.html":{"ref":"detailed/text_input/bi.text_editor.html","tf":0.007575757575757576}}}}}}},"选":{"docs":{},"值":{"docs":{"detailed/text_input/bi.text_editor.html":{"ref":"detailed/text_input/bi.text_editor.html","tf":0.007575757575757576},"detailed/text_input/bi.search_editor.html":{"ref":"detailed/text_input/bi.search_editor.html","tf":0.010752688172043012},"detailed/text_input/bi.clear_editor.html":{"ref":"detailed/text_input/bi.clear_editor.html","tf":0.012048192771084338}}}}},"基":{"docs":{},"础":{"docs":{},"用":{"docs":{},"法":{"docs":{"detailed/text_input/bi.text_editor.html":{"ref":"detailed/text_input/bi.text_editor.html","tf":0.007575757575757576}}}}}},"效":{"docs":{},"果":{"docs":{},"相":{"docs":{},"当":{"docs":{},"于":{"docs":{},"文":{"docs":{},"本":{"docs":{},"框":{"docs":{},"b":{"docs":{},"o":{"docs":{},"t":{"docs":{},"t":{"docs":{},"o":{"docs":{},"m":{"docs":{"detailed/text_input/bi.text_editor.html":{"ref":"detailed/text_input/bi.text_editor.html","tf":0.007575757575757576},"detailed/text_input/bi.search_editor.html":{"ref":"detailed/text_input/bi.search_editor.html","tf":0.010752688172043012},"detailed/text_input/bi.clear_editor.html":{"ref":"detailed/text_input/bi.clear_editor.html","tf":0.012048192771084338}}}}}}}},"l":{"docs":{},"e":{"docs":{},"f":{"docs":{},"t":{"docs":{"detailed/text_input/bi.text_editor.html":{"ref":"detailed/text_input/bi.text_editor.html","tf":0.007575757575757576},"detailed/text_input/bi.search_editor.html":{"ref":"detailed/text_input/bi.search_editor.html","tf":0.010752688172043012},"detailed/text_input/bi.clear_editor.html":{"ref":"detailed/text_input/bi.clear_editor.html","tf":0.012048192771084338}}}}}},"r":{"docs":{},"i":{"docs":{},"g":{"docs":{},"h":{"docs":{},"t":{"docs":{"detailed/text_input/bi.text_editor.html":{"ref":"detailed/text_input/bi.text_editor.html","tf":0.007575757575757576},"detailed/text_input/bi.search_editor.html":{"ref":"detailed/text_input/bi.search_editor.html","tf":0.010752688172043012},"detailed/text_input/bi.clear_editor.html":{"ref":"detailed/text_input/bi.clear_editor.html","tf":0.012048192771084338}}}}}}},"t":{"docs":{},"o":{"docs":{},"p":{"docs":{"detailed/text_input/bi.text_editor.html":{"ref":"detailed/text_input/bi.text_editor.html","tf":0.007575757575757576},"detailed/text_input/bi.search_editor.html":{"ref":"detailed/text_input/bi.search_editor.html","tf":0.010752688172043012},"detailed/text_input/bi.clear_editor.html":{"ref":"detailed/text_input/bi.clear_editor.html","tf":0.012048192771084338}}}}},"上":{"docs":{},"下":{"docs":{},"p":{"docs":{},"a":{"docs":{},"d":{"docs":{},"d":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"值":{"docs":{"detailed/text_input/bi.text_editor.html":{"ref":"detailed/text_input/bi.text_editor.html","tf":0.007575757575757576},"detailed/text_input/bi.search_editor.html":{"ref":"detailed/text_input/bi.search_editor.html","tf":0.010752688172043012},"detailed/text_input/bi.clear_editor.html":{"ref":"detailed/text_input/bi.clear_editor.html","tf":0.012048192771084338}}}}}}}}}}}},"左":{"docs":{},"右":{"docs":{},"p":{"docs":{},"a":{"docs":{},"d":{"docs":{},"d":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"值":{"docs":{"detailed/text_input/bi.text_editor.html":{"ref":"detailed/text_input/bi.text_editor.html","tf":0.007575757575757576},"detailed/text_input/bi.search_editor.html":{"ref":"detailed/text_input/bi.search_editor.html","tf":0.010752688172043012},"detailed/text_input/bi.clear_editor.html":{"ref":"detailed/text_input/bi.clear_editor.html","tf":0.012048192771084338}}}}}}}}}}}}}}}}}}}},"输":{"docs":{},"入":{"docs":{},"较":{"docs":{},"验":{"docs":{},"函":{"docs":{},"数":{"docs":{"detailed/text_input/bi.text_editor.html":{"ref":"detailed/text_input/bi.text_editor.html","tf":0.007575757575757576},"detailed/text_input/bi.search_editor.html":{"ref":"detailed/text_input/bi.search_editor.html","tf":0.010752688172043012},"detailed/text_input/bi.clear_editor.html":{"ref":"detailed/text_input/bi.clear_editor.html","tf":0.012048192771084338}}}}}}}},"错":{"docs":{},"误":{"docs":{},"提":{"docs":{},"示":{"docs":{"detailed/text_input/bi.text_editor.html":{"ref":"detailed/text_input/bi.text_editor.html","tf":0.007575757575757576},"detailed/text_input/bi.search_editor.html":{"ref":"detailed/text_input/bi.search_editor.html","tf":0.010752688172043012},"detailed/text_input/bi.clear_editor.html":{"ref":"detailed/text_input/bi.clear_editor.html","tf":0.012048192771084338}}}}}},"'":{"docs":{},"#":{"docs":{},"w":{"docs":{},"r":{"docs":{},"a":{"docs":{},"p":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"'":{"docs":{},",":{"docs":{"detailed/text_input/bi.search_editor.html":{"ref":"detailed/text_input/bi.search_editor.html","tf":0.021505376344086023},"detailed/text_input/bi.clear_editor.html":{"ref":"detailed/text_input/bi.clear_editor.html","tf":0.012048192771084338}}}}}}}}}}}},"b":{"docs":{},"i":{"docs":{},".":{"docs":{},"s":{"docs":{},"e":{"docs":{},"a":{"docs":{},"r":{"docs":{},"c":{"docs":{},"h":{"docs":{},"_":{"docs":{},"e":{"docs":{},"d":{"docs":{},"i":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"'":{"docs":{},",":{"docs":{"detailed/text_input/bi.search_editor.html":{"ref":"detailed/text_input/bi.search_editor.html","tf":0.021505376344086023}}}}}}}}}}}}}}}}},"c":{"docs":{},"l":{"docs":{},"e":{"docs":{},"a":{"docs":{},"r":{"docs":{},"_":{"docs":{},"e":{"docs":{},"d":{"docs":{},"i":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"'":{"docs":{},",":{"docs":{"detailed/text_input/bi.clear_editor.html":{"ref":"detailed/text_input/bi.clear_editor.html","tf":0.012048192771084338}}}}}}}}}}}}}}}}}}}},"小":{"docs":{},"一":{"docs":{},"号":{"docs":{},"的":{"docs":{},"搜":{"docs":{},"索":{"docs":{},"框":{"docs":{"detailed/text_input/bi.search_editor.html":{"ref":"detailed/text_input/bi.search_editor.html","tf":0.010752688172043012}}}}}}}}},"搜":{"docs":{},"索":{"docs":{},"框":{"docs":{"detailed/text_input/bi.search_editor.html":{"ref":"detailed/text_input/bi.search_editor.html","tf":0.010752688172043012}}}}}},"length":295},"corpusTokens":["\"#wrapper\",","\"a\")","\"bi","\"bi.excel_table\",","\"bi.label\",","\"bi.text_editor\",","\"layout","\"不允许为空\"","\"不能输入只输入a!\",","\"第一行第一列\"","\"第一行第二列\"","\"第二行第一列\"","\"第二行第二列\"","\"这是一个不可为空的输入框\",","#","'#wrapper',","'bi.clear_editor',","'bi.search_editor',","(v","(v)","0","2","200,","30","30,","300,","37","4","500,","=","==","[","[200,200,200,200,200],","[]","[{","]","allowblank","allowblank:","api","array","bg1\",","bg2\",","bg3\",","bg4\",","bgap","bi.clear_editor","bi.createwidget({","bi.excel_t","bi.multi_tree_combo","bi.preview_t","bi.responsive_t","bi.search_editor","bi.small_search_editor","bi.switch_tre","bi.text_editor","bool","boolean","border\",","cls:","columns","columnsize:","element:","errortext","errortext:","fals","false,","false;","fineuidoc","fineui的交互、前端以及视觉文档规范","footerrows","function","function(row1,","headerrows","height","height:","height默认为24","hgap","isneedmerg","isneedres","isresizeadapt","item","items:","lgap","mergecol","mergerul","mouseout","node节点","null","number","padding值","quitcheck","regioncolumns","return","rgap","row2","row2)","rowsiz","segment组件","sourc","string","text:","tgap","true","true,","true,fals","true;","type:","validationcheck","validationchecker:","valu","value:","vgap","watermark","watermark:\"带清除按钮的输入框\",","watermark:\"搜索\",","watermark:\"请输入内容\"","watermark:\"这个不予许空\",","width","width:","{","}","});","},","}]","}],","不可为空输入框","单元格宽度集合","单选框","参数","可为空输入框","可选值","合并的单元格列号","合并规则,","基础用法","复选框","子组件","小一号的搜索框","带提示的按钮","带清除按钮的输入框","搜索框","效果相当于文本框bottom","效果相当于文本框left","效果相当于文本框right","效果相当于文本框top","效果相当于文本框上下padding值","效果相当于文本框左右padding值","文本框placehold","文本框宽度","文本框高度","文本框默认值","文档规范","时合并","是否允许空值","是否允许退出编辑函数","是否调整时自适应","是否需要合并单元格","是否需要调整大小","普通单元格高度","类型","表头高度","表尾高度","说明","输入较验函数","通用按钮","通过鼠标或键盘输入字符","错误提示","默认row1","默认值","默认相等时合并"],"pipeline":["stopWordFilter","stemmer"]},"store":{"./":{"url":"./","title":"文档规范","keywords":"","body":"FineUIdocs\nFineUI的交互、前端以及视觉文档规范\n"},"detailed/bi.button/general.html":{"url":"detailed/bi.button/general.html","title":"通用按钮","keywords":"","body":"通用按钮\n"},"detailed/bi.button/tooltip.html":{"url":"detailed/bi.button/tooltip.html","title":"带提示的按钮","keywords":"","body":"带提示的按钮\n"},"detailed/bi.single_select_item.html":{"url":"detailed/bi.single_select_item.html","title":"单选框","keywords":"","body":"单选框\n"},"detailed/bi.multi_select_item.html":{"url":"detailed/bi.multi_select_item.html","title":"复选框","keywords":"","body":"复选框\n"},"detailed/node.html":{"url":"detailed/node.html","title":"node节点","keywords":"","body":"node节点\n"},"detailed/bi.segment.html":{"url":"detailed/bi.segment.html","title":"segment组件","keywords":"","body":"segment组件\n"},"detailed/tree/bi.multi_tree_combo.html":{"url":"detailed/tree/bi.multi_tree_combo.html","title":"bi.multi_tree_combo","keywords":"","body":"bi.multi_tree_combo\n"},"detailed/tree/bi.switch_tree.html":{"url":"detailed/tree/bi.switch_tree.html","title":"bi.switch_tree","keywords":"","body":"bi.switch_tree\n"},"detailed/table/bi.preview_table.html":{"url":"detailed/table/bi.preview_table.html","title":"bi.preview_table","keywords":"","body":"bi.preview_table\n"},"detailed/table/bi.responsive_table.html":{"url":"detailed/table/bi.responsive_table.html","title":"bi.responsive_table","keywords":"","body":"bi.responsive_table\n"},"detailed/table/bi.excel_table.html":{"url":"detailed/table/bi.excel_table.html","title":"bi.excel_table","keywords":"","body":"bi.excel_table\nsource\nBI.createWidget({\n type: \"bi.excel_table\",\n element: \"#wrapper\",\n width: 500,\n columnSize: [200,200,200,200,200],\n items: [\n [{\n type: \"bi.label\",\n cls: \"layout-bg1\",\n text: \"第一行第一列\"\n }, {\n type: \"bi.label\",\n cls: \"layout-bg2\",\n text: \"第一行第二列\"\n }],\n [{\n type: \"bi.label\",\n cls: \"layout-bg3\",\n text: \"第二行第一列\"\n }, {\n type: \"bi.label\",\n cls: \"layout-bg4\",\n text: \"第二行第二列\"\n }]\n ] \n});\n\n\n\n\n\n\n参数\n说明\n类型\n默认值\n\n\n\n\nisNeedResize\n是否需要调整大小\nbool\nfalse\n\n\nisResizeAdapt\n是否调整时自适应\nbool\ntrue\n\n\nisNeedMerge\n是否需要合并单元格\nbool\nfalse\n\n\nmergeCols\n合并的单元格列号\narray\n[]\n\n\nmergeRule\n合并规则, 默认相等时合并\nfunction(row1, row2)\n默认row1 = row2 时合并\n\n\ncolumnSize\n单元格宽度集合\narray\n[]\n\n\nheaderRowSize\n表头高度\nnumber\n37\n\n\nfooterRowSize\n表尾高度\nnumber\n37\n\n\nrowSize\n普通单元格高度\nnumber\n37\n\n\nregionColumnSize\n\nbool\nfalse\n\n\nitems\n子组件\narray\n[]\n\n\n\n"},"detailed/text_input/bi.text_editor.html":{"url":"detailed/text_input/bi.text_editor.html","title":"bi.text_editor","keywords":"","body":"bi.text_editor\n通过鼠标或键盘输入字符\n基础用法\nsource\nBI.createWidget({\n type: \"bi.text_editor\",\n element: \"#wrapper\",\n width: 200,\n height: 30,\n watermark:\"请输入内容\"\n});\n\n\n\n不可为空输入框\nsource\nBI.createWidget({\n type: \"bi.text_editor\",\n element: \"#wrapper\",\n width: 200,\n height: 30,\n watermark:\"这个不予许空\",\n value: \"这是一个不可为空的输入框\",\n allowBlank: false,\n errorText: \"不允许为空\" \n});\n\n\n\n可为空输入框\nsource\nBI.createWidget({\n type: \"bi.text_editor\",\n element: \"#wrapper\",\n width: 200,\n height: 30,\n allowBlank: true,\n errorText: \"不能输入只输入a!\",\n validationChecker: function (v) {\n if (v == \"a\") {\n return false;\n }\n return true;\n },\n});\n\n\n\nAPI\n\n\n\n参数\n说明\n类型\n可选值\n默认值\n\n\n\n\nhgap\n效果相当于文本框左右padding值\nnumber\n\n4\n\n\nvgap\n效果相当于文本框上下padding值\nnumber\n\n2\n\n\nlgap\n效果相当于文本框left-padding值\nnumber\n\n0\n\n\nrgap\n效果相当于文本框right-padding值\nnumber\n\n0\n\n\ntgap\n效果相当于文本框top-padding值\nnumber\n\n0\n\n\nbgap\n效果相当于文本框bottom-padding值\nnumber\n\n0\n\n\nvalidationChecker\n输入较验函数\nfunction\n\n\n\n\nquitChecker\n是否允许退出编辑函数\nfunction\n\n\n\n\nmouseOut\n\nboolean\ntrue,false\nfalse\n\n\nallowBlank\n是否允许空值\nboolean\ntrue,false\nfalse\n\n\nwatermark\n文本框placeholder\nstring\n\nnull\n\n\nvalue\n文本框默认值\nstring\n\n\n\n\nerrorText\n错误提示\nstring\n\nnull\n\n\nwidth\n文本框宽度\nnumber\n\n\n\n\nheight\n文本框高度\nnumber\n\n30\n\n\n\n#\n"},"detailed/text_input/bi.search_editor.html":{"url":"detailed/text_input/bi.search_editor.html","title":"bi.search_editor","keywords":"","body":"bi.search_editor\n搜索框\nsource\nBI.createWidget({\n type: 'bi.search_editor',\n element: '#wrapper',\n width: 300,\n watermark:\"搜索\",\n});\n\n\n\nbi.small_search_editor\n小一号的搜索框\nheight默认为24\nsource\nBI.createWidget({\n type: 'bi.search_editor',\n element: '#wrapper',\n width: 300,\n watermark:\"搜索\",\n});\n\n\nAPI\n\n\n\n参数\n说明\n类型\n可选值\n默认值\n\n\n\n\nhgap\n效果相当于文本框左右padding值\nnumber\n\n4\n\n\nvgap\n效果相当于文本框上下padding值\nnumber\n\n2\n\n\nlgap\n效果相当于文本框left-padding值\nnumber\n\n0\n\n\nrgap\n效果相当于文本框right-padding值\nnumber\n\n0\n\n\ntgap\n效果相当于文本框top-padding值\nnumber\n\n0\n\n\nbgap\n效果相当于文本框bottom-padding值\nnumber\n\n0\n\n\nvalidationChecker\n输入较验函数\nfunction\n\n\n\n\nquitChecker\n是否允许退出编辑函数\nfunction\n\n\n\n\nmouseOut\n\nboolean\ntrue,false\nfalse\n\n\nallowBlank\n是否允许空值\nboolean\ntrue,false\nfalse\n\n\nwatermark\n文本框placeholder\nstring\n\nnull\n\n\nvalue\n文本框默认值\nstring\n\n\n\n\nerrorText\n错误提示\nstring\n\nnull\n\n\nwidth\n文本框宽度\nnumber\n\n\n\n\nheight\n文本框高度\nnumber\n\n30\n\n\n\n#\n"},"detailed/text_input/bi.clear_editor.html":{"url":"detailed/text_input/bi.clear_editor.html","title":"bi.clear_editor","keywords":"","body":"bi.clear_editor\n带清除按钮的输入框\nsource\nBI.createWidget({\n type: 'bi.clear_editor',\n cls: \"bi-border\",\n element: '#wrapper',\n width: 300,\n watermark:\"带清除按钮的输入框\",\n});\n\n\n\nAPI\n\n\n\n参数\n说明\n类型\n可选值\n默认值\n\n\n\n\nhgap\n效果相当于文本框左右padding值\nnumber\n\n4\n\n\nvgap\n效果相当于文本框上下padding值\nnumber\n\n2\n\n\nlgap\n效果相当于文本框left-padding值\nnumber\n\n0\n\n\nrgap\n效果相当于文本框right-padding值\nnumber\n\n0\n\n\ntgap\n效果相当于文本框top-padding值\nnumber\n\n0\n\n\nbgap\n效果相当于文本框bottom-padding值\nnumber\n\n0\n\n\nvalidationChecker\n输入较验函数\nfunction\n\n\n\n\nquitChecker\n是否允许退出编辑函数\nfunction\n\n\n\n\nmouseOut\n\nboolean\ntrue,false\nfalse\n\n\nallowBlank\n是否允许空值\nboolean\ntrue,false\nfalse\n\n\nwatermark\n文本框placeholder\nstring\n\nnull\n\n\nvalue\n文本框默认值\nstring\n\n\n\n\nerrorText\n错误提示\nstring\n\nnull\n\n\nwidth\n文本框宽度\nnumber\n\n\n\n\nheight\n文本框高度\nnumber\n\n30\n\n\n\n#\n"}}} \ No newline at end of file