diff --git a/docs/.gitignore b/docs/.gitignore index db96e3624..680a9dfb3 100644 --- a/docs/.gitignore +++ b/docs/.gitignore @@ -10,5 +10,5 @@ dist archive archive.zip *.log -_book +#_book test \ No newline at end of file diff --git a/docs/_book/.gitignore b/docs/_book/.gitignore new file mode 100644 index 000000000..db96e3624 --- /dev/null +++ b/docs/_book/.gitignore @@ -0,0 +1,14 @@ +.DS_Store +.svn +.sass-cache +.vscode +.tmp +node_modules +bower_components +tmp +dist +archive +archive.zip +*.log +_book +test \ No newline at end of file diff --git a/docs/_book/LICENSE b/docs/_book/LICENSE new file mode 100644 index 000000000..8fdf076ab --- /dev/null +++ b/docs/_book/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/docs/_book/OVERVIEW.html b/docs/_book/OVERVIEW.html new file mode 100644 index 000000000..9eadb2e18 --- /dev/null +++ b/docs/_book/OVERVIEW.html @@ -0,0 +1,2520 @@ + + + + + + + 通用规范 · GitBook + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ + + + + + + + +
+ +
+ +
+ + + + + + + + +
+
+ +
+
+ +
+ +

通用规范

+
    +
  1. 控件都会提供setValue, getValue, populate这几个方法来设置值,获取值(展示类控件除外)和刷新控件
  2. +
  3. 控件都会提供setEnable, setVisible, setValid这几个方法来设置使能,是否可见,是否有效状态,并且在fineui2.0之后,会自动给子组件设置同样的状态,不要重写这些方法,一些需要在设置状态时的额外操作可以通过重写_setXXX来实现
  4. +
  5. 使用populate来清空或者重置布局,不要使用empty, 慎用resize
  6. +
  7. 谨慎监听和触发BI.Controller.EVENT_CHANGE事件,一般来说,控件都会有一个BI.ClassName.EVENT_CHANGE事件,一些特殊的事件会在对应控件文档中列出
  8. +
+ + +
+ +
+
+
+ +

results matching ""

+
    + +
    +
    + +

    No results matching ""

    + +
    +
    +
    + +
    +
    + +
    + + + + +
    + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/_book/START.html b/docs/_book/START.html new file mode 100644 index 000000000..cb5c3f4c1 --- /dev/null +++ b/docs/_book/START.html @@ -0,0 +1,2517 @@ + + + + + + + 起步 · GitBook + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + + + + + + + + +
    + +
    + +
    + + + + + + + + +
    +
    + +
    + +
    +
    + +

    results matching ""

    +
      + +
      +
      + +

      No results matching ""

      + +
      +
      +
      + +
      +
      + +
      + + + + +
      + + +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/_book/base/bubble.html b/docs/_book/base/bubble.html new file mode 100644 index 000000000..ebdd818ab --- /dev/null +++ b/docs/_book/base/bubble.html @@ -0,0 +1,2583 @@ + + + + + + + bubble · GitBook + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      +
      + + + + + + + + +
      + +
      + +
      + + + + + + + + +
      +
      + +
      +
      + +
      + +

      bi.bubble

      +

      气泡提示

      +
      
      +BI.createWidget({
      +  type: 'bi.bubble',
      +  element: "#wrapper",
      +  height: 30,
      +  text: "测试"
      +})
      +
      +
      + + +

      API

      +
      基础属性
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      参数说明类型可选值默认值
      direction气泡显示位置string"top"
      height气泡高度number35
      text气泡显示内容string" "
      +

      对外方法

      + + + + + + + + + + + + + + + +
      名称说明回调参数
      setText设置文本值需要设置的文本值text
      +
      + + +
      + +
      +
      +
      + +

      results matching ""

      +
        + +
        +
        + +

        No results matching ""

        + +
        +
        +
        + +
        +
        + +
        + + + + +
        + + +
        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/_book/base/bubble.md b/docs/_book/base/bubble.md new file mode 100644 index 000000000..bd138066d --- /dev/null +++ b/docs/_book/base/bubble.md @@ -0,0 +1,40 @@ +# bi.bubble + +#### 气泡提示 + +{% method %} +[source](https://jsfiddle.net/fineui/4u705v2v/) + +{% common %} +```javascript + +BI.createWidget({ + type: 'bi.bubble', + element: "#wrapper", + height: 30, + text: "测试" +}) + +``` + +{% endmethod %} + + +## API +##### 基础属性 + +| 参数 | 说明 | 类型 | 可选值 | 默认值 +| :------ |:------------- | :----- | :---- |:---- +| direction | 气泡显示位置 | string | — | "top" | +| height | 气泡高度 | number | — | 35 | +| text | 气泡显示内容 | string | — | " " | + + + +## 对外方法 +| 名称 | 说明 | 回调参数 +| :------ |:------------- | :----- +| setText | 设置文本值 | 需要设置的文本值text| + + +--- \ No newline at end of file diff --git a/docs/_book/base/button/button.html b/docs/_book/base/button/button.html new file mode 100644 index 000000000..f61f194e5 --- /dev/null +++ b/docs/_book/base/button/button.html @@ -0,0 +1,2763 @@ + + + + + + + button · GitBook + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        +
        + + + + + + + + +
        + +
        + +
        + + + + + + + + +
        +
        + +
        +
        + +
        + +

        bi.button

        +

        文字类型的按钮,基类BI.BasicButton

        +
        
        +BI.createWidget({
        +  type: 'bi.button',
        +  element: "#wrapper",
        +  text: '一般按钮',
        +  level: 'common',
        +  height: 30
        +});
        +
        +
        + +

        API

        +
        基础属性
        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        参数说明类型可选值默认值
        hgap效果相当于文本框左右padding值,如果clear属性为true,该属性值置0number10
        vgap效果相当于文本框上下padding值number0
        lgap效果相当于文本框left-padding值number0
        rgap效果相当于文本框right-padding值number0
        tgap效果相当于文本框top-padding值number0
        bgap效果相当于文本框bottom-padding值number0
        items子控件数组array[ ]
        width宽度number
        height高度number
        +
        高级属性
        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        参数说明类型可选值默认值
        level按钮类型stringcommon,success,warning,ignorecommon
        minWidth最小宽度,如果block/clear中某一项为true,此项值为0,否则为90number90
        shadow是否显示阴影booleantrue,falseprops.clear !== true
        isShadowShowingOnSelected选中状态下是否显示阴影booleantrue,falsetrue
        readonly是否只读booleantrue,falsetrue
        iconClass图标类型string" "
        block是否块状显示,即不显示边框,没有最小宽度的限制booleantrue,falsefalse
        clear是否去掉边框和背景booleantrue,falsefalse
        textAlign文字布局stringleft,center,rightcneter
        whiteSpace元素内的空白处理方式stringnormal,nowrapnowrap
        forceCenter是否无论如何都要居中, 不考虑超出边界的情况, 在未知宽度和高度时有效booleantrue,falsefalse
        textWidth按钮文本宽度numbernull
        textHeight按钮文本高度numbernull
        +

        对外方法

        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        名称说明回调参数
        doRedMark文本标红
        unRedMark取消文本标红
        doHighLight文本高亮
        unHighLight取消文本高亮
        setText设置文本值需要设置的文本值text
        doClick点击事件
        destroy销毁事件
        setValue设置文本值需要设置的文本值text
        +
        + + +
        + +
        +
        +
        + +

        results matching ""

        +
          + +
          +
          + +

          No results matching ""

          + +
          +
          +
          + +
          +
          + +
          + + + + +
          + + +
          + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/_book/base/button/button.md b/docs/_book/base/button/button.md new file mode 100644 index 000000000..4323fb351 --- /dev/null +++ b/docs/_book/base/button/button.md @@ -0,0 +1,70 @@ +# bi.button + +## 文字类型的按钮,基类[BI.BasicButton](/core/basicButton.md) + +{% method %} +[source](https://jsfiddle.net/fineui/txqwwzLm/) + +{% common %} +```javascript + +BI.createWidget({ + type: 'bi.button', + element: "#wrapper", + text: '一般按钮', + level: 'common', + height: 30 +}); + + +``` + +{% endmethod %} + +## API +##### 基础属性 +| 参数 | 说明 | 类型 | 可选值 | 默认值 +| :------ |:------------- | :-----| :----|:---- +| hgap | 效果相当于文本框左右padding值,如果clear属性为true,该属性值置0 | number | — | 10 | +| vgap | 效果相当于文本框上下padding值 | number | — | 0 | +| lgap | 效果相当于文本框left-padding值 | number | — | 0 | +| rgap | 效果相当于文本框right-padding值 | number | — | 0 | +| tgap |效果相当于文本框top-padding值 | number | — | 0 | +| bgap | 效果相当于文本框bottom-padding值 | number | — | 0 | +| items | 子控件数组 | array | — | [ ] | +| width | 宽度 | number | — | — | +| height | 高度 | number | — | — | + + +##### 高级属性 +| 参数 | 说明 | 类型 | 可选值 | 默认值 +| :------ |:------------- | :-----| :----|:---- +| level |按钮类型 | string| common,success,warning,ignore | common | +| minWidth | 最小宽度,如果block/clear中某一项为true,此项值为0,否则为90 | number | — | 90 | +| shadow | 是否显示阴影 | boolean| true,false | props.clear !== true | +| isShadowShowingOnSelected|选中状态下是否显示阴影 | boolean| true,false | true | +| readonly | 是否只读 | boolean | true,false | true | +| iconClass | 图标类型 | string| — | " "| +| block| 是否块状显示,即不显示边框,没有最小宽度的限制 | boolean| true,false | false | +| clear| 是否去掉边框和背景 |boolean| true,false | false | +| textAlign | 文字布局 | string | left,center,right | cneter | +| whiteSpace | 元素内的空白处理方式 | string | normal,nowrap | nowrap| +| forceCenter | 是否无论如何都要居中, 不考虑超出边界的情况, 在未知宽度和高度时有效 | boolean | true,false | false | +| textWidth| 按钮文本宽度 | number| — | null | +| textHeight | 按钮文本高度 | number| — | null | + +## 对外方法 +| 名称 | 说明 | 回调参数 +| :------ |:------------- | :----- +| doRedMark | 文本标红 | — | +| unRedMark | 取消文本标红| —| +| doHighLight | 文本高亮 | —| +| unHighLight | 取消文本高亮 | —| +| setText| 设置文本值 | 需要设置的文本值text| +| doClick | 点击事件 | —| +| destroy | 销毁事件 |— | +| setValue | 设置文本值 | 需要设置的文本值text | + +--- + + diff --git a/docs/_book/base/button/icon_button.html b/docs/_book/base/button/icon_button.html new file mode 100644 index 000000000..a3a1bc9e7 --- /dev/null +++ b/docs/_book/base/button/icon_button.html @@ -0,0 +1,2575 @@ + + + + + + + icon_button · GitBook + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
          +
          + + + + + + + + +
          + +
          + +
          + + + + + + + + +
          +
          + +
          +
          + +
          + +

          bi.icon_button

          +

          图标button,基类BI.BasicButton

          +
          
          +BI.createWidget({
          +    type: 'bi.icon_button',
          +    cls: "close-ha-font",
          +    width: 20,
          +    height: 20
          +});
          +
          +
          + +

          API

          +
          基础属性
          + + + + + + + + + + + + + + + + + + + + + + + + + + +
          参数说明类型可选值默认值
          iconWidth图标宽度numbernull
          iconHeight图标高度numbernull
          +

          对外方法

          + + + + + + + + + + + + + + + +
          名称说明回调参数
          doClick点击事件
          +
          + + +
          + +
          +
          +
          + +

          results matching ""

          +
            + +
            +
            + +

            No results matching ""

            + +
            +
            +
            + +
            +
            + +
            + + + + +
            + + +
            + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/_book/base/button/icon_button.md b/docs/_book/base/button/icon_button.md new file mode 100644 index 000000000..e98fd0821 --- /dev/null +++ b/docs/_book/base/button/icon_button.md @@ -0,0 +1,39 @@ +# bi.icon_button + +## 图标button,基类[BI.BasicButton](/core/basicButton.md) + +{% method %} +[source](https://jsfiddle.net/fineui/g52u14ay/) + +{% common %} +```javascript + +BI.createWidget({ + type: 'bi.icon_button', + cls: "close-ha-font", + width: 20, + height: 20 +}); + + +``` + +{% endmethod %} + +## API +##### 基础属性 +| 参数 | 说明 | 类型 | 可选值 | 默认值 +| :------ |:------------- | :-----| :----|:---- +| iconWidth | 图标宽度 | number| — | null | +| iconHeight | 图标高度 | number| — | null | + + +## 对外方法 +| 名称 | 说明 | 回调参数 +| :------ |:------------- | :----- +| doClick | 点击事件 | —| + + +--- + + diff --git a/docs/_book/base/button/image_button.html b/docs/_book/base/button/image_button.html new file mode 100644 index 000000000..2c4ce49b4 --- /dev/null +++ b/docs/_book/base/button/image_button.html @@ -0,0 +1,2620 @@ + + + + + + + image_button · GitBook + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
            +
            + + + + + + + + +
            + +
            + +
            + + + + + + + + +
            +
            + +
            +
            + +
            + +

            bi.image_button

            +

            图片的button,基类BI.BasicButton

            +
            
            +BI.createWidget({
            +  type: 'bi.image_button',
            +  src: "http://www.easyicon.net/api/resizeApi.php?id=1206741&size=128",
            +  width: 100,
            +  height: 100
            +});
            +
            +
            + +

            API

            +
            基础属性
            + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
            参数说明类型可选值默认值
            src图片路径string" "
            iconWidth图标宽度number/string"100%"
            iconHeight图标高度number/string"100%"
            +

            对外方法

            + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
            名称说明回调参数
            doClick点击事件
            setWidth设置按钮宽度宽度width
            setHeight设置按钮高度高度height
            setImageWidth设置图片宽度宽度width
            setImageHeight设置图片高度高度height
            getImageWidth获取图片宽度
            getImageHeight获取图片高度
            setSrc设置图片路径src
            getSrc获取图片路径
            +
            + + +
            + +
            +
            +
            + +

            results matching ""

            +
              + +
              +
              + +

              No results matching ""

              + +
              +
              +
              + +
              +
              + +
              + + + + +
              + + +
              + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/_book/base/button/image_button.md b/docs/_book/base/button/image_button.md new file mode 100644 index 000000000..e30b66be4 --- /dev/null +++ b/docs/_book/base/button/image_button.md @@ -0,0 +1,49 @@ +# bi.image_button + +## 图片的button,基类[BI.BasicButton](/core/basicButton.md) + +{% method %} +[source](https://jsfiddle.net/fineui/yc0g9gLw/) + +{% common %} +```javascript + +BI.createWidget({ + type: 'bi.image_button', + src: "http://www.easyicon.net/api/resizeApi.php?id=1206741&size=128", + width: 100, + height: 100 +}); + + +``` + +{% endmethod %} + +## API +##### 基础属性 +| 参数 | 说明 | 类型 | 可选值 | 默认值 +| :------ |:------------- | :-----| :----|:---- +| src |图片路径 |string | —|" " | +| iconWidth | 图标宽度 | number/string| — | "100%" | +| iconHeight | 图标高度 | number/string | — | "100%"| + + +## 对外方法 +| 名称 | 说明 | 回调参数 +| :------ |:------------- | :----- +| doClick | 点击事件 | —| +| setWidth | 设置按钮宽度| 宽度width | +| setHeight | 设置按钮高度 | 高度height| +| setImageWidth | 设置图片宽度| 宽度width | +| setImageHeight| 设置图片高度| 高度height| +| getImageWidth | 获取图片宽度| —| +| getImageHeight | 获取图片高度| —| +| setSrc| 设置图片路径| src | +| getSrc |获取图片路径| — | + + + +--- + + diff --git a/docs/_book/base/button/text_button.html b/docs/_book/base/button/text_button.html new file mode 100644 index 000000000..fe010e0e4 --- /dev/null +++ b/docs/_book/base/button/text_button.html @@ -0,0 +1,2679 @@ + + + + + + + text_button · GitBook + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
              +
              + + + + + + + + +
              + +
              + +
              + + + + + + + + +
              +
              + +
              +
              + +
              + +

              bi.text_button

              +

              可以点击的一行文字,基类BI.BasicButton

              +
              
              +BI.createWidget({
              + type: 'bi.text_button',
              + text: '文字按钮',
              + height: 30
              +});
              +
              +
              + +

              API

              +
              基础属性
              + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
              参数说明类型可选值默认值
              hgap效果相当于文本框左右padding值,如果clear属性为true,该属性值置0number10
              lgap效果相当于文本框left-padding值number0
              rgap效果相当于文本框right-padding值number0
              text按钮文本内容string
              textWidth按钮文本宽度numbernull
              textHeight按钮文本高度numbernull
              +
              高级属性
              + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
              参数说明类型可选值默认值
              py拼音string" "
              textAlign文字布局stringleft,center,rightcneter
              whiteSpace元素内的空白处理方式stringnormal,nowrapnowrap
              forceCenter是否无论如何都要居中, 不考虑超出边界的情况, 在未知宽度和高度时有效booleantrue,falsefalse
              +

              对外方法

              + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
              名称说明回调参数
              doRedMark文本标红
              unRedMark取消文本标红
              doHighLight文本高亮
              unHighLight取消文本高亮
              setText设置文本值需要设置的文本值text
              doClick点击事件
              setValue设置文本值需要设置的文本值text
              setStyle设置文本样式需要设置的文本标签样式,例{"color":"#000"}
              +
              + + +
              + +
              +
              +
              + +

              results matching ""

              +
                + +
                +
                + +

                No results matching ""

                + +
                +
                +
                + +
                +
                + +
                + + + + +
                + + +
                + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/_book/base/button/text_button.md b/docs/_book/base/button/text_button.md new file mode 100644 index 000000000..6686420a8 --- /dev/null +++ b/docs/_book/base/button/text_button.md @@ -0,0 +1,58 @@ +# bi.text_button + +## 可以点击的一行文字,基类[BI.BasicButton](/core/basicButton.md) + +{% method %} +[source](https://jsfiddle.net/fineui/5p99L39q/) + +{% common %} +```javascript + +BI.createWidget({ + type: 'bi.text_button', + text: '文字按钮', + height: 30 +}); + + +``` + +{% endmethod %} + +## API +##### 基础属性 +| 参数 | 说明 | 类型 | 可选值 | 默认值 +| :------ |:------------- | :-----| :----|:---- +| hgap | 效果相当于文本框左右padding值,如果clear属性为true,该属性值置0 | number | — | 10 | +| lgap | 效果相当于文本框left-padding值 | number | — | 0 | +| rgap | 效果相当于文本框right-padding值 | number | — | 0 | +| text|按钮文本内容 | string| — | — | +| textWidth| 按钮文本宽度 | number| — | null | +| textHeight | 按钮文本高度 | number| — | null | + + +##### 高级属性 +| 参数 | 说明 | 类型 | 可选值 | 默认值 +| :------ |:------------- | :-----| :----|:---- +| py | 拼音 | string| | " " | +| textAlign | 文字布局 | string | left,center,right | cneter | +| whiteSpace | 元素内的空白处理方式 | string | normal,nowrap | nowrap| +| forceCenter | 是否无论如何都要居中, 不考虑超出边界的情况, 在未知宽度和高度时有效 | boolean | true,false | false | + + +## 对外方法 +| 名称 | 说明 | 回调参数 +| :------ |:------------- | :----- +| doRedMark | 文本标红 | — | +| unRedMark | 取消文本标红| —| +| doHighLight | 文本高亮 | —| +| unHighLight | 取消文本高亮 | —| +| setText| 设置文本值 | 需要设置的文本值text| +| doClick | 点击事件 | —| +| setValue | 设置文本值 | 需要设置的文本值text | +| setStyle | 设置文本样式 |需要设置的文本标签样式,例{"color":"#000"} | + + +--- + + diff --git a/docs/_book/base/canvas.html b/docs/_book/base/canvas.html new file mode 100644 index 000000000..3a49aeeb6 --- /dev/null +++ b/docs/_book/base/canvas.html @@ -0,0 +1,2582 @@ + + + + + + + canvas · GitBook + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                +
                + + + + + + + + +
                + +
                + +
                + + + + + + + + +
                +
                + +
                +
                + +
                + +

                bi.canvas

                +

                canvas绘图,基类BI.Widget

                +
                
                +var canvas = BI.createWidget({
                +   type: "bi.canvas",
                +   element: "#wrapper",
                +   width: 500,
                +   height: 600
                +});
                +canvas.circle(150, 50, 20, "green");
                +canvas.stroke();
                +
                +
                + + +

                对外方法

                + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                名称说明回调参数
                line绘制线段(x0, y0, x1, y1)
                rect绘制矩形(x,y,w,h,color)分别表示左上角的横坐标、纵坐标,矩形宽、高、以及绘制的颜色
                circle绘制圆形(x, y, radius, color)分别表示原点的横坐标,纵坐标,半径以及颜色
                hollow填充中空的路径
                solid填充实心的路径
                gradient绘制渐变色(x0, y0, x1, y1, start, end)
                reset重置画布
                stroke绘制callback
                +
                + + +
                + +
                +
                +
                + +

                results matching ""

                +
                  + +
                  +
                  + +

                  No results matching ""

                  + +
                  +
                  +
                  + +
                  +
                  + +
                  + + + + +
                  + + +
                  + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/_book/base/canvas.md b/docs/_book/base/canvas.md new file mode 100644 index 000000000..7c08f96af --- /dev/null +++ b/docs/_book/base/canvas.md @@ -0,0 +1,40 @@ +# bi.canvas + +## canvas绘图,基类[BI.Widget](/core/widget.md) + +{% method %} +[source](https://jsfiddle.net/fineui/gcgd1va0/) + +{% common %} +```javascript + +var canvas = BI.createWidget({ + type: "bi.canvas", + element: "#wrapper", + width: 500, + height: 600 +}); +canvas.circle(150, 50, 20, "green"); +canvas.stroke(); + + +``` + +{% endmethod %} + + +## 对外方法 +| 名称 | 说明 | 回调参数 +| :------ |:------------- | :----- +| line | 绘制线段| (x0, y0, x1, y1) | +| rect | 绘制矩形 | (x,y,w,h,color)分别表示左上角的横坐标、纵坐标,矩形宽、高、以及绘制的颜色| +| circle | 绘制圆形 | (x, y, radius, color)分别表示原点的横坐标,纵坐标,半径以及颜色 | +| hollow | 填充中空的路径 | — | +| solid | 填充实心的路径 | — | +| gradient | 绘制渐变色 | (x0, y0, x1, y1, start, end) | +| reset | 重置画布 | —| +| stroke | 绘制 | callback | + +--- + + diff --git a/docs/_book/base/editor/code_editor.html b/docs/_book/base/editor/code_editor.html new file mode 100644 index 000000000..b181f0958 --- /dev/null +++ b/docs/_book/base/editor/code_editor.html @@ -0,0 +1,2636 @@ + + + + + + + code_editor · GitBook + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                  +
                  + + + + + + + + +
                  + +
                  + +
                  + + + + + + + + +
                  +
                  + +
                  +
                  + +
                  + +

                  bi.code_editor

                  +

                  代码文本框,基类BI.Single

                  +
                  
                  +BI.createWidget({
                  +   type: "bi.code_editor",
                  +   cls: "mvc-border",
                  +   width: 600,
                  +   height: 400
                  +});
                  +
                  +
                  + +

                  API

                  +
                  基础属性
                  + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                  参数说明类型可选值默认值
                  watermark文本框placeholderstring" "
                  readOnly是否只读booleantrue,falsefalse
                  lineHeight行高number2
                  value文本框值string" "
                  paramFormatter参数显示值构造函数functionvalue
                  +

                  对外方法

                  + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                  名称说明回调参数
                  insertParam插入参数param
                  insertString插入字符串str
                  getValue获取文本框值
                  setValue设置文本框值value
                  focus文本框获取焦点
                  blur文本框失焦
                  setStyle设置文本样式需要设置的文本标签样式style,例{"color":"#000"}
                  getStyle获取文本样式
                  refresh刷新文本框
                  +
                  + + +
                  + +
                  +
                  +
                  + +

                  results matching ""

                  +
                    + +
                    +
                    + +

                    No results matching ""

                    + +
                    +
                    +
                    + +
                    +
                    + +
                    + + + + +
                    + + +
                    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/_book/base/editor/code_editor.md b/docs/_book/base/editor/code_editor.md new file mode 100644 index 000000000..9a17529e1 --- /dev/null +++ b/docs/_book/base/editor/code_editor.md @@ -0,0 +1,53 @@ +# bi.code_editor + +## 代码文本框,基类[BI.Single](/core/single.md) + +{% method %} +[source](https://jsfiddle.net/fineui/fx86hLgm/) + +{% common %} +```javascript + +BI.createWidget({ + type: "bi.code_editor", + cls: "mvc-border", + width: 600, + height: 400 +}); + + +``` + +{% endmethod %} + +## API +##### 基础属性 +| 参数 | 说明 | 类型 | 可选值 | 默认值 +| :------ |:------------- | :-----| :----|:---- +| watermark | 文本框placeholder | string | — | " " | +| readOnly | 是否只读 | boolean | true,false | false| +| lineHeight | 行高 | number|— | 2| +| value | 文本框值| string| —| " "| +| paramFormatter| 参数显示值构造函数 | function| — | value | + + + +## 对外方法 +| 名称 | 说明 | 回调参数 +| :------ |:------------- | :----- +| insertParam | 插入参数 | param | +| insertString | 插入字符串 | str| +| getValue | 获取文本框值|—| +| setValue | 设置文本框值|value| +| focus | 文本框获取焦点| — | +| blur | 文本框失焦|—| +| setStyle | 设置文本样式 |需要设置的文本标签样式style,例{"color":"#000"} | +| getStyle | 获取文本样式 |— | +| refresh | 刷新文本框 | —| + + + + +--- + + diff --git a/docs/_book/base/editor/editor.html b/docs/_book/base/editor/editor.html new file mode 100644 index 000000000..2d07efce5 --- /dev/null +++ b/docs/_book/base/editor/editor.html @@ -0,0 +1,2810 @@ + + + + + + + editor · GitBook + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                    +
                    + + + + + + + + +
                    + +
                    + +
                    + + + + + + + + +
                    +
                    + +
                    +
                    + +
                    + +

                    bi.editor

                    +

                    文本框,基类BI.Single

                    +
                    
                    +BI.createWidget({
                    +    type: "bi.editor",
                    +    element: "#wrapper",
                    +    errorText: "字段不可重名!",
                    +    width: 200,
                    +    height: 30
                    +});
                    +
                    +
                    + +

                    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
                    allowBlank是否允许空值booleantrue,falsefalse
                    watermark文本框placeholderstring" "
                    errorText错误提示string/function" "
                    tipType提示类型stringsuccess,warning"warning"
                    inputType输入框类型string参考input输入框类型"text"
                    +

                    对外方法

                    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                    名称说明回调参数
                    setErrorText设置错误文本text
                    getErrorText获取错误文本
                    setErrorVisible设置错误文本可见b
                    disableError设置error不可用
                    enableError设置error可用
                    disableWaterMark设置文本框placeholder不可用
                    enableWaterMark恢复文本框placeholder可用
                    focus文本框获取焦点
                    blur文本框失焦
                    selectAll选中文本框文本
                    onKeyDown按键事件key
                    setValue设置文本框值value
                    getLastValidValue获取文本框最后一次输入的有效值
                    resetLastValidValue重置文本框最后一次输入的有效值value
                    getValue获取文本框值
                    isEditing文本框是否处于编辑状态
                    isValid文本框值是否有效
                    +

                    事件

                    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                    事件说明
                    BI.Editor.EVENT_CHANGEeditor的value发生改变触发
                    BI.Editor.EVENT_FOCUSfocus事件
                    BI.Editor.EVENT_BLURblur事件
                    BI.Editor.EVENT_CLICK点击编辑框触发(不在编辑状态时)
                    BI.Editor.EVENT_KEY_DOWNkeyDown时触发
                    BI.Editor.EVENT_SPACE按下空格触发
                    BI.Editor.EVENT_BACKSPACE按下Backspace触发
                    BI.Editor.EVENT_START开始输入触发
                    BI.Editor.EVENT_PAUSE暂停输入触发(输入空白字符)
                    BI.Editor.EVENT_STOP停止输入触发
                    BI.Editor.EVENT_CONFIRM确定输入触发(blur时且输入值有效)
                    BI.Editor.EVENT_VALID输入值有效的状态事件
                    BI.Editor.EVENT_ERROR输入值无效的状态事件
                    BI.Editor.EVENT_ENTER回车事件
                    BI.Editor.EVENT_RESTRICT回车但是值不合法
                    BI.Editor.EVENT_REMOVE输入为空时按下backspace
                    BI.Editor.EVENT_EMPTY输入框为空时触发
                    +
                    + + +
                    + +
                    +
                    +
                    + +

                    results matching ""

                    +
                      + +
                      +
                      + +

                      No results matching ""

                      + +
                      +
                      +
                      + +
                      +
                      + +
                      + + + + +
                      + + +
                      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/_book/base/editor/editor.md b/docs/_book/base/editor/editor.md new file mode 100644 index 000000000..61be1f4d0 --- /dev/null +++ b/docs/_book/base/editor/editor.md @@ -0,0 +1,89 @@ +# bi.editor + +## 文本框,基类[BI.Single](/core/single.md) + +{% method %} +[source](https://jsfiddle.net/fineui/4eLytgve/) + +{% common %} +```javascript + +BI.createWidget({ + type: "bi.editor", + element: "#wrapper", + errorText: "字段不可重名!", + width: 200, + height: 30 +}); + + +``` + +{% 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 | — | — | +| allowBlank | 是否允许空值 | boolean | true,false | false | +| watermark | 文本框placeholder | string | — | " " | +| errorText | 错误提示 | string/function | —| " "| +| tipType| 提示类型 | string |success,warning | "warning"| +| inputType| 输入框类型| string| 参考input输入框类型 | "text"| + + + +## 对外方法 +| 名称 | 说明 | 回调参数 +| :------ |:------------- | :----- +| setErrorText | 设置错误文本 | text | +| getErrorText | 获取错误文本 | —| +| setErrorVisible | 设置错误文本可见|b | +| disableError | 设置error不可用|— | +| enableError| 设置error可用| —| +| disableWaterMark | 设置文本框placeholder不可用| —| +| enableWaterMark | 恢复文本框placeholder可用| — | +| focus | 文本框获取焦点| — | +| blur | 文本框失焦|—| +| selectAll | 选中文本框文本| —| +| onKeyDown |按键事件|key| +| setValue | 设置文本框值|value| +| getLastValidValue | 获取文本框最后一次输入的有效值| —| +| resetLastValidValue| 重置文本框最后一次输入的有效值|value| +| getValue | 获取文本框值|—| +| isEditing | 文本框是否处于编辑状态|—| +| isValid | 文本框值是否有效|—| + +## 事件 +| 事件 | 说明 | +| :------ |:------------- | +|BI.Editor.EVENT_CHANGE | editor的value发生改变触发 | +|BI.Editor.EVENT_FOCUS | focus事件 | +|BI.Editor.EVENT_BLUR | blur事件 | +|BI.Editor.EVENT_CLICK | 点击编辑框触发(不在编辑状态时) | +|BI.Editor.EVENT_KEY_DOWN | keyDown时触发 | +|BI.Editor.EVENT_SPACE | 按下空格触发 | +|BI.Editor.EVENT_BACKSPACE | 按下Backspace触发 | +|BI.Editor.EVENT_START | 开始输入触发 | +|BI.Editor.EVENT_PAUSE | 暂停输入触发(输入空白字符) | +|BI.Editor.EVENT_STOP | 停止输入触发 | +|BI.Editor.EVENT_CONFIRM | 确定输入触发(blur时且输入值有效) | +|BI.Editor.EVENT_VALID | 输入值有效的状态事件 | +|BI.Editor.EVENT_ERROR | 输入值无效的状态事件 | +|BI.Editor.EVENT_ENTER | 回车事件 | +|BI.Editor.EVENT_RESTRICT | 回车但是值不合法 | +|BI.Editor.EVENT_REMOVE | 输入为空时按下backspace | +|BI.Editor.EVENT_EMPTY | 输入框为空时触发 | + + +--- + + diff --git a/docs/_book/base/editor/formula_editor.html b/docs/_book/base/editor/formula_editor.html new file mode 100644 index 000000000..9c0cd464a --- /dev/null +++ b/docs/_book/base/editor/formula_editor.html @@ -0,0 +1,2661 @@ + + + + + + + formula_editor · GitBook + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                      +
                      + + + + + + + + +
                      + +
                      + +
                      + + + + + + + + +
                      +
                      + +
                      +
                      + +
                      + +

                      bi.formula_editor

                      +

                      公式编辑控件,基类BI.Single

                      +
                      
                      +BI.createWidget({
                      +  type: "bi.formula_editor",
                      +  cls: "bi-border",
                      +  watermark:'请输入公式',
                      +  value: 'SUM(C5, 16, 26)',
                      +  width: "100%",
                      +  height: "100%"
                      +});
                      +
                      +
                      + +

                      API

                      +
                      基础属性
                      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                      参数说明类型可选值默认值
                      value文本域的值string" "
                      watermark文本框placeholderstring" "
                      fieldTextValueMap字段集合onject{}
                      showHint是否显示提示信息booleantrue,falsetrue
                      lineHeight行高number2
                      +

                      对外方法

                      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                      名称说明回调参数
                      disableWaterMark设置文本框placeholder不可用
                      focus文本框获取焦点
                      insertField添加字段field
                      insertFunction插入函数fn
                      insertOperator插入操作符op
                      setFunction设置函数v
                      insertString插入字符串str
                      getFormulaString获取公式框内容
                      getUsedFields获取可用字段
                      getCheckString获取校验内容
                      getValue获取文本框值
                      setValue设置文本框值value
                      setFieldTextValueMap设置字段集合fieldTextValueMap
                      refresh刷新文本框
                      +
                      + + +
                      + +
                      +
                      +
                      + +

                      results matching ""

                      +
                        + +
                        +
                        + +

                        No results matching ""

                        + +
                        +
                        +
                        + +
                        +
                        + +
                        + + + + +
                        + + +
                        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/_book/base/editor/formula_editor.md b/docs/_book/base/editor/formula_editor.md new file mode 100644 index 000000000..e44f77c32 --- /dev/null +++ b/docs/_book/base/editor/formula_editor.md @@ -0,0 +1,59 @@ +# bi.formula_editor + +## 公式编辑控件,基类[BI.Single](/core/single.md) + +{% method %} +[source](https://jsfiddle.net/fineui/qnquz4o0/) + +{% common %} +```javascript + +BI.createWidget({ + type: "bi.formula_editor", + cls: "bi-border", + watermark:'请输入公式', + value: 'SUM(C5, 16, 26)', + width: "100%", + height: "100%" +}); + + +``` + +{% endmethod %} + +## API +##### 基础属性 +| 参数 | 说明 | 类型 | 可选值 | 默认值 +| :------ |:------------- | :-----| :----|:---- +| value | 文本域的值 | string | — | " "| +| watermark | 文本框placeholder| string | —| " " | +| fieldTextValueMap | 字段集合 | onject | —| {}| +| showHint | 是否显示提示信息 | boolean | true,false | true | +| lineHeight | 行高 | number | —| 2| + + + +## 对外方法 +| 名称 | 说明 | 回调参数 +| :------ |:------------- | :----- +| disableWaterMark | 设置文本框placeholder不可用 | — | +| focus | 文本框获取焦点| — | +| insertField | 添加字段 | field | +| insertFunction | 插入函数 | fn | +| insertOperator | 插入操作符| op| +| setFunction | 设置函数 | v| +| insertString | 插入字符串 | str| +| getFormulaString | 获取公式框内容 |— | +| getUsedFields | 获取可用字段 | — | +| getCheckString | 获取校验内容 | — | +| getValue | 获取文本框值|—| +| setValue | 设置文本框值|value| +| setFieldTextValueMap | 设置字段集合 | fieldTextValueMap | +| refresh | 刷新文本框 | —| + + + +--- + + diff --git a/docs/_book/base/editor/multifile_editor.html b/docs/_book/base/editor/multifile_editor.html new file mode 100644 index 000000000..71c2f86b1 --- /dev/null +++ b/docs/_book/base/editor/multifile_editor.html @@ -0,0 +1,2626 @@ + + + + + + + multifile_editor · GitBook + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                        +
                        + + + + + + + + +
                        + +
                        + +
                        + + + + + + + + +
                        +
                        + +
                        +
                        + +
                        + +

                        bi.multifile_editor

                        +

                        多文件,基类BI.Single

                        +
                        
                        +BI.createWidget({
                        +   type: "bi.multifile_editor",
                        +   width: 400,
                        +   height: 300
                        +});
                        +
                        +
                        + +

                        API

                        +
                        基础属性
                        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                        参数说明类型可选值默认值
                        multiple是否支持多选booleantrue,falsefalse
                        maxSize最大可选数量number-1
                        accept允许上传的文件类型string" "
                        url文件路径string" "
                        +

                        对外方法

                        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                        名称说明回调参数
                        select选择文件
                        getValue获取文件名称
                        upload文件上传
                        reset重置
                        +

                        事件

                        + + + + + + + + + + + + + + + + + + + + + +
                        事件说明
                        BI.MultifileEditor.EVENT_UPLOADSTART开始上传时触发
                        BI.MultifileEditor.EVENT_PROGRESS上传过程中触发
                        BI.MultifileEditor.EVENT_UPLOADED上传结束后触发
                        +
                        + + +
                        + +
                        +
                        +
                        + +

                        results matching ""

                        +
                          + +
                          +
                          + +

                          No results matching ""

                          + +
                          +
                          +
                          + +
                          +
                          + +
                          + + + + +
                          + + +
                          + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/_book/base/editor/multifile_editor.md b/docs/_book/base/editor/multifile_editor.md new file mode 100644 index 000000000..bef06cf04 --- /dev/null +++ b/docs/_book/base/editor/multifile_editor.md @@ -0,0 +1,51 @@ +# bi.multifile_editor + +## 多文件,基类[BI.Single](/core/single.md) + +{% method %} +[source](https://jsfiddle.net/fineui/25r3r5fq/) + +{% common %} +```javascript + +BI.createWidget({ + type: "bi.multifile_editor", + width: 400, + height: 300 +}); + + +``` + +{% endmethod %} + +## API +##### 基础属性 +| 参数 | 说明 | 类型 | 可选值 | 默认值 +| :------ |:------------- | :-----| :----|:---- +| multiple | 是否支持多选 | boolean | true,false| false | +| maxSize | 最大可选数量 | number |— | -1 | +| accept | 允许上传的文件类型 | string | —| " "| +| url | 文件路径 | string | —| " "| + + + +## 对外方法 +| 名称 | 说明 | 回调参数 +| :------ |:------------- | :----- +| select | 选择文件 | —| +| getValue | 获取文件名称 | —| +| upload | 文件上传| —| +| reset | 重置| —| + +## 事件 +| 事件 | 说明 | +| :------ |:------------- | +|BI.MultifileEditor.EVENT_UPLOADSTART | 开始上传时触发 | +|BI.MultifileEditor.EVENT_PROGRESS | 上传过程中触发 | +|BI.MultifileEditor.EVENT_UPLOADED | 上传结束后触发 | + + +--- + + diff --git a/docs/_book/base/editor/textarea_editor.html b/docs/_book/base/editor/textarea_editor.html new file mode 100644 index 000000000..0fbe772e6 --- /dev/null +++ b/docs/_book/base/editor/textarea_editor.html @@ -0,0 +1,2592 @@ + + + + + + + textarea_editor · GitBook + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                          +
                          + + + + + + + + +
                          + +
                          + +
                          + + + + + + + + +
                          +
                          + +
                          +
                          + +
                          + +

                          bi.textarea_editor

                          +

                          文本域,基类BI.Single

                          +
                          
                          +BI.createWidget({
                          +   type: "bi.textarea_editor",
                          +   width: 400,
                          +   height: 300
                          +});
                          +
                          +
                          + +

                          API

                          +
                          基础属性
                          + + + + + + + + + + + + + + + + + + + +
                          参数说明类型可选值默认值
                          value文本域的值string" "
                          +

                          对外方法

                          + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                          名称说明回调参数
                          getValue获取文本域值
                          setValue设置文本域值value
                          setStyle设置文本域样式需要设置的文本域样式style,例{"color":"#000"}
                          getStyle获取文本域样式
                          focus文本域获取焦点
                          blur文本域失焦
                          +
                          + + +
                          + +
                          +
                          +
                          + +

                          results matching ""

                          +
                            + +
                            +
                            + +

                            No results matching ""

                            + +
                            +
                            +
                            + +
                            +
                            + +
                            + + + + +
                            + + +
                            + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/_book/base/editor/textarea_editor.md b/docs/_book/base/editor/textarea_editor.md new file mode 100644 index 000000000..a22005163 --- /dev/null +++ b/docs/_book/base/editor/textarea_editor.md @@ -0,0 +1,45 @@ +# bi.textarea_editor + +## 文本域,基类[BI.Single](/core/single.md) + +{% method %} +[source](https://jsfiddle.net/fineui/90721e0a/) + +{% common %} +```javascript + +BI.createWidget({ + type: "bi.textarea_editor", + width: 400, + height: 300 +}); + + +``` + +{% endmethod %} + +## API +##### 基础属性 +| 参数 | 说明 | 类型 | 可选值 | 默认值 +| :------ |:------------- | :-----| :----|:---- +| value | 文本域的值 | string | — | " "| + + + +## 对外方法 +| 名称 | 说明 | 回调参数 +| :------ |:------------- | :----- +| getValue | 获取文本域值|—| +| setValue | 设置文本域值|value| +| setStyle | 设置文本域样式 |需要设置的文本域样式style,例{"color":"#000"} | +| getStyle | 获取文本域样式 |— | +| focus | 文本域获取焦点| — | +| blur | 文本域失焦|—| + + + + +--- + + diff --git a/docs/_book/base/label.html b/docs/_book/base/label.html new file mode 100644 index 000000000..9ae2365ad --- /dev/null +++ b/docs/_book/base/label.html @@ -0,0 +1,2735 @@ + + + + + + + label · GitBook + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                            +
                            + + + + + + + + +
                            + +
                            + +
                            + + + + + + + + +
                            +
                            + +
                            +
                            + +
                            + +

                            bi.label

                            +

                            文本标签

                            +
                            
                            +BI.createWidget({
                            +  type: "bi.label",
                            +    textWidth: 100,
                            +    textHeight: 30,
                            +    text: "基本标签"
                            +});
                            +
                            +
                            + + +

                            API

                            +
                            基础属性
                            + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                            参数说明类型可选值默认值
                            hgap效果相当于容器左右padding值number0
                            vgap效果相当于容器上下padding值number0
                            lgap效果相当于容器left-padding值number0
                            rgap效果相当于容器right-padding值number0
                            tgap效果相当于容器top-padding值number0
                            bgap效果相当于容器bottom-padding值number0
                            textWidth文本标签宽度numbernull
                            textHeight文本标签宽度numbernull
                            text文本内容string" "
                            +
                            高级属性
                            + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                            参数说明类型可选值默认值
                            textAlign文本对齐方式stringleft,center,rightcenter
                            whiteSpace元素内空白处理方式stringnormal,nowrapnowrap
                            forceCenter是否无论如何都要居中, 不考虑超出边界的情况, 在未知宽度和高度时有效booleantrue,falsetrue
                            py拼音string
                            keyword设置标红的关键词string
                            disabled灰化booleantrue,false
                            title提示titlestring
                            warningTitle错误提示titlestring
                            +

                            对外方法

                            + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                            名称说明回调参数
                            doRedMark文本标红
                            unRedMark取消文本标红
                            doHighLight文本高亮
                            unHighLight取消文本高亮
                            setText设置文本值需要设置的文本值text
                            getText获取文本值
                            setStyle设置文本样式需要设置的文本标签样式,例{"color":"#000"}
                            setValue设置文本值需要设置的文本值text
                            populate清空label
                            +
                            + + +
                            + +
                            +
                            +
                            + +

                            results matching ""

                            +
                              + +
                              +
                              + +

                              No results matching ""

                              + +
                              +
                              +
                              + +
                              +
                              + +
                              + + + + +
                              + + +
                              + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/_book/base/label.md b/docs/_book/base/label.md new file mode 100644 index 000000000..1cfa2b537 --- /dev/null +++ b/docs/_book/base/label.md @@ -0,0 +1,67 @@ +# bi.label + +#### 文本标签 + +{% method %} +[source](https://jsfiddle.net/fineui/47f5ps1j/) + +{% common %} +```javascript + +BI.createWidget({ + type: "bi.label", + textWidth: 100, + textHeight: 30, + text: "基本标签" +}); + + +``` + +{% endmethod %} + + +## API +##### 基础属性 + +| 参数 | 说明 | 类型 | 可选值 | 默认值 +| :------ |:------------- | :----- | :----|:---- +| hgap | 效果相当于容器左右padding值 | number | —| 0 | +| vgap | 效果相当于容器上下padding值 | number | —| 0 | +| lgap | 效果相当于容器left-padding值 | number | — | 0 | +| rgap | 效果相当于容器right-padding值 | number | —| 0 | +| tgap | 效果相当于容器top-padding值 | number | — | 0 | +| bgap | 效果相当于容器bottom-padding值 | number | — | 0 | +| textWidth | 文本标签宽度 | number| — | null | +| textHeight | 文本标签宽度 | number| — | null | +| text | 文本内容 | string | — | " " | + + +##### 高级属性 + +| 参数 | 说明 | 类型 | 可选值 | 默认值 +| :------ |:------------- | :----- | :----|:---- +| textAlign | 文本对齐方式 | string | left,center,right | center | +| whiteSpace | 元素内空白处理方式 | string| normal,nowrap | nowrap| +| forceCenter | 是否无论如何都要居中, 不考虑超出边界的情况, 在未知宽度和高度时有效 | boolean | true,false | true | +| py | 拼音 | string | — | 空 | +| keyword | 设置标红的关键词 | string | —| 空 | +| disabled | 灰化 | boolean| true,false | 无 | +| title | 提示title | string | — | 空 | +| warningTitle | 错误提示title | string | — | 空 | + +## 对外方法 +| 名称 | 说明 | 回调参数 +| :------ |:------------- | :----- +| doRedMark | 文本标红 | — | +| unRedMark | 取消文本标红| —| +| doHighLight | 文本高亮 | —| +| unHighLight | 取消文本高亮 | —| +| setText| 设置文本值 | 需要设置的文本值text| +| getText| 获取文本值 | —| +| setStyle | 设置文本样式 |需要设置的文本标签样式,例{"color":"#000"} | +| setValue | 设置文本值 | 需要设置的文本值text | +| populate| 清空label | —| + + +--- \ No newline at end of file diff --git a/docs/_book/base/message.html b/docs/_book/base/message.html new file mode 100644 index 000000000..b08f0b388 --- /dev/null +++ b/docs/_book/base/message.html @@ -0,0 +1,2565 @@ + + + + + + + message · GitBook + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                              +
                              + + + + + + + + +
                              + +
                              + +
                              + + + + + + + + +
                              +
                              + +
                              +
                              + +
                              + +

                              bi.Msg

                              +

                              消息提示

                              +
                              
                              +BI.createWidget({
                              +  type: "bi.button",
                              +  element: "#wrapper",
                              +  text : '点击我弹出一个消息框',
                              +  height : 30,
                              +  handler : function() {
                              +      BI.Msg.confirm('测试消息框',"我是测试消息框的内容");
                              +  }
                              +});
                              +
                              +
                              + + + + +

                              对外方法

                              + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                              名称说明回调参数
                              alert警告消息框title, message, callback
                              confirm确认消息框title, message, callback
                              prompt提示消息框title, message, value, callback, min_width
                              toasttoast提示message, level, context
                              +
                              + + +
                              + +
                              +
                              +
                              + +

                              results matching ""

                              +
                                + +
                                +
                                + +

                                No results matching ""

                                + +
                                +
                                +
                                + +
                                +
                                + +
                                + + + + +
                                + + +
                                + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/_book/base/message.md b/docs/_book/base/message.md new file mode 100644 index 000000000..ae2532e23 --- /dev/null +++ b/docs/_book/base/message.md @@ -0,0 +1,39 @@ +# bi.Msg + +#### 消息提示 + +{% method %} +[source](https://jsfiddle.net/fineui/feu8kf4u/) + +{% common %} +```javascript + +BI.createWidget({ + type: "bi.button", + element: "#wrapper", + text : '点击我弹出一个消息框', + height : 30, + handler : function() { + BI.Msg.confirm('测试消息框',"我是测试消息框的内容"); + } +}); + + + +``` + +{% endmethod %} + + + + +## 对外方法 +| 名称 | 说明 | 回调参数 +| :------ |:------------- | :----- +| alert | 警告消息框 | title, message, callback| +| confirm | 确认消息框 | title, message, callback | +| prompt | 提示消息框 | title, message, value, callback, min_width | +| toast | toast提示 | message, level, context| + + +--- diff --git a/docs/_book/base/pager.html b/docs/_book/base/pager.html new file mode 100644 index 000000000..a4e584aa8 --- /dev/null +++ b/docs/_book/base/pager.html @@ -0,0 +1,2733 @@ + + + + + + + pager · GitBook + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                +
                                + + + + + + + + +
                                + +
                                + +
                                + + + + + + + + +
                                +
                                + +
                                +
                                + +
                                + +

                                bi.pager

                                +

                                分页控件,基类BI.Widget

                                +
                                
                                +BI.createWidget({
                                +  type: "bi.pager",
                                +  height: 50,
                                +  pages: 18,
                                +  groups: 5,
                                +  curr: 6,
                                +  first: "首页",
                                +  last: "尾页"
                                +});
                                +
                                +
                                + +

                                API

                                +
                                基础属性
                                + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                参数说明类型可选值默认值
                                behaviors自定义列表中item项的行为,如高亮,标红等object{}
                                layouts布局array{type:"bi.horizontal",hgap:10,vgap:0}
                                dynamicShow是否动态显示上一页、下一页、首页、尾页, 若为false,则指对其设置使能状态booleantrue,falsetrue
                                dynamicShowFirstLast是否动态显示首页、尾页,dynamicShow为false时生效booleantrue,falsefalse
                                dynamicShowPrevNext是否动态显示上一页、下一页,dynamicShow为false时生效booleantrue,falsefalse
                                pages是否显示总页数booleantrue,falsefalse
                                curr初始化当前页functionfunction(){return 1;}
                                groups连续显示分页数number0
                                jump页数跳转function
                                first是否显示首页booleantrue,falsefalse
                                last是否显示尾页booleantrue,falsefalse
                                prev上一页string,object —"上一页"
                                next下一页sting,object"下一页"
                                firstPage第一页number1
                                lastPage最后一页,在万不得已时才会调用这个函数获取最后一页的页码, 主要作用于setValue方法functionfunction(){ return 1;}
                                hasPrev判断是否有上一页,pages不可用时有效function
                                hasNext判断是否有下一页,pages不可用时有效function
                                +

                                对外方法

                                + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                名称说明回调参数
                                getCurrentPage获取当前页码
                                setAllPages设置总页数pages
                                hasPrev判断是否有上一页v
                                hasNext判断是否有下一页v
                                setValue设置当前页码v
                                getValue获取当前页码
                                attr设置属性key,value
                                populate刷新或者清空列表
                                +

                                事件

                                + + + + + + + + + + + + + +
                                名称说明
                                BI.Pager.EVENT_AFTER_POPULATEpager刷新完成事件
                                +
                                + + +
                                + +
                                +
                                +
                                + +

                                results matching ""

                                +
                                  + +
                                  +
                                  + +

                                  No results matching ""

                                  + +
                                  +
                                  +
                                  + +
                                  +
                                  + +
                                  + + + + +
                                  + + +
                                  + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/_book/base/pager.md b/docs/_book/base/pager.md new file mode 100644 index 000000000..d26530586 --- /dev/null +++ b/docs/_book/base/pager.md @@ -0,0 +1,68 @@ +# bi.pager + +## 分页控件,基类[BI.Widget](/core/widget.md) + +{% method %} +[source](https://jsfiddle.net/fineui/rhhte9b3/) + +{% common %} +```javascript + +BI.createWidget({ + type: "bi.pager", + height: 50, + pages: 18, + groups: 5, + curr: 6, + first: "首页", + last: "尾页" +}); + + +``` + +{% endmethod %} + +## API +##### 基础属性 +| 参数 | 说明 | 类型 | 可选值 | 默认值 +| :------ |:------------- | :-----| :----|:---- +| behaviors | 自定义列表中item项的行为,如高亮,标红等 | object| — | {}| +| layouts | 布局| array |— | {type:"bi.horizontal",hgap:10,vgap:0} | +| dynamicShow | 是否动态显示上一页、下一页、首页、尾页, 若为false,则指对其设置使能状态 | boolean| true,false | true| +| dynamicShowFirstLast | 是否动态显示首页、尾页,dynamicShow为false时生效| boolean| true,false | false | +| dynamicShowPrevNext | 是否动态显示上一页、下一页,dynamicShow为false时生效 | boolean| true,false | false| +| pages | 是否显示总页数 | boolean| true,false|false| +| curr | 初始化当前页 | function | —| function(){return 1;}| +| groups | 连续显示分页数 | number | — | 0 | +| jump | 页数跳转| function |— | —| +| first | 是否显示首页 | boolean | true,false| false| +| last | 是否显示尾页 | boolean | true,false| false| +| prev | 上一页 | string,object —| — |"上一页" | +| next | 下一页 | sting,object| —| "下一页" | +| firstPage | 第一页 | number|— | 1 | +| lastPage | 最后一页,在万不得已时才会调用这个函数获取最后一页的页码, 主要作用于setValue方法 | function | —| function(){ return 1;}| +| hasPrev | 判断是否有上一页,pages不可用时有效 | function | —| — | +| hasNext | 判断是否有下一页,pages不可用时有效 | function |— | — | + + +## 对外方法 +| 名称 | 说明 | 回调参数 +| :------ |:------------- | :----- +| getCurrentPage | 获取当前页码 | —| +| setAllPages | 设置总页数 | pages | +| hasPrev | 判断是否有上一页 | v | +| hasNext | 判断是否有下一页 | v | +| setValue | 设置当前页码 | v | +| getValue | 获取当前页码 | —| +| attr | 设置属性 | key,value | +| populate | 刷新或者清空列表| —| + +## 事件 +| 名称 | 说明 | +| :------ |:------------- | +| BI.Pager.EVENT_AFTER_POPULATE | pager刷新完成事件 | + +--- + + diff --git a/docs/_book/base/svg.html b/docs/_book/base/svg.html new file mode 100644 index 000000000..483234b7c --- /dev/null +++ b/docs/_book/base/svg.html @@ -0,0 +1,2639 @@ + + + + + + + svg · GitBook + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                  +
                                  + + + + + + + + +
                                  + +
                                  + +
                                  + + + + + + + + +
                                  +
                                  + +
                                  +
                                  + +
                                  + +

                                  bi.svg

                                  +

                                  svg绘图,基类BI.Widget

                                  +
                                  
                                  +var svg = BI.createWidget({
                                  +    type: "bi.svg",
                                  +    width: 500,
                                  +    height: 600
                                  +});
                                  +
                                  +svg.path("M10,10L50,50M50,10L10,50")
                                  +    .attr({stroke: "red"});
                                  +
                                  +
                                  + + +

                                  对外方法

                                  + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                  名称说明回调参数
                                  add添加对象到json数组json
                                  path绘制路径pathString
                                  image绘制图片(src,x,y,w,h)分别表示图片路径,绘制的原点横、纵坐标,宽、高
                                  rect绘制矩形(x,y,w,h,r)分别表示左上角的横坐标、纵坐标,矩形宽、高、以及矩形的圆角border-radius大小
                                  circle绘制圆形(x,y,r)分别表示原点的横坐标,纵坐标,以及半径
                                  ellipse绘制椭圆(x,y,rx,ry)分别表示原点的横、纵坐标,以及水平半径和垂直半径
                                  text绘制文本(x,y,text)分别表示绘制的原点横、纵坐标以及要绘制的文本内容
                                  print根据制定参数打印出路径(x, y, string, font, size, origin, letter_spacing, line_spacing)
                                  setStart开始绘制
                                  setFinish结束绘制
                                  setSize设置画布尺寸(width,height)分别表示画布宽高
                                  setViewBox设置画布可视区域(x,y,width,height,fit)分别表示可视区域原点坐标以及可视区域宽高,以及是否根据可视区域进行调整
                                  getById根据id返回元素id
                                  getElementByPoint获根据给定的点坐标返回元素(x,y)
                                  getElementsByPoint获根据给定的点坐标返回元素(x,y)
                                  getFont通过给定的参数在已注册的字体中找到字体对象(family, weight, style, stretch)
                                  set绘制形状的集合
                                  remove设置总页数pages
                                  clear判断是否有上一页v
                                  +
                                  + + +
                                  + +
                                  +
                                  +
                                  + +

                                  results matching ""

                                  +
                                    + +
                                    +
                                    + +

                                    No results matching ""

                                    + +
                                    +
                                    +
                                    + +
                                    +
                                    + +
                                    + + + + +
                                    + + +
                                    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/_book/base/svg.md b/docs/_book/base/svg.md new file mode 100644 index 000000000..6724b4fc9 --- /dev/null +++ b/docs/_book/base/svg.md @@ -0,0 +1,55 @@ +# bi.svg + +## svg绘图,基类[BI.Widget](/core/widget.md) + +{% method %} +[source](https://jsfiddle.net/fineui/1xn8snp3/) + +{% common %} +```javascript + +var svg = BI.createWidget({ + type: "bi.svg", + width: 500, + height: 600 +}); + +svg.path("M10,10L50,50M50,10L10,50") + .attr({stroke: "red"}); + + +``` + +{% endmethod %} + + +## 对外方法 +| 名称 | 说明 | 回调参数 +| :------ |:------------- | :----- +| add | 添加对象到json数组 | json | +| path | 绘制路径 | pathString | +| image | 绘制图片 | (src,x,y,w,h)分别表示图片路径,绘制的原点横、纵坐标,宽、高 | +| rect | 绘制矩形 | (x,y,w,h,r)分别表示左上角的横坐标、纵坐标,矩形宽、高、以及矩形的圆角border-radius大小| +| circle | 绘制圆形 | (x,y,r)分别表示原点的横坐标,纵坐标,以及半径 | +| ellipse | 绘制椭圆 |(x,y,rx,ry)分别表示原点的横、纵坐标,以及水平半径和垂直半径| +| text | 绘制文本 | (x,y,text)分别表示绘制的原点横、纵坐标以及要绘制的文本内容| +| print | 根据制定参数打印出路径 | (x, y, string, font, size, origin, letter_spacing, line_spacing) | +| setStart | 开始绘制 | — | +| setFinish | 结束绘制 | — | +| setSize | 设置画布尺寸 | (width,height)分别表示画布宽高| +| setViewBox | 设置画布可视区域 | (x,y,width,height,fit)分别表示可视区域原点坐标以及可视区域宽高,以及是否根据可视区域进行调整 | +| getById | 根据id返回元素 | id | +| getElementByPoint | 获根据给定的点坐标返回元素 | (x,y)| +| getElementsByPoint | 获根据给定的点坐标返回元素 | (x,y) | +| getFont | 通过给定的参数在已注册的字体中找到字体对象 | (family, weight, style, stretch) | +| set | 绘制形状的集合 | — | +| remove | 设置总页数 | pages | +| clear | 判断是否有上一页 | v | + + + + + +--- + + diff --git a/docs/_book/base/table/collection_table.html b/docs/_book/base/table/collection_table.html new file mode 100644 index 000000000..c21160988 --- /dev/null +++ b/docs/_book/base/table/collection_table.html @@ -0,0 +1,2712 @@ + + + + + + + collection_table · GitBook + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                    +
                                    + + + + + + + + +
                                    + +
                                    + +
                                    + + + + + + + + +
                                    +
                                    + +
                                    +
                                    + +
                                    + +

                                    bi.collection_table

                                    +

                                    基本的表格 继承BI.Widget

                                    +
                                    BI.createWidget({
                                    +  type: "bi.collection_table",
                                    +  element: "body",
                                    +  columnSize: [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: "第二行第二列"
                                    +    }]
                                    +  ] 
                                    +});
                                    +
                                    +
                                    + +

                                    参数设置

                                    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                    参数说明类型默认值
                                    isNeedFreeze是否冻结列booleanfalse
                                    freezeCols冻结的列array[]
                                    isNeedMerge是否需要合并单元格booleanfalse
                                    mergeCols合并的单元格列号array[]
                                    mergeRule合并规则, 默认相等时合并function(row1, row2)默认row1 = row2 时合并
                                    columnSize单元格宽度集合array[]
                                    headerRowSize表头高度number25
                                    rowSize普通单元格高度number25
                                    regionColumnSize列项间的array[]
                                    items子组件array[]
                                    +

                                    方法

                                    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                    方法名说明参数
                                    setWidth设置宽度width
                                    setHeight设置高度height
                                    setColumnSize设置列宽columnSize
                                    getColumnSize得到列宽
                                    setRegionColumnSize设置列项之间的间隙columnSize
                                    getRegionColumnSize获得列项之间的间隙
                                    getScrollRegionColumnSize获取横向滚动条宽度
                                    setVerticalScroll设置纵向滚动距离scrollTop
                                    setLeftHorizontalScroll设置左到右横向滚动距离scrollLeft
                                    setRightHorizontalScroll设置右往左横向滚动距离scrollLeft
                                    getVerticalScroll获取纵向滚动距离
                                    getLeftHorizontalScroll获取左到右横向滚动距离
                                    getRightHorizontalScroll获取右往左横向滚动距离
                                    getColumns获取列项
                                    populate增加行rows
                                    restore存储数据
                                    +
                                    + + +
                                    + +
                                    +
                                    +
                                    + +

                                    results matching ""

                                    +
                                      + +
                                      +
                                      + +

                                      No results matching ""

                                      + +
                                      +
                                      +
                                      + +
                                      +
                                      + +
                                      + + + + +
                                      + + +
                                      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/_book/base/table/collection_table.md b/docs/_book/base/table/collection_table.md new file mode 100644 index 000000000..81679f78d --- /dev/null +++ b/docs/_book/base/table/collection_table.md @@ -0,0 +1,74 @@ +# bi.collection_table + +### 基本的表格 继承BI.Widget + +{% method %} +[source](https://jsfiddle.net/fineui/x2zxfzhp/) + +{% common %} +```javascript +BI.createWidget({ + type: "bi.collection_table", + element: "body", + columnSize: [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 %} + +## 参数设置 +| 参数 | 说明 | 类型 | 默认值 | +| ---------------- | ------------- | -------------------- | ----------------- | +| isNeedFreeze | 是否冻结列 | boolean | false | +| freezeCols | 冻结的列 | array | [] | +| isNeedMerge | 是否需要合并单元格 | boolean | false | +| mergeCols | 合并的单元格列号 | array | [] | +| mergeRule | 合并规则, 默认相等时合并 | function(row1, row2) | 默认row1 = row2 时合并 | +| columnSize | 单元格宽度集合 | array | [] | +| headerRowSize | 表头高度 | number | 25 | +| rowSize | 普通单元格高度 | number | 25 | +| regionColumnSize | 列项间的 | array | [] | +| items | 子组件 | array | [] | + +## 方法 +| 方法名 | 说明 | 参数 | +| ------------------------- | ----------- | ---------- | +| setWidth | 设置宽度 | width | +| setHeight | 设置高度 | height | +| setColumnSize | 设置列宽 | columnSize | +| getColumnSize | 得到列宽 | — | +| setRegionColumnSize | 设置列项之间的间隙 | columnSize | +| getRegionColumnSize | 获得列项之间的间隙 | — | +| getScrollRegionColumnSize | 获取横向滚动条宽度 | — | +| setVerticalScroll | 设置纵向滚动距离 | scrollTop | +| setLeftHorizontalScroll | 设置左到右横向滚动距离 | scrollLeft | +| setRightHorizontalScroll | 设置右往左横向滚动距离 | scrollLeft | +| getVerticalScroll | 获取纵向滚动距离 | — | +| getLeftHorizontalScroll | 获取左到右横向滚动距离 | — | +| getRightHorizontalScroll | 获取右往左横向滚动距离 | — | +| getColumns | 获取列项 | — | +| populate | 增加行 | rows | +| restore | 存储数据 | — | + +------ + diff --git a/docs/_book/base/table/grid_table.html b/docs/_book/base/table/grid_table.html new file mode 100644 index 000000000..4ae018a86 --- /dev/null +++ b/docs/_book/base/table/grid_table.html @@ -0,0 +1,2683 @@ + + + + + + + grid_table · GitBook + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                      +
                                      + + + + + + + + +
                                      + +
                                      + +
                                      + + + + + + + + +
                                      +
                                      + +
                                      +
                                      + +
                                      + +

                                      bi.grid_table

                                      +

                                      列表展示的table,继承BI.Widget

                                      +
                                      BI.createWidget({
                                      +  type: "bi.grid_table",
                                      +  element: 'body',
                                      +  width: 600,
                                      +  height: 500,
                                      +  isResizeAdapt: true,
                                      +  isNeedResize: true,
                                      +  isNeedFreeze: true,
                                      +  freezeCols: [0, 1],
                                      +  columnSize: [50,50,200,250,400],
                                      +  items: items,
                                      +  header: header
                                      +});
                                      +
                                      +
                                      + +

                                      参数设置

                                      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                      参数说明类型默认值
                                      isNeedFreeze是否需要冻结booleanfalse
                                      freezeCols冻结列array[]
                                      columnSize单元格宽度集合array[]
                                      headerRowSize表头高度number25
                                      rowSize普通单元格高度number25
                                      regionColumnSize列项间的array[]
                                      header表头array[]
                                      items子组件array[]
                                      +

                                      方法

                                      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                      方法名说明参数
                                      setWidth设置宽度width
                                      setHeight设置高度height
                                      getRegionSize获取间隙大小
                                      setColumnSize设置列宽columnSize
                                      getColumnSize得到列宽
                                      setRegionColumnSize设置列项之间的间隙columnSize
                                      getRegionColumnSize获得列项之间的间隙
                                      setVerticalScroll设置纵向滚动距离scrollTop
                                      setLeftHorizontalScroll设置左到右横向滚动距离scrollLeft
                                      setRightHorizontalScroll设置右往左横向滚动距离scrollLeft
                                      getVerticalScroll获取纵向滚动距离
                                      getLeftHorizontalScroll获取左到右横向滚动距离
                                      getRightHorizontalScroll获取右往左横向滚动距离
                                      populate刷新内容rows
                                      restore储存
                                      +
                                      + + +
                                      + +
                                      +
                                      +
                                      + +

                                      results matching ""

                                      +
                                        + +
                                        +
                                        + +

                                        No results matching ""

                                        + +
                                        +
                                        +
                                        + +
                                        +
                                        + +
                                        + + + + +
                                        + + +
                                        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/_book/base/table/grid_table.md b/docs/_book/base/table/grid_table.md new file mode 100644 index 000000000..365e8f733 --- /dev/null +++ b/docs/_book/base/table/grid_table.md @@ -0,0 +1,59 @@ +# bi.grid_table + +### 列表展示的table,继承BI.Widget + +{% method %} +[source](https://jsfiddle.net/fineui/a936vcvj/) + +{% common %} +```javascript +BI.createWidget({ + type: "bi.grid_table", + element: 'body', + width: 600, + height: 500, + isResizeAdapt: true, + isNeedResize: true, + isNeedFreeze: true, + freezeCols: [0, 1], + columnSize: [50,50,200,250,400], + items: items, + header: header +}); +``` + +{% endmethod %} + +## 参数设置 +| 参数 | 说明 | 类型 | 默认值 | +| ---------------- | ------- | ------- | ----- | +| isNeedFreeze | 是否需要冻结 | boolean | false | +| freezeCols | 冻结列 | array | [] | +| columnSize | 单元格宽度集合 | array | [] | +| headerRowSize | 表头高度 | number | 25 | +| rowSize | 普通单元格高度 | number | 25 | +| regionColumnSize | 列项间的 | array | [] | +| header | 表头 | array | [] | +| items | 子组件 | array | [] | + +## 方法 +| 方法名 | 说明 | 参数 | +| ------------------------ | ----------- | ---------- | +| setWidth | 设置宽度 | width | +| setHeight | 设置高度 | height | +| getRegionSize | 获取间隙大小 | — | +| setColumnSize | 设置列宽 | columnSize | +| getColumnSize | 得到列宽 | — | +| setRegionColumnSize | 设置列项之间的间隙 | columnSize | +| getRegionColumnSize | 获得列项之间的间隙 | — | +| setVerticalScroll | 设置纵向滚动距离 | scrollTop | +| setLeftHorizontalScroll | 设置左到右横向滚动距离 | scrollLeft | +| setRightHorizontalScroll | 设置右往左横向滚动距离 | scrollLeft | +| getVerticalScroll | 获取纵向滚动距离 | — | +| getLeftHorizontalScroll | 获取左到右横向滚动距离 | — | +| getRightHorizontalScroll | 获取右往左横向滚动距离 | — | +| populate | 刷新内容 | rows | +| restore | 储存 | — | + +------ + diff --git a/docs/_book/base/table/resizable_table.html b/docs/_book/base/table/resizable_table.html new file mode 100644 index 000000000..85002cc15 --- /dev/null +++ b/docs/_book/base/table/resizable_table.html @@ -0,0 +1,2731 @@ + + + + + + + resizable_table · GitBook + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                        +
                                        + + + + + + + + +
                                        + +
                                        + +
                                        + + + + + + + + +
                                        +
                                        + +
                                        +
                                        + +
                                        + +

                                        bi.resizable_table

                                        +

                                        可调整列宽的grid表格,继承BI.Widget

                                        +
                                        BI.createWidget({
                                        +  type: "bi.resizable_table",
                                        +  element: "body",
                                        +  columnSize: [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: "第二行第二列"
                                        +    }]
                                        +  ] 
                                        +});
                                        +
                                        +
                                        + +

                                        参数设置

                                        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                        参数说明类型默认值
                                        isNeedFreeze是否需要冻结列booleanfalse
                                        freezeCols冻结的列array[]
                                        isNeedResize是否需要调整大小booleanfalse
                                        isResizeAdapt是否调整时自适应booleantrue
                                        isNeedMerge是否需要合并单元格booleanfalse
                                        mergeCols合并的单元格列号array[]
                                        columnSize单元格宽度集合array[]
                                        minColumnSize最小列宽array[]
                                        maxColumnSize最大列宽array[]
                                        headerRowSize表头高度number25
                                        rowSize普通单元格高度number25
                                        header表头array[]
                                        regionColumnSize列项间的array[]
                                        items子组件array[]
                                        +

                                        方法

                                        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                        方法名说明参数
                                        setWidth设置宽度
                                        setHeight设置高度
                                        setColumnSize设置列宽columnSize
                                        getColumnSize得到列宽
                                        setRegionColumnSize设置列项之间的间隙columnSize
                                        getRegionColumnSize获得列项之间的间隙
                                        setVerticalScroll设置纵向滚动距离scrollTop
                                        setLeftHorizontalScroll设置左到右横向滚动距离scrollLeft
                                        setRightHorizontalScroll设置右往左横向滚动距离scrollLeft
                                        getVerticalScroll获取纵向滚动距离
                                        getLeftHorizontalScroll获取左到右横向滚动距离
                                        getRightHorizontalScroll获取右往左横向滚动距离
                                        attr设置属性key:键,value:值
                                        populate刷新内容rows
                                        restore保存表
                                        +
                                        + + +
                                        + +
                                        +
                                        +
                                        + +

                                        results matching ""

                                        +
                                          + +
                                          +
                                          + +

                                          No results matching ""

                                          + +
                                          +
                                          +
                                          + +
                                          +
                                          + +
                                          + + + + +
                                          + + +
                                          + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/_book/base/table/resizable_table.md b/docs/_book/base/table/resizable_table.md new file mode 100644 index 000000000..6f67b1c3f --- /dev/null +++ b/docs/_book/base/table/resizable_table.md @@ -0,0 +1,77 @@ +# bi.resizable_table + +### 可调整列宽的grid表格,继承BI.Widget + +{% method %} +[source](https://jsfiddle.net/fineui/0e7p2ezc/) + +{% common %} +```javascript +BI.createWidget({ + type: "bi.resizable_table", + element: "body", + columnSize: [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 %} + +## 参数设置 +| 参数 | 说明 | 类型 | 默认值 | +| ---------------- | --------- | ------- | ----- | +| isNeedFreeze | 是否需要冻结列 | boolean | false | +| freezeCols | 冻结的列 | array | [] | +| isNeedResize | 是否需要调整大小 | boolean | false | +| isResizeAdapt | 是否调整时自适应 | boolean | true | +| isNeedMerge | 是否需要合并单元格 | boolean | false | +| mergeCols | 合并的单元格列号 | array | [] | +| columnSize | 单元格宽度集合 | array | [] | +| minColumnSize | 最小列宽 | array | [] | +| maxColumnSize | 最大列宽 | array | [] | +| headerRowSize | 表头高度 | number | 25 | +| rowSize | 普通单元格高度 | number | 25 | +| header | 表头 | array | [] | +| regionColumnSize | 列项间的 | array | [] | +| items | 子组件 | array | [] | + +## 方法 +| 方法名 | 说明 | 参数 | +| ------------------------ | ----------- | ------------- | +| setWidth | 设置宽度 | — | +| setHeight | 设置高度 | — | +| setColumnSize | 设置列宽 | columnSize | +| getColumnSize | 得到列宽 | — | +| setRegionColumnSize | 设置列项之间的间隙 | columnSize | +| getRegionColumnSize | 获得列项之间的间隙 | — | +| setVerticalScroll | 设置纵向滚动距离 | scrollTop | +| setLeftHorizontalScroll | 设置左到右横向滚动距离 | scrollLeft | +| setRightHorizontalScroll | 设置右往左横向滚动距离 | scrollLeft | +| getVerticalScroll | 获取纵向滚动距离 | — | +| getLeftHorizontalScroll | 获取左到右横向滚动距离 | — | +| getRightHorizontalScroll | 获取右往左横向滚动距离 | — | +| attr | 设置属性 | key:键,value:值 | +| populate | 刷新内容 | rows | +| restore | 保存表 | — | + +------ + diff --git a/docs/_book/base/table/table_view.html b/docs/_book/base/table/table_view.html new file mode 100644 index 000000000..9c6cc9896 --- /dev/null +++ b/docs/_book/base/table/table_view.html @@ -0,0 +1,2750 @@ + + + + + + + table_view · GitBook + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                          +
                                          + + + + + + + + +
                                          + +
                                          + +
                                          + + + + + + + + +
                                          +
                                          + +
                                          +
                                          + +
                                          + +

                                          bi.table_view

                                          +

                                          能处理静态宽度以及动态宽度的表

                                          +
                                          BI.createWidget({
                                          +  type: "bi.table_view",
                                          +  element: 'body',
                                          +  isNeedMerge: true,
                                          +  isNeedFreeze: true,
                                          +  freezeCols: [0, 1],
                                          +  mergeCols: [0, 1],
                                          +  columnSize: [100, 200, 300, 400, 500],
                                          +  items: [],
                                          +  header: []
                                          +});
                                          +
                                          +
                                          + +

                                          参数设置

                                          + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                          参数说明类型默认值
                                          isNeedMerge是否需要合并单元格booleanfalse
                                          mergeCols合并的单元格列号array[]
                                          mergeRule合并规则, 默认相等时合并function(row1, row2)默认row1 = row2 时合并
                                          columnSize单元格宽度集合array[]
                                          headerRowSize表头高度number25
                                          footerRowSize表尾高度number25
                                          rowSize普通单元格高度number25
                                          regionColumnSize列项间的arrayfalse
                                          header表头array[]
                                          footer表尾arrayfalse
                                          items子组件array[]
                                          +

                                          方法

                                          + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                          方法名说明参数
                                          resize调整表格
                                          setColumnSize设置列宽columnSize
                                          getColumnSize得到列宽
                                          getCalculateColumnSize获得计算后的列宽
                                          setHeaderColumnSize设置表头的列宽columnSize
                                          setRegionColumnSize设置列项之间的间隙columnSize
                                          getRegionColumnSize获得列项之间的间隙
                                          getCalculateRegionColumnSize获取计算后的列项之间的间隙
                                          getCalculateRegionRowSize获取计算后的列项上下之间的间隙
                                          getClientRegionColumnSize获取浏览器中显示的列项之间的间隙
                                          getScrollRegionColumnSize获取横向滚动条宽度
                                          getScrollRegionRowSize获取纵向滚动条宽度
                                          hasVerticalScroll是否含有数值滚动条
                                          setVerticalScroll设置纵向滚动距离scrollTop
                                          setLeftHorizontalScroll设置左到右横向滚动距离scrollLeft
                                          setRightHorizontalScroll设置右往左横向滚动距离scrollLeft
                                          getVerticalScroll获取纵向滚动距离
                                          getLeftHorizontalScroll获取左到右横向滚动距离
                                          getRightHorizontalScroll获取右往左横向滚动距离
                                          getColumns获取列项
                                          populate刷新内容rows
                                          +

                                          事件

                                          + + + + + + + + + + + + + + + + + + + + + +
                                          事件说明
                                          BI.Table.EVENT_TABLE_AFTER_INITtable初始化完成后触发
                                          BI.Table.EVENT_TABLE_RESIZEtable大小调整时触发(窗口变化等)
                                          BI.Table.EVENT_TABLE_SCROLL滚动事件
                                          +
                                          + + +
                                          + +
                                          +
                                          +
                                          + +

                                          results matching ""

                                          +
                                            + +
                                            +
                                            + +

                                            No results matching ""

                                            + +
                                            +
                                            +
                                            + +
                                            +
                                            + +
                                            + + + + +
                                            + + +
                                            + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/_book/base/table/table_view.md b/docs/_book/base/table/table_view.md new file mode 100644 index 000000000..2cceb75ab --- /dev/null +++ b/docs/_book/base/table/table_view.md @@ -0,0 +1,73 @@ +# bi.table_view + +### 能处理静态宽度以及动态宽度的表 + +{% method %} +[source](https://jsfiddle.net/fineui/mbazb80a/) + +{% common %} +```javascript +BI.createWidget({ + type: "bi.table_view", + element: 'body', + isNeedMerge: true, + isNeedFreeze: true, + freezeCols: [0, 1], + mergeCols: [0, 1], + columnSize: [100, 200, 300, 400, 500], + items: [], + header: [] +}); +``` + +{% endmethod %} + +## 参数设置 +| 参数 | 说明 | 类型 | 默认值 | +| ---------------- | ------------- | -------------------- | ----------------- | +| isNeedMerge | 是否需要合并单元格 | boolean | false | +| mergeCols | 合并的单元格列号 | array | [] | +| mergeRule | 合并规则, 默认相等时合并 | function(row1, row2) | 默认row1 = row2 时合并 | +| columnSize | 单元格宽度集合 | array | [] | +| headerRowSize | 表头高度 | number | 25 | +| footerRowSize | 表尾高度 | number | 25 | +| rowSize | 普通单元格高度 | number | 25 | +| regionColumnSize | 列项间的 | array | false | +| header | 表头 | array | [] | +| footer | 表尾 | array | false | +| items | 子组件 | array | [] | + +## 方法 +| 方法名 | 说明 | 参数 | +| ---------------------------- | ---------------- | ---------- | +| resize | 调整表格 | — | +| setColumnSize | 设置列宽 | columnSize | +| getColumnSize | 得到列宽 | — | +| getCalculateColumnSize | 获得计算后的列宽 | — | +| setHeaderColumnSize | 设置表头的列宽 | columnSize | +| setRegionColumnSize | 设置列项之间的间隙 | columnSize | +| getRegionColumnSize | 获得列项之间的间隙 | — | +| getCalculateRegionColumnSize | 获取计算后的列项之间的间隙 | — | +| getCalculateRegionRowSize | 获取计算后的列项上下之间的间隙 | — | +| getClientRegionColumnSize | 获取浏览器中显示的列项之间的间隙 | — | +| getScrollRegionColumnSize | 获取横向滚动条宽度 | — | +| getScrollRegionRowSize | 获取纵向滚动条宽度 | — | +| hasVerticalScroll | 是否含有数值滚动条 | — | +| setVerticalScroll | 设置纵向滚动距离 | scrollTop | +| setLeftHorizontalScroll | 设置左到右横向滚动距离 | scrollLeft | +| setRightHorizontalScroll | 设置右往左横向滚动距离 | scrollLeft | +| getVerticalScroll | 获取纵向滚动距离 | — | +| getLeftHorizontalScroll | 获取左到右横向滚动距离 | — | +| getRightHorizontalScroll | 获取右往左横向滚动距离 | — | +| getColumns | 获取列项 | — | +| populate | 刷新内容 | rows | + +## 事件 +| 事件 | 说明 | +| :------------------------------ | :------------------ | +| BI.Table.EVENT_TABLE_AFTER_INIT | table初始化完成后触发 | +| BI.Table.EVENT_TABLE_RESIZE | table大小调整时触发(窗口变化等) | +| BI.Table.EVENT_TABLE_SCROLL | 滚动事件 | + +--- + diff --git a/docs/_book/base/toast.html b/docs/_book/base/toast.html new file mode 100644 index 000000000..6f189b4ce --- /dev/null +++ b/docs/_book/base/toast.html @@ -0,0 +1,2589 @@ + + + + + + + toast · GitBook + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                            +
                                            + + + + + + + + +
                                            + +
                                            + +
                                            + + + + + + + + +
                                            +
                                            + +
                                            +
                                            + +
                                            + +

                                            bi.toast

                                            +

                                            toast提示

                                            +
                                            
                                            +BI.createWidget({
                                            +  type: 'bi.toast',
                                            +  element: "#wrapper",
                                            +  height: 30,
                                            +  level: "warning",
                                            +  text: "toast测试"
                                            +})
                                            +
                                            +
                                            + + +

                                            API

                                            +
                                            基础属性
                                            + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                            参数说明类型可选值默认值
                                            level提示类型stringsuccess,warning"success"
                                            height高度number30
                                            text显示内容string" "
                                            +

                                            对外方法

                                            + + + + + + + + + + + + + + + + + + + + +
                                            名称说明回调参数
                                            setText设置文本值需要设置的文本值text
                                            setHeight设置高度需要设置的高度值height
                                            +
                                            + + +
                                            + +
                                            +
                                            +
                                            + +

                                            results matching ""

                                            +
                                              + +
                                              +
                                              + +

                                              No results matching ""

                                              + +
                                              +
                                              +
                                              + +
                                              +
                                              + +
                                              + + + + +
                                              + + +
                                              + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/_book/base/toast.md b/docs/_book/base/toast.md new file mode 100644 index 000000000..b889aa92c --- /dev/null +++ b/docs/_book/base/toast.md @@ -0,0 +1,42 @@ +# bi.toast + +#### toast提示 + +{% method %} +[source](https://jsfiddle.net/fineui/wop751sg/) + +{% common %} +```javascript + +BI.createWidget({ + type: 'bi.toast', + element: "#wrapper", + height: 30, + level: "warning", + text: "toast测试" +}) + + +``` + +{% endmethod %} + + +## API +##### 基础属性 + +| 参数 | 说明 | 类型 | 可选值 | 默认值 +| :------ |:------------- | :----- | :---- |:---- +| level | 提示类型 | string | success,warning | "success" | +| height | 高度 | number | — | 30 | +| text | 显示内容 | string | — | " " | + + + +## 对外方法 +| 名称 | 说明 | 回调参数 +| :------ |:------------- | :----- +| setText | 设置文本值 | 需要设置的文本值text | +| setHeight | 设置高度 | 需要设置的高度值height | + +--- diff --git a/docs/_book/case/button/multi_select_item.html b/docs/_book/case/button/multi_select_item.html new file mode 100644 index 000000000..b2116fa59 --- /dev/null +++ b/docs/_book/case/button/multi_select_item.html @@ -0,0 +1,2594 @@ + + + + + + + multi_select_item · GitBook + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                              +
                                              + + + + + + + + +
                                              + +
                                              + +
                                              + + + + + + + + +
                                              +
                                              + +
                                              +
                                              + +
                                              + +

                                              bi.multi_select_item

                                              +

                                              复选框item,基类BI.BasicButton

                                              +
                                              
                                              +BI.createWidget({
                                              +    type: 'bi.vertical',
                                              +    element: "#wrapper",
                                              +    items: [{
                                              +        type: "bi.label",
                                              +        height: 30,
                                              +        text: "复选item"
                                              +    }, {
                                              +        type: "bi.multi_select_item",
                                              +        text: "复选项"
                                              +    }]
                                              +});
                                              +
                                              +
                                              + +

                                              API

                                              +
                                              基础属性
                                              + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                              参数说明类型可选值默认值
                                              height高度number30
                                              logic布局逻辑object{dynamic:false}
                                              +

                                              对外方法

                                              + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                              名称说明回调参数
                                              setSelected设置选中值v
                                              doRedMark标红
                                              unRedMark取消标红
                                              doClick点击事件
                                              +
                                              + + +
                                              + +
                                              +
                                              +
                                              + +

                                              results matching ""

                                              +
                                                + +
                                                +
                                                + +

                                                No results matching ""

                                                + +
                                                +
                                                +
                                                + +
                                                +
                                                + +
                                                + + + + +
                                                + + +
                                                + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/_book/case/button/multi_select_item.md b/docs/_book/case/button/multi_select_item.md new file mode 100644 index 000000000..eb48696d3 --- /dev/null +++ b/docs/_book/case/button/multi_select_item.md @@ -0,0 +1,53 @@ +# bi.multi_select_item + +## 复选框item,基类[BI.BasicButton](/core/basic_button.md) + +{% method %} +[source](https://jsfiddle.net/fineui/0z1fud88/) + +{% common %} +```javascript + +BI.createWidget({ + type: 'bi.vertical', + element: "#wrapper", + items: [{ + type: "bi.label", + height: 30, + text: "复选item" + }, { + type: "bi.multi_select_item", + text: "复选项" + }] +}); + +``` + +{% endmethod %} + +## API +##### 基础属性 +| 参数 | 说明 | 类型 | 可选值 | 默认值 +| :------ |:------------- | :-----| :----|:---- +| height | 高度 | number | — | 30 +| logic | 布局逻辑 | object | — | {dynamic:false} | + + + + + +## 对外方法 +| 名称 | 说明 | 回调参数 +| :------ |:------------- | :----- +| setSelected| 设置选中值| v | +| doRedMark | 标红 |—| +| unRedMark | 取消标红 | — | +| doClick | 点击事件| — + + + + + +--- + + diff --git a/docs/_book/case/button/single_select_item.html b/docs/_book/case/button/single_select_item.html new file mode 100644 index 000000000..6872de08d --- /dev/null +++ b/docs/_book/case/button/single_select_item.html @@ -0,0 +1,2603 @@ + + + + + + + single_select_item · GitBook + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                +
                                                + + + + + + + + +
                                                + +
                                                + +
                                                + + + + + + + + +
                                                +
                                                + +
                                                +
                                                + +
                                                + +

                                                bi.single_select_item

                                                +

                                                可以点击的label,基类BI.BasicButton

                                                +
                                                
                                                +BI.createWidget({
                                                +    type: 'bi.vertical',
                                                +    element: "#wrapper",
                                                +    items: [{
                                                +        type: "bi.label",
                                                +        height: 30,
                                                +        text: "复选item"
                                                +    }, {
                                                +        type: "bi.single_select_item",
                                                +        text: "复选项"
                                                +    }]
                                                +});
                                                +
                                                +
                                                + +

                                                API

                                                +
                                                基础属性
                                                + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                参数说明类型可选值默认值
                                                height高度number25
                                                hgap效果相当于文本框左右padding值number10
                                                textAlign文本对齐方式stringleft,center,right"left"
                                                +

                                                对外方法

                                                + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                名称说明回调参数
                                                setSelected设置选中值v
                                                doRedMark标红
                                                unRedMark取消标红
                                                doClick点击事件
                                                +
                                                + + +
                                                + +
                                                +
                                                +
                                                + +

                                                results matching ""

                                                +
                                                  + +
                                                  +
                                                  + +

                                                  No results matching ""

                                                  + +
                                                  +
                                                  +
                                                  + +
                                                  +
                                                  + +
                                                  + + + + +
                                                  + + +
                                                  + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/_book/case/button/single_select_item.md b/docs/_book/case/button/single_select_item.md new file mode 100644 index 000000000..56facc4d5 --- /dev/null +++ b/docs/_book/case/button/single_select_item.md @@ -0,0 +1,54 @@ +# bi.single_select_item + +## 可以点击的label,基类[BI.BasicButton](/core/basic_button.md) + +{% method %} +[source](https://jsfiddle.net/fineui/19qqcej4/) + +{% common %} +```javascript + +BI.createWidget({ + type: 'bi.vertical', + element: "#wrapper", + items: [{ + type: "bi.label", + height: 30, + text: "复选item" + }, { + type: "bi.single_select_item", + text: "复选项" + }] +}); + +``` + +{% endmethod %} + +## API +##### 基础属性 +| 参数 | 说明 | 类型 | 可选值 | 默认值 +| :------ |:------------- | :-----| :----|:---- +| height | 高度 | number | — | 25 +| hgap | 效果相当于文本框左右padding值 |number | —| 10 | +|textAlign |文本对齐方式 |string |left,center,right |"left" + + + + +## 对外方法 +| 名称 | 说明 | 回调参数 +| :------ |:------------- | :----- +| setSelected| 设置选中值| v | +| doRedMark | 标红 |—| +| unRedMark | 取消标红 | — | +| doClick | 点击事件| — + + + + + + +--- + + diff --git a/docs/_book/case/button/single_select_radio_item.html b/docs/_book/case/button/single_select_radio_item.html new file mode 100644 index 000000000..672f88772 --- /dev/null +++ b/docs/_book/case/button/single_select_radio_item.html @@ -0,0 +1,2601 @@ + + + + + + + single_select_radio_item · GitBook + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                  +
                                                  + + + + + + + + +
                                                  + +
                                                  + +
                                                  + + + + + + + + +
                                                  +
                                                  + +
                                                  +
                                                  + +
                                                  + +

                                                  bi.single_select_radio_item

                                                  +

                                                  单选框item,基类BI.BasicButton

                                                  +
                                                  
                                                  +BI.createWidget({
                                                  +    type: 'bi.vertical',
                                                  +    element: "#wrapper",
                                                  +    items: [{
                                                  +        type: "bi.label",
                                                  +        height: 30,
                                                  +        text: "单选item"
                                                  +    }, {
                                                  +        type: "bi.single_select_radio_item",
                                                  +        text: "单选项"
                                                  +    }]
                                                  +});
                                                  +
                                                  +
                                                  + +

                                                  API

                                                  +
                                                  基础属性
                                                  + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                  参数说明类型可选值默认值
                                                  height高度number25
                                                  hgap效果相当于文本框左右padding值number10
                                                  textAlign文本对齐方式stringleft,center,right"left"
                                                  +

                                                  对外方法

                                                  + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                  名称说明回调参数
                                                  setSelected设置选中值v
                                                  doRedMark标红
                                                  unRedMark取消标红
                                                  doClick点击事件
                                                  +
                                                  + + +
                                                  + +
                                                  +
                                                  +
                                                  + +

                                                  results matching ""

                                                  +
                                                    + +
                                                    +
                                                    + +

                                                    No results matching ""

                                                    + +
                                                    +
                                                    +
                                                    + +
                                                    +
                                                    + +
                                                    + + + + +
                                                    + + +
                                                    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/_book/case/button/single_select_radio_item.md b/docs/_book/case/button/single_select_radio_item.md new file mode 100644 index 000000000..9aac21b3d --- /dev/null +++ b/docs/_book/case/button/single_select_radio_item.md @@ -0,0 +1,55 @@ +# bi.single_select_radio_item + +## 单选框item,基类[BI.BasicButton](/core/basic_button.md) + +{% method %} +[source](https://jsfiddle.net/fineui/d3vw4438/) + +{% common %} +```javascript + +BI.createWidget({ + type: 'bi.vertical', + element: "#wrapper", + items: [{ + type: "bi.label", + height: 30, + text: "单选item" + }, { + type: "bi.single_select_radio_item", + text: "单选项" + }] +}); + +``` + +{% endmethod %} + +## API +##### 基础属性 +| 参数 | 说明 | 类型 | 可选值 | 默认值 +| :------ |:------------- | :-----| :----|:---- +| height | 高度 | number | — | 25 +| hgap | 效果相当于文本框左右padding值 |number | —| 10 | +|textAlign |文本对齐方式 |string |left,center,right |"left" + + + + +## 对外方法 +| 名称 | 说明 | 回调参数 +| :------ |:------------- | :----- +| setSelected| 设置选中值| v | +| doRedMark | 标红 |—| +| unRedMark | 取消标红 | — | +| doClick | 点击事件| — + + + + + + + +--- + + diff --git a/docs/_book/case/calendar.html b/docs/_book/case/calendar.html new file mode 100644 index 000000000..84bfa8d96 --- /dev/null +++ b/docs/_book/case/calendar.html @@ -0,0 +1,2608 @@ + + + + + + + calendar · GitBook + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                    +
                                                    + + + + + + + + +
                                                    + +
                                                    + +
                                                    + + + + + + + + +
                                                    +
                                                    + +
                                                    +
                                                    + +
                                                    + +

                                                    bi.calendar

                                                    +

                                                    日历控件

                                                    +
                                                    
                                                    +BI.createWidget({
                                                    +  type: 'bi.calendar',
                                                    +  min: '1900-01-01', //最小日期
                                                    +  max: '2099-12-31', //最大日期
                                                    +  year: 2015,
                                                    +  month: 7,  //7表示八月
                                                    +  day: 25,
                                                    +});
                                                    +
                                                    +
                                                    + + + +

                                                    参数

                                                    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                    参数说明类型默认值
                                                    min最小日期string'1900-01-01'
                                                    max最大日期string'2099-12-31'
                                                    year设定的年份number2015
                                                    month设定的月份number7
                                                    day设定的日期number25
                                                    +

                                                    方法

                                                    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                    方法名说明参数
                                                    isFrontDate是否为最小日期
                                                    isFinalDate是否为最大日期
                                                    setValue设置日期object: {year, month, day}
                                                    getVlaue获得日期
                                                    +
                                                    + + +
                                                    + +
                                                    +
                                                    +
                                                    + +

                                                    results matching ""

                                                    +
                                                      + +
                                                      +
                                                      + +

                                                      No results matching ""

                                                      + +
                                                      +
                                                      +
                                                      + +
                                                      +
                                                      + +
                                                      + + + + +
                                                      + + +
                                                      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/_book/case/calendar.md b/docs/_book/case/calendar.md new file mode 100644 index 000000000..87f96a3a2 --- /dev/null +++ b/docs/_book/case/calendar.md @@ -0,0 +1,47 @@ +# bi.calendar + +### 日历控件 + +{% method %} +[source](https://jsfiddle.net/fineui/4sfsaoma/) + +{% common %} +```javascript + +BI.createWidget({ + type: 'bi.calendar', + min: '1900-01-01', //最小日期 + max: '2099-12-31', //最大日期 + year: 2015, + month: 7, //7表示八月 + day: 25, +}); + +``` + +{% endmethod %} + + + +### 参数 + +| 参数 | 说明 | 类型 | 默认值 | +| ----- | ----- | ------ | ------------ | +| min | 最小日期 | string | '1900-01-01' | +| max | 最大日期 | string | '2099-12-31' | +| year | 设定的年份 | number | 2015 | +| month | 设定的月份 | number | 7 | +| day | 设定的日期 | number | 25 | + + + +### 方法 + +| 方法名 | 说明 | 参数 | +| ----------- | ------- | -------------------------- | +| isFrontDate | 是否为最小日期 | — | +| isFinalDate | 是否为最大日期 | — | +| setValue | 设置日期 | object: {year, month, day} | +| getVlaue | 获得日期 | — | + +------ \ No newline at end of file diff --git a/docs/_book/case/clipboard.html b/docs/_book/case/clipboard.html new file mode 100644 index 000000000..eae5ee5b1 --- /dev/null +++ b/docs/_book/case/clipboard.html @@ -0,0 +1,2558 @@ + + + + + + + clipboard · GitBook + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                      +
                                                      + + + + + + + + +
                                                      + +
                                                      + +
                                                      + + + + + + + + +
                                                      +
                                                      + +
                                                      +
                                                      + +
                                                      + +

                                                      bi.clipboard

                                                      +

                                                      剪切板

                                                      +
                                                      
                                                      +BI.createWidget({
                                                      +    type: 'bi.clipboard',
                                                      +    width: 100,
                                                      +    height: 100,
                                                      +    copy: function () {},
                                                      +
                                                      +    afterCopy: function () {}
                                                      +});
                                                      +
                                                      +
                                                      + + + +

                                                      参数

                                                      + + + + + + + + + + + + + + + + + + + + + + + +
                                                      参数说明类型默认值
                                                      copy获取需要拷贝的值functionBI.emptyFn
                                                      afterCopy完成拷贝后执行的方法functionBI.emptyFn
                                                      +
                                                      + + +
                                                      + +
                                                      +
                                                      +
                                                      + +

                                                      results matching ""

                                                      +
                                                        + +
                                                        +
                                                        + +

                                                        No results matching ""

                                                        + +
                                                        +
                                                        +
                                                        + +
                                                        +
                                                        + +
                                                        + + + + +
                                                        + + +
                                                        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/_book/case/clipboard.md b/docs/_book/case/clipboard.md new file mode 100644 index 000000000..afd485beb --- /dev/null +++ b/docs/_book/case/clipboard.md @@ -0,0 +1,33 @@ +# bi.clipboard + +### 剪切板 + +{% method %} +[source](https://jsfiddle.net/fineui/kLzq99c3/) + +{% common %} +```javascript + +BI.createWidget({ + type: 'bi.clipboard', + width: 100, + height: 100, + copy: function () {}, + + afterCopy: function () {} +}); + +``` + +{% endmethod %} + + + +### 参数 + +| 参数 | 说明 | 类型 | 默认值 | +| --------- | ---------- | -------- | ---------- | +| copy | 获取需要拷贝的值 | function | BI.emptyFn | +| afterCopy | 完成拷贝后执行的方法 | function | BI.emptyFn | + +------ \ No newline at end of file diff --git a/docs/_book/case/color_chooser.html b/docs/_book/case/color_chooser.html new file mode 100644 index 000000000..11686c694 --- /dev/null +++ b/docs/_book/case/color_chooser.html @@ -0,0 +1,2558 @@ + + + + + + + color_chooser · GitBook + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                        +
                                                        + + + + + + + + +
                                                        + +
                                                        + +
                                                        + + + + + + + + +
                                                        +
                                                        + +
                                                        +
                                                        + +
                                                        + +

                                                        bi.color_chooser

                                                        +

                                                        选色控件

                                                        +
                                                        
                                                        +BI.createWidget({
                                                        +    type: "bi.color_chooser",
                                                        +    element: "#wrapper",
                                                        +    width: 30,
                                                        +    height: 30
                                                        +});
                                                        +
                                                        +
                                                        + + + +

                                                        方法

                                                        + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                        方法名说明参数
                                                        isViewVisible判断是否显示
                                                        setValue设置颜色值color
                                                        getValue获取颜色值
                                                        +
                                                        + + +
                                                        + +
                                                        +
                                                        +
                                                        + +

                                                        results matching ""

                                                        +
                                                          + +
                                                          +
                                                          + +

                                                          No results matching ""

                                                          + +
                                                          +
                                                          +
                                                          + +
                                                          +
                                                          + +
                                                          + + + + +
                                                          + + +
                                                          + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/_book/case/color_chooser.md b/docs/_book/case/color_chooser.md new file mode 100644 index 000000000..b8627be06 --- /dev/null +++ b/docs/_book/case/color_chooser.md @@ -0,0 +1,32 @@ +# bi.color_chooser + +### 选色控件 + +{% method %} +[source](https://jsfiddle.net/fineui/z4fwweg9/) + +{% common %} +```javascript + +BI.createWidget({ + type: "bi.color_chooser", + element: "#wrapper", + width: 30, + height: 30 +}); + +``` + +{% endmethod %} + + + +### 方法 + +| 方法名 | 说明 | 参数 | +| ------------- | ------ | ----- | +| isViewVisible | 判断是否显示 | — | +| setValue | 设置颜色值 | color | +| getValue | 获取颜色值 | — | + +------ \ No newline at end of file diff --git a/docs/_book/case/color_chooser_popup.html b/docs/_book/case/color_chooser_popup.html new file mode 100644 index 000000000..86c39d6e4 --- /dev/null +++ b/docs/_book/case/color_chooser_popup.html @@ -0,0 +1,2589 @@ + + + + + + + color_chooser_popup · GitBook + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                          +
                                                          + + + + + + + + +
                                                          + +
                                                          + +
                                                          + + + + + + + + +
                                                          +
                                                          + +
                                                          +
                                                          + +
                                                          + +

                                                          bi.color_chooser_popup

                                                          +

                                                          选色控件弹窗

                                                          +
                                                          
                                                          +BI.createWidget({
                                                          +    type: "bi.color_chooser_popup",
                                                          +});
                                                          +
                                                          +
                                                          + + + +

                                                          参数

                                                          + + + + + + + + + + + + + + + + + +
                                                          参数说明类型默认值
                                                          height高度number145
                                                          +

                                                          方法

                                                          + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                          方法名说明参数
                                                          setStoreColors设置储存的颜色值colors
                                                          setValue设置颜色值color
                                                          getValue获取颜色值
                                                          +

                                                          事件

                                                          + + + + + + + + + + + + + +
                                                          事件说明
                                                          EVENT_VALUE_CHANGE颜色值改变时触发
                                                          +
                                                          + + +
                                                          + +
                                                          +
                                                          +
                                                          + +

                                                          results matching ""

                                                          +
                                                            + +
                                                            +
                                                            + +

                                                            No results matching ""

                                                            + +
                                                            +
                                                            +
                                                            + +
                                                            +
                                                            + +
                                                            + + + + +
                                                            + + +
                                                            + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/_book/case/color_chooser_popup.md b/docs/_book/case/color_chooser_popup.md new file mode 100644 index 000000000..f279f76ac --- /dev/null +++ b/docs/_book/case/color_chooser_popup.md @@ -0,0 +1,45 @@ +# bi.color_chooser_popup + +### 选色控件弹窗 + +{% method %} +[source](https://jsfiddle.net/fineui/xL7moydu/) + +{% common %} +```javascript + +BI.createWidget({ + type: "bi.color_chooser_popup", +}); + +``` + +{% endmethod %} + + + +### 参数 + +| 参数 | 说明 | 类型 | 默认值 | +| ------ | ---- | ------ | ---- | +| height | 高度 | number | 145 | + + + +### 方法 + +| 方法名 | 说明 | 参数 | +| -------------- | -------- | ------ | +| setStoreColors | 设置储存的颜色值 | colors | +| setValue | 设置颜色值 | color | +| getValue | 获取颜色值 | — | + + + +### 事件 + +| 事件 | 说明 | +| ------------------ | -------- | +| EVENT_VALUE_CHANGE | 颜色值改变时触发 | + +------ \ No newline at end of file diff --git a/docs/_book/case/combo/bubble_combo.html b/docs/_book/case/combo/bubble_combo.html new file mode 100644 index 000000000..5f02847d9 --- /dev/null +++ b/docs/_book/case/combo/bubble_combo.html @@ -0,0 +1,2742 @@ + + + + + + + bubble_combo · GitBook + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                            +
                                                            + + + + + + + + +
                                                            + +
                                                            + +
                                                            + + + + + + + + +
                                                            +
                                                            + +
                                                            +
                                                            + +
                                                            + +

                                                            bi.bubble_combo

                                                            +

                                                            表示一个可以展开的节点, 不仅有选中状态而且有展开状态, 基类BI.Widget

                                                            +
                                                            
                                                            +BI.createWidget({
                                                            +    type: "bi.bubble_combo",
                                                            +    element:"#wrapper",
                                                            +    el: {
                                                            +      type: "bi.button",
                                                            +      text: "测试",
                                                            +      height: 25
                                                            +    },
                                                            +    popup: {
                                                            +      el: {
                                                            +        type: "bi.button_group",
                                                            +        items: BI.makeArray(100, {
                                                            +          type: "bi.text_item",
                                                            +          height: 25,
                                                            +          text: "item"
                                                            +        }),
                                                            +        layouts: [{
                                                            +          type: "bi.vertical"
                                                            +        }]
                                                            +      },
                                                            +      maxHeight: 200
                                                            +    }
                                                            +  })
                                                            +
                                                            +
                                                            + +

                                                            API

                                                            +
                                                            基础属性
                                                            + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                            参数说明类型可选值默认值
                                                            text组件text值string""
                                                            value组件value值string""
                                                            stopEvent阻止事件booleantrue,falsefalse
                                                            stopPropagation阻止冒泡booleantrue,falsefalse
                                                            selectedbutton的选中状态booleantrue,falsefalse
                                                            once点击一次选中有效,再点无效booleantrue,falsefalse
                                                            forceSelected点击即选中, 选中了就不会被取消,与once的区别是forceSelected不影响事件的触发booleantrue,falsefalse
                                                            forceNotSelected无论怎么点击都不会被选中booleantrue,falsefalse
                                                            disableSelected使能选中booleantrue,falsefalse
                                                            shadow是否显示阴影booleantrue,falsefalse
                                                            isShadowShowingOnSelected选中状态下是否显示阴影booleantrue,falsefalse
                                                            trigger被选元素要触发的事件stringmousedown, mouseup, click, dblclick, lclicknull
                                                            handler点击事件回调functionBI.emptyFn
                                                            +

                                                            对外方法

                                                            + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                            名称说明回调参数
                                                            bindEvent绑定事件
                                                            beforeClick点击事件之前
                                                            doClick点击事件
                                                            handle返回该对象
                                                            hoverhover事件
                                                            dishover取消hover事件
                                                            setSelected设置选中的文本b
                                                            isSelected是否被选中
                                                            isOnce是否只允许点击一次
                                                            isForceSelected判断是否点击即选中
                                                            isForceNotSelected判断是否怎么点击都不会被选中
                                                            isDisableSelected判断是否让选中
                                                            setText设置文本值
                                                            getText获取文本值
                                                            empty清空组件
                                                            destroy销毁组件
                                                            +
                                                            + + +
                                                            + +
                                                            +
                                                            +
                                                            + +

                                                            results matching ""

                                                            +
                                                              + +
                                                              +
                                                              + +

                                                              No results matching ""

                                                              + +
                                                              +
                                                              +
                                                              + +
                                                              +
                                                              + +
                                                              + + + + +
                                                              + + +
                                                              + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/_book/case/combo/bubble_combo.md b/docs/_book/case/combo/bubble_combo.md new file mode 100644 index 000000000..c35d143df --- /dev/null +++ b/docs/_book/case/combo/bubble_combo.md @@ -0,0 +1,86 @@ +# bi.bubble_combo + +## 表示一个可以展开的节点, 不仅有选中状态而且有展开状态, 基类[BI.Widget](/core/widget.md) + +{% method %} +[source](https://jsfiddle.net/fineui/urvt04so/) + +{% common %} +```javascript + +BI.createWidget({ + type: "bi.bubble_combo", + element:"#wrapper", + el: { + type: "bi.button", + text: "测试", + height: 25 + }, + popup: { + el: { + type: "bi.button_group", + items: BI.makeArray(100, { + type: "bi.text_item", + height: 25, + text: "item" + }), + layouts: [{ + type: "bi.vertical" + }] + }, + maxHeight: 200 + } + }) + + +``` + +{% endmethod %} + +## API +##### 基础属性 +| 参数 | 说明 | 类型 | 可选值 | 默认值 +| :------ |:------------- | :-----| :----|:---- +| text | 组件text值 | string | —| "" | +| value | 组件value值 | string |— |""| +| stopEvent | 阻止事件 |boolean | true,false | false | +| stopPropagation | 阻止冒泡 | boolean | true,false| false | +| selected | button的选中状态 | boolean | true,false |false | +| once | 点击一次选中有效,再点无效 | boolean | true,false | false| +| forceSelected | 点击即选中, 选中了就不会被取消,与once的区别是forceSelected不影响事件的触发| boolean | true,false| false| +| forceNotSelected | 无论怎么点击都不会被选中 | boolean| true,false | false| +| disableSelected | 使能选中| boolean | true,false| false| +| shadow | 是否显示阴影 | boolean| true,false| false| +| isShadowShowingOnSelected| 选中状态下是否显示阴影|boolean| true,false | false| +| trigger | 被选元素要触发的事件 | string | mousedown, mouseup, click, dblclick, lclick | null| +| handler | 点击事件回调 | function | —| BI.emptyFn | + + + +## 对外方法 +| 名称 | 说明 | 回调参数 +| :------ |:------------- | :----- +| bindEvent | 绑定事件| —| +| beforeClick | 点击事件之前 | —| +| doClick | 点击事件 | — | +| handle | 返回该对象 | —| +| hover | hover事件| —| +| dishover | 取消hover事件| —| +|setSelected | 设置选中的文本| b| +| isSelected | 是否被选中| —| +| isOnce | 是否只允许点击一次| —| +| isForceSelected| 判断是否点击即选中| —| +| isForceNotSelected| 判断是否怎么点击都不会被选中|—| +| isDisableSelected| 判断是否让选中|—| +| setText| 设置文本值|—| +| getText| 获取文本值|—| +| empty| 清空组件|—| +| destroy| 销毁组件|—| + + + + + +--- + + diff --git a/docs/_book/case/combo/icon_combo.html b/docs/_book/case/combo/icon_combo.html new file mode 100644 index 000000000..1d3e09021 --- /dev/null +++ b/docs/_book/case/combo/icon_combo.html @@ -0,0 +1,2681 @@ + + + + + + + icon_combo · GitBook + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                              +
                                                              + + + + + + + + +
                                                              + +
                                                              + +
                                                              + + + + + + + + +
                                                              +
                                                              + +
                                                              +
                                                              + +
                                                              + +

                                                              bi.icon_combo

                                                              +

                                                              切换trigger图标的combo 基类BI.Widget

                                                              +
                                                              
                                                              +BI.createWidget({
                                                              +  type: "bi.icon_combo",
                                                              +  element: "#wrapper",
                                                              +  iconClass: "rename-font",
                                                              +  items: [{
                                                              +    value: "第一项",
                                                              +    iconClass: "delete-font"
                                                              +  }, {
                                                              +    value: "第二项",
                                                              +    iconClass: "rename-font"
                                                              +  }, {
                                                              +    value: "第三项",
                                                              +    iconClass: "move-font"
                                                              +  }]
                                                              +});
                                                              +
                                                              +
                                                              + +

                                                              API

                                                              +
                                                              基础属性
                                                              + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                              参数说明类型可选值默认值
                                                              width宽度number24
                                                              height高度number24
                                                              iconClassicon的类名string" "
                                                              el自定义下拉框triggerobject{ }
                                                              popup弹出层object{ }
                                                              minWidth最小宽度number100
                                                              maxWidth最大宽度string/number"auto"
                                                              maxHeight最大高度number300
                                                              adjustLength弹出列表和trigger的距离number0
                                                              adjustXOffset调整横向偏移number0
                                                              adjustYOffset调整纵向偏移number0
                                                              offsetStyle弹出层显示位置stringleft,right,center"left,right,center"
                                                              chooseType选择类型const参考button_groupBI.ButtonGroup.CHOOSE_TYPE_SINGLE
                                                              +

                                                              对外方法

                                                              + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                              名称说明回调参数
                                                              setValue设置value值
                                                              getValue获取value值
                                                              showView显示弹出层
                                                              hideView隐藏弹出层
                                                              populate刷新列表items
                                                              +
                                                              + + +
                                                              + +
                                                              +
                                                              +
                                                              + +

                                                              results matching ""

                                                              +
                                                                + +
                                                                +
                                                                + +

                                                                No results matching ""

                                                                + +
                                                                +
                                                                +
                                                                + +
                                                                +
                                                                + +
                                                                + + + + +
                                                                + + +
                                                                + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/_book/case/combo/icon_combo.md b/docs/_book/case/combo/icon_combo.md new file mode 100644 index 000000000..4a2229c8c --- /dev/null +++ b/docs/_book/case/combo/icon_combo.md @@ -0,0 +1,68 @@ +# bi.icon_combo + +## 切换trigger图标的combo 基类[BI.Widget](/core/widget.md) + +{% method %} +[source](https://jsfiddle.net/fineui/z02vzvtb/) + +{% common %} +```javascript + +BI.createWidget({ + type: "bi.icon_combo", + element: "#wrapper", + iconClass: "rename-font", + items: [{ + value: "第一项", + iconClass: "delete-font" + }, { + value: "第二项", + iconClass: "rename-font" + }, { + value: "第三项", + iconClass: "move-font" + }] +}); + + + +``` + +{% endmethod %} + +## API +##### 基础属性 +| 参数 | 说明 | 类型 | 可选值 | 默认值 +| :------ |:------------- | :-----| :----|:---- +| width | 宽度 | number | — | 24 +| height | 高度 | number | — | 24 +| iconClass | icon的类名 | string | —|" "| +| el | 自定义下拉框trigger| object | —|{ } | +| popup | 弹出层| object | —| { } +| minWidth| 最小宽度| number | —|100| +| maxWidth | 最大宽度 | string/number | — | "auto"| +| maxHeight | 最大高度 | number | —| 300 +| adjustLength | 弹出列表和trigger的距离 | number | — | 0 | +| adjustXOffset | 调整横向偏移 | number | — | 0 | +| adjustYOffset |调整纵向偏移 | number | — | 0 | +| offsetStyle | 弹出层显示位置 | string | left,right,center | "left,right,center"| +| chooseType | 选择类型 | const | 参考button_group | BI.ButtonGroup.CHOOSE_TYPE_SINGLE | + + + +## 对外方法 +| 名称 | 说明 | 回调参数 +| :------ |:------------- | :----- +| setValue| 设置value值|—| +| getValue| 获取value值|—| +| showView | 显示弹出层 | —| +| hideView | 隐藏弹出层 |—| +| populate | 刷新列表 | items | + + + + + +--- + + diff --git a/docs/_book/case/combo/static_combo.html b/docs/_book/case/combo/static_combo.html new file mode 100644 index 000000000..559128b23 --- /dev/null +++ b/docs/_book/case/combo/static_combo.html @@ -0,0 +1,2615 @@ + + + + + + + static_combo · GitBook + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                +
                                                                + + + + + + + + +
                                                                + +
                                                                + +
                                                                + + + + + + + + +
                                                                +
                                                                + +
                                                                +
                                                                + +
                                                                + +

                                                                bi.static_combo

                                                                +

                                                                单选combo,trigger显示项不会改变 基类BI.Widget

                                                                +
                                                                
                                                                +BI.createWidget({
                                                                +    type: "bi.static_combo",
                                                                +    element: "#wrapper",
                                                                +    text: "Value 不变",
                                                                +    items: [{
                                                                +      text: "1",
                                                                +      value: 1
                                                                +    }, {
                                                                +      text: "2",
                                                                +      value: 2
                                                                +    }, {
                                                                +      text: "3",
                                                                +      value: 3
                                                                +    }]
                                                                +  });
                                                                +
                                                                +
                                                                + +

                                                                API

                                                                +
                                                                基础属性
                                                                + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                参数说明类型可选值默认值
                                                                height高度number24
                                                                el自定义下拉框triggerobject{ }
                                                                items子组件array[ ]
                                                                text文本内容string" "
                                                                chooseType选择类型const参考button_groupBI.ButtonGroup.CHOOSE_TYPE_SINGLE
                                                                +

                                                                对外方法

                                                                + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                名称说明回调参数
                                                                setValue设置value值
                                                                getValue获取value值
                                                                populate刷新列表items
                                                                +
                                                                + + +
                                                                + +
                                                                +
                                                                +
                                                                + +

                                                                results matching ""

                                                                +
                                                                  + +
                                                                  +
                                                                  + +

                                                                  No results matching ""

                                                                  + +
                                                                  +
                                                                  +
                                                                  + +
                                                                  +
                                                                  + +
                                                                  + + + + +
                                                                  + + +
                                                                  + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/_book/case/combo/static_combo.md b/docs/_book/case/combo/static_combo.md new file mode 100644 index 000000000..c6417aa64 --- /dev/null +++ b/docs/_book/case/combo/static_combo.md @@ -0,0 +1,58 @@ +# bi.static_combo + +## 单选combo,trigger显示项不会改变 基类[BI.Widget](/core/widget.md) + +{% method %} +[source](https://jsfiddle.net/fineui/kn64gfzn/) + +{% common %} +```javascript + +BI.createWidget({ + type: "bi.static_combo", + element: "#wrapper", + text: "Value 不变", + items: [{ + text: "1", + value: 1 + }, { + text: "2", + value: 2 + }, { + text: "3", + value: 3 + }] + }); + + + +``` + +{% endmethod %} + +## API +##### 基础属性 +| 参数 | 说明 | 类型 | 可选值 | 默认值 +| :------ |:------------- | :-----| :----|:---- +| height | 高度 | number | — | 24 +| el | 自定义下拉框trigger| object | —|{ } | +| items | 子组件 | array | — | [ ] +| text | 文本内容 | string | — | " " | +| chooseType | 选择类型 | const |参考button_group | BI.ButtonGroup.CHOOSE_TYPE_SINGLE | + + + +## 对外方法 +| 名称 | 说明 | 回调参数 +| :------ |:------------- | :----- +| setValue| 设置value值|—| +| getValue| 获取value值|—| +| populate | 刷新列表 | items | + + + + + +--- + + diff --git a/docs/_book/case/combo/text_value_combo.html b/docs/_book/case/combo/text_value_combo.html new file mode 100644 index 000000000..634e02f16 --- /dev/null +++ b/docs/_book/case/combo/text_value_combo.html @@ -0,0 +1,2609 @@ + + + + + + + text_value_combo · GitBook + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                  +
                                                                  + + + + + + + + +
                                                                  + +
                                                                  + +
                                                                  + + + + + + + + +
                                                                  +
                                                                  + +
                                                                  +
                                                                  + +
                                                                  + +

                                                                  bi.text_value_combo

                                                                  +

                                                                  基类BI.Widget

                                                                  +
                                                                  
                                                                  +BI.createWidget({
                                                                  +  type: "bi.text_value_combo",
                                                                  +  element: "#wrapper",
                                                                  +  text: "value_combo",
                                                                  +  width: 300,
                                                                  +  items: [{
                                                                  +    text: "1",
                                                                  +    value: 1
                                                                  +  }, {
                                                                  +    text: "2",
                                                                  +    value: 2
                                                                  +  }, {
                                                                  +    text: "3",
                                                                  +    value: 3
                                                                  +  }]
                                                                  +});
                                                                  +
                                                                  +
                                                                  + +

                                                                  API

                                                                  +
                                                                  基础属性
                                                                  + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                  参数说明类型可选值默认值
                                                                  height高度number30
                                                                  el自定义下拉框triggerobject{ }
                                                                  text文本内容string" "
                                                                  chooseType选择类型const参考button_groupBI.ButtonGroup.CHOOSE_TYPE_SINGLE
                                                                  +

                                                                  对外方法

                                                                  + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                  名称说明回调参数
                                                                  setValue设置value值
                                                                  getValue获取value值
                                                                  populate刷新列表items
                                                                  +
                                                                  + + +
                                                                  + +
                                                                  +
                                                                  +
                                                                  + +

                                                                  results matching ""

                                                                  +
                                                                    + +
                                                                    +
                                                                    + +

                                                                    No results matching ""

                                                                    + +
                                                                    +
                                                                    +
                                                                    + +
                                                                    +
                                                                    + +
                                                                    + + + + +
                                                                    + + +
                                                                    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/_book/case/combo/text_value_combo.md b/docs/_book/case/combo/text_value_combo.md new file mode 100644 index 000000000..0111637b7 --- /dev/null +++ b/docs/_book/case/combo/text_value_combo.md @@ -0,0 +1,58 @@ +# bi.text_value_combo + +## 基类[BI.Widget](/core/widget.md) + +{% method %} +[source](https://jsfiddle.net/fineui/hcf0kd9m/) + +{% common %} +```javascript + +BI.createWidget({ + type: "bi.text_value_combo", + element: "#wrapper", + text: "value_combo", + width: 300, + items: [{ + text: "1", + value: 1 + }, { + text: "2", + value: 2 + }, { + text: "3", + value: 3 + }] +}); + + +``` + +{% endmethod %} + +## API +##### 基础属性 +| 参数 | 说明 | 类型 | 可选值 | 默认值 +| :------ |:------------- | :-----| :----|:---- +| height | 高度 | number | — | 30 +| el | 自定义下拉框trigger| object |—|{ } | +| text | 文本内容 | string | — | " " | +| chooseType | 选择类型 | const |参考button_group | BI.ButtonGroup.CHOOSE_TYPE_SINGLE | + + + + +## 对外方法 +| 名称 | 说明 | 回调参数 +| :------ |:------------- | :----- +| setValue| 设置value值|—| +| getValue| 获取value值|—| +| populate | 刷新列表 | items | + + + + + +--- + + diff --git a/docs/_book/case/combo/text_value_downlist_combo.html b/docs/_book/case/combo/text_value_downlist_combo.html new file mode 100644 index 000000000..08f99d5d9 --- /dev/null +++ b/docs/_book/case/combo/text_value_downlist_combo.html @@ -0,0 +1,2601 @@ + + + + + + + text_value_downlist_combo · GitBook + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                    +
                                                                    + + + + + + + + +
                                                                    + +
                                                                    + +
                                                                    + + + + + + + + +
                                                                    +
                                                                    + +
                                                                    +
                                                                    + +
                                                                    + +

                                                                    bi.text_value_down_list_combo

                                                                    +

                                                                    有二级下拉菜单的combo 基类BI.Widget

                                                                    +
                                                                    
                                                                    +BI.createWidget({
                                                                    +  type: "bi.text_value_down_list_combo",
                                                                    +  element: "#wrapper",
                                                                    +  text: "text",
                                                                    +  items: [
                                                                    +    [{
                                                                    +      el: {
                                                                    +        text: "1",
                                                                    +        value: 1
                                                                    +      },
                                                                    +      children: [{
                                                                    +        text: "11",
                                                                    +        value: 11
                                                                    +      }]
                                                                    +    }],
                                                                    +    [{
                                                                    +      text: "2",
                                                                    +      value: 2
                                                                    +    }, {
                                                                    +      text: "3",
                                                                    +      value: 3
                                                                    +    }]
                                                                    +  ]
                                                                    +});
                                                                    +
                                                                    +
                                                                    + +

                                                                    API

                                                                    +
                                                                    基础属性
                                                                    + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                    参数说明类型可选值默认值
                                                                    height高度number30
                                                                    text文本内容string" "
                                                                    +

                                                                    对外方法

                                                                    + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                    名称说明回调参数
                                                                    setValue设置value值
                                                                    getValue获取value值
                                                                    populate刷新列表items
                                                                    +
                                                                    + + +
                                                                    + +
                                                                    +
                                                                    +
                                                                    + +

                                                                    results matching ""

                                                                    +
                                                                      + +
                                                                      +
                                                                      + +

                                                                      No results matching ""

                                                                      + +
                                                                      +
                                                                      +
                                                                      + +
                                                                      +
                                                                      + +
                                                                      + + + + +
                                                                      + + +
                                                                      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/_book/case/combo/text_value_downlist_combo.md b/docs/_book/case/combo/text_value_downlist_combo.md new file mode 100644 index 000000000..733435fc5 --- /dev/null +++ b/docs/_book/case/combo/text_value_downlist_combo.md @@ -0,0 +1,65 @@ +# bi.text_value_down_list_combo + +## 有二级下拉菜单的combo 基类[BI.Widget](/core/widget.md) + +{% method %} +[source](https://jsfiddle.net/fineui/xtxmfgx1/) + +{% common %} +```javascript + +BI.createWidget({ + type: "bi.text_value_down_list_combo", + element: "#wrapper", + text: "text", + items: [ + [{ + el: { + text: "1", + value: 1 + }, + children: [{ + text: "11", + value: 11 + }] + }], + [{ + text: "2", + value: 2 + }, { + text: "3", + value: 3 + }] + ] +}); + + + +``` + +{% endmethod %} + +## API +##### 基础属性 +| 参数 | 说明 | 类型 | 可选值 | 默认值 +| :------ |:------------- | :-----| :----|:---- +| height | 高度 | number | — | 30 +| text | 文本内容 | string | — | " " | + + + + +## 对外方法 +| 名称 | 说明 | 回调参数 +| :------ |:------------- | :----- +| setValue| 设置value值|—| +| getValue| 获取value值|—| +| populate | 刷新列表 | items | + + + + + +--- + + diff --git a/docs/_book/case/complex_canvas.html b/docs/_book/case/complex_canvas.html new file mode 100644 index 000000000..f7f8c3776 --- /dev/null +++ b/docs/_book/case/complex_canvas.html @@ -0,0 +1,2556 @@ + + + + + + + complex_canvas · GitBook + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                      +
                                                                      + + + + + + + + +
                                                                      + +
                                                                      + +
                                                                      + + + + + + + + +
                                                                      +
                                                                      + +
                                                                      +
                                                                      + +
                                                                      + +

                                                                      complex_canvas

                                                                      +

                                                                      复杂的canvas绘图

                                                                      +
                                                                      
                                                                      +var canvas = BI.createWidget({
                                                                      +   type: "bi.complex_canvas",
                                                                      +        width: 500,
                                                                      +        height: 600
                                                                      +    });
                                                                      +canvas.branch(55, 100, 10, 10, 100, 10, 200, 10, {
                                                                      +     offset: 20,
                                                                      +     strokeStyle: "red",
                                                                      +     lineWidth: 2
                                                                      + });
                                                                      +
                                                                      +canvas.stroke();
                                                                      +
                                                                      +
                                                                      + +

                                                                      对外方法

                                                                      + + + + + + + + + + + + + + + + + + + +
                                                                      名称说明回调参数
                                                                      branch绘制树枝节点(x0, y0, x1, y1, x2, y2) (以x0, y0为根节点,分支到x1,y1, x2,y2...)
                                                                      stroke绘制
                                                                      +
                                                                      + + +
                                                                      + +
                                                                      +
                                                                      +
                                                                      + +

                                                                      results matching ""

                                                                      +
                                                                        + +
                                                                        +
                                                                        + +

                                                                        No results matching ""

                                                                        + +
                                                                        +
                                                                        +
                                                                        + +
                                                                        +
                                                                        + +
                                                                        + + + + +
                                                                        + + +
                                                                        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/_book/case/complex_canvas.md b/docs/_book/case/complex_canvas.md new file mode 100644 index 000000000..8a358a502 --- /dev/null +++ b/docs/_book/case/complex_canvas.md @@ -0,0 +1,37 @@ +# complex_canvas + +## 复杂的canvas绘图 + +{% method %} +[source](https://jsfiddle.net/fineui/psozjkgn/) + +{% common %} +```javascript + +var canvas = BI.createWidget({ + type: "bi.complex_canvas", + width: 500, + height: 600 + }); +canvas.branch(55, 100, 10, 10, 100, 10, 200, 10, { + offset: 20, + strokeStyle: "red", + lineWidth: 2 + }); + +canvas.stroke(); + + +``` + +{% endmethod %} + +## 对外方法 +| 名称 | 说明 | 回调参数 +| :------ |:------------- | :----- +| branch | 绘制树枝节点| (x0, y0, x1, y1, x2, y2) (以x0, y0为根节点,分支到x1,y1, x2,y2...)| +| stroke | 绘制 | | + +--- + + diff --git a/docs/_book/case/editor/shelter_editor.html b/docs/_book/case/editor/shelter_editor.html new file mode 100644 index 000000000..4acd26277 --- /dev/null +++ b/docs/_book/case/editor/shelter_editor.html @@ -0,0 +1,2820 @@ + + + + + + + shelter_editor · GitBook + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                        +
                                                                        + + + + + + + + +
                                                                        + +
                                                                        + +
                                                                        + + + + + + + + +
                                                                        +
                                                                        + +
                                                                        +
                                                                        + +
                                                                        + +

                                                                        bi.shelter_editor

                                                                        +

                                                                        带标记的文本框,需手动控制进入编辑状态 基类BI.Widget

                                                                        +
                                                                        
                                                                        +BI.createWidget({
                                                                        +    element: "#wrapper",
                                                                        +    type: "bi.shelter_editor",
                                                                        +    cls: "bi-border",
                                                                        +    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
                                                                        allowBlank是否允许空值booleantrue,falsetrue
                                                                        watermark文本框placeholderstring" "
                                                                        errorText错误提示string/function" "
                                                                        height高度number30
                                                                        textAlign对齐方式stringleft,center,right"left"
                                                                        +

                                                                        对外方法

                                                                        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                        名称说明回调参数
                                                                        setErrorText设置错误文本text
                                                                        getErrorText获取错误文本
                                                                        focus文本框获取焦点
                                                                        blur文本框失焦
                                                                        onKeyDown按键事件key
                                                                        setValue设置文本框值value
                                                                        getLastValidValue获取文本框最后一次输入的有效值
                                                                        setTextStyle设置文本框样式style
                                                                        getValue获取文本框值
                                                                        isEditing文本框是否处于编辑状态
                                                                        isValid文本框值是否有效
                                                                        doRedMark文本标红
                                                                        unRedMark取消文本标红
                                                                        doHighLight文本高亮
                                                                        unHighLight取消文本高亮
                                                                        setTitle设置titletitle
                                                                        setWarningTitle设置错误titletitle
                                                                        setState设置文本框值
                                                                        getState获取文本框值
                                                                        +

                                                                        事件

                                                                        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                        事件说明
                                                                        BI.Editor.EVENT_CHANGEeditor的value发生改变触发
                                                                        BI.Editor.EVENT_FOCUSfocus事件
                                                                        BI.Editor.EVENT_BLURblur事件
                                                                        BI.Editor.EVENT_CLICK点击编辑框触发(不在编辑状态时)
                                                                        BI.Editor.EVENT_KEY_DOWNkeyDown时触发
                                                                        BI.Editor.EVENT_SPACE按下空格触发
                                                                        BI.Editor.EVENT_BACKSPACE按下Backspace触发
                                                                        BI.Editor.EVENT_START开始输入触发
                                                                        BI.Editor.EVENT_PAUSE暂停输入触发(输入空白字符)
                                                                        BI.Editor.EVENT_STOP停止输入触发
                                                                        BI.Editor.EVENT_CONFIRM确定输入触发(blur时且输入值有效)
                                                                        BI.Editor.EVENT_VALID输入值有效的状态事件
                                                                        BI.Editor.EVENT_ERROR输入值无效的状态事件
                                                                        BI.Editor.EVENT_ENTER回车事件
                                                                        BI.Editor.EVENT_RESTRICT回车但是值不合法
                                                                        BI.Editor.EVENT_REMOVE输入为空时按下backspace
                                                                        BI.Editor.EVENT_EMPTY输入框为空时触发
                                                                        +
                                                                        + + +
                                                                        + +
                                                                        +
                                                                        +
                                                                        + +

                                                                        results matching ""

                                                                        +
                                                                          + +
                                                                          +
                                                                          + +

                                                                          No results matching ""

                                                                          + +
                                                                          +
                                                                          +
                                                                          + +
                                                                          +
                                                                          + +
                                                                          + + + + +
                                                                          + + +
                                                                          + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/_book/case/editor/shelter_editor.md b/docs/_book/case/editor/shelter_editor.md new file mode 100644 index 000000000..58e28c372 --- /dev/null +++ b/docs/_book/case/editor/shelter_editor.md @@ -0,0 +1,93 @@ +# bi.shelter_editor + +## 带标记的文本框,需手动控制进入编辑状态 基类[BI.Widget](/core/widget.md) + +{% method %} +[source](https://jsfiddle.net/fineui/9Lbx6kga/) + +{% common %} +```javascript + +BI.createWidget({ + element: "#wrapper", + type: "bi.shelter_editor", + cls: "bi-border", + 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 | — | — | +| allowBlank | 是否允许空值 | boolean | true,false | true | +| watermark | 文本框placeholder | string | — | " " | +| errorText | 错误提示 | string/function | —| " "| +| height| 高度| number |— | 30| +| textAlign| 对齐方式 | string |left,center,right |"left"| + + + + +## 对外方法 +| 名称 | 说明 | 回调参数 +| :------ |:------------- | :----- +| setErrorText | 设置错误文本 | text | +| getErrorText | 获取错误文本 | —| +| focus | 文本框获取焦点| — | +| blur | 文本框失焦|—| +| onKeyDown |按键事件|key| +| setValue | 设置文本框值|value| +| getLastValidValue | 获取文本框最后一次输入的有效值| —| +| setTextStyle| 设置文本框样式| style | +| getValue | 获取文本框值|—| +| isEditing | 文本框是否处于编辑状态|—| +| isValid | 文本框值是否有效|—| +| doRedMark | 文本标红 | — | +| unRedMark | 取消文本标红| —| +| doHighLight | 文本高亮 | —| +| unHighLight | 取消文本高亮 | —| +| setTitle| 设置title | title| +| setWarningTitle| 设置错误title | title | +| setState | 设置文本框值 |— +| getState | 获取文本框值 | — + +## 事件 +| 事件 | 说明 | +| :------ |:------------- | +|BI.Editor.EVENT_CHANGE | editor的value发生改变触发 | +|BI.Editor.EVENT_FOCUS | focus事件 | +|BI.Editor.EVENT_BLUR | blur事件 | +|BI.Editor.EVENT_CLICK | 点击编辑框触发(不在编辑状态时) | +|BI.Editor.EVENT_KEY_DOWN | keyDown时触发 | +|BI.Editor.EVENT_SPACE | 按下空格触发 | +|BI.Editor.EVENT_BACKSPACE | 按下Backspace触发 | +|BI.Editor.EVENT_START | 开始输入触发 | +|BI.Editor.EVENT_PAUSE | 暂停输入触发(输入空白字符) | +|BI.Editor.EVENT_STOP | 停止输入触发 | +|BI.Editor.EVENT_CONFIRM | 确定输入触发(blur时且输入值有效) | +|BI.Editor.EVENT_VALID | 输入值有效的状态事件 | +|BI.Editor.EVENT_ERROR | 输入值无效的状态事件 | +|BI.Editor.EVENT_ENTER | 回车事件 | +|BI.Editor.EVENT_RESTRICT | 回车但是值不合法 | +|BI.Editor.EVENT_REMOVE | 输入为空时按下backspace | +|BI.Editor.EVENT_EMPTY | 输入框为空时触发 | + + + + +--- + + diff --git a/docs/_book/case/editor/sign_editor.html b/docs/_book/case/editor/sign_editor.html new file mode 100644 index 000000000..2dd3778bb --- /dev/null +++ b/docs/_book/case/editor/sign_editor.html @@ -0,0 +1,2806 @@ + + + + + + + sign_editor · GitBook + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                          +
                                                                          + + + + + + + + +
                                                                          + +
                                                                          + +
                                                                          + + + + + + + + +
                                                                          +
                                                                          + +
                                                                          +
                                                                          + +
                                                                          + +

                                                                          bi.sign_editor

                                                                          +

                                                                          带标记的文本框,基类BI.Widget

                                                                          +
                                                                          
                                                                          +BI.createWidget({
                                                                          +    element: "#wrapper",
                                                                          +    type: "bi.sign_editor",
                                                                          +    cls:"layout-bg5",
                                                                          +    value: "123",
                                                                          +    text: "456",
                                                                          +    width: 300
                                                                          +});
                                                                          +
                                                                          +
                                                                          + +

                                                                          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
                                                                          allowBlank是否允许空值booleantrue,falsetrue
                                                                          watermark文本框placeholderstring" "
                                                                          errorText错误提示string/function" "
                                                                          height高度number30
                                                                          +

                                                                          对外方法

                                                                          + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                          名称说明回调参数
                                                                          setErrorText设置错误文本text
                                                                          getErrorText获取错误文本
                                                                          focus文本框获取焦点
                                                                          blur文本框失焦
                                                                          setValue设置文本框值value
                                                                          getLastValidValue获取文本框最后一次输入的有效值
                                                                          getValue获取文本框值
                                                                          isEditing文本框是否处于编辑状态
                                                                          isValid文本框值是否有效
                                                                          doRedMark文本标红
                                                                          unRedMark取消文本标红
                                                                          doHighLight文本高亮
                                                                          unHighLight取消文本高亮
                                                                          setTitle设置titletitle
                                                                          setWarningTitle设置错误titletitle
                                                                          setState设置文本框值
                                                                          getState获取文本框值
                                                                          +

                                                                          事件

                                                                          + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                          事件说明
                                                                          BI.Editor.EVENT_CHANGEeditor的value发生改变触发
                                                                          BI.Editor.EVENT_FOCUSfocus事件
                                                                          BI.Editor.EVENT_BLURblur事件
                                                                          BI.Editor.EVENT_CLICK点击编辑框触发(不在编辑状态时)
                                                                          BI.Editor.EVENT_KEY_DOWNkeyDown时触发
                                                                          BI.Editor.EVENT_SPACE按下空格触发
                                                                          BI.Editor.EVENT_BACKSPACE按下Backspace触发
                                                                          BI.Editor.EVENT_START开始输入触发
                                                                          BI.Editor.EVENT_PAUSE暂停输入触发(输入空白字符)
                                                                          BI.Editor.EVENT_STOP停止输入触发
                                                                          BI.Editor.EVENT_CONFIRM确定输入触发(blur时且输入值有效)
                                                                          BI.Editor.EVENT_VALID输入值有效的状态事件
                                                                          BI.Editor.EVENT_ERROR输入值无效的状态事件
                                                                          BI.Editor.EVENT_ENTER回车事件
                                                                          BI.Editor.EVENT_RESTRICT回车但是值不合法
                                                                          BI.Editor.EVENT_REMOVE输入为空时按下backspace
                                                                          BI.Editor.EVENT_EMPTY输入框为空时触发
                                                                          +
                                                                          + + +
                                                                          + +
                                                                          +
                                                                          +
                                                                          + +

                                                                          results matching ""

                                                                          +
                                                                            + +
                                                                            +
                                                                            + +

                                                                            No results matching ""

                                                                            + +
                                                                            +
                                                                            +
                                                                            + +
                                                                            +
                                                                            + +
                                                                            + + + + +
                                                                            + + +
                                                                            + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/_book/case/editor/sign_editor.md b/docs/_book/case/editor/sign_editor.md new file mode 100644 index 000000000..11dffc2e0 --- /dev/null +++ b/docs/_book/case/editor/sign_editor.md @@ -0,0 +1,91 @@ +# bi.sign_editor + +## 带标记的文本框,基类[BI.Widget](/core/widget.md) + +{% method %} +[source](https://jsfiddle.net/fineui/tmdedu5t/) + +{% common %} +```javascript + +BI.createWidget({ + element: "#wrapper", + type: "bi.sign_editor", + cls:"layout-bg5", + value: "123", + text: "456", + width: 300 +}); + +``` + +{% 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 | — | — | +| allowBlank | 是否允许空值 | boolean | true,false | true | +| watermark | 文本框placeholder | string | — | " " | +| errorText | 错误提示 | string/function | —| " "| +| height| 高度| number |— | 30| + + + + +## 对外方法 +| 名称 | 说明 | 回调参数 +| :------ |:------------- | :----- +| setErrorText | 设置错误文本 | text | +| getErrorText | 获取错误文本 | —| +| focus | 文本框获取焦点| — | +| blur | 文本框失焦|—| +| setValue | 设置文本框值|value| +| getLastValidValue | 获取文本框最后一次输入的有效值| —| +| getValue | 获取文本框值|—| +| isEditing | 文本框是否处于编辑状态|—| +| isValid | 文本框值是否有效|—| +| doRedMark | 文本标红 | — | +| unRedMark | 取消文本标红| —| +| doHighLight | 文本高亮 | —| +| unHighLight | 取消文本高亮 | —| +| setTitle| 设置title | title| +| setWarningTitle| 设置错误title | title | +| setState | 设置文本框值 |— +| getState | 获取文本框值 | — + +## 事件 +| 事件 | 说明 | +| :------ |:------------- | +|BI.Editor.EVENT_CHANGE | editor的value发生改变触发 | +|BI.Editor.EVENT_FOCUS | focus事件 | +|BI.Editor.EVENT_BLUR | blur事件 | +|BI.Editor.EVENT_CLICK | 点击编辑框触发(不在编辑状态时) | +|BI.Editor.EVENT_KEY_DOWN | keyDown时触发 | +|BI.Editor.EVENT_SPACE | 按下空格触发 | +|BI.Editor.EVENT_BACKSPACE | 按下Backspace触发 | +|BI.Editor.EVENT_START | 开始输入触发 | +|BI.Editor.EVENT_PAUSE | 暂停输入触发(输入空白字符) | +|BI.Editor.EVENT_STOP | 停止输入触发 | +|BI.Editor.EVENT_CONFIRM | 确定输入触发(blur时且输入值有效) | +|BI.Editor.EVENT_VALID | 输入值有效的状态事件 | +|BI.Editor.EVENT_ERROR | 输入值无效的状态事件 | +|BI.Editor.EVENT_ENTER | 回车事件 | +|BI.Editor.EVENT_RESTRICT | 回车但是值不合法 | +|BI.Editor.EVENT_REMOVE | 输入为空时按下backspace | +|BI.Editor.EVENT_EMPTY | 输入框为空时触发 | + + + + +--- + + diff --git a/docs/_book/case/editor/sign_initial_editor.html b/docs/_book/case/editor/sign_initial_editor.html new file mode 100644 index 000000000..70d995246 --- /dev/null +++ b/docs/_book/case/editor/sign_initial_editor.html @@ -0,0 +1,2819 @@ + + + + + + + sign_initial_editor · GitBook + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                            +
                                                                            + + + + + + + + +
                                                                            + +
                                                                            + +
                                                                            + + + + + + + + +
                                                                            +
                                                                            + +
                                                                            +
                                                                            + +
                                                                            + +

                                                                            bi.sign_initial_editor

                                                                            +

                                                                            指定初始值 之后初始值会一直显示的editor 基类BI.Widget

                                                                            +
                                                                            
                                                                            +BI.createWidget({
                                                                            +    element: "#wrapper",
                                                                            +    type: "bi.sign_initial_editor",
                                                                            +    cls: "layout-bg5",
                                                                            +    text: "原始值",
                                                                            +    width: 300
                                                                            +});
                                                                            +
                                                                            +
                                                                            + +

                                                                            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
                                                                            allowBlank是否允许空值booleantrue,falsetrue
                                                                            watermark文本框placeholderstring" "
                                                                            errorText错误提示string/function" "
                                                                            height高度number30
                                                                            text文本内容string" "
                                                                            value文本value值string" "
                                                                            +

                                                                            对外方法

                                                                            + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                            名称说明回调参数
                                                                            setErrorText设置错误文本text
                                                                            getErrorText获取错误文本
                                                                            focus文本框获取焦点
                                                                            blur文本框失焦
                                                                            setValue设置文本框值value
                                                                            getLastValidValue获取文本框最后一次输入的有效值
                                                                            getValue获取文本框值
                                                                            isEditing文本框是否处于编辑状态
                                                                            isValid文本框值是否有效
                                                                            doRedMark文本标红
                                                                            unRedMark取消文本标红
                                                                            doHighLight文本高亮
                                                                            unHighLight取消文本高亮
                                                                            setTitle设置titletitle
                                                                            setWarningTitle设置错误titletitle
                                                                            setState设置文本框值
                                                                            getState获取文本框值
                                                                            +

                                                                            事件

                                                                            + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                            事件说明
                                                                            BI.Editor.EVENT_CHANGEeditor的value发生改变触发
                                                                            BI.Editor.EVENT_FOCUSfocus事件
                                                                            BI.Editor.EVENT_BLURblur事件
                                                                            BI.Editor.EVENT_CLICK点击编辑框触发(不在编辑状态时)
                                                                            BI.Editor.EVENT_KEY_DOWNkeyDown时触发
                                                                            BI.Editor.EVENT_SPACE按下空格触发
                                                                            BI.Editor.EVENT_BACKSPACE按下Backspace触发
                                                                            BI.Editor.EVENT_START开始输入触发
                                                                            BI.Editor.EVENT_PAUSE暂停输入触发(输入空白字符)
                                                                            BI.Editor.EVENT_STOP停止输入触发
                                                                            BI.Editor.EVENT_CONFIRM确定输入触发(blur时且输入值有效)
                                                                            BI.Editor.EVENT_VALID输入值有效的状态事件
                                                                            BI.Editor.EVENT_ERROR输入值无效的状态事件
                                                                            BI.Editor.EVENT_ENTER回车事件
                                                                            BI.Editor.EVENT_RESTRICT回车但是值不合法
                                                                            BI.Editor.EVENT_REMOVE输入为空时按下backspace
                                                                            BI.Editor.EVENT_EMPTY输入框为空时触发
                                                                            +
                                                                            + + +
                                                                            + +
                                                                            +
                                                                            +
                                                                            + +

                                                                            results matching ""

                                                                            +
                                                                              + +
                                                                              +
                                                                              + +

                                                                              No results matching ""

                                                                              + +
                                                                              +
                                                                              +
                                                                              + +
                                                                              +
                                                                              + +
                                                                              + + + + +
                                                                              + + +
                                                                              + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/_book/case/editor/sign_initial_editor.md b/docs/_book/case/editor/sign_initial_editor.md new file mode 100644 index 000000000..c08af2c65 --- /dev/null +++ b/docs/_book/case/editor/sign_initial_editor.md @@ -0,0 +1,92 @@ +# bi.sign_initial_editor + +## 指定初始值 之后初始值会一直显示的editor 基类[BI.Widget](/core/widget.md) + +{% method %} +[source](https://jsfiddle.net/fineui/9vjghevp/) + +{% common %} +```javascript + +BI.createWidget({ + element: "#wrapper", + type: "bi.sign_initial_editor", + cls: "layout-bg5", + text: "原始值", + width: 300 +}); + +``` + +{% 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 | — | — | +| allowBlank | 是否允许空值 | boolean | true,false | true | +| watermark | 文本框placeholder | string | — | " " | +| errorText | 错误提示 | string/function | —| " "| +| height| 高度| number |— | 30| +| text | 文本内容 | string | —| " " | +| value | 文本value值 | string | — | " " | + + + + +## 对外方法 +| 名称 | 说明 | 回调参数 +| :------ |:------------- | :----- +| setErrorText | 设置错误文本 | text | +| getErrorText | 获取错误文本 | —| +| focus | 文本框获取焦点| — | +| blur | 文本框失焦|—| +| setValue | 设置文本框值|value| +| getLastValidValue | 获取文本框最后一次输入的有效值| —| +| getValue | 获取文本框值|—| +| isEditing | 文本框是否处于编辑状态|—| +| isValid | 文本框值是否有效|—| +| doRedMark | 文本标红 | — | +| unRedMark | 取消文本标红| —| +| doHighLight | 文本高亮 | —| +| unHighLight | 取消文本高亮 | —| +| setTitle| 设置title | title| +| setWarningTitle| 设置错误title | title | +| setState | 设置文本框值 |— +| getState | 获取文本框值 | — + +## 事件 +| 事件 | 说明 | +| :------ |:------------- | +|BI.Editor.EVENT_CHANGE | editor的value发生改变触发 | +|BI.Editor.EVENT_FOCUS | focus事件 | +|BI.Editor.EVENT_BLUR | blur事件 | +|BI.Editor.EVENT_CLICK | 点击编辑框触发(不在编辑状态时) | +|BI.Editor.EVENT_KEY_DOWN | keyDown时触发 | +|BI.Editor.EVENT_SPACE | 按下空格触发 | +|BI.Editor.EVENT_BACKSPACE | 按下Backspace触发 | +|BI.Editor.EVENT_START | 开始输入触发 | +|BI.Editor.EVENT_PAUSE | 暂停输入触发(输入空白字符) | +|BI.Editor.EVENT_STOP | 停止输入触发 | +|BI.Editor.EVENT_CONFIRM | 确定输入触发(blur时且输入值有效) | +|BI.Editor.EVENT_VALID | 输入值有效的状态事件 | +|BI.Editor.EVENT_ERROR | 输入值无效的状态事件 | +|BI.Editor.EVENT_ENTER | 回车事件 | +|BI.Editor.EVENT_RESTRICT | 回车但是值不合法 | +|BI.Editor.EVENT_REMOVE | 输入为空时按下backspace | +|BI.Editor.EVENT_EMPTY | 输入框为空时触发 | + + + + +--- + + diff --git a/docs/_book/case/editor/state_editor.html b/docs/_book/case/editor/state_editor.html new file mode 100644 index 000000000..5f78d9974 --- /dev/null +++ b/docs/_book/case/editor/state_editor.html @@ -0,0 +1,2793 @@ + + + + + + + state_editor · GitBook + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                              +
                                                                              + + + + + + + + +
                                                                              + +
                                                                              + +
                                                                              + + + + + + + + +
                                                                              +
                                                                              + +
                                                                              +
                                                                              + +
                                                                              + +

                                                                              bi.state_editor

                                                                              +

                                                                              记录状态的输入框,基类BI.Widget

                                                                              +
                                                                              
                                                                              +BI.createWidget({
                                                                              +    element: "#wrapper",
                                                                              +    type: "bi.state_editor",
                                                                              +    value: "123",
                                                                              +    text: "456",
                                                                              +    width: 300
                                                                              +});
                                                                              +
                                                                              +
                                                                              + +

                                                                              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
                                                                              allowBlank是否允许空值booleantrue,falsetrue
                                                                              watermark文本框placeholderstring" "
                                                                              errorText错误提示string/function" "
                                                                              height高度number30
                                                                              +

                                                                              对外方法

                                                                              + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                              名称说明回调参数
                                                                              setErrorText设置错误文本text
                                                                              getErrorText获取错误文本
                                                                              focus文本框获取焦点
                                                                              blur文本框失焦
                                                                              setValue设置文本框值value
                                                                              getLastValidValue获取文本框最后一次输入的有效值
                                                                              getValue获取文本框值
                                                                              isEditing文本框是否处于编辑状态
                                                                              isValid文本框值是否有效
                                                                              doRedMark文本标红
                                                                              unRedMark取消文本标红
                                                                              doHighLight文本高亮
                                                                              unHighLight取消文本高亮
                                                                              setState设置文本框值
                                                                              getState获取文本框值
                                                                              +

                                                                              事件

                                                                              + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                              事件说明
                                                                              BI.Editor.EVENT_CHANGEeditor的value发生改变触发
                                                                              BI.Editor.EVENT_FOCUSfocus事件
                                                                              BI.Editor.EVENT_BLURblur事件
                                                                              BI.Editor.EVENT_CLICK点击编辑框触发(不在编辑状态时)
                                                                              BI.Editor.EVENT_KEY_DOWNkeyDown时触发
                                                                              BI.Editor.EVENT_SPACE按下空格触发
                                                                              BI.Editor.EVENT_BACKSPACE按下Backspace触发
                                                                              BI.Editor.EVENT_START开始输入触发
                                                                              BI.Editor.EVENT_PAUSE暂停输入触发(输入空白字符)
                                                                              BI.Editor.EVENT_STOP停止输入触发
                                                                              BI.Editor.EVENT_CONFIRM确定输入触发(blur时且输入值有效)
                                                                              BI.Editor.EVENT_VALID输入值有效的状态事件
                                                                              BI.Editor.EVENT_ERROR输入值无效的状态事件
                                                                              BI.Editor.EVENT_ENTER回车事件
                                                                              BI.Editor.EVENT_RESTRICT回车但是值不合法
                                                                              BI.Editor.EVENT_REMOVE输入为空时按下backspace
                                                                              BI.Editor.EVENT_EMPTY输入框为空时触发
                                                                              +
                                                                              + + +
                                                                              + +
                                                                              +
                                                                              +
                                                                              + +

                                                                              results matching ""

                                                                              +
                                                                                + +
                                                                                +
                                                                                + +

                                                                                No results matching ""

                                                                                + +
                                                                                +
                                                                                +
                                                                                + +
                                                                                +
                                                                                + +
                                                                                + + + + +
                                                                                + + +
                                                                                + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/_book/case/editor/state_editor.md b/docs/_book/case/editor/state_editor.md new file mode 100644 index 000000000..364a5cc0d --- /dev/null +++ b/docs/_book/case/editor/state_editor.md @@ -0,0 +1,89 @@ +# bi.state_editor + +## 记录状态的输入框,基类[BI.Widget](/core/widget.md) + +{% method %} +[source](https://jsfiddle.net/fineui/p68bwkmv/) + +{% common %} +```javascript + +BI.createWidget({ + element: "#wrapper", + type: "bi.state_editor", + value: "123", + text: "456", + width: 300 +}); + +``` + +{% 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 |— | — | +| allowBlank | 是否允许空值 | boolean | true,false | true | +| watermark | 文本框placeholder | string | —| " " | +| errorText | 错误提示 | string/function |— | " "| +| height| 高度| number |— | 30| + + + + + +## 对外方法 +| 名称 | 说明 | 回调参数 +| :------ |:------------- | :----- +| setErrorText | 设置错误文本 | text | +| getErrorText | 获取错误文本 | —| +| focus | 文本框获取焦点| — | +| blur | 文本框失焦|—| +| setValue | 设置文本框值|value| +| getLastValidValue | 获取文本框最后一次输入的有效值| —| +| getValue | 获取文本框值|—| +| isEditing | 文本框是否处于编辑状态|—| +| isValid | 文本框值是否有效|—| +| doRedMark | 文本标红 | — | +| unRedMark | 取消文本标红| —| +| doHighLight | 文本高亮 | —| +| unHighLight | 取消文本高亮 | —| +| setState | 设置文本框值 |— +| getState | 获取文本框值 | — + +## 事件 +| 事件 | 说明 | +| :------ |:------------- | +|BI.Editor.EVENT_CHANGE | editor的value发生改变触发 | +|BI.Editor.EVENT_FOCUS | focus事件 | +|BI.Editor.EVENT_BLUR | blur事件 | +|BI.Editor.EVENT_CLICK | 点击编辑框触发(不在编辑状态时) | +|BI.Editor.EVENT_KEY_DOWN | keyDown时触发 | +|BI.Editor.EVENT_SPACE | 按下空格触发 | +|BI.Editor.EVENT_BACKSPACE | 按下Backspace触发 | +|BI.Editor.EVENT_START | 开始输入触发 | +|BI.Editor.EVENT_PAUSE | 暂停输入触发(输入空白字符) | +|BI.Editor.EVENT_STOP | 停止输入触发 | +|BI.Editor.EVENT_CONFIRM | 确定输入触发(blur时且输入值有效) | +|BI.Editor.EVENT_VALID | 输入值有效的状态事件 | +|BI.Editor.EVENT_ERROR | 输入值无效的状态事件 | +|BI.Editor.EVENT_ENTER | 回车事件 | +|BI.Editor.EVENT_RESTRICT | 回车但是值不合法 | +|BI.Editor.EVENT_REMOVE | 输入为空时按下backspace | +|BI.Editor.EVENT_EMPTY | 输入框为空时触发 | + + + + +--- + + diff --git a/docs/_book/case/layer/layer_panel.html b/docs/_book/case/layer/layer_panel.html new file mode 100644 index 000000000..e44150d54 --- /dev/null +++ b/docs/_book/case/layer/layer_panel.html @@ -0,0 +1,2676 @@ + + + + + + + layer_panel · GitBook + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                +
                                                                                + + + + + + + + +
                                                                                + +
                                                                                + +
                                                                                + + + + + + + + +
                                                                                +
                                                                                + +
                                                                                +
                                                                                + +
                                                                                + +

                                                                                bi.popup_panel

                                                                                +

                                                                                可以理解为MultiPopupView和Panel两个面板的结合体,基类BI.MultiPopupView

                                                                                +
                                                                                
                                                                                +BI.createWidget({
                                                                                +    element: "#wrapper",
                                                                                +    type: "bi.popup_panel",
                                                                                +    title: "测试",
                                                                                +    width: 300
                                                                                +});
                                                                                +
                                                                                +
                                                                                + +

                                                                                API

                                                                                +
                                                                                基础属性
                                                                                + + + + + + + + + + + + + + + + + + + +
                                                                                参数说明类型可选值默认值
                                                                                title标题string" "
                                                                                +

                                                                                对外方法

                                                                                + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                名称说明回调参数
                                                                                prependItems内部前插入items
                                                                                addItems内部后插入items
                                                                                removeItemAt移除指定索引处的itemindexs
                                                                                populate刷新列表items
                                                                                setNotSelectedValue设置未被选中的值value,可以是单个值也可以是个数组
                                                                                setValue设置value值value,可以是单个值也可以是个数组
                                                                                getNotSelectedValue获取没有被选中的值
                                                                                getValue获取被选中的值
                                                                                getAllButtons获取所有button
                                                                                getAllLeaves获取所有的叶子节点
                                                                                getSelectedButtons获取所有被选中的元素
                                                                                getNotSelectedButtons获取所有未被选中的元素
                                                                                getIndexByValue根据value值获取value在数组中的索引value
                                                                                getNodeById根据id获取节点id
                                                                                getNodeByValue根据value值获取节点value
                                                                                empty清空组件
                                                                                hasPrev是否有上一页
                                                                                hasNext是否有下一页
                                                                                +

                                                                                事件

                                                                                + + + + + + + + + + + + + + + + + + + + + +
                                                                                事件说明
                                                                                BI.PopupPanel.EVENT_CHANGEpanel的value发生改变触发
                                                                                BI.PopupPanel.EVENT_CLOSEpanel的关闭事件
                                                                                BI.PopupPanel.EVENT_CLICK_TOOLBAR_BUTTON点击工具栏事件
                                                                                +
                                                                                + + +
                                                                                + +
                                                                                +
                                                                                +
                                                                                + +

                                                                                results matching ""

                                                                                +
                                                                                  + +
                                                                                  +
                                                                                  + +

                                                                                  No results matching ""

                                                                                  + +
                                                                                  +
                                                                                  +
                                                                                  + +
                                                                                  +
                                                                                  + +
                                                                                  + + + + +
                                                                                  + + +
                                                                                  + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/_book/case/layer/layer_panel.md b/docs/_book/case/layer/layer_panel.md new file mode 100644 index 000000000..8e34ca2f2 --- /dev/null +++ b/docs/_book/case/layer/layer_panel.md @@ -0,0 +1,69 @@ +# bi.popup_panel + +## 可以理解为MultiPopupView和Panel两个面板的结合体,基类[BI.MultiPopupView](case/layer/multi_popup_layer.md) + +{% method %} +[source](https://jsfiddle.net/fineui/zhnqvera/) + +{% common %} +```javascript + +BI.createWidget({ + element: "#wrapper", + type: "bi.popup_panel", + title: "测试", + width: 300 +}); + +``` + +{% endmethod %} + +## API +##### 基础属性 +| 参数 | 说明 | 类型 | 可选值 | 默认值 +| :------ |:------------- | :-----| :----|:---- +| title | 标题 | string | — | " " + + + + + + + +## 对外方法 +| 名称 | 说明 | 回调参数 +| :------ |:------------- | :----- +| prependItems | 内部前插入 | items | +| addItems | 内部后插入 | items | +| removeItemAt | 移除指定索引处的item | indexs | +| populate | 刷新列表 | items | +| setNotSelectedValue| 设置未被选中的值 | value,可以是单个值也可以是个数组| +| setValue | 设置value值 | value,可以是单个值也可以是个数组 | +| getNotSelectedValue | 获取没有被选中的值 | —| +| getValue | 获取被选中的值 |—| +| getAllButtons | 获取所有button |—| +| getAllLeaves | 获取所有的叶子节点 | —| +| getSelectedButtons | 获取所有被选中的元素 | —| +| getNotSelectedButtons | 获取所有未被选中的元素 | —| +| getIndexByValue | 根据value值获取value在数组中的索引 | value| +| getNodeById | 根据id获取节点 | id | +| getNodeByValue | 根据value值获取节点 | value | +| empty| 清空组件|—| +| hasPrev| 是否有上一页|—| +| hasNext | 是否有下一页 | — + + +## 事件 +| 事件 | 说明 | +| :------ |:------------- | +|BI.PopupPanel.EVENT_CHANGE | panel的value发生改变触发 | +| BI.PopupPanel.EVENT_CLOSE | panel的关闭事件 +| BI.PopupPanel.EVENT_CLICK_TOOLBAR_BUTTON | 点击工具栏事件 + + + + +--- + + diff --git a/docs/_book/case/layer/multi_popup_layer.html b/docs/_book/case/layer/multi_popup_layer.html new file mode 100644 index 000000000..a305d0650 --- /dev/null +++ b/docs/_book/case/layer/multi_popup_layer.html @@ -0,0 +1,2548 @@ + + + + + + + multi_popup_layer · GitBook + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                  +
                                                                                  + + + + + + + + +
                                                                                  + +
                                                                                  + +
                                                                                  + + + + + + + + +
                                                                                  +
                                                                                  + +
                                                                                  +
                                                                                  + +
                                                                                  + +

                                                                                  bi.multi_popup_view

                                                                                  +

                                                                                  下拉框弹出层的多选版本,toolbar带有若干按钮, zIndex在1000w,基类BI.MultiPopupView

                                                                                  +
                                                                                  
                                                                                  +BI.createWidget({
                                                                                  +    element: "#wrapper",
                                                                                  +    type: "bi.multi_popup_view",
                                                                                  +    width: 300
                                                                                  +});
                                                                                  +
                                                                                  +
                                                                                  + +

                                                                                  API

                                                                                  +
                                                                                  基础属性
                                                                                  + + + + + + + + + + + + + + + + + + + +
                                                                                  参数说明类型可选值默认值
                                                                                  buttons按钮组arrayBI.i18nText("BI-Basic_Sure")
                                                                                  +
                                                                                  + + +
                                                                                  + +
                                                                                  +
                                                                                  +
                                                                                  + +

                                                                                  results matching ""

                                                                                  +
                                                                                    + +
                                                                                    +
                                                                                    + +

                                                                                    No results matching ""

                                                                                    + +
                                                                                    +
                                                                                    +
                                                                                    + +
                                                                                    +
                                                                                    + +
                                                                                    + + + + +
                                                                                    + + +
                                                                                    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/_book/case/layer/multi_popup_layer.md b/docs/_book/case/layer/multi_popup_layer.md new file mode 100644 index 000000000..dfe6b7f26 --- /dev/null +++ b/docs/_book/case/layer/multi_popup_layer.md @@ -0,0 +1,34 @@ +# bi.multi_popup_view + +## 下拉框弹出层的多选版本,toolbar带有若干按钮, zIndex在1000w,基类[BI.MultiPopupView](case/layer/multi_popup_layer.md) + +{% method %} +[source](https://jsfiddle.net/fineui/8of9a7cy/) + +{% common %} +```javascript + +BI.createWidget({ + element: "#wrapper", + type: "bi.multi_popup_view", + width: 300 +}); + + +``` + +{% endmethod %} + +## API +##### 基础属性 +| 参数 | 说明 | 类型 | 可选值 | 默认值 +| :------ |:------------- | :-----| :----|:---- +| buttons | 按钮组 |array | — | BI.i18nText("BI-Basic_Sure") + + + + + +--- + + diff --git a/docs/_book/case/layer/pane_list.html b/docs/_book/case/layer/pane_list.html new file mode 100644 index 000000000..ecd20b3f1 --- /dev/null +++ b/docs/_book/case/layer/pane_list.html @@ -0,0 +1,2730 @@ + + + + + + + pane_list · GitBook + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                    +
                                                                                    + + + + + + + + +
                                                                                    + +
                                                                                    + +
                                                                                    + + + + + + + + +
                                                                                    +
                                                                                    + +
                                                                                    +
                                                                                    + +
                                                                                    + +

                                                                                    bi.list_pane

                                                                                    +

                                                                                    list面板,基类BI.Widget

                                                                                    +
                                                                                    
                                                                                    +BI.createWidget({
                                                                                    +  type: 'bi.list_pane',
                                                                                    +  element: "#wrapper",
                                                                                    +  cls: "bi-border",
                                                                                    +  items: []
                                                                                    +});
                                                                                    +
                                                                                    +
                                                                                    + +

                                                                                    API

                                                                                    +
                                                                                    基础属性
                                                                                    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                    参数说明类型可选值默认值
                                                                                    items列表array[ ]
                                                                                    itemsCreator列表创建器function
                                                                                    hasNext是否有下一页function
                                                                                    onLoad正在加载function
                                                                                    el开启panel的元素object{type: "bi.button_group" }
                                                                                    logic布局逻辑object{ dynamic:true}
                                                                                    hgap效果相当于容器左右padding值number0
                                                                                    vgap效果相当于容器上下padding值number0
                                                                                    lgap效果相当于容器left-padding值number0
                                                                                    rgap效果相当于容器right-padding值number0
                                                                                    tgap效果相当于容器top-padding值number0
                                                                                    bgap效果相当于容器bottom-padding值number0
                                                                                    +

                                                                                    对外方法

                                                                                    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                    名称说明回调参数
                                                                                    prependItems内部前插入items
                                                                                    addItems内部后插入items
                                                                                    removeItemAt移除指定索引处的itemindexs
                                                                                    populate刷新列表items
                                                                                    setNotSelectedValue设置未被选中的值value,可以是单个值也可以是个数组
                                                                                    setValue设置value值value,可以是单个值也可以是个数组
                                                                                    getNotSelectedValue获取没有被选中的值
                                                                                    getValue获取被选中的值
                                                                                    getAllButtons获取所有button
                                                                                    getAllLeaves获取所有的叶子节点
                                                                                    getSelectedButtons获取所有被选中的元素
                                                                                    getNotSelectedButtons获取所有未被选中的元素
                                                                                    getIndexByValue根据value值获取value在数组中的索引value
                                                                                    getNodeById根据id获取节点id
                                                                                    getNodeByValue根据value值获取节点value
                                                                                    empty清空组件
                                                                                    hasPrev是否有上一页
                                                                                    hasNext是否有下一页
                                                                                    +
                                                                                    + + +
                                                                                    + +
                                                                                    +
                                                                                    +
                                                                                    + +

                                                                                    results matching ""

                                                                                    +
                                                                                      + +
                                                                                      +
                                                                                      + +

                                                                                      No results matching ""

                                                                                      + +
                                                                                      +
                                                                                      +
                                                                                      + +
                                                                                      +
                                                                                      + +
                                                                                      + + + + +
                                                                                      + + +
                                                                                      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/_book/case/layer/pane_list.md b/docs/_book/case/layer/pane_list.md new file mode 100644 index 000000000..8b60035a6 --- /dev/null +++ b/docs/_book/case/layer/pane_list.md @@ -0,0 +1,74 @@ +# bi.list_pane + +## list面板,基类[BI.Widget](/core/widget.md) + +{% method %} +[source](https://jsfiddle.net/fineui/7Lv8q9p9/) + +{% common %} +```javascript + +BI.createWidget({ + type: 'bi.list_pane', + element: "#wrapper", + cls: "bi-border", + items: [] +}); + + +``` + +{% endmethod %} + +## API +##### 基础属性 +| 参数 | 说明 | 类型 | 可选值 | 默认值 +| :------ |:------------- | :-----| :----|:---- +| items | 列表 | array | — | [ ] +| itemsCreator | 列表创建器| function | — | — +| hasNext | 是否有下一页 | function | —| — +| onLoad | 正在加载 | function | —| — +| el | 开启panel的元素 | object | —|{type: "bi.button_group" }| +| logic | 布局逻辑 | object |— | { dynamic:true} +| hgap | 效果相当于容器左右padding值 | number | — | 0 | +| vgap | 效果相当于容器上下padding值 | number | —| 0 | +| lgap | 效果相当于容器left-padding值 | number | —| 0 | +| rgap | 效果相当于容器right-padding值 | number | — | 0 | +| tgap | 效果相当于容器top-padding值 | number | — | 0 | +| bgap | 效果相当于容器bottom-padding值 | number | — | 0 | + + + + + + +## 对外方法 +| 名称 | 说明 | 回调参数 +| :------ |:------------- | :----- +| prependItems | 内部前插入 | items | +| addItems | 内部后插入 | items | +| removeItemAt | 移除指定索引处的item | indexs | +| populate | 刷新列表 | items | +| setNotSelectedValue| 设置未被选中的值 | value,可以是单个值也可以是个数组| +| setValue | 设置value值 | value,可以是单个值也可以是个数组 | +| getNotSelectedValue | 获取没有被选中的值 | —| +| getValue | 获取被选中的值 |—| +| getAllButtons | 获取所有button |—| +| getAllLeaves | 获取所有的叶子节点 | —| +| getSelectedButtons | 获取所有被选中的元素 | —| +| getNotSelectedButtons | 获取所有未被选中的元素 | —| +| getIndexByValue | 根据value值获取value在数组中的索引 | value| +| getNodeById | 根据id获取节点 | id | +| getNodeByValue | 根据value值获取节点 | value | +| empty| 清空组件|—| +| hasPrev| 是否有上一页|—| +| hasNext | 是否有下一页 | — + + + + + + +--- + + diff --git a/docs/_book/case/layer/panel.html b/docs/_book/case/layer/panel.html new file mode 100644 index 000000000..b7ed32dd2 --- /dev/null +++ b/docs/_book/case/layer/panel.html @@ -0,0 +1,2594 @@ + + + + + + + panel · GitBook + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                      +
                                                                                      + + + + + + + + +
                                                                                      + +
                                                                                      + +
                                                                                      + + + + + + + + +
                                                                                      +
                                                                                      + +
                                                                                      +
                                                                                      + +
                                                                                      + +

                                                                                      bi.panel

                                                                                      +

                                                                                      带有标题栏的panel,基类BI.Widget

                                                                                      +
                                                                                      
                                                                                      +BI.createWidget({
                                                                                      +  element: "#wrapper",
                                                                                      +  type: "bi.panel",
                                                                                      +  title: "标题",
                                                                                      +  titleButtons: [{
                                                                                      +      type: "bi.button",
                                                                                      +    text: "+"
                                                                                      +  }],
                                                                                      +  el: this.button_group,
                                                                                      +  logic: {
                                                                                      +    dynamic: true
                                                                                      +  }
                                                                                      +});
                                                                                      +
                                                                                      +
                                                                                      + +

                                                                                      API

                                                                                      +
                                                                                      基础属性
                                                                                      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                      参数说明类型可选值默认值
                                                                                      title标题string" "
                                                                                      titleButton标题后的按钮组array[ ]
                                                                                      el开启panel的元素object{ }
                                                                                      logic布局逻辑object{ dynamic:false}
                                                                                      +

                                                                                      对外方法

                                                                                      + + + + + + + + + + + + + + + +
                                                                                      名称说明回调参数
                                                                                      setTitle设置标题title
                                                                                      +
                                                                                      + + +
                                                                                      + +
                                                                                      +
                                                                                      +
                                                                                      + +

                                                                                      results matching ""

                                                                                      +
                                                                                        + +
                                                                                        +
                                                                                        + +

                                                                                        No results matching ""

                                                                                        + +
                                                                                        +
                                                                                        +
                                                                                        + +
                                                                                        +
                                                                                        + +
                                                                                        + + + + +
                                                                                        + + +
                                                                                        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/_book/case/layer/panel.md b/docs/_book/case/layer/panel.md new file mode 100644 index 000000000..4eb739284 --- /dev/null +++ b/docs/_book/case/layer/panel.md @@ -0,0 +1,54 @@ +# bi.panel + +## 带有标题栏的panel,基类[BI.Widget](/core/widget.md) + +{% method %} +[source](https://jsfiddle.net/fineui/3m1q3857/) + +{% common %} +```javascript + +BI.createWidget({ + element: "#wrapper", + type: "bi.panel", + title: "标题", + titleButtons: [{ + type: "bi.button", + text: "+" + }], + el: this.button_group, + logic: { + dynamic: true + } +}); + + + +``` + +{% endmethod %} + +## API +##### 基础属性 +| 参数 | 说明 | 类型 | 可选值 | 默认值 +| :------ |:------------- | :-----| :----|:---- +| title | 标题 | string | — | " " +| titleButton | 标题后的按钮组 | array | —| [ ] +| el | 开启panel的元素 | object | —|{ }| +| logic | 布局逻辑 | object |— | { dynamic:false} + + + + +## 对外方法 +| 名称 | 说明 | 回调参数 +| :------ |:------------- | :----- +| setTitle |设置标题| title + + + + + +--- + + diff --git a/docs/_book/case/list/list.select.html b/docs/_book/case/list/list.select.html new file mode 100644 index 000000000..96a32ea06 --- /dev/null +++ b/docs/_book/case/list/list.select.html @@ -0,0 +1,2683 @@ + + + + + + + select_list · GitBook + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                        +
                                                                                        + + + + + + + + +
                                                                                        + +
                                                                                        + +
                                                                                        + + + + + + + + +
                                                                                        +
                                                                                        + +
                                                                                        +
                                                                                        + +
                                                                                        + +

                                                                                        bi.select_list

                                                                                        +

                                                                                        选择列表

                                                                                        +
                                                                                        
                                                                                        +BI.createWidget({
                                                                                        +    type: "bi.select_list",
                                                                                        +    items: [{
                                                                                        +        text: '1',
                                                                                        +    }, {
                                                                                        +        text: '2',
                                                                                        +    }]
                                                                                        +});
                                                                                        +
                                                                                        +
                                                                                        + +

                                                                                        参数

                                                                                        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                        参数说明类型默认值
                                                                                        directiontoolbar位置stringBI.Direction.Top
                                                                                        onLoaded加载完成的回调(测试了无效果)functionBI.emptyFn
                                                                                        items子项array[]
                                                                                        itemsCreator元素创造器functionBI.emptyFn
                                                                                        +

                                                                                        方法

                                                                                        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                        方法名说明参数
                                                                                        setAllSelected设置全选v: boolean
                                                                                        setToolBarVisible设置toolbar是否可见b: boolean
                                                                                        isAllSelected是否全选中
                                                                                        hasPrev是否有上一页
                                                                                        hasNext是否有下一页
                                                                                        prependItems列表最前添加元素items
                                                                                        addItems列表最后添加元素items
                                                                                        setValue设置值data
                                                                                        getVlaue获得值
                                                                                        empty清空
                                                                                        populate替换内容items
                                                                                        resetHeight重新设置高度h
                                                                                        setNotSelectedValue设置未选中值
                                                                                        getNotSelectedValue获取未选中植
                                                                                        getAllButtons获得所以根节点
                                                                                        getAllLeaves获得所有叶节点
                                                                                        getSelectedButtons获取选中的根节点
                                                                                        getNotSelectedButtons获取未选中的根节点
                                                                                        getIndexByValue根据值获取索引value
                                                                                        getNodeById根据id获取nodeid
                                                                                        getNodeByValue根据值获取nodevalue
                                                                                        +
                                                                                        + + +
                                                                                        + +
                                                                                        +
                                                                                        +
                                                                                        + +

                                                                                        results matching ""

                                                                                        +
                                                                                          + +
                                                                                          +
                                                                                          + +

                                                                                          No results matching ""

                                                                                          + +
                                                                                          +
                                                                                          +
                                                                                          + +
                                                                                          +
                                                                                          + +
                                                                                          + + + + +
                                                                                          + + +
                                                                                          + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/_book/case/list/list.select.md b/docs/_book/case/list/list.select.md new file mode 100644 index 000000000..0b8f2aacf --- /dev/null +++ b/docs/_book/case/list/list.select.md @@ -0,0 +1,59 @@ +# bi.select_list + +### 选择列表 + +{% method %} +[source](https://jsfiddle.net/fineui/c3azpxss/) + +{% common %} +```javascript + +BI.createWidget({ + type: "bi.select_list", + items: [{ + text: '1', + }, { + text: '2', + }] +}); + +``` + +{% endmethod %} + +### 参数 + +| 参数 | 说明 | 类型 | 默认值 | +| ------------ | --------------- | -------- | ---------------- | +| direction | toolbar位置 | string | BI.Direction.Top | +| onLoaded | 加载完成的回调(测试了无效果) | function | BI.emptyFn | +| items | 子项 | array | [] | +| itemsCreator | 元素创造器 | function | BI.emptyFn | + +### 方法 + +| 方法名 | 说明 | 参数 | +| --------------------- | ------------- | ------- | +| setAllSelected | 设置全选 | v: boolean | +| setToolBarVisible | 设置toolbar是否可见 | b: boolean | +| isAllSelected | 是否全选中 | — | +| hasPrev | 是否有上一页 | — | +| hasNext | 是否有下一页 | — | +| prependItems | 列表最前添加元素 | items | +| addItems | 列表最后添加元素 | items | +| setValue | 设置值 | data | +| getVlaue | 获得值 | — | +| empty | 清空 | — | +| populate | 替换内容 | items | +| resetHeight | 重新设置高度 | h | +| setNotSelectedValue | 设置未选中值 | — | +| getNotSelectedValue | 获取未选中植 | — | +| getAllButtons | 获得所以根节点 | — | +| getAllLeaves | 获得所有叶节点 | — | +| getSelectedButtons | 获取选中的根节点 | — | +| getNotSelectedButtons | 获取未选中的根节点 | — | +| getIndexByValue | 根据值获取索引 | value | +| getNodeById | 根据id获取node | id | +| getNodeByValue | 根据值获取node | value | + +------ \ No newline at end of file diff --git a/docs/_book/case/loader/lazy_loader.html b/docs/_book/case/loader/lazy_loader.html new file mode 100644 index 000000000..5e84739e2 --- /dev/null +++ b/docs/_book/case/loader/lazy_loader.html @@ -0,0 +1,2613 @@ + + + + + + + lazy_loader · GitBook + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                          +
                                                                                          + + + + + + + + +
                                                                                          + +
                                                                                          + +
                                                                                          + + + + + + + + +
                                                                                          +
                                                                                          + +
                                                                                          +
                                                                                          + +
                                                                                          + +

                                                                                          bi.lazy_loader

                                                                                          +

                                                                                          懒加载loader

                                                                                          +
                                                                                          
                                                                                          +BI.createWidget({
                                                                                          +    type: "bi.lazy_loader",
                                                                                          +    width: 100,
                                                                                          +    element: 'body',
                                                                                          +    items: items,
                                                                                          +});
                                                                                          +
                                                                                          +
                                                                                          + + + +

                                                                                          方法

                                                                                          + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                          方法名说明参数
                                                                                          addItems列表最后添加元素items
                                                                                          setValue设置值data
                                                                                          getVlaue获得值
                                                                                          empty清空
                                                                                          populate替换内容items
                                                                                          setNotSelectedValue设置未选中值
                                                                                          getNotSelectedValue获取未选中植
                                                                                          getAllButtons获得所以根节点
                                                                                          getAllLeaves获得所有叶节点
                                                                                          getSelectedButtons获取选中的根节点
                                                                                          getNotSelectedButtons获取未选中的根节点
                                                                                          getIndexByValue根据值获取索引value
                                                                                          getNodeById根据id获取nodeid
                                                                                          getNodeByValue根据值获取nodevalue
                                                                                          +
                                                                                          + + +
                                                                                          + +
                                                                                          +
                                                                                          +
                                                                                          + +

                                                                                          results matching ""

                                                                                          +
                                                                                            + +
                                                                                            +
                                                                                            + +

                                                                                            No results matching ""

                                                                                            + +
                                                                                            +
                                                                                            +
                                                                                            + +
                                                                                            +
                                                                                            + +
                                                                                            + + + + +
                                                                                            + + +
                                                                                            + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/_book/case/loader/lazy_loader.md b/docs/_book/case/loader/lazy_loader.md new file mode 100644 index 000000000..f206e98a9 --- /dev/null +++ b/docs/_book/case/loader/lazy_loader.md @@ -0,0 +1,43 @@ +# bi.lazy_loader + +### 懒加载loader + +{% method %} +[source](https://jsfiddle.net/fineui/n710yphc/) + +{% common %} +```javascript + +BI.createWidget({ + type: "bi.lazy_loader", + width: 100, + element: 'body', + items: items, +}); + +``` + +{% endmethod %} + + + +### 方法 + +| 方法名 | 说明 | 参数 | +| --------------------- | ---------- | ----- | +| addItems | 列表最后添加元素 | items | +| setValue | 设置值 | data | +| getVlaue | 获得值 | — | +| empty | 清空 | — | +| populate | 替换内容 | items | +| setNotSelectedValue | 设置未选中值 | — | +| getNotSelectedValue | 获取未选中植 | — | +| getAllButtons | 获得所以根节点 | — | +| getAllLeaves | 获得所有叶节点 | — | +| getSelectedButtons | 获取选中的根节点 | — | +| getNotSelectedButtons | 获取未选中的根节点 | — | +| getIndexByValue | 根据值获取索引 | value | +| getNodeById | 根据id获取node | id | +| getNodeByValue | 根据值获取node | value | + +------ \ No newline at end of file diff --git a/docs/_book/case/loader/list_loader.html b/docs/_book/case/loader/list_loader.html new file mode 100644 index 000000000..464b6f6ed --- /dev/null +++ b/docs/_book/case/loader/list_loader.html @@ -0,0 +1,2670 @@ + + + + + + + list_loader · GitBook + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                            +
                                                                                            + + + + + + + + +
                                                                                            + +
                                                                                            + +
                                                                                            + + + + + + + + +
                                                                                            +
                                                                                            + +
                                                                                            +
                                                                                            + +
                                                                                            + +

                                                                                            bi.list_loader

                                                                                            +

                                                                                            为解决排序问题引入的控件

                                                                                            +
                                                                                            
                                                                                            +BI.createWidget({
                                                                                            +    type: "bi.list_loader",
                                                                                            +    width: 100,
                                                                                            +    element: 'body',
                                                                                            +    items: items,
                                                                                            +});
                                                                                            +
                                                                                            +
                                                                                            + +

                                                                                            参数

                                                                                            + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                            参数说明类型默认值
                                                                                            count分页计数numberfalse
                                                                                            nextobject{}
                                                                                            hasNext是否有下一页functionBI.emptyFn
                                                                                            items子项array[]
                                                                                            itemsCreator元素创造器functionBI.emptyFn
                                                                                            onLoaded加载完成回调functionBI.emptyFn
                                                                                            +

                                                                                            方法

                                                                                            + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                            方法名说明参数
                                                                                            hasNext是否有下一页
                                                                                            addItems列表最后添加元素items
                                                                                            setValue设置值data
                                                                                            getVlaue获得值
                                                                                            empty清空
                                                                                            populate替换内容items
                                                                                            resetHeight重新设置高度h
                                                                                            setNotSelectedValue设置未选中值
                                                                                            getNotSelectedValue获取未选中植
                                                                                            getAllButtons获得所以根节点
                                                                                            getAllLeaves获得所有叶节点
                                                                                            getSelectedButtons获取选中的根节点
                                                                                            getNotSelectedButtons获取未选中的根节点
                                                                                            getIndexByValue根据值获取索引value
                                                                                            getNodeById根据id获取nodeid
                                                                                            getNodeByValue根据值获取nodevalue
                                                                                            +
                                                                                            + + +
                                                                                            + +
                                                                                            +
                                                                                            +
                                                                                            + +

                                                                                            results matching ""

                                                                                            +
                                                                                              + +
                                                                                              +
                                                                                              + +

                                                                                              No results matching ""

                                                                                              + +
                                                                                              +
                                                                                              +
                                                                                              + +
                                                                                              +
                                                                                              + +
                                                                                              + + + + +
                                                                                              + + +
                                                                                              + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/_book/case/loader/list_loader.md b/docs/_book/case/loader/list_loader.md new file mode 100644 index 000000000..35334aadb --- /dev/null +++ b/docs/_book/case/loader/list_loader.md @@ -0,0 +1,54 @@ +# bi.list_loader + +### 为解决排序问题引入的控件 + +{% method %} +[source](https://jsfiddle.net/fineui/8wa7rvcd/) + +{% common %} +```javascript + +BI.createWidget({ + type: "bi.list_loader", + width: 100, + element: 'body', + items: items, +}); + +``` + +{% endmethod %} + +### 参数 + +| 参数 | 说明 | 类型 | 默认值 | +| ------------ | ------ | -------- | ---------- | +| count | 分页计数 | number | false | +| next | | object | {} | +| hasNext | 是否有下一页 | function | BI.emptyFn | +| items | 子项 | array | [] | +| itemsCreator | 元素创造器 | function | BI.emptyFn | +| onLoaded | 加载完成回调 | function | BI.emptyFn | + +### 方法 + +| 方法名 | 说明 | 参数 | +| --------------------- | ---------- | ----- | +| hasNext | 是否有下一页 | — | +| addItems | 列表最后添加元素 | items | +| setValue | 设置值 | data | +| getVlaue | 获得值 | — | +| empty | 清空 | — | +| populate | 替换内容 | items | +| resetHeight | 重新设置高度 | h | +| setNotSelectedValue | 设置未选中值 | — | +| getNotSelectedValue | 获取未选中植 | — | +| getAllButtons | 获得所以根节点 | — | +| getAllLeaves | 获得所有叶节点 | — | +| getSelectedButtons | 获取选中的根节点 | — | +| getNotSelectedButtons | 获取未选中的根节点 | — | +| getIndexByValue | 根据值获取索引 | value | +| getNodeById | 根据id获取node | id | +| getNodeByValue | 根据值获取node | value | + +------ \ No newline at end of file diff --git a/docs/_book/case/loader/sort_list.html b/docs/_book/case/loader/sort_list.html new file mode 100644 index 000000000..080b14ec0 --- /dev/null +++ b/docs/_book/case/loader/sort_list.html @@ -0,0 +1,2668 @@ + + + + + + + sort_list · GitBook + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                              +
                                                                                              + + + + + + + + +
                                                                                              + +
                                                                                              + +
                                                                                              + + + + + + + + +
                                                                                              +
                                                                                              + +
                                                                                              +
                                                                                              + +
                                                                                              + +

                                                                                              bi.sort_list

                                                                                              +

                                                                                              排序列表

                                                                                              +
                                                                                              
                                                                                              +BI.createWidget({
                                                                                              +    type: "bi.sort_list",
                                                                                              +    width: 100,
                                                                                              +    element: 'body',
                                                                                              +    items: items,
                                                                                              +});
                                                                                              +
                                                                                              +
                                                                                              + +

                                                                                              参数

                                                                                              + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                              参数说明类型默认值
                                                                                              count分页计数numberfalse
                                                                                              nextobject{}
                                                                                              hasNext是否有下一页functionBI.emptyFn
                                                                                              items子项array[]
                                                                                              itemsCreator元素创造器functionBI.emptyFn
                                                                                              onLoaded加载完成回调functionBI.emptyFn
                                                                                              +

                                                                                              方法

                                                                                              + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                              方法名说明参数
                                                                                              hasNext是否有下一页
                                                                                              addItems列表最后添加元素items
                                                                                              setValue设置值data
                                                                                              getVlaue获得值
                                                                                              empty清空
                                                                                              populate替换内容items
                                                                                              resetHeight重新设置高度h
                                                                                              setNotSelectedValue设置未选中值
                                                                                              getNotSelectedValue获取未选中植
                                                                                              getAllButtons获得所以根节点
                                                                                              getAllLeaves获得所有叶节点
                                                                                              getSelectedButtons获取选中的根节点
                                                                                              getNotSelectedButtons获取未选中的根节点
                                                                                              getIndexByValue根据值获取索引value
                                                                                              getNodeById根据id获取nodeid
                                                                                              getNodeByValue根据值获取nodevalue
                                                                                              +
                                                                                              + + +
                                                                                              + +
                                                                                              +
                                                                                              +
                                                                                              + +

                                                                                              results matching ""

                                                                                              +
                                                                                                + +
                                                                                                +
                                                                                                + +

                                                                                                No results matching ""

                                                                                                + +
                                                                                                +
                                                                                                +
                                                                                                + +
                                                                                                +
                                                                                                + +
                                                                                                + + + + +
                                                                                                + + +
                                                                                                + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/_book/case/loader/sort_list.md b/docs/_book/case/loader/sort_list.md new file mode 100644 index 000000000..572b8f2fc --- /dev/null +++ b/docs/_book/case/loader/sort_list.md @@ -0,0 +1,54 @@ +# bi.sort_list + +### 排序列表 + +{% method %} +[source](https://jsfiddle.net/fineui/wj68tdvx/) + +{% common %} +```javascript + +BI.createWidget({ + type: "bi.sort_list", + width: 100, + element: 'body', + items: items, +}); + +``` + +{% endmethod %} + +### 参数 + +| 参数 | 说明 | 类型 | 默认值 | +| ------------ | ------ | -------- | ---------- | +| count | 分页计数 | number | false | +| next | | object | {} | +| hasNext | 是否有下一页 | function | BI.emptyFn | +| items | 子项 | array | [] | +| itemsCreator | 元素创造器 | function | BI.emptyFn | +| onLoaded | 加载完成回调 | function | BI.emptyFn | + +### 方法 + +| 方法名 | 说明 | 参数 | +| --------------------- | ---------- | ----- | +| hasNext | 是否有下一页 | — | +| addItems | 列表最后添加元素 | items | +| setValue | 设置值 | data | +| getVlaue | 获得值 | — | +| empty | 清空 | — | +| populate | 替换内容 | items | +| resetHeight | 重新设置高度 | h | +| setNotSelectedValue | 设置未选中值 | — | +| getNotSelectedValue | 获取未选中植 | — | +| getAllButtons | 获得所以根节点 | — | +| getAllLeaves | 获得所有叶节点 | — | +| getSelectedButtons | 获取选中的根节点 | — | +| getNotSelectedButtons | 获取未选中的根节点 | — | +| getIndexByValue | 根据值获取索引 | value | +| getNodeById | 根据id获取node | id | +| getNodeByValue | 根据值获取node | value | + +------ \ No newline at end of file diff --git a/docs/_book/case/pager/all_count_pager.html b/docs/_book/case/pager/all_count_pager.html new file mode 100644 index 000000000..afc71e4de --- /dev/null +++ b/docs/_book/case/pager/all_count_pager.html @@ -0,0 +1,2622 @@ + + + + + + + all_count_pager · GitBook + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                +
                                                                                                + + + + + + + + +
                                                                                                + +
                                                                                                + +
                                                                                                + + + + + + + + +
                                                                                                +
                                                                                                + +
                                                                                                +
                                                                                                + +
                                                                                                + +

                                                                                                bi.all_count_pager

                                                                                                +

                                                                                                有总页数和总行数的分页控件

                                                                                                +
                                                                                                
                                                                                                +BI.createWidget({
                                                                                                +    type: 'bi.all_count_pager',
                                                                                                +    height: 30,
                                                                                                +    pages: 10, //必选项
                                                                                                +    curr: 1,
                                                                                                +    count: 1,
                                                                                                +});
                                                                                                +
                                                                                                +
                                                                                                + +

                                                                                                参数

                                                                                                + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                参数说明类型默认值
                                                                                                height控件高度number30
                                                                                                pages总页数number1
                                                                                                curr当前页number1
                                                                                                count总行数number1
                                                                                                +

                                                                                                方法

                                                                                                + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                方法名说明参数
                                                                                                setAllPages设置总页数v
                                                                                                setValue设置当前页码v
                                                                                                setVPage设置当前页码v
                                                                                                setCount设置计数count
                                                                                                getCurrentPage获取当前页码
                                                                                                hasPrev是否有前一页
                                                                                                hasNext是否有后一页
                                                                                                setPagerVisible设置页码是否可见true/false
                                                                                                populate清空内容
                                                                                                +
                                                                                                + + +
                                                                                                + +
                                                                                                +
                                                                                                +
                                                                                                + +

                                                                                                results matching ""

                                                                                                +
                                                                                                  + +
                                                                                                  +
                                                                                                  + +

                                                                                                  No results matching ""

                                                                                                  + +
                                                                                                  +
                                                                                                  +
                                                                                                  + +
                                                                                                  +
                                                                                                  + +
                                                                                                  + + + + +
                                                                                                  + + +
                                                                                                  + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/_book/case/pager/all_count_pager.md b/docs/_book/case/pager/all_count_pager.md new file mode 100644 index 000000000..88a580727 --- /dev/null +++ b/docs/_book/case/pager/all_count_pager.md @@ -0,0 +1,48 @@ +# bi.all_count_pager + +### 有总页数和总行数的分页控件 + +{% method %} +[source](https://jsfiddle.net/fineui/cmtamo5L/) + +{% common %} +```javascript + +BI.createWidget({ + type: 'bi.all_count_pager', + height: 30, + pages: 10, //必选项 + curr: 1, + count: 1, +}); + +``` + +{% endmethod %} + +### 参数 + +| 参数 | 说明 | 类型 | 默认值 | +| ------ | ---- | ------ | ---- | +| height | 控件高度 | number | 30 | +| pages | 总页数 | number | 1 | +| curr | 当前页 | number | 1 | +| count | 总行数 | number | 1 | + + + +### 方法 + +| 方法名 | 说明 | 参数 | +| --------------- | -------- | ---------- | +| setAllPages | 设置总页数 | v | +| setValue | 设置当前页码 | v | +| setVPage | 设置当前页码 | v | +| setCount | 设置计数 | count | +| getCurrentPage | 获取当前页码 | — | +| hasPrev | 是否有前一页 | — | +| hasNext | 是否有后一页 | — | +| setPagerVisible | 设置页码是否可见 | true/false | +| populate | 清空内容 | — | + +------ \ No newline at end of file diff --git a/docs/_book/case/pager/direction_pager.html b/docs/_book/case/pager/direction_pager.html new file mode 100644 index 000000000..3d8b9a6fc --- /dev/null +++ b/docs/_book/case/pager/direction_pager.html @@ -0,0 +1,2684 @@ + + + + + + + direction_pager · GitBook + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                  +
                                                                                                  + + + + + + + + +
                                                                                                  + +
                                                                                                  + +
                                                                                                  + + + + + + + + +
                                                                                                  +
                                                                                                  + +
                                                                                                  +
                                                                                                  + +
                                                                                                  + +

                                                                                                  bi.direction_pager

                                                                                                  +

                                                                                                  显示页码的分页控件

                                                                                                  +
                                                                                                  
                                                                                                  +var pager = BI.createWidget({
                                                                                                  +  type: 'bi.direction_pager',
                                                                                                  +  height: 30,
                                                                                                  +  horizontal: {
                                                                                                  +      pages: 10, //必选项
                                                                                                  +      curr: 1, //初始化当前页, pages为数字时可用,
                                                                                                  +      firstPage: 1,
                                                                                                  +    lastPage: 10,
                                                                                                  +  },
                                                                                                  +  vertical: {
                                                                                                  +      pages: 10, //必选项
                                                                                                  +      curr: 1, //初始化当前页, pages为数字时可用,
                                                                                                  +      firstPage: 1,
                                                                                                  +    lastPage: 10,
                                                                                                  +  },
                                                                                                  +  element: 'body',
                                                                                                  +});
                                                                                                  +
                                                                                                  +
                                                                                                  + +

                                                                                                  参数

                                                                                                  + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                  参数二级参数说明类型默认值
                                                                                                  height控件高度number30
                                                                                                  horizontal横向翻页设置object
                                                                                                  pages总页数number/booleanfalse
                                                                                                  curr当前页, pages为数字时可用number1
                                                                                                  hasPrev判断是否有前一页的方法functionBI.emptyFn
                                                                                                  hasNext判断是否有后一页的方法functionBI.emptyFn
                                                                                                  firstPage第一页number1
                                                                                                  lastPage最后一页number/functionBI.emptyFn
                                                                                                  vertical纵向翻页设置,参数与horizontal相同object
                                                                                                  +

                                                                                                  方法

                                                                                                  + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                  方法名说明参数
                                                                                                  getVPage获取纵向页码
                                                                                                  getHPage获取水平向页码
                                                                                                  setVPage获取纵向页码v
                                                                                                  setHPage获取水平向页码v
                                                                                                  hasVNext纵向坐标是否有下一页
                                                                                                  hasHNext横向坐标是否有下一页
                                                                                                  hasVPrev纵向坐标是否有上一页
                                                                                                  hasHPrev横向坐标是否有上一页
                                                                                                  setHPagerVisible设置横向分页键可见
                                                                                                  setVPagerVisible设置纵向分页键可见
                                                                                                  populate清空内容
                                                                                                  +
                                                                                                  + + +
                                                                                                  + +
                                                                                                  +
                                                                                                  +
                                                                                                  + +

                                                                                                  results matching ""

                                                                                                  +
                                                                                                    + +
                                                                                                    +
                                                                                                    + +

                                                                                                    No results matching ""

                                                                                                    + +
                                                                                                    +
                                                                                                    +
                                                                                                    + +
                                                                                                    +
                                                                                                    + +
                                                                                                    + + + + +
                                                                                                    + + +
                                                                                                    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/_book/case/pager/direction_pager.md b/docs/_book/case/pager/direction_pager.md new file mode 100644 index 000000000..636fd6931 --- /dev/null +++ b/docs/_book/case/pager/direction_pager.md @@ -0,0 +1,65 @@ +# bi.direction_pager + +### 显示页码的分页控件 + +{% method %} +[source](https://jsfiddle.net/fineui/vyc36s2a/) + +{% common %} +```javascript + +var pager = BI.createWidget({ + type: 'bi.direction_pager', + height: 30, + horizontal: { + pages: 10, //必选项 + curr: 1, //初始化当前页, pages为数字时可用, + firstPage: 1, + lastPage: 10, + }, + vertical: { + pages: 10, //必选项 + curr: 1, //初始化当前页, pages为数字时可用, + firstPage: 1, + lastPage: 10, + }, + element: 'body', +}); + +``` + +{% endmethod %} + +### 参数 + +| 参数 | 二级参数 | 说明 | 类型 | 默认值 | +| ---------- | --------- | ---------------------- | --------------- | ---------- | +| height | | 控件高度 | number | 30 | +| horizontal | | 横向翻页设置 | object | — | +| | pages | 总页数 | number/boolean | false | +| | curr | 当前页, pages为数字时可用 | number | 1 | +| | hasPrev | 判断是否有前一页的方法 | function | BI.emptyFn | +| | hasNext | 判断是否有后一页的方法 | function | BI.emptyFn | +| | firstPage | 第一页 | number | 1 | +| | lastPage | 最后一页 | number/function | BI.emptyFn | +| vertical | | 纵向翻页设置,参数与horizontal相同 | object | — | + + + +### 方法 + +| 方法名 | 说明 | 参数 | +| ---------------- | ---------- | ---- | +| getVPage | 获取纵向页码 | — | +| getHPage | 获取水平向页码 | — | +| setVPage | 获取纵向页码 | v | +| setHPage | 获取水平向页码 | v | +| hasVNext | 纵向坐标是否有下一页 | — | +| hasHNext | 横向坐标是否有下一页 | — | +| hasVPrev | 纵向坐标是否有上一页 | — | +| hasHPrev | 横向坐标是否有上一页 | — | +| setHPagerVisible | 设置横向分页键可见 | — | +| setVPagerVisible | 设置纵向分页键可见 | — | +| populate | 清空内容 | — | + +------ \ No newline at end of file diff --git a/docs/_book/case/segment.html b/docs/_book/case/segment.html new file mode 100644 index 000000000..ebbe9e353 --- /dev/null +++ b/docs/_book/case/segment.html @@ -0,0 +1,2624 @@ + + + + + + + segment · GitBook + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                    +
                                                                                                    + + + + + + + + +
                                                                                                    + +
                                                                                                    + +
                                                                                                    + + + + + + + + +
                                                                                                    +
                                                                                                    + +
                                                                                                    +
                                                                                                    + +
                                                                                                    + +

                                                                                                    bi.sgement

                                                                                                    +

                                                                                                    各种segment

                                                                                                    +
                                                                                                    
                                                                                                    +BI.createWidget({
                                                                                                    +    type: "bi.vertical",
                                                                                                    +    element: "#wrapper",
                                                                                                    +    items: [{
                                                                                                    +        type: "bi.label",
                                                                                                    +        height: 30,
                                                                                                    +        text: "默认风格"
                                                                                                    +    }, {
                                                                                                    +        type: "bi.segment",
                                                                                                    +        items: [{
                                                                                                    +            text: "tab1",
                                                                                                    +            value: 1,
                                                                                                    +            selected: true
                                                                                                    +        }, {
                                                                                                    +            text: "tab2",
                                                                                                    +            value: 2
                                                                                                    +        }, {
                                                                                                    +            text: "tab3 disabled",
                                                                                                    +            disabled: true,
                                                                                                    +            value: 3
                                                                                                    +        }]
                                                                                                    +    }],
                                                                                                    +    hgap: 50,
                                                                                                    +    vgap: 20
                                                                                                    +});
                                                                                                    +
                                                                                                    +
                                                                                                    + +

                                                                                                    API

                                                                                                    +
                                                                                                    基础属性
                                                                                                    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                    参数说明类型可选值默认值
                                                                                                    hgap效果相当于文本框左右padding值number10
                                                                                                    vgap效果相当于文本框上下padding值number0
                                                                                                    lgap效果相当于文本框left-padding值number0
                                                                                                    rgap效果相当于文本框right-padding值number0
                                                                                                    tgap效果相当于文本框top-padding值number0
                                                                                                    bgap效果相当于文本框bottom-padding值number0
                                                                                                    items子控件数组array[ ]
                                                                                                    width宽度number
                                                                                                    height高度number
                                                                                                    +
                                                                                                    + + +
                                                                                                    + +
                                                                                                    +
                                                                                                    +
                                                                                                    + +

                                                                                                    results matching ""

                                                                                                    +
                                                                                                      + +
                                                                                                      +
                                                                                                      + +

                                                                                                      No results matching ""

                                                                                                      + +
                                                                                                      +
                                                                                                      +
                                                                                                      + +
                                                                                                      +
                                                                                                      + +
                                                                                                      + + + + +
                                                                                                      + + +
                                                                                                      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/_book/case/segment.md b/docs/_book/case/segment.md new file mode 100644 index 000000000..0a8164faa --- /dev/null +++ b/docs/_book/case/segment.md @@ -0,0 +1,58 @@ +# bi.sgement + +## 各种segment + +{% method %} +[source](https://jsfiddle.net/fineui/7skvd64L/) + +{% common %} +```javascript + +BI.createWidget({ + type: "bi.vertical", + element: "#wrapper", + items: [{ + type: "bi.label", + height: 30, + text: "默认风格" + }, { + type: "bi.segment", + items: [{ + text: "tab1", + value: 1, + selected: true + }, { + text: "tab2", + value: 2 + }, { + text: "tab3 disabled", + disabled: true, + value: 3 + }] + }], + hgap: 50, + vgap: 20 +}); + +``` + +{% endmethod %} + +## API +##### 基础属性 +| 参数 | 说明 | 类型 | 可选值 | 默认值 +| :------ |:------------- | :-----| :----|:---- +| hgap | 效果相当于文本框左右padding值 | number | — | 10 | +| vgap | 效果相当于文本框上下padding值 | number | — | 0 | +| lgap | 效果相当于文本框left-padding值 | number | — | 0 | +| rgap | 效果相当于文本框right-padding值 | number | — | 0 | +| tgap |效果相当于文本框top-padding值 | number | — | 0 | +| bgap | 效果相当于文本框bottom-padding值 | number | — | 0 | +| items | 子控件数组 | array |— | [ ] | +| width | 宽度 | number | — | — | +| height | 高度 | number | — | — | + + +--- + + diff --git a/docs/_book/case/shelter_editor.md b/docs/_book/case/shelter_editor.md new file mode 100644 index 000000000..1b1e4fef3 --- /dev/null +++ b/docs/_book/case/shelter_editor.md @@ -0,0 +1,2 @@ +# clipboard + diff --git a/docs/_book/case/table/adaptive_table.html b/docs/_book/case/table/adaptive_table.html new file mode 100644 index 000000000..45baa780d --- /dev/null +++ b/docs/_book/case/table/adaptive_table.html @@ -0,0 +1,2734 @@ + + + + + + + adaptive_table · GitBook + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                      +
                                                                                                      + + + + + + + + +
                                                                                                      + +
                                                                                                      + +
                                                                                                      + + + + + + + + +
                                                                                                      +
                                                                                                      + +
                                                                                                      +
                                                                                                      + +
                                                                                                      + +

                                                                                                      bi.adaptive_table

                                                                                                      +

                                                                                                      自适应宽度的表格

                                                                                                      +
                                                                                                      BI.createWidget({
                                                                                                      +  type: "bi.adaptive_table",
                                                                                                      +  element: 'body',
                                                                                                      +  width: 600,
                                                                                                      +  height: 500,
                                                                                                      +  isResizeAdapt: true,
                                                                                                      +  isNeedResize: true,
                                                                                                      +  isNeedFreeze: true,
                                                                                                      +  freezeCols: [0, 1],
                                                                                                      +  columnSize: [50,50,200,250,400],
                                                                                                      +  header: [],
                                                                                                      +  items: [],
                                                                                                      +});
                                                                                                      +
                                                                                                      +
                                                                                                      + +

                                                                                                      参数设置

                                                                                                      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                      参数说明类型默认值
                                                                                                      isNeedResize是否可改变列大小booleantrue
                                                                                                      isNeedFreeze是否需要冻结表头booleanfalse
                                                                                                      freezeCols冻结的列array[]
                                                                                                      isNeedMerge是否需要合并单元格booleanfalse
                                                                                                      mergeCols合并的单元格列号array[]
                                                                                                      mergeRule合并规则, 默认相等时合并function(row1, row2)默认row1 = row2 时合并
                                                                                                      columnSize单元格宽度集合array[]
                                                                                                      minColumnSize最小列宽array[]
                                                                                                      maxColumnSize最大列宽array[]
                                                                                                      headerRowSize表头高度number25
                                                                                                      rowSize普通单元格高度number25
                                                                                                      regionColumnSize列项间的array[]
                                                                                                      header表头array[]
                                                                                                      items子组件array[]
                                                                                                      crossHeader交叉表头array[]
                                                                                                      crossItems交叉项array[]
                                                                                                      +

                                                                                                      方法

                                                                                                      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                      方法名说明参数
                                                                                                      setWidth设置宽度width: 宽度
                                                                                                      setHeight设置高度height: 高度
                                                                                                      setColumnSize设置列宽columnSize: 列宽数组
                                                                                                      getColumnSize得到列宽
                                                                                                      setRegionColumnSize设置列项之间的间隙columnSize: 列宽数组
                                                                                                      getRegionColumnSize获得列项之间的间隙
                                                                                                      setVerticalScroll设置纵向滚动距离scrollTop: 纵向滚动距离
                                                                                                      setLeftHorizontalScroll设置左到右横向滚动距离scrollLeft: 横向滚动距离
                                                                                                      setRightHorizontalScroll设置右往左横向滚动距离scrollLeft: 横向滚动距离
                                                                                                      getVerticalScroll获取纵向滚动距离
                                                                                                      getLeftHorizontalScroll获取左到右横向滚动距离
                                                                                                      getRightHorizontalScroll获取右往左横向滚动距离
                                                                                                      attr设置属性key: 键 value: 值
                                                                                                      restore存储
                                                                                                      populate增加项items: array
                                                                                                      destroy摧毁表
                                                                                                      +
                                                                                                      + + +
                                                                                                      + +
                                                                                                      +
                                                                                                      +
                                                                                                      + +

                                                                                                      results matching ""

                                                                                                      +
                                                                                                        + +
                                                                                                        +
                                                                                                        + +

                                                                                                        No results matching ""

                                                                                                        + +
                                                                                                        +
                                                                                                        +
                                                                                                        + +
                                                                                                        +
                                                                                                        + +
                                                                                                        + + + + +
                                                                                                        + + +
                                                                                                        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/_book/case/table/adaptive_table.md b/docs/_book/case/table/adaptive_table.md new file mode 100644 index 000000000..e10717016 --- /dev/null +++ b/docs/_book/case/table/adaptive_table.md @@ -0,0 +1,69 @@ +# bi.adaptive_table + +### 自适应宽度的表格 + +{% method %} +[source](https://jsfiddle.net/fineui/pbgnjeg0/) + +{% common %} +```javascript +BI.createWidget({ + type: "bi.adaptive_table", + element: 'body', + width: 600, + height: 500, + isResizeAdapt: true, + isNeedResize: true, + isNeedFreeze: true, + freezeCols: [0, 1], + columnSize: [50,50,200,250,400], + header: [], + items: [], +}); +``` + +{% endmethod %} + +## 参数设置 +| 参数 | 说明 | 类型 | 默认值 | +| ---------------- | ------------- | -------------------- | ----------------- | +| isNeedResize | 是否可改变列大小 | boolean | true | +| isNeedFreeze | 是否需要冻结表头 | boolean | false | +| freezeCols | 冻结的列 | array | [] | +| isNeedMerge | 是否需要合并单元格 | boolean | false | +| mergeCols | 合并的单元格列号 | array | [] | +| mergeRule | 合并规则, 默认相等时合并 | function(row1, row2) | 默认row1 = row2 时合并 | +| columnSize | 单元格宽度集合 | array | [] | +| minColumnSize | 最小列宽 | array | [] | +| maxColumnSize | 最大列宽 | array | [] | +| headerRowSize | 表头高度 | number | 25 | +| rowSize | 普通单元格高度 | number | 25 | +| regionColumnSize | 列项间的 | array | [] | +| header | 表头 | array | [] | +| items | 子组件 | array | [] | +| crossHeader | 交叉表头 | array | [] | +| crossItems | 交叉项 | array | [] | + + + +## 方法 +| 方法名 | 说明 | 参数 | +| ------------------------ | ----------- | ------------------ | +| setWidth | 设置宽度 | width: 宽度 | +| setHeight | 设置高度 | height: 高度 | +| setColumnSize | 设置列宽 | columnSize: 列宽数组 | +| getColumnSize | 得到列宽 | — | +| setRegionColumnSize | 设置列项之间的间隙 | columnSize: 列宽数组 | +| getRegionColumnSize | 获得列项之间的间隙 | — | +| setVerticalScroll | 设置纵向滚动距离 | scrollTop: 纵向滚动距离 | +| setLeftHorizontalScroll | 设置左到右横向滚动距离 | scrollLeft: 横向滚动距离 | +| setRightHorizontalScroll | 设置右往左横向滚动距离 | scrollLeft: 横向滚动距离 | +| getVerticalScroll | 获取纵向滚动距离 | — | +| getLeftHorizontalScroll | 获取左到右横向滚动距离 | — | +| getRightHorizontalScroll | 获取右往左横向滚动距离 | — | +| attr | 设置属性 | key: 键 value: 值 | +| restore | 存储 | — | +| populate | 增加项 | items: array | +| destroy | 摧毁表 | — | + +------ \ No newline at end of file diff --git a/docs/_book/case/table/layer_tree_table.html b/docs/_book/case/table/layer_tree_table.html new file mode 100644 index 000000000..351b5ddc9 --- /dev/null +++ b/docs/_book/case/table/layer_tree_table.html @@ -0,0 +1,2757 @@ + + + + + + + layer_tree_table · GitBook + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                        +
                                                                                                        + + + + + + + + +
                                                                                                        + +
                                                                                                        + +
                                                                                                        + + + + + + + + +
                                                                                                        +
                                                                                                        + +
                                                                                                        +
                                                                                                        + +
                                                                                                        + +

                                                                                                        bi.layer_tree_table

                                                                                                        +

                                                                                                        层级树状结构的表格

                                                                                                        +
                                                                                                        var table = BI.createWidget({
                                                                                                        +    type: "bi.layer_tree_table",
                                                                                                        +    width: 600,
                                                                                                        +    height: 400,
                                                                                                        +    columnSize: [100, 100, 100, 100, 100, 100, 100, 100, 100, 100],
                                                                                                        +    minColumnSize: [100, 100, 100, 100, 100, 100, 100, 100, 100, 100],
                                                                                                        +    header: header,
                                                                                                        +    items: items,
                                                                                                        +    crossHeader: crossHeader,
                                                                                                        +    crossItems: crossItems,
                                                                                                        +    element: 'body',
                                                                                                        +});
                                                                                                        +
                                                                                                        +
                                                                                                        + +

                                                                                                        参数设置

                                                                                                        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                        参数说明类型默认值
                                                                                                        isNeedResize是否需要调整列宽booleanfalse
                                                                                                        isResizeAdapt是否需要在调整列宽或区域宽度的时候它们自适应变化booleantrue
                                                                                                        isNeedFreeze是否需要冻结表头booleanfalse
                                                                                                        freezeCols冻结的列array[]
                                                                                                        isNeedMerge是否需要合并单元格booleanfalse
                                                                                                        mergeCols合并的单元格列号array[]
                                                                                                        mergeRule合并规则, 默认相等时合并function(row1, row2)默认row1 = row2 时合并
                                                                                                        columnSize单元格宽度集合array[]
                                                                                                        minColumnSize最小列宽array[]
                                                                                                        maxColumnSize最大列宽array[]
                                                                                                        headerRowSize表头高度number25
                                                                                                        headerCellStyleGetterfunctionBI.emptyFn
                                                                                                        summaryCellStyleGetterfunctionBI.emptyFn
                                                                                                        sequenceCellStyleGetterfunctionBI.emptyFn
                                                                                                        rowSize普通单元格高度number25
                                                                                                        regionColumnSize列项间的array[]
                                                                                                        header表头array[]
                                                                                                        items子组件array[]
                                                                                                        crossHeader交叉表头array[]
                                                                                                        crossItems交叉项array[]
                                                                                                        +

                                                                                                        方法

                                                                                                        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                        方法名说明参数
                                                                                                        setWidth设置宽度width: 宽度
                                                                                                        setHeight设置高度height: 高度
                                                                                                        setColumnSize设置列宽columnSize: 列宽数组
                                                                                                        getColumnSize得到列宽
                                                                                                        setRegionColumnSize设置列项之间的间隙columnSize: 列宽数组
                                                                                                        getRegionColumnSize获得列项之间的间隙
                                                                                                        setVerticalScroll设置纵向滚动距离scrollTop: 纵向滚动距离
                                                                                                        setLeftHorizontalScroll设置左到右横向滚动距离scrollLeft: 横向滚动距离
                                                                                                        setRightHorizontalScroll设置右往左横向滚动距离scrollLeft: 横向滚动距离
                                                                                                        getVerticalScroll获取纵向滚动距离
                                                                                                        getLeftHorizontalScroll获取左到右横向滚动距离
                                                                                                        getRightHorizontalScroll获取右往左横向滚动距离
                                                                                                        attr设置属性key: 键 value: 值
                                                                                                        restore存储
                                                                                                        populate增加项items: array
                                                                                                        destroy摧毁表
                                                                                                        +
                                                                                                        + + +
                                                                                                        + +
                                                                                                        +
                                                                                                        +
                                                                                                        + +

                                                                                                        results matching ""

                                                                                                        +
                                                                                                          + +
                                                                                                          +
                                                                                                          + +

                                                                                                          No results matching ""

                                                                                                          + +
                                                                                                          +
                                                                                                          +
                                                                                                          + +
                                                                                                          +
                                                                                                          + +
                                                                                                          + + + + +
                                                                                                          + + +
                                                                                                          + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/_book/case/table/layer_tree_table.md b/docs/_book/case/table/layer_tree_table.md new file mode 100644 index 000000000..faca563b5 --- /dev/null +++ b/docs/_book/case/table/layer_tree_table.md @@ -0,0 +1,72 @@ +# bi.layer_tree_table + +### 层级树状结构的表格 + +{% method %} +[source](https://jsfiddle.net/fineui/pqyuLoay/) + +{% common %} +```javascript +var table = BI.createWidget({ + type: "bi.layer_tree_table", + width: 600, + height: 400, + columnSize: [100, 100, 100, 100, 100, 100, 100, 100, 100, 100], + minColumnSize: [100, 100, 100, 100, 100, 100, 100, 100, 100, 100], + header: header, + items: items, + crossHeader: crossHeader, + crossItems: crossItems, + element: 'body', +}); +``` + +{% endmethod %} + +## 参数设置 +| 参数 | 说明 | 类型 | 默认值 | +| ----------------------- | ------------------------ | -------------------- | ----------------- | +| isNeedResize | 是否需要调整列宽 | boolean | false | +| isResizeAdapt | 是否需要在调整列宽或区域宽度的时候它们自适应变化 | boolean | true | +| isNeedFreeze | 是否需要冻结表头 | boolean | false | +| freezeCols | 冻结的列 | array | [] | +| isNeedMerge | 是否需要合并单元格 | boolean | false | +| mergeCols | 合并的单元格列号 | array | [] | +| mergeRule | 合并规则, 默认相等时合并 | function(row1, row2) | 默认row1 = row2 时合并 | +| columnSize | 单元格宽度集合 | array | [] | +| minColumnSize | 最小列宽 | array | [] | +| maxColumnSize | 最大列宽 | array | [] | +| headerRowSize | 表头高度 | number | 25 | +| headerCellStyleGetter | | function | BI.emptyFn | +| summaryCellStyleGetter | | function | BI.emptyFn | +| sequenceCellStyleGetter | | function | BI.emptyFn | +| rowSize | 普通单元格高度 | number | 25 | +| regionColumnSize | 列项间的 | array | [] | +| header | 表头 | array | [] | +| items | 子组件 | array | [] | +| crossHeader | 交叉表头 | array | [] | +| crossItems | 交叉项 | array | [] | + + + +## 方法 +| 方法名 | 说明 | 参数 | +| ------------------------ | ----------- | ------------------ | +| setWidth | 设置宽度 | width: 宽度 | +| setHeight | 设置高度 | height: 高度 | +| setColumnSize | 设置列宽 | columnSize: 列宽数组 | +| getColumnSize | 得到列宽 | — | +| setRegionColumnSize | 设置列项之间的间隙 | columnSize: 列宽数组 | +| getRegionColumnSize | 获得列项之间的间隙 | — | +| setVerticalScroll | 设置纵向滚动距离 | scrollTop: 纵向滚动距离 | +| setLeftHorizontalScroll | 设置左到右横向滚动距离 | scrollLeft: 横向滚动距离 | +| setRightHorizontalScroll | 设置右往左横向滚动距离 | scrollLeft: 横向滚动距离 | +| getVerticalScroll | 获取纵向滚动距离 | — | +| getLeftHorizontalScroll | 获取左到右横向滚动距离 | — | +| getRightHorizontalScroll | 获取右往左横向滚动距离 | — | +| attr | 设置属性 | key: 键 value: 值 | +| restore | 存储 | — | +| populate | 增加项 | items: array | +| destroy | 摧毁表 | — | + +------ \ No newline at end of file diff --git a/docs/_book/case/table/tree_table.html b/docs/_book/case/table/tree_table.html new file mode 100644 index 000000000..87fe8ad9c --- /dev/null +++ b/docs/_book/case/table/tree_table.html @@ -0,0 +1,2759 @@ + + + + + + + tree_table · GitBook + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                          +
                                                                                                          + + + + + + + + +
                                                                                                          + +
                                                                                                          + +
                                                                                                          + + + + + + + + +
                                                                                                          +
                                                                                                          + +
                                                                                                          +
                                                                                                          + +
                                                                                                          + +

                                                                                                          bi.tree_table

                                                                                                          +

                                                                                                          树状结构的表格

                                                                                                          +
                                                                                                          var table = BI.createWidget({
                                                                                                          +    type: "bi.tree_table",
                                                                                                          +    width: 600,
                                                                                                          +    height: 400,
                                                                                                          +    columnSize: [100, 100, 100, 100, 100, 100, 100, 100, 100, 100],
                                                                                                          +    minColumnSize: [100, 100, 100, 100, 100, 100, 100, 100, 100, 100],
                                                                                                          +    header: header,
                                                                                                          +    items: items,
                                                                                                          +    crossHeader: crossHeader,
                                                                                                          +    crossItems: crossItems,
                                                                                                          +    element: 'body',
                                                                                                          +});
                                                                                                          +
                                                                                                          +
                                                                                                          + +

                                                                                                          参数设置

                                                                                                          + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                          参数说明类型默认值
                                                                                                          isNeedResize是否需要调整列宽booleanfalse
                                                                                                          isResizeAdapt是否需要在调整列宽或区域宽度的时候它们自适应变化booleantrue
                                                                                                          isNeedFreeze是否需要冻结表头booleanfalse
                                                                                                          freezeCols冻结的列array[]
                                                                                                          isNeedMerge是否需要合并单元格booleanfalse
                                                                                                          mergeCols合并的单元格列号array[]
                                                                                                          mergeRule合并规则, 默认相等时合并function(row1, row2)默认row1 = row2 时合并
                                                                                                          columnSize单元格宽度集合array[]
                                                                                                          minColumnSize最小列宽array[]
                                                                                                          maxColumnSize最大列宽array[]
                                                                                                          headerRowSize表头高度number25
                                                                                                          headerCellStyleGetterfunctionBI.emptyFn
                                                                                                          summaryCellStyleGetterfunctionBI.emptyFn
                                                                                                          sequenceCellStyleGetterfunctionBI.emptyFn
                                                                                                          rowSize普通单元格高度number25
                                                                                                          regionColumnSize列项间的array[]
                                                                                                          header表头array[]
                                                                                                          items子组件array[]
                                                                                                          crossHeader交叉表头array[]
                                                                                                          crossItems交叉项array[]
                                                                                                          +

                                                                                                          方法

                                                                                                          + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                          方法名说明参数
                                                                                                          setWidth设置宽度width: 宽度
                                                                                                          setHeight设置高度height: 高度
                                                                                                          setColumnSize设置列宽columnSize: 列宽数组
                                                                                                          getColumnSize得到列宽
                                                                                                          setRegionColumnSize设置列项之间的间隙columnSize: 列宽数组
                                                                                                          getRegionColumnSize获得列项之间的间隙
                                                                                                          setVerticalScroll设置纵向滚动距离scrollTop: 纵向滚动距离
                                                                                                          setLeftHorizontalScroll设置左到右横向滚动距离scrollLeft: 横向滚动距离
                                                                                                          setRightHorizontalScroll设置右往左横向滚动距离scrollLeft: 横向滚动距离
                                                                                                          getVerticalScroll获取纵向滚动距离
                                                                                                          getLeftHorizontalScroll获取左到右横向滚动距离
                                                                                                          getRightHorizontalScroll获取右往左横向滚动距离
                                                                                                          attr设置属性key: 键 value: 值
                                                                                                          restore存储
                                                                                                          populate增加项items: array
                                                                                                          destroy摧毁表
                                                                                                          +
                                                                                                          + + +
                                                                                                          + +
                                                                                                          +
                                                                                                          +
                                                                                                          + +

                                                                                                          results matching ""

                                                                                                          +
                                                                                                            + +
                                                                                                            +
                                                                                                            + +

                                                                                                            No results matching ""

                                                                                                            + +
                                                                                                            +
                                                                                                            +
                                                                                                            + +
                                                                                                            +
                                                                                                            + +
                                                                                                            + + + + +
                                                                                                            + + +
                                                                                                            + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/_book/case/table/tree_table.md b/docs/_book/case/table/tree_table.md new file mode 100644 index 000000000..5e95b6641 --- /dev/null +++ b/docs/_book/case/table/tree_table.md @@ -0,0 +1,73 @@ +# bi.tree_table + +### 树状结构的表格 + +{% method %} +[source](https://jsfiddle.net/fineui/a0m21ozk/) + +{% common %} +```javascript +var table = BI.createWidget({ + type: "bi.tree_table", + width: 600, + height: 400, + columnSize: [100, 100, 100, 100, 100, 100, 100, 100, 100, 100], + minColumnSize: [100, 100, 100, 100, 100, 100, 100, 100, 100, 100], + header: header, + items: items, + crossHeader: crossHeader, + crossItems: crossItems, + element: 'body', +}); +``` + +{% endmethod %} + +## 参数设置 +| 参数 | 说明 | 类型 | 默认值 | +| ----------------------- | ------------------------ | -------------------- | ----------------- | +| isNeedResize | 是否需要调整列宽 | boolean | false | +| isResizeAdapt | 是否需要在调整列宽或区域宽度的时候它们自适应变化 | boolean | true | +| isNeedFreeze | 是否需要冻结表头 | boolean | false | +| freezeCols | 冻结的列 | array | [] | +| isNeedMerge | 是否需要合并单元格 | boolean | false | +| mergeCols | 合并的单元格列号 | array | [] | +| mergeRule | 合并规则, 默认相等时合并 | function(row1, row2) | 默认row1 = row2 时合并 | +| columnSize | 单元格宽度集合 | array | [] | +| minColumnSize | 最小列宽 | array | [] | +| maxColumnSize | 最大列宽 | array | [] | +| headerRowSize | 表头高度 | number | 25 | +| headerCellStyleGetter | | function | BI.emptyFn | +| summaryCellStyleGetter | | function | BI.emptyFn | +| sequenceCellStyleGetter | | function | BI.emptyFn | +| rowSize | 普通单元格高度 | number | 25 | +| regionColumnSize | 列项间的 | array | [] | +| header | 表头 | array | [] | +| items | 子组件 | array | [] | +| crossHeader | 交叉表头 | array | [] | +| crossItems | 交叉项 | array | [] | + + + +## 方法 +| 方法名 | 说明 | 参数 | +| ------------------------ | ----------- | ------------------ | +| setWidth | 设置宽度 | width: 宽度 | +| setHeight | 设置高度 | height: 高度 | +| setColumnSize | 设置列宽 | columnSize: 列宽数组 | +| getColumnSize | 得到列宽 | — | +| setRegionColumnSize | 设置列项之间的间隙 | columnSize: 列宽数组 | +| getRegionColumnSize | 获得列项之间的间隙 | — | +| setVerticalScroll | 设置纵向滚动距离 | scrollTop: 纵向滚动距离 | +| setLeftHorizontalScroll | 设置左到右横向滚动距离 | scrollLeft: 横向滚动距离 | +| setRightHorizontalScroll | 设置右往左横向滚动距离 | scrollLeft: 横向滚动距离 | +| getVerticalScroll | 获取纵向滚动距离 | — | +| getLeftHorizontalScroll | 获取左到右横向滚动距离 | — | +| getRightHorizontalScroll | 获取右往左横向滚动距离 | — | +| attr | 设置属性 | key: 键 value: 值 | +| restore | 存储 | — | +| populate | 增加项 | items: array | +| destroy | 摧毁表 | — | + +------ + diff --git a/docs/_book/case/tree/branch_relation.html b/docs/_book/case/tree/branch_relation.html new file mode 100644 index 000000000..30174fff8 --- /dev/null +++ b/docs/_book/case/tree/branch_relation.html @@ -0,0 +1,2584 @@ + + + + + + + branch_relation · GitBook + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                            +
                                                                                                            + + + + + + + + +
                                                                                                            + +
                                                                                                            + +
                                                                                                            + + + + + + + + +
                                                                                                            +
                                                                                                            + +
                                                                                                            +
                                                                                                            + +
                                                                                                            + +

                                                                                                            bi.branch_relation

                                                                                                            +

                                                                                                            表关联树

                                                                                                            +
                                                                                                            var tree = BI.createWidget({
                                                                                                            +  type: "bi.branch_relation",
                                                                                                            +  element: 'body',
                                                                                                            +  items: [],
                                                                                                            +  direction: BI.Direction.Right,
                                                                                                            +  align: BI.HorizontalAlign.Right,
                                                                                                            +  centerOffset: -50
                                                                                                            +});
                                                                                                            +
                                                                                                            +
                                                                                                            + + + +

                                                                                                            参数设置

                                                                                                            + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                            参数说明类型默认值
                                                                                                            centerOffset重心偏移量number0
                                                                                                            direction根节点所在方向stringBI.Direction.Bottom
                                                                                                            align对齐方向stringBI.VerticalAlign.Top
                                                                                                            items元素arraynull
                                                                                                            +

                                                                                                            方法

                                                                                                            + + + + + + + + + + + + + + + +
                                                                                                            方法名说明参数
                                                                                                            populate去掉所有内容items: 子项数组
                                                                                                            +
                                                                                                            + + +
                                                                                                            + +
                                                                                                            +
                                                                                                            +
                                                                                                            + +

                                                                                                            results matching ""

                                                                                                            +
                                                                                                              + +
                                                                                                              +
                                                                                                              + +

                                                                                                              No results matching ""

                                                                                                              + +
                                                                                                              +
                                                                                                              +
                                                                                                              + +
                                                                                                              +
                                                                                                              + +
                                                                                                              + + + + +
                                                                                                              + + +
                                                                                                              + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/_book/case/tree/branch_relation.md b/docs/_book/case/tree/branch_relation.md new file mode 100644 index 000000000..797678694 --- /dev/null +++ b/docs/_book/case/tree/branch_relation.md @@ -0,0 +1,41 @@ +# bi.branch_relation + +### 表关联树 + +{% method %} +[source](https://jsfiddle.net/fineui/z5hLcruk/) + +{% common %} +```javascript +var tree = BI.createWidget({ + type: "bi.branch_relation", + element: 'body', + items: [], + direction: BI.Direction.Right, + align: BI.HorizontalAlign.Right, + centerOffset: -50 +}); +``` + +{% endmethod %} + + + +### 参数设置 + +| 参数 | 说明 | 类型 | 默认值 | +| ------------ | ------- | ------ | -------------------- | +| centerOffset | 重心偏移量 | number | 0 | +| direction | 根节点所在方向 | string | BI.Direction.Bottom | +| align | 对齐方向 | string | BI.VerticalAlign.Top | +| items | 元素 | array | null | + + + +### 方法 + +| 方法名 | 说明 | 参数 | +| -------- | ---- | ----------- | +| populate | 去掉所有内容 | items: 子项数组 | + +------ \ No newline at end of file diff --git a/docs/_book/case/tree/branch_tree.html b/docs/_book/case/tree/branch_tree.html new file mode 100644 index 000000000..05ad6b793 --- /dev/null +++ b/docs/_book/case/tree/branch_tree.html @@ -0,0 +1,2587 @@ + + + + + + + branch_tree · GitBook + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                              +
                                                                                                              + + + + + + + + +
                                                                                                              + +
                                                                                                              + +
                                                                                                              + + + + + + + + +
                                                                                                              +
                                                                                                              + +
                                                                                                              +
                                                                                                              + +
                                                                                                              + +

                                                                                                              bi.branch_tree

                                                                                                              +

                                                                                                              横向分支的树

                                                                                                              +
                                                                                                              BI.createWidget({
                                                                                                              +  type: "bi.branch_tree",
                                                                                                              +  element: 'body',
                                                                                                              +  items: [{
                                                                                                              +    el: {},
                                                                                                              +    children: [{
                                                                                                              +        el: {},
                                                                                                              +        children: {},
                                                                                                              +        // ...
                                                                                                              +    }]
                                                                                                              +  }]
                                                                                                              +});
                                                                                                              +
                                                                                                              +
                                                                                                              + + + +

                                                                                                              参数设置

                                                                                                              + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                              参数说明类型默认值
                                                                                                              expanderbranch_expander组件配置项object{}
                                                                                                              el基础元素object{}
                                                                                                              items子项array[]
                                                                                                              +

                                                                                                              方法

                                                                                                              + + + + + + + + + + + + + + + + + + + + +
                                                                                                              方法名说明参数
                                                                                                              populate去掉所有内容
                                                                                                              getValue获取所选项值
                                                                                                              +
                                                                                                              + + +
                                                                                                              + +
                                                                                                              +
                                                                                                              +
                                                                                                              + +

                                                                                                              results matching ""

                                                                                                              +
                                                                                                                + +
                                                                                                                +
                                                                                                                + +

                                                                                                                No results matching ""

                                                                                                                + +
                                                                                                                +
                                                                                                                +
                                                                                                                + +
                                                                                                                +
                                                                                                                + +
                                                                                                                + + + + +
                                                                                                                + + +
                                                                                                                + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/_book/case/tree/branch_tree.md b/docs/_book/case/tree/branch_tree.md new file mode 100644 index 000000000..76e183705 --- /dev/null +++ b/docs/_book/case/tree/branch_tree.md @@ -0,0 +1,44 @@ +# bi.branch_tree +### 横向分支的树 + +{% method %} +[source](https://jsfiddle.net/fineui/mLq3e170/) + +{% common %} +```javascript +BI.createWidget({ + type: "bi.branch_tree", + element: 'body', + items: [{ + el: {}, + children: [{ + el: {}, + children: {}, + // ... + }] + }] +}); +``` + +{% endmethod %} + + + +### 参数设置 + +| 参数 | 说明 | 类型 | 默认值 | +| -------- | -------------------- | ------ | ---- | +| expander | branch_expander组件配置项 | object | {} | +| el | 基础元素 | object | {} | +| items | 子项 | array | [] | + + + +### 方法 + +| 方法名 | 说明 | 参数 | +| -------- | ------ | ---- | +| populate | 去掉所有内容 | — | +| getValue | 获取所选项值 | — | + +------ \ No newline at end of file diff --git a/docs/_book/case/tree/display_tree.html b/docs/_book/case/tree/display_tree.html new file mode 100644 index 000000000..aa05de98d --- /dev/null +++ b/docs/_book/case/tree/display_tree.html @@ -0,0 +1,2555 @@ + + + + + + + display_tree · GitBook + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                +
                                                                                                                + + + + + + + + +
                                                                                                                + +
                                                                                                                + +
                                                                                                                + + + + + + + + +
                                                                                                                +
                                                                                                                + +
                                                                                                                +
                                                                                                                + +
                                                                                                                + +

                                                                                                                bi.display_tree

                                                                                                                +

                                                                                                                树展示控件

                                                                                                                +
                                                                                                                var tree = BI.createWidget({
                                                                                                                +  type: "bi.display_tree",
                                                                                                                +  element: 'body',
                                                                                                                +});
                                                                                                                +
                                                                                                                +tree.initTree({
                                                                                                                +    id: 1,
                                                                                                                +    text: '',
                                                                                                                +    open: true,
                                                                                                                +});
                                                                                                                +
                                                                                                                +
                                                                                                                + + +

                                                                                                                方法

                                                                                                                + + + + + + + + + + + + + + + + + + + + +
                                                                                                                方法名说明参数
                                                                                                                initTree加载tree结构node: 节点数组 settings: 配置项
                                                                                                                destroy摧毁元素
                                                                                                                +
                                                                                                                + + +
                                                                                                                + +
                                                                                                                +
                                                                                                                +
                                                                                                                + +

                                                                                                                results matching ""

                                                                                                                +
                                                                                                                  + +
                                                                                                                  +
                                                                                                                  + +

                                                                                                                  No results matching ""

                                                                                                                  + +
                                                                                                                  +
                                                                                                                  +
                                                                                                                  + +
                                                                                                                  +
                                                                                                                  + +
                                                                                                                  + + + + +
                                                                                                                  + + +
                                                                                                                  + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/_book/case/tree/display_tree.md b/docs/_book/case/tree/display_tree.md new file mode 100644 index 000000000..4a2c83105 --- /dev/null +++ b/docs/_book/case/tree/display_tree.md @@ -0,0 +1,33 @@ +# bi.display_tree + +### 树展示控件 + +{% method %} +[source](https://jsfiddle.net/fineui/cfL6fpa1/) + +{% common %} +```javascript +var tree = BI.createWidget({ + type: "bi.display_tree", + element: 'body', +}); + +tree.initTree({ + id: 1, + text: '', + open: true, +}); +``` + +{% endmethod %} + + +### 方法 + +| 方法名 | 说明 | 参数 | +| -------- | ------ | ---- | +| initTree | 加载tree结构 | node: 节点数组 settings: 配置项 | +| destroy | 摧毁元素 | — | + +------ + diff --git a/docs/_book/case/tree/handstand_branch_tree.html b/docs/_book/case/tree/handstand_branch_tree.html new file mode 100644 index 000000000..4ee097a69 --- /dev/null +++ b/docs/_book/case/tree/handstand_branch_tree.html @@ -0,0 +1,2590 @@ + + + + + + + handstand_branch_tree · GitBook + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                  +
                                                                                                                  + + + + + + + + +
                                                                                                                  + +
                                                                                                                  + +
                                                                                                                  + + + + + + + + +
                                                                                                                  +
                                                                                                                  + +
                                                                                                                  +
                                                                                                                  + +
                                                                                                                  + +

                                                                                                                  bi.handstand_branch_tree

                                                                                                                  +

                                                                                                                  纵向分支的树

                                                                                                                  +
                                                                                                                  BI.createWidget({
                                                                                                                  +  type: "bi.handstand_branch_tree",
                                                                                                                  +  element: 'body',
                                                                                                                  +  el: {},
                                                                                                                  +  items: [{
                                                                                                                  +    el: {},
                                                                                                                  +    children: [{
                                                                                                                  +        el: {},
                                                                                                                  +        children: {},
                                                                                                                  +        // ...
                                                                                                                  +    }]
                                                                                                                  +  }]
                                                                                                                  +});
                                                                                                                  +
                                                                                                                  +
                                                                                                                  + + + +

                                                                                                                  参数设置

                                                                                                                  + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                  参数说明类型默认值
                                                                                                                  expanderbranch_expander组件配置项object{}
                                                                                                                  el基础元素object{}
                                                                                                                  items子项array[]
                                                                                                                  +

                                                                                                                  方法

                                                                                                                  + + + + + + + + + + + + + + + + + + + + +
                                                                                                                  方法名说明参数
                                                                                                                  populate去掉所有内容
                                                                                                                  getValue获取所选项值
                                                                                                                  +
                                                                                                                  + + +
                                                                                                                  + +
                                                                                                                  +
                                                                                                                  +
                                                                                                                  + +

                                                                                                                  results matching ""

                                                                                                                  +
                                                                                                                    + +
                                                                                                                    +
                                                                                                                    + +

                                                                                                                    No results matching ""

                                                                                                                    + +
                                                                                                                    +
                                                                                                                    +
                                                                                                                    + +
                                                                                                                    +
                                                                                                                    + +
                                                                                                                    + + + + +
                                                                                                                    + + +
                                                                                                                    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/_book/case/tree/handstand_branch_tree.md b/docs/_book/case/tree/handstand_branch_tree.md new file mode 100644 index 000000000..bac0a81eb --- /dev/null +++ b/docs/_book/case/tree/handstand_branch_tree.md @@ -0,0 +1,46 @@ +# bi.handstand_branch_tree +### 纵向分支的树 + +{% method %} +[source](https://jsfiddle.net/fineui/c2kaoc7x/) + +{% common %} +```javascript +BI.createWidget({ + type: "bi.handstand_branch_tree", + element: 'body', + el: {}, + items: [{ + el: {}, + children: [{ + el: {}, + children: {}, + // ... + }] + }] +}); +``` + +{% endmethod %} + + + +### 参数设置 + +| 参数 | 说明 | 类型 | 默认值 | +| -------- | -------------------- | ------ | ---- | +| expander | branch_expander组件配置项 | object | {} | +| el | 基础元素 | object | {} | +| items | 子项 | array | [] | + + + +### 方法 + +| 方法名 | 说明 | 参数 | +| -------- | ------ | ---- | +| populate | 去掉所有内容 | — | +| getValue | 获取所选项值 | — | + +------ + diff --git a/docs/_book/case/tree/level_tree.html b/docs/_book/case/tree/level_tree.html new file mode 100644 index 000000000..d4835b823 --- /dev/null +++ b/docs/_book/case/tree/level_tree.html @@ -0,0 +1,2606 @@ + + + + + + + level_tree · GitBook + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                    +
                                                                                                                    + + + + + + + + +
                                                                                                                    + +
                                                                                                                    + +
                                                                                                                    + + + + + + + + +
                                                                                                                    +
                                                                                                                    + +
                                                                                                                    +
                                                                                                                    + +
                                                                                                                    + +

                                                                                                                    bi.level_tree

                                                                                                                    +

                                                                                                                    二级树

                                                                                                                    +
                                                                                                                    var tree = BI.createWidget({
                                                                                                                    +  type: "bi.level_tree",
                                                                                                                    +  element: 'body',
                                                                                                                    +  items: [],
                                                                                                                    +});
                                                                                                                    +
                                                                                                                    +
                                                                                                                    + + + +

                                                                                                                    参数设置

                                                                                                                    + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                    参数说明类型默认值
                                                                                                                    expanderbranch_expander配置object{}
                                                                                                                    items元素array[]
                                                                                                                    +

                                                                                                                    方法

                                                                                                                    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                    方法名说明参数
                                                                                                                    initTree构造树结构nodes
                                                                                                                    stroke生成树方法nodes
                                                                                                                    populate去掉所有内容items: 子项数组
                                                                                                                    setValue设置值v
                                                                                                                    getValue获得值
                                                                                                                    getAllLeaves获取所有叶节点
                                                                                                                    getNodeById根据Id获取节点id
                                                                                                                    getNodeByValue根据值获取节点id
                                                                                                                    +
                                                                                                                    + + +
                                                                                                                    + +
                                                                                                                    +
                                                                                                                    +
                                                                                                                    + +

                                                                                                                    results matching ""

                                                                                                                    +
                                                                                                                      + +
                                                                                                                      +
                                                                                                                      + +

                                                                                                                      No results matching ""

                                                                                                                      + +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      + +
                                                                                                                      +
                                                                                                                      + +
                                                                                                                      + + + + +
                                                                                                                      + + +
                                                                                                                      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/_book/case/tree/level_tree.md b/docs/_book/case/tree/level_tree.md new file mode 100644 index 000000000..e444f27e7 --- /dev/null +++ b/docs/_book/case/tree/level_tree.md @@ -0,0 +1,43 @@ +# bi.level_tree + +### 二级树 + +{% method %} +[source](https://jsfiddle.net/fineui/nvvkwhfo/) + +{% common %} +```javascript +var tree = BI.createWidget({ + type: "bi.level_tree", + element: 'body', + items: [], +}); +``` + +{% endmethod %} + + + +### 参数设置 + +| 参数 | 说明 | 类型 | 默认值 | +| -------- | ----------------- | ------ | ---- | +| expander | branch_expander配置 | object | {} | +| items | 元素 | array | [] | + + + +### 方法 + +| 方法名 | 说明 | 参数 | +| -------------- | -------- | ----------- | +| initTree | 构造树结构 | nodes | +| stroke | 生成树方法 | nodes | +| populate | 去掉所有内容 | items: 子项数组 | +| setValue | 设置值 | v | +| getValue | 获得值 | — | +| getAllLeaves | 获取所有叶节点 | — | +| getNodeById | 根据Id获取节点 | id | +| getNodeByValue | 根据值获取节点 | id | + +------ \ No newline at end of file diff --git a/docs/_book/case/tree/simple_tree.html b/docs/_book/case/tree/simple_tree.html new file mode 100644 index 000000000..45127a748 --- /dev/null +++ b/docs/_book/case/tree/simple_tree.html @@ -0,0 +1,2587 @@ + + + + + + + simple_tree · GitBook + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                      +
                                                                                                                      + + + + + + + + +
                                                                                                                      + +
                                                                                                                      + +
                                                                                                                      + + + + + + + + +
                                                                                                                      +
                                                                                                                      + +
                                                                                                                      +
                                                                                                                      + +
                                                                                                                      + +

                                                                                                                      bi.simple_tree

                                                                                                                      +

                                                                                                                      简单的多选树

                                                                                                                      +
                                                                                                                      var tree = BI.createWidget({
                                                                                                                      +  type: "bi.simple_tree",
                                                                                                                      +  element: 'body',
                                                                                                                      +});
                                                                                                                      +
                                                                                                                      +tree.populate(items);
                                                                                                                      +
                                                                                                                      +
                                                                                                                      + + + +

                                                                                                                      参数设置

                                                                                                                      + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                      参数说明类型默认值
                                                                                                                      itemsCreatoritems构造器functionBI.emptyFn
                                                                                                                      items元素arraynull
                                                                                                                      +

                                                                                                                      方法

                                                                                                                      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                      方法名说明参数
                                                                                                                      populate去掉所有内容items: 子项数组 keywords: 关键字标红字符串
                                                                                                                      setValue设置值v
                                                                                                                      getValue获得值
                                                                                                                      empty清空树
                                                                                                                      +
                                                                                                                      + + +
                                                                                                                      + +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      + +

                                                                                                                      results matching ""

                                                                                                                      +
                                                                                                                        + +
                                                                                                                        +
                                                                                                                        + +

                                                                                                                        No results matching ""

                                                                                                                        + +
                                                                                                                        +
                                                                                                                        +
                                                                                                                        + +
                                                                                                                        +
                                                                                                                        + +
                                                                                                                        + + + + +
                                                                                                                        + + +
                                                                                                                        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/_book/case/tree/simple_tree.md b/docs/_book/case/tree/simple_tree.md new file mode 100644 index 000000000..35d8a5308 --- /dev/null +++ b/docs/_book/case/tree/simple_tree.md @@ -0,0 +1,40 @@ +# bi.simple_tree + +### 简单的多选树 + +{% method %} +[source](https://jsfiddle.net/fineui/5qtobqxb/) + +{% common %} +```javascript +var tree = BI.createWidget({ + type: "bi.simple_tree", + element: 'body', +}); + +tree.populate(items); +``` + +{% endmethod %} + + + +### 参数设置 + +| 参数 | 说明 | 类型 | 默认值 | +| ------------ | -------- | -------- | ---------- | +| itemsCreator | items构造器 | function | BI.emptyFn | +| items | 元素 | array | null | + + + +### 方法 + +| 方法名 | 说明 | 参数 | +| -------- | ---- | ------------------------------ | +| populate | 去掉所有内容 | items: 子项数组 keywords: 关键字标红字符串 | +| setValue | 设置值 | v | +| getValue | 获得值 | — | +| empty | 清空树 | — | + +------ \ No newline at end of file diff --git a/docs/_book/case/trigger/editor_trigger.html b/docs/_book/case/trigger/editor_trigger.html new file mode 100644 index 000000000..6a8c8b145 --- /dev/null +++ b/docs/_book/case/trigger/editor_trigger.html @@ -0,0 +1,2603 @@ + + + + + + + editor_trigger · GitBook + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                        +
                                                                                                                        + + + + + + + + +
                                                                                                                        + +
                                                                                                                        + +
                                                                                                                        + + + + + + + + +
                                                                                                                        +
                                                                                                                        + +
                                                                                                                        +
                                                                                                                        + +
                                                                                                                        + +

                                                                                                                        bi.editor_trigger

                                                                                                                        +

                                                                                                                        文本输入框trigger

                                                                                                                        +
                                                                                                                        
                                                                                                                        +BI.createWidget({
                                                                                                                        +  type: "bi.editor_trigger",
                                                                                                                        +  element: "body",
                                                                                                                        +});
                                                                                                                        +
                                                                                                                        +
                                                                                                                        + + + +

                                                                                                                        参数

                                                                                                                        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                        参数说明类型默认值
                                                                                                                        validationChecker验证函数functionBI.emptyFn
                                                                                                                        quitChecker退出时验证函数functionBI.emptyFn
                                                                                                                        allowBlank是否允许为空booleanfalse
                                                                                                                        watermark水印string""
                                                                                                                        errorText错误信息string""
                                                                                                                        triggerWidth触发器宽度number30
                                                                                                                        +

                                                                                                                        方法

                                                                                                                        + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                        方法名说明参数
                                                                                                                        setValue设置值value
                                                                                                                        getVlaue获得值
                                                                                                                        setTexttext
                                                                                                                        +
                                                                                                                        + + +
                                                                                                                        + +
                                                                                                                        +
                                                                                                                        +
                                                                                                                        + +

                                                                                                                        results matching ""

                                                                                                                        +
                                                                                                                          + +
                                                                                                                          +
                                                                                                                          + +

                                                                                                                          No results matching ""

                                                                                                                          + +
                                                                                                                          +
                                                                                                                          +
                                                                                                                          + +
                                                                                                                          +
                                                                                                                          + +
                                                                                                                          + + + + +
                                                                                                                          + + +
                                                                                                                          + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/_book/case/trigger/editor_trigger.md b/docs/_book/case/trigger/editor_trigger.md new file mode 100644 index 000000000..a7c163ccb --- /dev/null +++ b/docs/_book/case/trigger/editor_trigger.md @@ -0,0 +1,44 @@ +# bi.editor_trigger + +### 文本输入框trigger + +{% method %} +[source](https://jsfiddle.net/fineui/8ttm4g1u/) + +{% common %} +```javascript + +BI.createWidget({ + type: "bi.editor_trigger", + element: "body", +}); + +``` + +{% endmethod %} + + + +### 参数 + +| 参数 | 说明 | 类型 | 默认值 | +| ----------------- | ------- | -------- | ---------- | +| validationChecker | 验证函数 | function | BI.emptyFn | +| quitChecker | 退出时验证函数 | function | BI.emptyFn | +| allowBlank | 是否允许为空 | boolean | false | +| watermark | 水印 | string | "" | +| errorText | 错误信息 | string | "" | +| triggerWidth | 触发器宽度 | number | 30 | + + + +### 方法 + +| 方法名 | 说明 | 参数 | +| -------- | ---- | ----- | +| setValue | 设置值 | value | +| getVlaue | 获得值 | — | +| setText | | text | + +------ + diff --git a/docs/_book/case/trigger/icon_trigger.html b/docs/_book/case/trigger/icon_trigger.html new file mode 100644 index 000000000..f5dcbfa3c --- /dev/null +++ b/docs/_book/case/trigger/icon_trigger.html @@ -0,0 +1,2527 @@ + + + + + + + icon_trigger · GitBook + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                          +
                                                                                                                          + + + + + + + + +
                                                                                                                          + +
                                                                                                                          + +
                                                                                                                          + + + + + + + + +
                                                                                                                          +
                                                                                                                          + +
                                                                                                                          +
                                                                                                                          + +
                                                                                                                          + +

                                                                                                                          bi.icon_trigger

                                                                                                                          +

                                                                                                                          图标按钮trigger

                                                                                                                          +
                                                                                                                          
                                                                                                                          +BI.createWidget({
                                                                                                                          +  type: "bi.icon_trigger",
                                                                                                                          +  element: "body",
                                                                                                                          +});
                                                                                                                          +
                                                                                                                          +
                                                                                                                          + +
                                                                                                                          + + +
                                                                                                                          + +
                                                                                                                          +
                                                                                                                          +
                                                                                                                          + +

                                                                                                                          results matching ""

                                                                                                                          +
                                                                                                                            + +
                                                                                                                            +
                                                                                                                            + +

                                                                                                                            No results matching ""

                                                                                                                            + +
                                                                                                                            +
                                                                                                                            +
                                                                                                                            + +
                                                                                                                            +
                                                                                                                            + +
                                                                                                                            + + + + +
                                                                                                                            + + +
                                                                                                                            + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/_book/case/trigger/icon_trigger.md b/docs/_book/case/trigger/icon_trigger.md new file mode 100644 index 000000000..e61f8cf77 --- /dev/null +++ b/docs/_book/case/trigger/icon_trigger.md @@ -0,0 +1,21 @@ +# bi.icon_trigger + +### 图标按钮trigger + +{% method %} +[source](https://jsfiddle.net/fineui/qs44h1xy/) + +{% common %} +```javascript + +BI.createWidget({ + type: "bi.icon_trigger", + element: "body", +}); + +``` + +{% endmethod %} + +------ + diff --git a/docs/_book/case/trigger/text_trigger.html b/docs/_book/case/trigger/text_trigger.html new file mode 100644 index 000000000..1213657dd --- /dev/null +++ b/docs/_book/case/trigger/text_trigger.html @@ -0,0 +1,2547 @@ + + + + + + + text_trigger · GitBook + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                            +
                                                                                                                            + + + + + + + + +
                                                                                                                            + +
                                                                                                                            + +
                                                                                                                            + + + + + + + + +
                                                                                                                            +
                                                                                                                            + +
                                                                                                                            +
                                                                                                                            + +
                                                                                                                            + +

                                                                                                                            bi.text_trigger

                                                                                                                            +

                                                                                                                            文本输入框trigger

                                                                                                                            +
                                                                                                                            
                                                                                                                            +BI.createWidget({
                                                                                                                            +  type: "bi.editor_trigger",
                                                                                                                            +  element: "body",
                                                                                                                            +});
                                                                                                                            +
                                                                                                                            +
                                                                                                                            + +

                                                                                                                            方法

                                                                                                                            + + + + + + + + + + + + + + + + + + + + +
                                                                                                                            方法名说明参数
                                                                                                                            setValue设置值value
                                                                                                                            getVlaue获得值
                                                                                                                            +
                                                                                                                            + + +
                                                                                                                            + +
                                                                                                                            +
                                                                                                                            +
                                                                                                                            + +

                                                                                                                            results matching ""

                                                                                                                            +
                                                                                                                              + +
                                                                                                                              +
                                                                                                                              + +

                                                                                                                              No results matching ""

                                                                                                                              + +
                                                                                                                              +
                                                                                                                              +
                                                                                                                              + +
                                                                                                                              +
                                                                                                                              + +
                                                                                                                              + + + + +
                                                                                                                              + + +
                                                                                                                              + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/_book/case/trigger/text_trigger.md b/docs/_book/case/trigger/text_trigger.md new file mode 100644 index 000000000..078cb6b7b --- /dev/null +++ b/docs/_book/case/trigger/text_trigger.md @@ -0,0 +1,28 @@ +# bi.text_trigger + +### 文本输入框trigger + +{% method %} +[source](https://jsfiddle.net/fineui/6pz5pjp6/) + +{% common %} +```javascript + +BI.createWidget({ + type: "bi.editor_trigger", + element: "body", +}); + +``` + +{% endmethod %} + +### 方法 + +| 方法名 | 说明 | 参数 | +| -------- | ---- | ----- | +| setValue | 设置值 | value | +| getVlaue | 获得值 | — | + +------ + diff --git a/docs/_book/core/abstract/button_group.html b/docs/_book/core/abstract/button_group.html new file mode 100644 index 000000000..5db6a63e1 --- /dev/null +++ b/docs/_book/core/abstract/button_group.html @@ -0,0 +1,2692 @@ + + + + + + + button_group · GitBook + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                              +
                                                                                                                              + + + + + + + + +
                                                                                                                              + +
                                                                                                                              + +
                                                                                                                              + + + + + + + + +
                                                                                                                              +
                                                                                                                              + +
                                                                                                                              +
                                                                                                                              + +
                                                                                                                              + +

                                                                                                                              bi.button_group

                                                                                                                              +

                                                                                                                              一组具有相同属性的元素集合,基类BI.Widget

                                                                                                                              +
                                                                                                                              
                                                                                                                              +BI.createWidget({
                                                                                                                              +    element: "#wrapper",
                                                                                                                              +    type: "bi.button_group",
                                                                                                                              +    chooseType: BI.ButtonGroup.CHOOSE_TYPE_SINGLE,
                                                                                                                              +    layouts: [{
                                                                                                                              +      type: "bi.vertical"
                                                                                                                              +    }],
                                                                                                                              +    items: [{
                                                                                                                              +      el: {
                                                                                                                              +        type: "bi.label",
                                                                                                                              +        text: "button_group"
                                                                                                                              +      },
                                                                                                                              +      height: 50,
                                                                                                                              +    }]
                                                                                                                              +})
                                                                                                                              +
                                                                                                                              +
                                                                                                                              + +

                                                                                                                              API

                                                                                                                              +
                                                                                                                              基础属性
                                                                                                                              +
                                                                                                                              chooseType可选值为 CHOOSE_TYPE_SINGLE,CHOOSE_TYPE_MULTI,CHOOSE_TYPE_ALL,CHOOSE_TYPE_NONE,CHOOSE_TYPE_DEFAULT
                                                                                                                              + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                              参数说明类型可选值默认值
                                                                                                                              behaviors自定义列表中item项的行为,如高亮,标红等object{ }
                                                                                                                              items子组件数组array[ ]
                                                                                                                              chooseType选择类型const见上BI.ButtonGroup.CHOOSE_TYPE_SINGLE
                                                                                                                              layouts布局array[{type: "bi.center",hgap: 0,vgap: 0}]
                                                                                                                              +

                                                                                                                              对外方法

                                                                                                                              + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                              名称说明回调参数
                                                                                                                              doBehavior自定义列表中item项的行为,如高亮,标红等
                                                                                                                              prependItems内部前插入items
                                                                                                                              addItems内部后插入items
                                                                                                                              removeItemAt移除指定索引处的itemindexs
                                                                                                                              removeItems移除制定元素values
                                                                                                                              populate刷新列表items
                                                                                                                              setNotSelectedValue设置未被选中的值value,可以是单个值也可以是个数组
                                                                                                                              setEnabledValue设置value值可用value,可以是单个值也可以是个数组
                                                                                                                              setValue设置value值value,可以是单个值也可以是个数组
                                                                                                                              getNotSelectedValue获取没有被选中的值
                                                                                                                              getValue获取被选中的值
                                                                                                                              getAllButtons获取所有button
                                                                                                                              getAllLeaves获取所有的叶子节点
                                                                                                                              getSelectedButtons获取所有被选中的元素
                                                                                                                              getNotSelectedButtons获取所有未被选中的元素
                                                                                                                              getIndexByValue根据value值获取value在数组中的索引value
                                                                                                                              getNodeById根据id获取节点id
                                                                                                                              getNodeByValue根据value值获取节点value
                                                                                                                              empty清空组件
                                                                                                                              destroy销毁组件
                                                                                                                              +
                                                                                                                              + + +
                                                                                                                              + +
                                                                                                                              +
                                                                                                                              +
                                                                                                                              + +

                                                                                                                              results matching ""

                                                                                                                              +
                                                                                                                                + +
                                                                                                                                +
                                                                                                                                + +

                                                                                                                                No results matching ""

                                                                                                                                + +
                                                                                                                                +
                                                                                                                                +
                                                                                                                                + +
                                                                                                                                +
                                                                                                                                + +
                                                                                                                                + + + + +
                                                                                                                                + + +
                                                                                                                                + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/_book/core/abstract/button_group.md b/docs/_book/core/abstract/button_group.md new file mode 100644 index 000000000..d79e75d18 --- /dev/null +++ b/docs/_book/core/abstract/button_group.md @@ -0,0 +1,68 @@ +# bi.button_group + +## 一组具有相同属性的元素集合,基类[BI.Widget](/core/widget.md) + +{% method %} +[source](https://jsfiddle.net/fineui/te0nLap1/) + +{% common %} +```javascript + +BI.createWidget({ + element: "#wrapper", + type: "bi.button_group", + chooseType: BI.ButtonGroup.CHOOSE_TYPE_SINGLE, + layouts: [{ + type: "bi.vertical" + }], + items: [{ + el: { + type: "bi.label", + text: "button_group" + }, + height: 50, + }] +}) + +``` + +{% endmethod %} + +## API +##### 基础属性 +###### chooseType可选值为 CHOOSE_TYPE_SINGLE,CHOOSE_TYPE_MULTI,CHOOSE_TYPE_ALL,CHOOSE_TYPE_NONE,CHOOSE_TYPE_DEFAULT +| 参数 | 说明 | 类型 | 可选值 | 默认值 +| :------ |:------------- | :-----| :----|:---- +| behaviors | 自定义列表中item项的行为,如高亮,标红等 |object | — |{ }| +| items | 子组件数组 | array | — | [ ] | +| chooseType | 选择类型 | const | 见上| BI.ButtonGroup.CHOOSE_TYPE_SINGLE | +| layouts | 布局 | array | — | [{type: "bi.center",hgap: 0,vgap: 0}] | + +## 对外方法 +| 名称 | 说明 | 回调参数 +| :------ |:------------- | :----- +| doBehavior | 自定义列表中item项的行为,如高亮,标红等 | — | +| prependItems | 内部前插入 | items | +| addItems | 内部后插入 | items | +| removeItemAt | 移除指定索引处的item | indexs | +| removeItems | 移除制定元素 | values | +| populate | 刷新列表 | items | +| setNotSelectedValue| 设置未被选中的值 | value,可以是单个值也可以是个数组| +| setEnabledValue | 设置value值可用| value,可以是单个值也可以是个数组 | +| setValue | 设置value值 | value,可以是单个值也可以是个数组 | +| getNotSelectedValue | 获取没有被选中的值 | —| +| getValue | 获取被选中的值 |—| +| getAllButtons | 获取所有button |—| +| getAllLeaves | 获取所有的叶子节点 | —| +| getSelectedButtons | 获取所有被选中的元素 | —| +| getNotSelectedButtons | 获取所有未被选中的元素 | —| +| getIndexByValue | 根据value值获取value在数组中的索引 | value| +| getNodeById | 根据id获取节点 | id | +| getNodeByValue | 根据value值获取节点 | value | +| empty| 清空组件|—| +| destroy| 销毁组件|—| + + +--- + + diff --git a/docs/_book/core/abstract/button_tree.html b/docs/_book/core/abstract/button_tree.html new file mode 100644 index 000000000..70c9dafa9 --- /dev/null +++ b/docs/_book/core/abstract/button_tree.html @@ -0,0 +1,2610 @@ + + + + + + + button_tree · GitBook + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                +
                                                                                                                                + + + + + + + + +
                                                                                                                                + +
                                                                                                                                + +
                                                                                                                                + + + + + + + + +
                                                                                                                                +
                                                                                                                                + +
                                                                                                                                +
                                                                                                                                + +
                                                                                                                                + +

                                                                                                                                bi.button_tree

                                                                                                                                +

                                                                                                                                一组具有相同属性的元素集合,基类BI.ButtonGroup

                                                                                                                                +
                                                                                                                                
                                                                                                                                +BI.createWidget({
                                                                                                                                +  element: "#wrapper",
                                                                                                                                +  type: "bi.button_tree",
                                                                                                                                +  chooseType: BI.ButtonGroup.CHOOSE_TYPE_MULTI,
                                                                                                                                +  layouts: [{
                                                                                                                                +      type: "bi.vertical"
                                                                                                                                +  }],
                                                                                                                                +  items: [{
                                                                                                                                +      type: "bi.label",
                                                                                                                                +      text: "0",
                                                                                                                                +      value: "label1",
                                                                                                                                +      height:50,
                                                                                                                                +      vgap:10
                                                                                                                                +  }]
                                                                                                                                +})
                                                                                                                                +
                                                                                                                                +
                                                                                                                                + +

                                                                                                                                对外方法

                                                                                                                                + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                名称说明回调参数
                                                                                                                                setNotSelectedValue设置未被选中的值value,可以是单个值也可以是个数组
                                                                                                                                setEnabledValue设置value值可用value,可以是单个值也可以是个数组
                                                                                                                                setValue设置value值value,可以是单个值也可以是个数组
                                                                                                                                getNotSelectedValue获取没有被选中的值
                                                                                                                                getValue获取被选中的值
                                                                                                                                getAllButtons获取所有button
                                                                                                                                getAllLeaves获取所有的叶子节点
                                                                                                                                getSelectedButtons获取所有被选中的元素
                                                                                                                                getNotSelectedButtons获取所有未被选中的元素
                                                                                                                                getIndexByValue根据value值获取value在数组中的索引value
                                                                                                                                getNodeById根据id获取节点id
                                                                                                                                getNodeByValue根据value值获取节点value
                                                                                                                                +
                                                                                                                                + + +
                                                                                                                                + +
                                                                                                                                +
                                                                                                                                +
                                                                                                                                + +

                                                                                                                                results matching ""

                                                                                                                                +
                                                                                                                                  + +
                                                                                                                                  +
                                                                                                                                  + +

                                                                                                                                  No results matching ""

                                                                                                                                  + +
                                                                                                                                  +
                                                                                                                                  +
                                                                                                                                  + +
                                                                                                                                  +
                                                                                                                                  + +
                                                                                                                                  + + + + +
                                                                                                                                  + + +
                                                                                                                                  + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/_book/core/abstract/button_tree.md b/docs/_book/core/abstract/button_tree.md new file mode 100644 index 000000000..0e3cf8eb6 --- /dev/null +++ b/docs/_book/core/abstract/button_tree.md @@ -0,0 +1,50 @@ +# bi.button_tree + +## 一组具有相同属性的元素集合,基类[BI.ButtonGroup](/core/abstract/button_group.md) + +{% method %} +[source](https://jsfiddle.net/fineui/pgwpw4n9/) + +{% common %} +```javascript + +BI.createWidget({ + element: "#wrapper", + type: "bi.button_tree", + chooseType: BI.ButtonGroup.CHOOSE_TYPE_MULTI, + layouts: [{ + type: "bi.vertical" + }], + items: [{ + type: "bi.label", + text: "0", + value: "label1", + height:50, + vgap:10 + }] +}) +``` + +{% endmethod %} + +## 对外方法 +| 名称 | 说明 | 回调参数 +| :------ |:------------- | :----- +| setNotSelectedValue| 设置未被选中的值 | value,可以是单个值也可以是个数组| +| setEnabledValue | 设置value值可用| value,可以是单个值也可以是个数组 | +| setValue | 设置value值 | value,可以是单个值也可以是个数组 | +| getNotSelectedValue | 获取没有被选中的值 | —| +| getValue | 获取被选中的值 |—| +| getAllButtons | 获取所有button |—| +| getAllLeaves | 获取所有的叶子节点 | —| +| getSelectedButtons | 获取所有被选中的元素 | —| +| getNotSelectedButtons | 获取所有未被选中的元素 | —| +| getIndexByValue | 根据value值获取value在数组中的索引 | value| +| getNodeById | 根据id获取节点 | id | +| getNodeByValue | 根据value值获取节点 | value | + + + +--- + + diff --git a/docs/_book/core/abstract/collection_view.html b/docs/_book/core/abstract/collection_view.html new file mode 100644 index 000000000..3900288d6 --- /dev/null +++ b/docs/_book/core/abstract/collection_view.html @@ -0,0 +1,2702 @@ + + + + + + + collection_view · GitBook + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                  +
                                                                                                                                  + + + + + + + + +
                                                                                                                                  + +
                                                                                                                                  + +
                                                                                                                                  + + + + + + + + +
                                                                                                                                  +
                                                                                                                                  + +
                                                                                                                                  +
                                                                                                                                  + +
                                                                                                                                  + +

                                                                                                                                  bi.collection_view

                                                                                                                                  +

                                                                                                                                  CollectionView,指定行列可以删除看不见的元素 基类BI.Widget

                                                                                                                                  +
                                                                                                                                  
                                                                                                                                  +BI.createWidget({
                                                                                                                                  +  type: "bi.collection_view",
                                                                                                                                  +  element:"#wrapper",
                                                                                                                                  +  width: 400,
                                                                                                                                  +  height: 300,
                                                                                                                                  +  items: [],
                                                                                                                                  +  cellSizeAndPositionGetter: function (index) {
                                                                                                                                  +      return {
                                                                                                                                  +          x: index % 10 * 50,
                                                                                                                                  +          y: Math.floor(index / 10) * 50,
                                                                                                                                  +          width: 50,
                                                                                                                                  +          height: 50
                                                                                                                                  +      }
                                                                                                                                  +  }
                                                                                                                                  +});
                                                                                                                                  +
                                                                                                                                  +
                                                                                                                                  + +

                                                                                                                                  API

                                                                                                                                  +
                                                                                                                                  基础属性
                                                                                                                                  + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                  参数说明类型可选值默认值
                                                                                                                                  items子组件数组array[ ]
                                                                                                                                  overflowX是否显示横向滚动条booleantrue,falsetrue
                                                                                                                                  overflowY是否显示纵向滚动条booleantrue,falsetrue
                                                                                                                                  cellSizeAndPositionGetter设置每个单元格的位置坐标和宽高function
                                                                                                                                  horizontalOverscanSize横向超出可视范围区域预加载的数量number0
                                                                                                                                  verticalOverscanSize纵向超出可视范围区域预加载的数量number0
                                                                                                                                  width行宽,必设number
                                                                                                                                  height列宽,必设number
                                                                                                                                  scrollLeft滚动条相对于左边的偏移number0
                                                                                                                                  scrollTop滚动条相对于顶部的偏移number0
                                                                                                                                  +

                                                                                                                                  对外方法

                                                                                                                                  + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                  名称说明回调参数
                                                                                                                                  setScrollLeft设置滚动条相对于左边的偏移scrollLeft
                                                                                                                                  setScrollTop设置滚动条相对于顶部的偏移scrollTop
                                                                                                                                  setOverflowX设置是否显示横向滚动条b
                                                                                                                                  setOverflowY设置是否显示横向滚动条b
                                                                                                                                  getScrollLeft获取滚动条相对于左边的偏移
                                                                                                                                  getScrollTop获取滚动条相对于顶部的偏移
                                                                                                                                  getMaxScrollLeft获取滚动条相对于左边的最大偏移
                                                                                                                                  getMaxScrollTop获取滚动条相对于顶部的最大偏移
                                                                                                                                  restore还原列表设置
                                                                                                                                  populate刷新列表items
                                                                                                                                  +

                                                                                                                                  事件

                                                                                                                                  + + + + + + + + + + + + + + + +
                                                                                                                                  事件说明回调参数
                                                                                                                                  BI.CollectionView.EVENT_SCROLL滚动时触发的事件{scrollLeft: scrollLeft, scrollTop: scrollTop}
                                                                                                                                  +
                                                                                                                                  + + +
                                                                                                                                  + +
                                                                                                                                  +
                                                                                                                                  +
                                                                                                                                  + +

                                                                                                                                  results matching ""

                                                                                                                                  +
                                                                                                                                    + +
                                                                                                                                    +
                                                                                                                                    + +

                                                                                                                                    No results matching ""

                                                                                                                                    + +
                                                                                                                                    +
                                                                                                                                    +
                                                                                                                                    + +
                                                                                                                                    +
                                                                                                                                    + +
                                                                                                                                    + + + + +
                                                                                                                                    + + +
                                                                                                                                    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/_book/core/abstract/collection_view.md b/docs/_book/core/abstract/collection_view.md new file mode 100644 index 000000000..d6bc36666 --- /dev/null +++ b/docs/_book/core/abstract/collection_view.md @@ -0,0 +1,71 @@ +# bi.collection_view + +## CollectionView,指定行列可以删除看不见的元素 基类[BI.Widget](/core/widget.md) + +{% method %} +[source](https://jsfiddle.net/fineui/cmq0b3v0/) + +{% common %} +```javascript + +BI.createWidget({ + type: "bi.collection_view", + element:"#wrapper", + width: 400, + height: 300, + items: [], + cellSizeAndPositionGetter: function (index) { + return { + x: index % 10 * 50, + y: Math.floor(index / 10) * 50, + width: 50, + height: 50 + } + } +}); + + + +``` + +{% endmethod %} + +## API +##### 基础属性 +| 参数 | 说明 | 类型 | 可选值 | 默认值 +| :------ |:------------- | :-----| :----|:---- +| items | 子组件数组 | array | — | [ ] | +| overflowX | 是否显示横向滚动条| boolean | true,false | true | +| overflowY | 是否显示纵向滚动条 | boolean | true,false | true | +| cellSizeAndPositionGetter | 设置每个单元格的位置坐标和宽高 | function|— | — | +| horizontalOverscanSize | 横向超出可视范围区域预加载的数量 | number | — | 0 | +| verticalOverscanSize | 纵向超出可视范围区域预加载的数量 | number | — | 0 | +| width | 行宽,必设 |number| — | — | +| height | 列宽,必设 | number | —| — | +| scrollLeft | 滚动条相对于左边的偏移 | number | — | 0 | +| scrollTop | 滚动条相对于顶部的偏移 | number | — | 0 | + + +## 对外方法 +| 名称 | 说明 | 回调参数 +| :------ |:------------- | :----- +| setScrollLeft | 设置滚动条相对于左边的偏移 | scrollLeft| +| setScrollTop | 设置滚动条相对于顶部的偏移 | scrollTop | +| setOverflowX | 设置是否显示横向滚动条 | b | +| setOverflowY | 设置是否显示横向滚动条 | b| +| getScrollLeft | 获取滚动条相对于左边的偏移 | —| +| getScrollTop | 获取滚动条相对于顶部的偏移 | — | +| getMaxScrollLeft | 获取滚动条相对于左边的最大偏移 | — | +| getMaxScrollTop | 获取滚动条相对于顶部的最大偏移 |—| +| restore | 还原列表设置 | — | +| populate | 刷新列表 | items | + + +## 事件 +| 事件 | 说明 | 回调参数 | +| :------ |:------------- |:------------------------| +|BI.CollectionView.EVENT_SCROLL| 滚动时触发的事件 | {scrollLeft: scrollLeft, scrollTop: scrollTop} | + +--- + + diff --git a/docs/_book/core/abstract/custom_tree.html b/docs/_book/core/abstract/custom_tree.html new file mode 100644 index 000000000..c6bd07f0f --- /dev/null +++ b/docs/_book/core/abstract/custom_tree.html @@ -0,0 +1,2676 @@ + + + + + + + custom_tree · GitBook + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                    +
                                                                                                                                    + + + + + + + + +
                                                                                                                                    + +
                                                                                                                                    + +
                                                                                                                                    + + + + + + + + +
                                                                                                                                    +
                                                                                                                                    + +
                                                                                                                                    +
                                                                                                                                    + +
                                                                                                                                    + +

                                                                                                                                    bi.custom_tree

                                                                                                                                    +

                                                                                                                                    自定义树,基类BI.Widget

                                                                                                                                    +
                                                                                                                                    
                                                                                                                                    +BI.createWidget({
                                                                                                                                    +    type: "bi.custom_tree",
                                                                                                                                    +    el: {
                                                                                                                                    +        type: "bi.button_tree",
                                                                                                                                    +        chooseType: 0,
                                                                                                                                    +        layouts: [{
                                                                                                                                    +            type: "bi.vertical",
                                                                                                                                    +            hgap: 30
                                                                                                                                    +        }]
                                                                                                                                    +    },
                                                                                                                                    +    items: [{
                                                                                                                                    +               id: -1,
                                                                                                                                    +               pId: -2,
                                                                                                                                    +               value: "根目录",
                                                                                                                                    +               open: true,
                                                                                                                                    +               type: "bi.plus_group_node",
                                                                                                                                    +               height: 25
                                                                                                                                    +           },
                                                                                                                                    +           {
                                                                                                                                    +               id: 1,
                                                                                                                                    +               pId: -1,
                                                                                                                                    +               value: "第一级目录1",
                                                                                                                                    +               type: "bi.plus_group_node",
                                                                                                                                    +               height: 25
                                                                                                                                    +           },
                                                                                                                                    +           {
                                                                                                                                    +               id: 11,
                                                                                                                                    +               pId: 1,
                                                                                                                                    +               value: "第二级文件1",
                                                                                                                                    +               type: "bi.single_select_item",
                                                                                                                                    +               height: 25
                                                                                                                                    +           }]
                                                                                                                                    +});
                                                                                                                                    +
                                                                                                                                    +
                                                                                                                                    + +

                                                                                                                                    API

                                                                                                                                    +
                                                                                                                                    基础属性
                                                                                                                                    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                    参数说明类型可选值默认值
                                                                                                                                    items子组件数组array[ ]
                                                                                                                                    itemsCreator子组件构造器object{ }
                                                                                                                                    expanderpopup组件object{el: {},popup: {type: "bi.custom_tree"}}
                                                                                                                                    el开启popup元素object{type: "bi.button_tree",chooseType: 0,layouts: [{type: "bi.vertical"}]}
                                                                                                                                    +

                                                                                                                                    对外方法

                                                                                                                                    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                    名称说明回调参数
                                                                                                                                    initTree构造树结构nodes
                                                                                                                                    stroke生成树方法nodes
                                                                                                                                    prependItems内部前插入items
                                                                                                                                    addItems内部后插入items
                                                                                                                                    populate刷新列表nodes
                                                                                                                                    render渲染列表
                                                                                                                                    setValue设置value值value,可以是单个值也可以是个数组
                                                                                                                                    getValue获取被选中的值
                                                                                                                                    getAllButtons获取所有button
                                                                                                                                    getAllLeaves获取所有的叶子节点
                                                                                                                                    getNodeById根据id获取节点id
                                                                                                                                    getNodeByValue根据value值获取节点value
                                                                                                                                    empty清空组件
                                                                                                                                    +
                                                                                                                                    + + +
                                                                                                                                    + +
                                                                                                                                    +
                                                                                                                                    +
                                                                                                                                    + +

                                                                                                                                    results matching ""

                                                                                                                                    +
                                                                                                                                      + +
                                                                                                                                      +
                                                                                                                                      + +

                                                                                                                                      No results matching ""

                                                                                                                                      + +
                                                                                                                                      +
                                                                                                                                      +
                                                                                                                                      + +
                                                                                                                                      +
                                                                                                                                      + +
                                                                                                                                      + + + + +
                                                                                                                                      + + +
                                                                                                                                      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/_book/core/abstract/custom_tree.md b/docs/_book/core/abstract/custom_tree.md new file mode 100644 index 000000000..451cb8466 --- /dev/null +++ b/docs/_book/core/abstract/custom_tree.md @@ -0,0 +1,84 @@ +# bi.custom_tree + +## 自定义树,基类[BI.Widget](/core/widget.md) + +{% method %} +[source](https://jsfiddle.net/fineui/gesh31xg/) + +{% common %} +```javascript + +BI.createWidget({ + type: "bi.custom_tree", + el: { + type: "bi.button_tree", + chooseType: 0, + layouts: [{ + type: "bi.vertical", + hgap: 30 + }] + }, + items: [{ + id: -1, + pId: -2, + value: "根目录", + open: true, + type: "bi.plus_group_node", + height: 25 + }, + { + id: 1, + pId: -1, + value: "第一级目录1", + type: "bi.plus_group_node", + height: 25 + }, + { + id: 11, + pId: 1, + value: "第二级文件1", + type: "bi.single_select_item", + height: 25 + }] +}); + + + + +``` + +{% endmethod %} + +## API +##### 基础属性 +| 参数 | 说明 | 类型 | 可选值 | 默认值 +| :------ |:------------- | :-----| :----|:---- +| items | 子组件数组 | array | — | [ ] | +| itemsCreator| 子组件构造器 | object | — | { } | +| expander | popup组件 | object | — | {el: {},popup: {type: "bi.custom_tree"}}| +| el | 开启popup元素 | object | — | {type: "bi.button_tree",chooseType: 0,layouts: [{type: "bi.vertical"}]}| + + + +## 对外方法 +| 名称 | 说明 | 回调参数 +| :------ |:------------- | :----- +| initTree | 构造树结构 | nodes | +| stroke | 生成树方法 | nodes | +| prependItems | 内部前插入 | items | +| addItems | 内部后插入 | items | +| populate | 刷新列表 | nodes| +| render | 渲染列表 | — | +| setValue | 设置value值 | value,可以是单个值也可以是个数组 | +| getValue | 获取被选中的值 |—| +| getAllButtons | 获取所有button |—| +| getAllLeaves | 获取所有的叶子节点 | —| +| getNodeById | 根据id获取节点 | id | +| getNodeByValue | 根据value值获取节点 | value | +| empty| 清空组件|—| + + + +--- + + diff --git a/docs/_book/core/abstract/grid_view.html b/docs/_book/core/abstract/grid_view.html new file mode 100644 index 000000000..225dde067 --- /dev/null +++ b/docs/_book/core/abstract/grid_view.html @@ -0,0 +1,2733 @@ + + + + + + + grid_view · GitBook + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                      +
                                                                                                                                      + + + + + + + + +
                                                                                                                                      + +
                                                                                                                                      + +
                                                                                                                                      + + + + + + + + +
                                                                                                                                      +
                                                                                                                                      + +
                                                                                                                                      +
                                                                                                                                      + +
                                                                                                                                      + +

                                                                                                                                      bi.grid_view

                                                                                                                                      +

                                                                                                                                      可以合并单元格,指定行列可以删除看不见的元素,基类BI.Widget

                                                                                                                                      +
                                                                                                                                      
                                                                                                                                      +BI.createWidget({
                                                                                                                                      +    type: "bi.grid_view",
                                                                                                                                      +    width: 400,
                                                                                                                                      +    height: 300,
                                                                                                                                      +    estimatedRowSize: 30,
                                                                                                                                      +    estimatedColumnSize: 100,
                                                                                                                                      +    items: [],
                                                                                                                                      +    scrollTop: 100,
                                                                                                                                      +    rowHeightGetter: function () {
                                                                                                                                      +        return 30;
                                                                                                                                      +    },
                                                                                                                                      +    columnWidthGetter: function () {
                                                                                                                                      +        return 100;
                                                                                                                                      +    }
                                                                                                                                      +});
                                                                                                                                      +
                                                                                                                                      +
                                                                                                                                      + +

                                                                                                                                      API

                                                                                                                                      +
                                                                                                                                      基础属性
                                                                                                                                      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                      参数说明类型可选值默认值
                                                                                                                                      items子组件数组array[ ]
                                                                                                                                      overflowX是否显示横向滚动条booleantrue,falsetrue
                                                                                                                                      overflowY是否显示纵向滚动条booleantrue,falsetrue
                                                                                                                                      overscanColumnCount超出可视范围区域预加载多少列number0
                                                                                                                                      overscanRowCount超出可视范围区域预加载多少行number0
                                                                                                                                      width行宽,必设number
                                                                                                                                      height列宽,必设number
                                                                                                                                      rowHeightGetter每格行宽number,functionfunction
                                                                                                                                      columnWidthGetter每格列宽number,functionfunction
                                                                                                                                      estimatedColumnSize预估行宽,columnWidthGetter为function时必设number,functionfunction
                                                                                                                                      estimatedRowSize预估列宽,rowHeightGetter为function时必设number,functionfunction
                                                                                                                                      scrollLeft滚动条相对于左边的偏移number0
                                                                                                                                      scrollTop滚动条相对于顶部的偏移number0
                                                                                                                                      +

                                                                                                                                      对外方法

                                                                                                                                      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                      名称说明回调参数
                                                                                                                                      setScrollLeft设置滚动条相对于左边的偏移scrollLeft
                                                                                                                                      setScrollTop设置滚动条相对于顶部的偏移scrollTop
                                                                                                                                      setOverflowX设置是否显示横向滚动条b
                                                                                                                                      setOverflowY设置是否显示横向滚动条b
                                                                                                                                      getScrollLeft获取滚动条相对于左边的偏移
                                                                                                                                      getScrollTop获取滚动条相对于顶部的偏移
                                                                                                                                      getMaxScrollLeft获取滚动条相对于左边的最大偏移
                                                                                                                                      getMaxScrollTop获取滚动条相对于顶部的最大偏移
                                                                                                                                      setEstimatedColumnSize设置列宽width
                                                                                                                                      setEstimatedRowSize设置行宽height
                                                                                                                                      restore还原列表设置
                                                                                                                                      populate刷新列表items
                                                                                                                                      +

                                                                                                                                      事件

                                                                                                                                      + + + + + + + + + + + + + + + +
                                                                                                                                      事件说明回调参数
                                                                                                                                      BI.GridView.EVENT_SCROLL滚动时触发的事件{scrollLeft: scrollLeft, scrollTop: scrollTop}
                                                                                                                                      +
                                                                                                                                      + + +
                                                                                                                                      + +
                                                                                                                                      +
                                                                                                                                      +
                                                                                                                                      + +

                                                                                                                                      results matching ""

                                                                                                                                      +
                                                                                                                                        + +
                                                                                                                                        +
                                                                                                                                        + +

                                                                                                                                        No results matching ""

                                                                                                                                        + +
                                                                                                                                        +
                                                                                                                                        +
                                                                                                                                        + +
                                                                                                                                        +
                                                                                                                                        + +
                                                                                                                                        + + + + +
                                                                                                                                        + + +
                                                                                                                                        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/_book/core/abstract/grid_view.md b/docs/_book/core/abstract/grid_view.md new file mode 100644 index 000000000..c0b6b94b9 --- /dev/null +++ b/docs/_book/core/abstract/grid_view.md @@ -0,0 +1,78 @@ +# bi.grid_view + +## 可以合并单元格,指定行列可以删除看不见的元素,基类[BI.Widget](/core/widget.md) + +{% method %} +[source](https://jsfiddle.net/fineui/fkntzLq5/) + +{% common %} +```javascript + +BI.createWidget({ + type: "bi.grid_view", + width: 400, + height: 300, + estimatedRowSize: 30, + estimatedColumnSize: 100, + items: [], + scrollTop: 100, + rowHeightGetter: function () { + return 30; + }, + columnWidthGetter: function () { + return 100; + } +}); + + + +``` + +{% endmethod %} + +## API +##### 基础属性 +| 参数 | 说明 | 类型 | 可选值 | 默认值 +| :------ |:------------- | :-----| :----|:---- +| items | 子组件数组 | array | — | [ ] | +| overflowX | 是否显示横向滚动条| boolean | true,false | true | +| overflowY | 是否显示纵向滚动条 | boolean | true,false | true | +| overscanColumnCount| 超出可视范围区域预加载多少列 | number|— | 0 | +| overscanRowCount| 超出可视范围区域预加载多少行 | number | — | 0 | +| width | 行宽,必设 |number| — | — | +| height | 列宽,必设 | number | —| — | +| rowHeightGetter| 每格行宽 |number,function | —| function | +| columnWidthGetter| 每格列宽 | number,function |— | function | +| estimatedColumnSize| 预估行宽,columnWidthGetter为function时必设 |number,function |— | function | +| estimatedRowSize | 预估列宽,rowHeightGetter为function时必设 | number,function | —| function | +| scrollLeft | 滚动条相对于左边的偏移 | number | — | 0 | +| scrollTop | 滚动条相对于顶部的偏移 | number | —|0 | + + + + +## 对外方法 +| 名称 | 说明 | 回调参数 +| :------ |:------------- | :----- +| setScrollLeft | 设置滚动条相对于左边的偏移 | scrollLeft| +| setScrollTop | 设置滚动条相对于顶部的偏移 | scrollTop | +| setOverflowX | 设置是否显示横向滚动条 | b | +| setOverflowY | 设置是否显示横向滚动条 | b| +| getScrollLeft | 获取滚动条相对于左边的偏移 | —| +| getScrollTop | 获取滚动条相对于顶部的偏移 | — | +| getMaxScrollLeft | 获取滚动条相对于左边的最大偏移 | — | +| getMaxScrollTop | 获取滚动条相对于顶部的最大偏移 |—| +| setEstimatedColumnSize | 设置列宽 |width| +| setEstimatedRowSize | 设置行宽 | height | +| restore | 还原列表设置 | — | +| populate | 刷新列表 | items | + +## 事件 +| 事件 | 说明 | 回调参数 +| :------ |:------------- |:----------| +|BI.GridView.EVENT_SCROLL| 滚动时触发的事件 | {scrollLeft: scrollLeft, scrollTop: scrollTop} | + + +--- + + diff --git a/docs/_book/core/abstract/virtual_group.html b/docs/_book/core/abstract/virtual_group.html new file mode 100644 index 000000000..6c0acb7e7 --- /dev/null +++ b/docs/_book/core/abstract/virtual_group.html @@ -0,0 +1,2607 @@ + + + + + + + virtual_group · GitBook + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                        +
                                                                                                                                        + + + + + + + + +
                                                                                                                                        + +
                                                                                                                                        + +
                                                                                                                                        + + + + + + + + +
                                                                                                                                        +
                                                                                                                                        + +
                                                                                                                                        +
                                                                                                                                        + +
                                                                                                                                        + +

                                                                                                                                        bi.virtual_group

                                                                                                                                        +

                                                                                                                                        优化过的buttonGroup,删除看不见的元素 基类BI.Widget

                                                                                                                                        +
                                                                                                                                        
                                                                                                                                        +BI.createWidget({
                                                                                                                                        +  element: "#wrapper",
                                                                                                                                        +  type: "bi.virtual_group",
                                                                                                                                        +  width: 500,
                                                                                                                                        +  height: 300,
                                                                                                                                        +  chooseType: BI.ButtonGroup.CHOOSE_TYPE_MULTI,
                                                                                                                                        +  layouts: [{
                                                                                                                                        +      type: "bi.vertical"
                                                                                                                                        +  }, {
                                                                                                                                        +      type: "bi.center_adapt",
                                                                                                                                        +  }],
                                                                                                                                        +  items:[]
                                                                                                                                        +})
                                                                                                                                        +
                                                                                                                                        +
                                                                                                                                        + +

                                                                                                                                        API

                                                                                                                                        +
                                                                                                                                        基础属性
                                                                                                                                        + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                        参数说明类型可选值默认值
                                                                                                                                        items子组件数组array[ ]
                                                                                                                                        layouts布局array[{type: "bi.center",hgap: 0,vgap: 0}]
                                                                                                                                        +

                                                                                                                                        对外方法

                                                                                                                                        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                        名称说明回调参数
                                                                                                                                        setValue设置value值value,可以是单个值也可以是个数组
                                                                                                                                        getValue获取被选中的值
                                                                                                                                        prependItems内部前插入items
                                                                                                                                        addItems内部后插入items
                                                                                                                                        populate刷新列表items
                                                                                                                                        render渲染列表
                                                                                                                                        +
                                                                                                                                        + + +
                                                                                                                                        + +
                                                                                                                                        +
                                                                                                                                        +
                                                                                                                                        + +

                                                                                                                                        results matching ""

                                                                                                                                        +
                                                                                                                                          + +
                                                                                                                                          +
                                                                                                                                          + +

                                                                                                                                          No results matching ""

                                                                                                                                          + +
                                                                                                                                          +
                                                                                                                                          +
                                                                                                                                          + +
                                                                                                                                          +
                                                                                                                                          + +
                                                                                                                                          + + + + +
                                                                                                                                          + + +
                                                                                                                                          + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/_book/core/abstract/virtual_group.md b/docs/_book/core/abstract/virtual_group.md new file mode 100644 index 000000000..5cbcf431c --- /dev/null +++ b/docs/_book/core/abstract/virtual_group.md @@ -0,0 +1,51 @@ +# bi.virtual_group + +## 优化过的buttonGroup,删除看不见的元素 基类[BI.Widget](/core/widget.md) + +{% method %} +[source](https://jsfiddle.net/fineui/9pd0dct0/) + +{% common %} +```javascript + +BI.createWidget({ + element: "#wrapper", + type: "bi.virtual_group", + width: 500, + height: 300, + chooseType: BI.ButtonGroup.CHOOSE_TYPE_MULTI, + layouts: [{ + type: "bi.vertical" + }, { + type: "bi.center_adapt", + }], + items:[] +}) +``` + +{% endmethod %} + +## API +##### 基础属性 +| 参数 | 说明 | 类型 | 可选值 | 默认值 +| :------ |:------------- | :-----| :----|:---- +| items | 子组件数组 | array | — | [ ] | +| layouts | 布局 | array | — | [{type: "bi.center",hgap: 0,vgap: 0}] | + + + +## 对外方法 +| 名称 | 说明 | 回调参数 +| :------ |:------------- | :----- +| setValue | 设置value值 | value,可以是单个值也可以是个数组 | +| getValue | 获取被选中的值 |—| +| prependItems | 内部前插入 | items | +| addItems | 内部后插入 | items | +| populate | 刷新列表 | items | +| render | 渲染列表 | —| + + + +--- + + diff --git a/docs/_book/core/abstract/virtual_list.html b/docs/_book/core/abstract/virtual_list.html new file mode 100644 index 000000000..a7afcec54 --- /dev/null +++ b/docs/_book/core/abstract/virtual_list.html @@ -0,0 +1,2612 @@ + + + + + + + virtual_list · GitBook + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                          +
                                                                                                                                          + + + + + + + + +
                                                                                                                                          + +
                                                                                                                                          + +
                                                                                                                                          + + + + + + + + +
                                                                                                                                          +
                                                                                                                                          + +
                                                                                                                                          +
                                                                                                                                          + +
                                                                                                                                          + +

                                                                                                                                          bi.virtual_list

                                                                                                                                          +

                                                                                                                                          看不见的元素全部删除的list,基类BI.Widget

                                                                                                                                          +
                                                                                                                                          
                                                                                                                                          +BI.createWidget({
                                                                                                                                          +    type: "bi.virtual_list",
                                                                                                                                          +    element:"body",
                                                                                                                                          +    items: BI.map([{value: "xxxx"}], function (i, item) {
                                                                                                                                          +          return BI.extend({}, item, {
                                                                                                                                          +              type: "bi.label",
                                                                                                                                          +              height: 30,
                                                                                                                                          +              text: (i + 1) + "." + item.text,
                                                                                                                                          +          });
                                                                                                                                          +      })
                                                                                                                                          +    })
                                                                                                                                          +
                                                                                                                                          +
                                                                                                                                          + +

                                                                                                                                          API

                                                                                                                                          +
                                                                                                                                          基础属性
                                                                                                                                          + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                          参数说明类型可选值默认值
                                                                                                                                          items子组件数组array[ ]
                                                                                                                                          blockSize滚动加载的个数number10
                                                                                                                                          overscanHeight超出可视范围区域的高度number100
                                                                                                                                          scrollTop滚动条相对于顶部的偏移number0
                                                                                                                                          +

                                                                                                                                          对外方法

                                                                                                                                          + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                          名称说明回调参数
                                                                                                                                          render渲染列表
                                                                                                                                          mounted组件挂载
                                                                                                                                          restore还原列表设置
                                                                                                                                          populate刷新列表items
                                                                                                                                          destroyed销毁组件
                                                                                                                                          +
                                                                                                                                          + + +
                                                                                                                                          + +
                                                                                                                                          +
                                                                                                                                          +
                                                                                                                                          + +

                                                                                                                                          results matching ""

                                                                                                                                          +
                                                                                                                                            + +
                                                                                                                                            +
                                                                                                                                            + +

                                                                                                                                            No results matching ""

                                                                                                                                            + +
                                                                                                                                            +
                                                                                                                                            +
                                                                                                                                            + +
                                                                                                                                            +
                                                                                                                                            + +
                                                                                                                                            + + + + +
                                                                                                                                            + + +
                                                                                                                                            + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/_book/core/abstract/virtual_list.md b/docs/_book/core/abstract/virtual_list.md new file mode 100644 index 000000000..b462e46c4 --- /dev/null +++ b/docs/_book/core/abstract/virtual_list.md @@ -0,0 +1,52 @@ +# bi.virtual_list + +## 看不见的元素全部删除的list,基类[BI.Widget](/core/widget.md) + +{% method %} +[source](https://jsfiddle.net/fineui/L995LrL9/) + +{% common %} +```javascript + +BI.createWidget({ + type: "bi.virtual_list", + element:"body", + items: BI.map([{value: "xxxx"}], function (i, item) { + return BI.extend({}, item, { + type: "bi.label", + height: 30, + text: (i + 1) + "." + item.text, + }); + }) + }) + + + +``` + +{% endmethod %} + +## API +##### 基础属性 +| 参数 | 说明 | 类型 | 可选值 | 默认值 +| :------ |:------------- | :-----| :----|:---- +| items | 子组件数组 | array | — | [ ] | +| blockSize | 滚动加载的个数 | number | — | 10 | +| overscanHeight | 超出可视范围区域的高度 | number | — | 100 | +| scrollTop | 滚动条相对于顶部的偏移 | number | — | 0 | + + +## 对外方法 +| 名称 | 说明 | 回调参数 +| :------ |:------------- | :----- +| render | 渲染列表 | —| +| mounted | 组件挂载 | —| +| restore | 还原列表设置 | — | +| populate | 刷新列表 | items | +| destroyed | 销毁组件 | —| + + + +--- + + diff --git a/docs/_book/core/basic_button.html b/docs/_book/core/basic_button.html new file mode 100644 index 000000000..310f70222 --- /dev/null +++ b/docs/_book/core/basic_button.html @@ -0,0 +1,2709 @@ + + + + + + + basic_button · GitBook + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                            +
                                                                                                                                            + + + + + + + + +
                                                                                                                                            + +
                                                                                                                                            + +
                                                                                                                                            + + + + + + + + +
                                                                                                                                            +
                                                                                                                                            + +
                                                                                                                                            +
                                                                                                                                            + +
                                                                                                                                            + +

                                                                                                                                            bi.basic_button

                                                                                                                                            +

                                                                                                                                            一般的button父级,基类BI.Single

                                                                                                                                            +

                                                                                                                                            API

                                                                                                                                            +
                                                                                                                                            基础属性
                                                                                                                                            + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                            参数说明类型可选值默认值
                                                                                                                                            value组件value值stringnull
                                                                                                                                            stopEvent阻止事件booleantrue,falsefalse
                                                                                                                                            stopPropagation阻止冒泡booleantrue,falsefalse
                                                                                                                                            selectedbutton的选中状态booleantrue,falsefalse
                                                                                                                                            once点击一次选中有效,再点无效booleantrue,falsefalse
                                                                                                                                            forceSelected点击即选中, 选中了就不会被取消,与once的区别是forceSelected不影响事件的触发booleantrue,falsefalse
                                                                                                                                            forceNotSelected无论怎么点击都不会被选中booleantrue,falsefalse
                                                                                                                                            disableSelected使能选中booleantrue,falsefalse
                                                                                                                                            shadow是否显示阴影booleantrue,falsefalse
                                                                                                                                            isShadowShowingOnSelected选中状态下是否显示阴影booleantrue,falsefalse
                                                                                                                                            trigger被选元素要触发的事件stringmousedown, mouseup, click, dblclick, lclicknull
                                                                                                                                            handler点击事件回调functionBI.emptyFn
                                                                                                                                            +

                                                                                                                                            对外方法

                                                                                                                                            + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                            名称说明回调参数
                                                                                                                                            bindEvent绑定事件
                                                                                                                                            beforeClick点击事件之前
                                                                                                                                            doClick点击事件
                                                                                                                                            handle返回该对象
                                                                                                                                            hoverhover事件
                                                                                                                                            dishover取消hover事件
                                                                                                                                            setSelected设置选中的文本b
                                                                                                                                            isSelected是否被选中
                                                                                                                                            isOnce是否只允许点击一次
                                                                                                                                            isForceSelected判断是否点击即选中
                                                                                                                                            isForceNotSelected判断是否怎么点击都不会被选中
                                                                                                                                            isDisableSelected判断是否让选中
                                                                                                                                            setText设置文本值
                                                                                                                                            getText获取文本值
                                                                                                                                            empty清空组件
                                                                                                                                            destroy销毁组件
                                                                                                                                            +
                                                                                                                                            + + +
                                                                                                                                            + +
                                                                                                                                            +
                                                                                                                                            +
                                                                                                                                            + +

                                                                                                                                            results matching ""

                                                                                                                                            +
                                                                                                                                              + +
                                                                                                                                              +
                                                                                                                                              + +

                                                                                                                                              No results matching ""

                                                                                                                                              + +
                                                                                                                                              +
                                                                                                                                              +
                                                                                                                                              + +
                                                                                                                                              +
                                                                                                                                              + +
                                                                                                                                              + + + + +
                                                                                                                                              + + +
                                                                                                                                              + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/_book/core/basic_button.md b/docs/_book/core/basic_button.md new file mode 100644 index 000000000..d30a82160 --- /dev/null +++ b/docs/_book/core/basic_button.md @@ -0,0 +1,46 @@ +# bi.basic_button + +## 一般的button父级,基类[BI.Single](/core/single.md) + +## API +##### 基础属性 +| 参数 | 说明 | 类型 | 可选值 | 默认值 +| :------ |:------------- | :-----| :----|:---- +| value | 组件value值 | string | —| null| +| stopEvent | 阻止事件 |boolean | true,false | false | +| stopPropagation | 阻止冒泡 | boolean | true,false| false | +| selected | button的选中状态 | boolean | true,false |false | +| once | 点击一次选中有效,再点无效 | boolean | true,false | false| +| forceSelected | 点击即选中, 选中了就不会被取消,与once的区别是forceSelected不影响事件的触发| boolean | true,false| false| +| forceNotSelected | 无论怎么点击都不会被选中 | boolean| true,false | false| +| disableSelected | 使能选中| boolean | true,false| false| +| shadow | 是否显示阴影 | boolean| true,false| false| +| isShadowShowingOnSelected| 选中状态下是否显示阴影|boolean| true,false | false| +| trigger | 被选元素要触发的事件 | string | mousedown, mouseup, click, dblclick, lclick | null| +| handler | 点击事件回调 | function | —| BI.emptyFn | + + +## 对外方法 +| 名称 | 说明 | 回调参数 +| :------ |:------------- | :----- +| bindEvent | 绑定事件| —| +| beforeClick | 点击事件之前 | —| +| doClick | 点击事件 | — | +| handle | 返回该对象 | —| +| hover | hover事件| —| +| dishover | 取消hover事件| —| +|setSelected | 设置选中的文本| b| +| isSelected | 是否被选中| —| +| isOnce | 是否只允许点击一次| —| +| isForceSelected| 判断是否点击即选中| —| +| isForceNotSelected| 判断是否怎么点击都不会被选中|—| +| isDisableSelected| 判断是否让选中|—| +| setText| 设置文本值|—| +| getText| 获取文本值|—| +| empty| 清空组件|—| +| destroy| 销毁组件|—| + + +--- + + diff --git a/docs/_book/core/combination/bi.combo.html b/docs/_book/core/combination/bi.combo.html new file mode 100644 index 000000000..29794a2d6 --- /dev/null +++ b/docs/_book/core/combination/bi.combo.html @@ -0,0 +1,2802 @@ + + + + + + + combo · GitBook + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                              +
                                                                                                                                              + + + + + + + + +
                                                                                                                                              + +
                                                                                                                                              + +
                                                                                                                                              + + + + + + + + +
                                                                                                                                              +
                                                                                                                                              + +
                                                                                                                                              +
                                                                                                                                              + +
                                                                                                                                              + +

                                                                                                                                              bi.combo

                                                                                                                                              +

                                                                                                                                              combo,基类BI.Widget

                                                                                                                                              +
                                                                                                                                              
                                                                                                                                              +BI.createWidget({
                                                                                                                                              +   type: "bi.combo",
                                                                                                                                              +   element: "body",
                                                                                                                                              +   adjustLength: 2,
                                                                                                                                              +   el: {
                                                                                                                                              +       type: "bi.button",
                                                                                                                                              +       text: "测试",
                                                                                                                                              +       height: 25
                                                                                                                                              +    },
                                                                                                                                              +   popup: {}
                                                                                                                                              +});
                                                                                                                                              +
                                                                                                                                              +
                                                                                                                                              + +

                                                                                                                                              API

                                                                                                                                              +
                                                                                                                                              基础属性
                                                                                                                                              + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                              参数说明类型可选值默认值
                                                                                                                                              el自定义下拉框triggerobject{ }
                                                                                                                                              trigger下拉列表的弹出方式stringclick,hover"click"
                                                                                                                                              adjustLength弹出列表和trigger的距离number0
                                                                                                                                              toggle切换状态booleantrue,falsetrue
                                                                                                                                              direction弹出列表和trigger的位置关系stringtop | bottom | left | right | top,left | top,right | bottom,left | bottom,right"bottom"
                                                                                                                                              isDefaultInit是否默认初始化子节点booleantrue,falsefalse
                                                                                                                                              destroyWhenHide隐藏弹窗层是否销毁booleantrue,falsefalse
                                                                                                                                              isNeedAdjustHeight是否需要高度调整booleantrue,falsetrue
                                                                                                                                              isNeedAdjustWidth是否需要宽度调整booleantrue,falsetrue
                                                                                                                                              stopEvent是否阻止事件booleantrue,falsefalse
                                                                                                                                              stopPropagation阻止事件冒泡booleantrue,falsefalse
                                                                                                                                              adjustXOffset调整横向偏移number0
                                                                                                                                              adjustYOffset调整纵向偏移number0
                                                                                                                                              hideChecker是否隐藏弹出层检测function
                                                                                                                                              offsetStyle弹出层显示位置stringleft,right,center"left,right,center"
                                                                                                                                              popup弹出层object{ }
                                                                                                                                              comboClasscombo类string"bi-combo-popup"
                                                                                                                                              hoverClasshover类string"bi-combo-hover"
                                                                                                                                              +

                                                                                                                                              对外方法

                                                                                                                                              + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                              名称说明回调参数
                                                                                                                                              adjustWidth调整宽度
                                                                                                                                              adjustHeight调整高度
                                                                                                                                              resetListHeight重置列表高度height
                                                                                                                                              resetListWidth重置列表宽度width
                                                                                                                                              populate刷新列表items
                                                                                                                                              setValue设置combo value值v
                                                                                                                                              getValue获取combo value值
                                                                                                                                              isViewVisible弹窗层是否可见
                                                                                                                                              showView显示弹出层
                                                                                                                                              hideView隐藏弹出层
                                                                                                                                              getView获取弹出层
                                                                                                                                              getPopupPosition获取弹出层的位置
                                                                                                                                              toggle开启或者隐藏弹出层
                                                                                                                                              destroy销毁组件
                                                                                                                                              +

                                                                                                                                              事件

                                                                                                                                              + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                              名称说明
                                                                                                                                              BI.Combo.EVENT_TRIGGER_CHANGEtrigger发生改变触发
                                                                                                                                              BI.Combo.EVENT_CHANGE弹出层点击触发
                                                                                                                                              BI.Combo.EVENT_EXPAND下拉框展开触发
                                                                                                                                              BI.Combo.EVENT_COLLAPSE下拉框收起触发
                                                                                                                                              BI.Combo.EVENT_AFTER_INIT下拉框初始化后触发
                                                                                                                                              BI.Combo.EVENT_BEFORE_POPUPVIEW下拉列表弹出前触发
                                                                                                                                              BI.Combo.EVENT_AFTER_POPUPVIEW下拉列表弹出后触发
                                                                                                                                              BI.Combo.EVENT_BEFORE_HIDEVIEW下拉列表收起前触发
                                                                                                                                              BI.Combo.EVENT_AFTER_HIDEVIEW下拉列表收起后触发
                                                                                                                                              +
                                                                                                                                              + + +
                                                                                                                                              + +
                                                                                                                                              +
                                                                                                                                              +
                                                                                                                                              + +

                                                                                                                                              results matching ""

                                                                                                                                              +
                                                                                                                                                + +
                                                                                                                                                +
                                                                                                                                                + +

                                                                                                                                                No results matching ""

                                                                                                                                                + +
                                                                                                                                                +
                                                                                                                                                +
                                                                                                                                                + +
                                                                                                                                                +
                                                                                                                                                + +
                                                                                                                                                + + + + +
                                                                                                                                                + + +
                                                                                                                                                + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/_book/core/combination/bi.combo.md b/docs/_book/core/combination/bi.combo.md new file mode 100644 index 000000000..94c8b7824 --- /dev/null +++ b/docs/_book/core/combination/bi.combo.md @@ -0,0 +1,88 @@ +# bi.combo + +## combo,基类[BI.Widget](/core/widget.md) + +{% method %} +[source](https://jsfiddle.net/fineui/wxykkjou/) + +{% common %} +```javascript + +BI.createWidget({ + type: "bi.combo", + element: "body", + adjustLength: 2, + el: { + type: "bi.button", + text: "测试", + height: 25 + }, + popup: {} +}); + + + +``` + +{% endmethod %} + +## API +##### 基础属性 +| 参数 | 说明 | 类型 | 可选值 | 默认值 +| :------ |:------------- | :-----| :----|:---- +| el | 自定义下拉框trigger | object | — |{ }| +| trigger | 下拉列表的弹出方式 | string | click,hover | "click" | +| adjustLength | 弹出列表和trigger的距离 | number | — | 0 | +| toggle | 切换状态 | boolean | true,false | true | +| direction | 弹出列表和trigger的位置关系 | string | top | bottom | left | right | top,left | top,right | bottom,left | bottom,right | "bottom"| +| isDefaultInit | 是否默认初始化子节点 |boolean | true,false | false | +| destroyWhenHide | 隐藏弹窗层是否销毁 | boolean | true,false | false | +| isNeedAdjustHeight | 是否需要高度调整 | boolean | true,false | true | +| isNeedAdjustWidth | 是否需要宽度调整 | boolean | true,false | true | +| stopEvent | 是否阻止事件 | boolean | true,false | false | +| stopPropagation | 阻止事件冒泡 | boolean | true,false | false | +| adjustXOffset | 调整横向偏移 | number | — | 0 | +| adjustYOffset |调整纵向偏移 | number | — | 0 | +| hideChecker | 是否隐藏弹出层检测 | function | — | —| +| offsetStyle | 弹出层显示位置 | string | left,right,center | "left,right,center"| +| popup | 弹出层 | object | — | { }| +| comboClass | combo类 | string | — | "bi-combo-popup" | +| hoverClass | hover类 | string | — | "bi-combo-hover" | + + + +## 对外方法 +| 名称 | 说明 | 回调参数 +| :------ |:------------- | :----- +| adjustWidth | 调整宽度 | —| +| adjustHeight | 调整高度 | —| +| resetListHeight | 重置列表高度 | height | +| resetListWidth | 重置列表宽度 | width | +| populate | 刷新列表 | items | +| setValue |设置combo value值| v | +| getValue | 获取combo value值 | —| +| isViewVisible | 弹窗层是否可见 | —| +| showView | 显示弹出层 | —| +| hideView | 隐藏弹出层 |—| +| getView | 获取弹出层 | —| +| getPopupPosition | 获取弹出层的位置 | —| +| toggle | 开启或者隐藏弹出层 | —| +| destroy | 销毁组件 | —| + +## 事件 +| 名称 | 说明 | +| :------ |:------------- | +|BI.Combo.EVENT_TRIGGER_CHANGE | trigger发生改变触发 | +|BI.Combo.EVENT_CHANGE | 弹出层点击触发 | +|BI.Combo.EVENT_EXPAND | 下拉框展开触发 | +|BI.Combo.EVENT_COLLAPSE | 下拉框收起触发 +|BI.Combo.EVENT_AFTER_INIT | 下拉框初始化后触发 | +|BI.Combo.EVENT_BEFORE_POPUPVIEW | 下拉列表弹出前触发 | +|BI.Combo.EVENT_AFTER_POPUPVIEW | 下拉列表弹出后触发 | +|BI.Combo.EVENT_BEFORE_HIDEVIEW | 下拉列表收起前触发 | +|BI.Combo.EVENT_AFTER_HIDEVIEW | 下拉列表收起后触发 | + + +--- + + diff --git a/docs/_book/core/combination/bi.expander.html b/docs/_book/core/combination/bi.expander.html new file mode 100644 index 000000000..485958f41 --- /dev/null +++ b/docs/_book/core/combination/bi.expander.html @@ -0,0 +1,2743 @@ + + + + + + + expander · GitBook + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                +
                                                                                                                                                + + + + + + + + +
                                                                                                                                                + +
                                                                                                                                                + +
                                                                                                                                                + + + + + + + + +
                                                                                                                                                +
                                                                                                                                                + +
                                                                                                                                                +
                                                                                                                                                + +
                                                                                                                                                + +

                                                                                                                                                bi.expander

                                                                                                                                                +

                                                                                                                                                某个可以展开的节点,基类BI.Widget

                                                                                                                                                +
                                                                                                                                                
                                                                                                                                                +BI.createWidget({
                                                                                                                                                +  type: "bi.expander",
                                                                                                                                                +  element: "#wrapper",
                                                                                                                                                +  el: {
                                                                                                                                                +    type: "bi.icon_text_node",
                                                                                                                                                +    cls: "pull-right-ha-font",
                                                                                                                                                +    height: 25,
                                                                                                                                                +    text: "Expander"
                                                                                                                                                +  },
                                                                                                                                                +  popup: {
                                                                                                                                                +    items: [{
                                                                                                                                                +      type: "bi.single_select_item",
                                                                                                                                                +      height: 25,
                                                                                                                                                +      text: "项目1",
                                                                                                                                                +      value: 1
                                                                                                                                                +    }, {
                                                                                                                                                +      type: "bi.single_select_item",
                                                                                                                                                +      height: 25,
                                                                                                                                                +      text: "项目2",
                                                                                                                                                +      value: 2
                                                                                                                                                +    }]
                                                                                                                                                +  }
                                                                                                                                                +});
                                                                                                                                                +
                                                                                                                                                +
                                                                                                                                                + +

                                                                                                                                                API

                                                                                                                                                +
                                                                                                                                                基础属性
                                                                                                                                                + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                参数说明类型可选值默认值
                                                                                                                                                el自定义下拉框triggerobject{ }
                                                                                                                                                trigger下拉列表的弹出方式stringclick,hover"click"
                                                                                                                                                adjustLength弹出列表和trigger的距离number0
                                                                                                                                                toggle切换状态booleantrue,falsetrue
                                                                                                                                                direction弹出列表和trigger的位置关系stringtop | bottom | left | right | top,left | top,right | bottom,left | bottom,right"bottom"
                                                                                                                                                isDefaultInit是否默认初始化子节点booleantrue,falsefalse
                                                                                                                                                popup弹出层object{ }
                                                                                                                                                expanderClass展开类string"bi-expander-popup"
                                                                                                                                                hoverClasshover类string"bi-expander-hover"
                                                                                                                                                +

                                                                                                                                                对外方法

                                                                                                                                                + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                名称说明回调参数
                                                                                                                                                populate刷新列表items
                                                                                                                                                setValue设置combo value值v
                                                                                                                                                getValue获取combo value值
                                                                                                                                                isViewVisible弹窗层是否可见
                                                                                                                                                showView显示弹出层
                                                                                                                                                hideView隐藏弹出层
                                                                                                                                                getView获取弹出层
                                                                                                                                                getAllLeaves获取所有的叶子节点
                                                                                                                                                getNodeById根据id获取节点id
                                                                                                                                                getNodeByValue根据value值获取节点value
                                                                                                                                                isExpanded节点是否展开
                                                                                                                                                destroy销毁组件
                                                                                                                                                +

                                                                                                                                                事件

                                                                                                                                                + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                名称说明
                                                                                                                                                BI.Expander.EVENT_TRIGGER_CHANGEtrigger发生改变触发
                                                                                                                                                BI.Expander.EVENT_CHANGE弹出层点击触发
                                                                                                                                                BI.Expander.EVENT_EXPANDExpander展开触发
                                                                                                                                                BI.Expander.EVENT_COLLAPSEExpander收起触发
                                                                                                                                                BI.Expander.EVENT_AFTER_INITExpander初始化后触发
                                                                                                                                                BI.Expander.EVENT_BEFORE_POPUPVIEW下拉列表弹出前触发
                                                                                                                                                BI.Expander.EVENT_AFTER_POPUPVIEW下拉列表弹出后触发
                                                                                                                                                BI.Expander.EVENT_BEFORE_HIDEVIEW下拉列表收起前触发
                                                                                                                                                BI.Expander.EVENT_AFTER_HIDEVIEW下拉列表收起后触发
                                                                                                                                                +
                                                                                                                                                + + +
                                                                                                                                                + +
                                                                                                                                                +
                                                                                                                                                +
                                                                                                                                                + +

                                                                                                                                                results matching ""

                                                                                                                                                +
                                                                                                                                                  + +
                                                                                                                                                  +
                                                                                                                                                  + +

                                                                                                                                                  No results matching ""

                                                                                                                                                  + +
                                                                                                                                                  +
                                                                                                                                                  +
                                                                                                                                                  + +
                                                                                                                                                  +
                                                                                                                                                  + +
                                                                                                                                                  + + + + +
                                                                                                                                                  + + +
                                                                                                                                                  + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/_book/core/combination/bi.expander.md b/docs/_book/core/combination/bi.expander.md new file mode 100644 index 000000000..b5d6ab382 --- /dev/null +++ b/docs/_book/core/combination/bi.expander.md @@ -0,0 +1,88 @@ +# bi.expander + +## 某个可以展开的节点,基类[BI.Widget](/core/widget.md) + +{% method %} +[source](https://jsfiddle.net/fineui/2xavqk4k/) + +{% common %} +```javascript + +BI.createWidget({ + type: "bi.expander", + element: "#wrapper", + el: { + type: "bi.icon_text_node", + cls: "pull-right-ha-font", + height: 25, + text: "Expander" + }, + popup: { + items: [{ + type: "bi.single_select_item", + height: 25, + text: "项目1", + value: 1 + }, { + type: "bi.single_select_item", + height: 25, + text: "项目2", + value: 2 + }] + } +}); + + + +``` + +{% endmethod %} + +## API +##### 基础属性 +| 参数 | 说明 | 类型 | 可选值 | 默认值 +| :------ |:------------- | :-----| :----|:---- +| el | 自定义下拉框trigger | object | — |{ }| +| trigger | 下拉列表的弹出方式 | string | click,hover | "click" | +| adjustLength | 弹出列表和trigger的距离 | number | — | 0 | +| toggle | 切换状态 | boolean | true,false | true | +| direction | 弹出列表和trigger的位置关系 | string | top | bottom | left | right | top,left | top,right | bottom,left | bottom,right | "bottom"| +| isDefaultInit | 是否默认初始化子节点 |boolean | true,false | false | +| popup | 弹出层 | object | — | { }| +| expanderClass | 展开类 | string | —| "bi-expander-popup" | +| hoverClass | hover类| string | — | "bi-expander-hover" | + + + +## 对外方法 +| 名称 | 说明 | 回调参数 +| :------ |:------------- | :----- +| populate | 刷新列表 | items | +| setValue | 设置combo value值| v | +| getValue | 获取combo value值 | —| +| isViewVisible | 弹窗层是否可见 | —| +| showView | 显示弹出层| —| +| hideView | 隐藏弹出层| —| +| getView | 获取弹出层| —| +| getAllLeaves | 获取所有的叶子节点 | —| +| getNodeById | 根据id获取节点 | id | +| getNodeByValue | 根据value值获取节点 | value | +| isExpanded | 节点是否展开 | — | +| destroy | 销毁组件| — | + +## 事件 +| 名称 | 说明 | +| :------ |:------------- | +|BI.Expander.EVENT_TRIGGER_CHANGE | trigger发生改变触发 | +|BI.Expander.EVENT_CHANGE | 弹出层点击触发 | +|BI.Expander.EVENT_EXPAND | Expander展开触发 | +|BI.Expander.EVENT_COLLAPSE | Expander收起触发 +|BI.Expander.EVENT_AFTER_INIT | Expander初始化后触发 | +|BI.Expander.EVENT_BEFORE_POPUPVIEW | 下拉列表弹出前触发 | +|BI.Expander.EVENT_AFTER_POPUPVIEW | 下拉列表弹出后触发 | +|BI.Expander.EVENT_BEFORE_HIDEVIEW | 下拉列表收起前触发 | +|BI.Expander.EVENT_AFTER_HIDEVIEW | 下拉列表收起后触发 | + +--- + + diff --git a/docs/_book/core/combination/group_combo.html b/docs/_book/core/combination/group_combo.html new file mode 100644 index 000000000..614502a86 --- /dev/null +++ b/docs/_book/core/combination/group_combo.html @@ -0,0 +1,2646 @@ + + + + + + + group_combo · GitBook + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                  +
                                                                                                                                                  + + + + + + + + +
                                                                                                                                                  + +
                                                                                                                                                  + +
                                                                                                                                                  + + + + + + + + +
                                                                                                                                                  +
                                                                                                                                                  + +
                                                                                                                                                  +
                                                                                                                                                  + +
                                                                                                                                                  + +

                                                                                                                                                  bi.combo_group

                                                                                                                                                  +

                                                                                                                                                  基类BI.Widget

                                                                                                                                                  +
                                                                                                                                                  
                                                                                                                                                  +BI.createWidget({
                                                                                                                                                  +  element: "#wrapper",
                                                                                                                                                  +  type: "bi.combo_group",
                                                                                                                                                  +  el: {
                                                                                                                                                  +    type: "bi.icon_text_icon_item",
                                                                                                                                                  +    text: "2010年",
                                                                                                                                                  +    value: 2010,
                                                                                                                                                  +    height: 25,
                                                                                                                                                  +    iconCls: "close-ha-font"
                                                                                                                                                  +  },
                                                                                                                                                  +  children: [{
                                                                                                                                                  +    type: "bi.single_select_item",
                                                                                                                                                  +    height: 25,
                                                                                                                                                  +    text: "一月",
                                                                                                                                                  +    value: 11
                                                                                                                                                  +  }]
                                                                                                                                                  +});
                                                                                                                                                  +
                                                                                                                                                  +
                                                                                                                                                  + + +

                                                                                                                                                  API

                                                                                                                                                  +
                                                                                                                                                  基础属性
                                                                                                                                                  + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                  参数说明类型可选值默认值
                                                                                                                                                  childern子组件array[ ]
                                                                                                                                                  popup弹出层object{el: {type: "bi.button_tree",chooseType: 0,layouts: [{type: "bi.vertical"}]}}
                                                                                                                                                  isDefaultInit是否默认初始化子节点booleantrue,falsefalse
                                                                                                                                                  isNeedAdjustHeight是否需要高度调整booleantrue,falsefalse
                                                                                                                                                  isNeedAdjustWidth是否需要宽度调整booleantrue,falsefalse
                                                                                                                                                  el自定义下拉框triggerobject{type: "bi.text_button", text: "", value: ""}
                                                                                                                                                  trigger下拉列表的弹出方式stringclick,hover"click"
                                                                                                                                                  adjustLength弹出列表和trigger的距离number0
                                                                                                                                                  direction弹出列表和trigger的位置关系stringtop | bottom | left | right | top,left | top,right | bottom,left | bottom,right"bottom"
                                                                                                                                                  +

                                                                                                                                                  对外方法

                                                                                                                                                  + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                  名称说明回调参数
                                                                                                                                                  populate刷新列表items
                                                                                                                                                  setValue设置combo value值v
                                                                                                                                                  getValue获取combo value值
                                                                                                                                                  +
                                                                                                                                                  + + +
                                                                                                                                                  + +
                                                                                                                                                  +
                                                                                                                                                  +
                                                                                                                                                  + +

                                                                                                                                                  results matching ""

                                                                                                                                                  +
                                                                                                                                                    + +
                                                                                                                                                    +
                                                                                                                                                    + +

                                                                                                                                                    No results matching ""

                                                                                                                                                    + +
                                                                                                                                                    +
                                                                                                                                                    +
                                                                                                                                                    + +
                                                                                                                                                    +
                                                                                                                                                    + +
                                                                                                                                                    + + + + +
                                                                                                                                                    + + +
                                                                                                                                                    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/_book/core/combination/group_combo.md b/docs/_book/core/combination/group_combo.md new file mode 100644 index 000000000..d9dc8ab73 --- /dev/null +++ b/docs/_book/core/combination/group_combo.md @@ -0,0 +1,64 @@ +# bi.combo_group + +## 基类[BI.Widget](/core/widget.md) + +{% method %} +[source](https://jsfiddle.net/fineui/x32ue8xv/) + +{% common %} +```javascript + +BI.createWidget({ + element: "#wrapper", + type: "bi.combo_group", + el: { + type: "bi.icon_text_icon_item", + text: "2010年", + value: 2010, + height: 25, + iconCls: "close-ha-font" + }, + children: [{ + type: "bi.single_select_item", + height: 25, + text: "一月", + value: 11 + }] +}); + + + + +``` + +{% endmethod %} + + +## API +##### 基础属性 +| 参数 | 说明 | 类型 | 可选值 | 默认值 +| :------ |:------------- | :-----| :----|:---- +| childern | 子组件 | array | — | [ ] | +| popup | 弹出层 | object | — |{el: {type: "bi.button_tree",chooseType: 0,layouts: [{type: "bi.vertical"}]}}| +| isDefaultInit | 是否默认初始化子节点 |boolean | true,false | false | +| isNeedAdjustHeight | 是否需要高度调整 | boolean | true,false | false | +| isNeedAdjustWidth | 是否需要宽度调整 | boolean | true,false | false | +| el | 自定义下拉框trigger | object | — |{type: "bi.text_button", text: "", value: ""}| +| trigger | 下拉列表的弹出方式 | string | click,hover | "click" | +| adjustLength | 弹出列表和trigger的距离 | number | — | 0 | +| direction | 弹出列表和trigger的位置关系 | string | top | bottom | left | right | top,left | top,right | bottom,left | bottom,right | "bottom"| + + + +## 对外方法 +| 名称 | 说明 | 回调参数 +| :------ |:------------- | :----- +| populate | 刷新列表 | items | +| setValue | 设置combo value值| v | +| getValue | 获取combo value值 | — | + + + +--- + + diff --git a/docs/_book/core/combination/loader.html b/docs/_book/core/combination/loader.html new file mode 100644 index 000000000..6c9b715ba --- /dev/null +++ b/docs/_book/core/combination/loader.html @@ -0,0 +1,2733 @@ + + + + + + + loader · GitBook + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                    +
                                                                                                                                                    + + + + + + + + +
                                                                                                                                                    + +
                                                                                                                                                    + +
                                                                                                                                                    + + + + + + + + +
                                                                                                                                                    +
                                                                                                                                                    + +
                                                                                                                                                    +
                                                                                                                                                    + +
                                                                                                                                                    + +

                                                                                                                                                    bi.loader

                                                                                                                                                    +

                                                                                                                                                    加载控件,BI.Widget

                                                                                                                                                    +
                                                                                                                                                    
                                                                                                                                                    +BI.createWidget({
                                                                                                                                                    +  element: "#wrapper",
                                                                                                                                                    +  type: "bi.loader",
                                                                                                                                                    +  itemsCreator: function(options, populate) {
                                                                                                                                                    +    populate(BI.map(BI.map(BI.makeArray(3, null), function(idx, value){
                                                                                                                                                    +        return {
                                                                                                                                                    +             text: faker.name.findName(),
                                                                                                                                                    +        value: BI.UUID()
                                                                                                                                                    +      };
                                                                                                                                                    +    }), function(i, v) {
                                                                                                                                                    +        return BI.extend(v, {
                                                                                                                                                    +          type: "bi.single_select_item",
                                                                                                                                                    +          height: 25
                                                                                                                                                    +        })
                                                                                                                                                    +      }))
                                                                                                                                                    +  },
                                                                                                                                                    +  hasNext: function(option) {
                                                                                                                                                    +    return option.count < 10;
                                                                                                                                                    +  }
                                                                                                                                                    +});
                                                                                                                                                    +
                                                                                                                                                    +
                                                                                                                                                    + + +

                                                                                                                                                    API

                                                                                                                                                    +
                                                                                                                                                    基础属性
                                                                                                                                                    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                    参数说明类型可选值默认值
                                                                                                                                                    directioncombo弹出层位置stringtop,bottom,left,right,(top,left),(top,right),(bottom,left),(bottom,right)"top"
                                                                                                                                                    isDefaultInit是否默认初始化子数据booleantrue,falsetrue
                                                                                                                                                    logic布局逻辑object{dynamic:true,scrolly:true}
                                                                                                                                                    items子组件array[]
                                                                                                                                                    itemsCreator子组件构造器function
                                                                                                                                                    onLoaded加载中function
                                                                                                                                                    count是否显示总页数booleantrue,falseboolean
                                                                                                                                                    prev上一页booleantrue,falseboolean
                                                                                                                                                    next下一页booleantrue,falseboolean
                                                                                                                                                    hasPrev判断是否有上一页function
                                                                                                                                                    hasNext判断是否有下一页function
                                                                                                                                                    +

                                                                                                                                                    对外方法

                                                                                                                                                    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                    名称说明回调参数
                                                                                                                                                    hasNext判断是否有下一页
                                                                                                                                                    prependItems内部前插入items
                                                                                                                                                    addItems内部后插入items
                                                                                                                                                    populate刷新列表items
                                                                                                                                                    setNotSelectedValue设置未被选中的值value,可以是单个值也可以是个数组
                                                                                                                                                    setValue设置value值value,可以是单个值也可以是个数组
                                                                                                                                                    getNotSelectedValue获取没有被选中的值
                                                                                                                                                    getValue获取被选中的值
                                                                                                                                                    getAllButtons获取所有button
                                                                                                                                                    getAllLeaves获取所有的叶子节点
                                                                                                                                                    getSelectedButtons获取所有被选中的元素
                                                                                                                                                    getNotSelectedButtons获取所有未被选中的元素
                                                                                                                                                    getIndexByValue根据value值获取value在数组中的索引value
                                                                                                                                                    getNodeById根据id获取节点id
                                                                                                                                                    getNodeByValue根据value值获取节点value
                                                                                                                                                    empty清空组件
                                                                                                                                                    destroy销毁组件
                                                                                                                                                    +
                                                                                                                                                    + + +
                                                                                                                                                    + +
                                                                                                                                                    +
                                                                                                                                                    +
                                                                                                                                                    + +

                                                                                                                                                    results matching ""

                                                                                                                                                    +
                                                                                                                                                      + +
                                                                                                                                                      +
                                                                                                                                                      + +

                                                                                                                                                      No results matching ""

                                                                                                                                                      + +
                                                                                                                                                      +
                                                                                                                                                      +
                                                                                                                                                      + +
                                                                                                                                                      +
                                                                                                                                                      + +
                                                                                                                                                      + + + + +
                                                                                                                                                      + + +
                                                                                                                                                      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/_book/core/combination/loader.md b/docs/_book/core/combination/loader.md new file mode 100644 index 000000000..47a406105 --- /dev/null +++ b/docs/_book/core/combination/loader.md @@ -0,0 +1,83 @@ +# bi.loader + +## 加载控件,[BI.Widget](/core/widget.md) + +{% method %} +[source](https://jsfiddle.net/fineui/qgLtctnx/) + +{% common %} +```javascript + +BI.createWidget({ + element: "#wrapper", + type: "bi.loader", + itemsCreator: function(options, populate) { + populate(BI.map(BI.map(BI.makeArray(3, null), function(idx, value){ + return { + text: faker.name.findName(), + value: BI.UUID() + }; + }), function(i, v) { + return BI.extend(v, { + type: "bi.single_select_item", + height: 25 + }) + })) + }, + hasNext: function(option) { + return option.count < 10; + } +}); + + + + +``` + +{% endmethod %} + + +## API +##### 基础属性 +| 参数 | 说明 | 类型 | 可选值 | 默认值 +| :------ |:------------- | :-----| :----|:---- +| direction | combo弹出层位置 | string | top,bottom,left,right,(top,left),(top,right),(bottom,left),(bottom,right) | "top"| +| isDefaultInit | 是否默认初始化子数据 |boolean | true,false | true | +| logic | 布局逻辑 | object | —| {dynamic:true,scrolly:true} | +| items| 子组件 | array | — | []| +| itemsCreator | 子组件构造器 | function | — | — | +| onLoaded | 加载中 | function | — | — | +| count | 是否显示总页数 | boolean| true,false|boolean| +| prev | 上一页 | boolean | true,false | boolean | +| next | 下一页 | boolean | true,false | boolean | +| hasPrev | 判断是否有上一页 | function | — | — | +| hasNext | 判断是否有下一页 | function | — | — | + + + +## 对外方法 +| 名称 | 说明 | 回调参数 +| :------ |:------------- | :----- +| hasNext | 判断是否有下一页 | — | +| prependItems | 内部前插入 | items | +| addItems | 内部后插入 | items | +| populate | 刷新列表 | items | +| setNotSelectedValue| 设置未被选中的值 | value,可以是单个值也可以是个数组| +| setValue | 设置value值 | value,可以是单个值也可以是个数组 | +| getNotSelectedValue | 获取没有被选中的值 | —| +| getValue | 获取被选中的值 |—| +| getAllButtons | 获取所有button |—| +| getAllLeaves | 获取所有的叶子节点 | —| +| getSelectedButtons | 获取所有被选中的元素 | —| +| getNotSelectedButtons | 获取所有未被选中的元素 | —| +| getIndexByValue | 根据value值获取value在数组中的索引 | value| +| getNodeById | 根据id获取节点 | id | +| getNodeByValue | 根据value值获取节点 | value | +| empty| 清空组件|—| +| destroy| 销毁组件|—| + + + +--- + + diff --git a/docs/_book/core/combination/navigation.html b/docs/_book/core/combination/navigation.html new file mode 100644 index 000000000..940f2c045 --- /dev/null +++ b/docs/_book/core/combination/navigation.html @@ -0,0 +1,2690 @@ + + + + + + + navigation · GitBook + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                      +
                                                                                                                                                      + + + + + + + + +
                                                                                                                                                      + +
                                                                                                                                                      + +
                                                                                                                                                      + + + + + + + + +
                                                                                                                                                      +
                                                                                                                                                      + +
                                                                                                                                                      +
                                                                                                                                                      + +
                                                                                                                                                      + +

                                                                                                                                                      bi.navigation

                                                                                                                                                      +

                                                                                                                                                      导航栏控件,BI.Widget

                                                                                                                                                      +
                                                                                                                                                      
                                                                                                                                                      +
                                                                                                                                                      +BI.createWidget({
                                                                                                                                                      +  element: "#wrapper",
                                                                                                                                                      +  type: "bi.navigation",
                                                                                                                                                      +  tab: {
                                                                                                                                                      +    height: 30,
                                                                                                                                                      +    items: [{
                                                                                                                                                      +      once: false,
                                                                                                                                                      +      text: "后退",
                                                                                                                                                      +      value: -1
                                                                                                                                                      +    }, {
                                                                                                                                                      +      once: false,
                                                                                                                                                      +      text: "前进",
                                                                                                                                                      +      value: 1
                                                                                                                                                      +    }]
                                                                                                                                                      +  },
                                                                                                                                                      +  cardCreator: function(v) {
                                                                                                                                                      +    return BI.createWidget({
                                                                                                                                                      +      type: "bi.label",
                                                                                                                                                      +      cls: "layout-bg" + BI.random(1, 8),
                                                                                                                                                      +      text: "第" + v + "页"
                                                                                                                                                      +    })
                                                                                                                                                      +  }
                                                                                                                                                      +})
                                                                                                                                                      +
                                                                                                                                                      +
                                                                                                                                                      + +

                                                                                                                                                      API

                                                                                                                                                      +
                                                                                                                                                      基础属性
                                                                                                                                                      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                      参数说明类型可选值默认值
                                                                                                                                                      direction控件位置stringtop,bottom,left,right,custom"bottom"
                                                                                                                                                      single是否为单页booleantrue,falsetrue
                                                                                                                                                      defaultShowIndex是否默认显示booleantrue,falsetrue
                                                                                                                                                      tabtab页元素booleantrue,falsetrue
                                                                                                                                                      logic布局逻辑object{dynamic:true}
                                                                                                                                                      cardCreator面板构造器functionv
                                                                                                                                                      afterCardCreated面板构造之后function
                                                                                                                                                      afterCardShow面板显示之后function
                                                                                                                                                      +

                                                                                                                                                      对外方法

                                                                                                                                                      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                      名称说明回调参数
                                                                                                                                                      render渲染组件
                                                                                                                                                      mounted挂载组件
                                                                                                                                                      afterCardCreated创建卡导航页页之后v
                                                                                                                                                      afterCardShow导航页展示之后v
                                                                                                                                                      setSelect设置选中的indexv
                                                                                                                                                      getSelect获取选中的index
                                                                                                                                                      getSelectedCard获取选中的导航页
                                                                                                                                                      populate刷新列表items
                                                                                                                                                      setValue设置value值value
                                                                                                                                                      getValue获取被选中的值
                                                                                                                                                      empty清空组件
                                                                                                                                                      destroy销毁组件
                                                                                                                                                      +
                                                                                                                                                      + + +
                                                                                                                                                      + +
                                                                                                                                                      +
                                                                                                                                                      +
                                                                                                                                                      + +

                                                                                                                                                      results matching ""

                                                                                                                                                      +
                                                                                                                                                        + +
                                                                                                                                                        +
                                                                                                                                                        + +

                                                                                                                                                        No results matching ""

                                                                                                                                                        + +
                                                                                                                                                        +
                                                                                                                                                        +
                                                                                                                                                        + +
                                                                                                                                                        +
                                                                                                                                                        + +
                                                                                                                                                        + + + + +
                                                                                                                                                        + + +
                                                                                                                                                        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/_book/core/combination/navigation.md b/docs/_book/core/combination/navigation.md new file mode 100644 index 000000000..ca3e11e2b --- /dev/null +++ b/docs/_book/core/combination/navigation.md @@ -0,0 +1,78 @@ +# bi.navigation + +## 导航栏控件,[BI.Widget](/core/widget.md) + +{% method %} +[source](https://jsfiddle.net/fineui/ubsren48/) + +{% common %} +```javascript + + +BI.createWidget({ + element: "#wrapper", + type: "bi.navigation", + tab: { + height: 30, + items: [{ + once: false, + text: "后退", + value: -1 + }, { + once: false, + text: "前进", + value: 1 + }] + }, + cardCreator: function(v) { + return BI.createWidget({ + type: "bi.label", + cls: "layout-bg" + BI.random(1, 8), + text: "第" + v + "页" + }) + } +}) + + + + +``` + +{% endmethod %} + +## API +##### 基础属性 +| 参数 | 说明 | 类型 | 可选值 | 默认值 +| :------ |:------------- | :-----| :----|:---- +| direction | 控件位置 | string | top,bottom,left,right,custom | "bottom"| +| single | 是否为单页 | boolean | true,false | true | +| defaultShowIndex | 是否默认显示 |boolean | true,false | true | +| tab | tab页元素 | boolean | true,false | true | +| logic | 布局逻辑 | object | — | {dynamic:true} | +| cardCreator | 面板构造器 | function | — | v | +| afterCardCreated | 面板构造之后 | function | — | — | +| afterCardShow | 面板显示之后 | function | —| — | + + + +## 对外方法 +| 名称 | 说明 | 回调参数 +| :------ |:------------- | :----- +| render | 渲染组件 | — | +| mounted | 挂载组件 | —| +| afterCardCreated | 创建卡导航页页之后 | v | +| afterCardShow | 导航页展示之后 | v | +| setSelect | 设置选中的index | v | +| getSelect | 获取选中的index| —| +| getSelectedCard | 获取选中的导航页| —| +| populate | 刷新列表 | items | +| setValue | 设置value值 | value | +| getValue | 获取被选中的值 |—| +| empty| 清空组件|—| +| destroy| 销毁组件|—| + + + +--- + + diff --git a/docs/_book/core/combination/searcher.html b/docs/_book/core/combination/searcher.html new file mode 100644 index 000000000..607f383ca --- /dev/null +++ b/docs/_book/core/combination/searcher.html @@ -0,0 +1,2828 @@ + + + + + + + searcher · GitBook + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                        +
                                                                                                                                                        + + + + + + + + +
                                                                                                                                                        + +
                                                                                                                                                        + +
                                                                                                                                                        + + + + + + + + +
                                                                                                                                                        +
                                                                                                                                                        + +
                                                                                                                                                        +
                                                                                                                                                        + +
                                                                                                                                                        + +

                                                                                                                                                        bi.searcher

                                                                                                                                                        +

                                                                                                                                                        搜索逻辑控件,BI.Widget

                                                                                                                                                        +
                                                                                                                                                        
                                                                                                                                                        +BI.createWidget({
                                                                                                                                                        +    type: "bi.searcher",
                                                                                                                                                        +    element:"#wrapper",
                                                                                                                                                        +    adapter: {
                                                                                                                                                        +      getItems: function () {
                                                                                                                                                        +        return [{
                                                                                                                                                        +                   type: "bi.label",
                                                                                                                                                        +                   value: "张三"
                                                                                                                                                        +                 }]
                                                                                                                                                        +      }
                                                                                                                                                        +    },
                                                                                                                                                        +    popup: {
                                                                                                                                                        +               type: "bi.button_group",
                                                                                                                                                        +               cls: "bi-border",
                                                                                                                                                        +               items: items,
                                                                                                                                                        +               layouts: [{
                                                                                                                                                        +                 type: "bi.vertical"
                                                                                                                                                        +               }],
                                                                                                                                                        +    },
                                                                                                                                                        +    masker: false
                                                                                                                                                        +  })
                                                                                                                                                        +
                                                                                                                                                        +
                                                                                                                                                        + +

                                                                                                                                                        API

                                                                                                                                                        +
                                                                                                                                                        基础属性
                                                                                                                                                        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                        参数说明类型可选值默认值
                                                                                                                                                        hgap效果相当于容器左右padding值number0
                                                                                                                                                        vgap效果相当于容器上下padding值number0
                                                                                                                                                        lgap效果相当于容器left-padding值number0
                                                                                                                                                        rgap效果相当于容器right-padding值number0
                                                                                                                                                        tgap效果相当于容器top-padding值number0
                                                                                                                                                        bgap效果相当于容器bottom-padding值number0
                                                                                                                                                        chooseType选择类型constCHOOSE_TYPE_SINGLE
                                                                                                                                                        isDefaultInit是否默认初始化子节点booleantrue,falsefalse
                                                                                                                                                        isAutoSearch是否自动搜索booleantrue,falsetrue
                                                                                                                                                        isAutoSync是否自动同步数据, 即是否保持搜索面板和adapter面板状态值的统一booleantrue,falsetrue
                                                                                                                                                        onSearchisAutoSearch为false时启用function(op.callback)
                                                                                                                                                        el开启弹出层的元素object{type: "bi.search_editor"}
                                                                                                                                                        popup弹出层object{type: "bi.searcher_view"}
                                                                                                                                                        adapter弹出层显示的位置元素objectnull
                                                                                                                                                        maskermasker层object{offset: {}}
                                                                                                                                                        +

                                                                                                                                                        对外方法

                                                                                                                                                        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                        名称说明回调参数
                                                                                                                                                        populate刷新列表result, searchResult, keyword
                                                                                                                                                        setValue设置value值value
                                                                                                                                                        getValue获取被选中的值
                                                                                                                                                        empty清空组件
                                                                                                                                                        destroy销毁组件
                                                                                                                                                        adapter搜索列表位置
                                                                                                                                                        doSearch开始搜索
                                                                                                                                                        stopSearch停止搜索
                                                                                                                                                        isSearching是否正在搜索
                                                                                                                                                        isViewVisible组件是否可见
                                                                                                                                                        getView获取搜索列表栏
                                                                                                                                                        hasMatched是否匹配
                                                                                                                                                        adjustHeight调整高度
                                                                                                                                                        adjustView调整搜索列表栏
                                                                                                                                                        getKeyword获取搜索关键词
                                                                                                                                                        getKeywords获取搜索关键词数组
                                                                                                                                                        +

                                                                                                                                                        事件方法

                                                                                                                                                        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                        事件名称说明回调参数
                                                                                                                                                        EVENT_START开始搜索
                                                                                                                                                        EVENT_STOP停止搜索
                                                                                                                                                        EVENT_PAUSE暂停搜索
                                                                                                                                                        EVENT_SEARCHING搜索中
                                                                                                                                                        EVENT_AFTER_INIT初始化之后
                                                                                                                                                        +

                                                                                                                                                        事件

                                                                                                                                                        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                        事件说明
                                                                                                                                                        BI.Searcher.EVENT_CHANGE搜索结果面板发生改变触发
                                                                                                                                                        BI.Searcher.EVENT_START开始搜索触发
                                                                                                                                                        BI.Searcher.EVENT_STOP停止搜索触发(搜索框为空)
                                                                                                                                                        BI.Searcher.EVENT_PAUSE搜索暂停触发(搜索文本以空白字符结尾)
                                                                                                                                                        BI.Searcher.EVENT_SEARCHING正在搜索时触发
                                                                                                                                                        BI.Searcher.EVENT_AFTER_INIT搜索结果面板初始化完成后触发
                                                                                                                                                        +
                                                                                                                                                        + + +
                                                                                                                                                        + +
                                                                                                                                                        +
                                                                                                                                                        +
                                                                                                                                                        + +

                                                                                                                                                        results matching ""

                                                                                                                                                        +
                                                                                                                                                          + +
                                                                                                                                                          +
                                                                                                                                                          + +

                                                                                                                                                          No results matching ""

                                                                                                                                                          + +
                                                                                                                                                          +
                                                                                                                                                          +
                                                                                                                                                          + +
                                                                                                                                                          +
                                                                                                                                                          + +
                                                                                                                                                          + + + + +
                                                                                                                                                          + + +
                                                                                                                                                          + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/_book/core/combination/searcher.md b/docs/_book/core/combination/searcher.md new file mode 100644 index 000000000..a7e26cb46 --- /dev/null +++ b/docs/_book/core/combination/searcher.md @@ -0,0 +1,102 @@ +# bi.searcher + +## 搜索逻辑控件,[BI.Widget](/core/widget.md) + +{% method %} +[source](https://jsfiddle.net/fineui/k6s24et1/) + +{% common %} +```javascript + +BI.createWidget({ + type: "bi.searcher", + element:"#wrapper", + adapter: { + getItems: function () { + return [{ + type: "bi.label", + value: "张三" + }] + } + }, + popup: { + type: "bi.button_group", + cls: "bi-border", + items: items, + layouts: [{ + type: "bi.vertical" + }], + }, + masker: false + }) + + + +``` + +{% endmethod %} + +## API +##### 基础属性 +| 参数 | 说明 | 类型 | 可选值 | 默认值 +| :------ |:------------- | :-----| :----|:---- +| hgap | 效果相当于容器左右padding值 | number | —| 0 | +| vgap | 效果相当于容器上下padding值 | number | — | 0 | +| lgap | 效果相当于容器left-padding值 | number | —| 0 | +| rgap | 效果相当于容器right-padding值 | number | — | 0 | +| tgap | 效果相当于容器top-padding值 | number | —| 0 | +| bgap | 效果相当于容器bottom-padding值 | number | —| 0 | +| chooseType | 选择类型 | const | | CHOOSE_TYPE_SINGLE | +| isDefaultInit | 是否默认初始化子节点 |boolean | true,false | false | +| isAutoSearch | 是否自动搜索 |boolean | true,false | true | +| isAutoSync | 是否自动同步数据, 即是否保持搜索面板和adapter面板状态值的统一 |boolean | true,false | true | +| onSearch | isAutoSearch为false时启用 | function(op.callback) | — | —| +| el | 开启弹出层的元素 | object | — | {type: "bi.search_editor"}| +| popup | 弹出层 | object | — |{type: "bi.searcher_view"}| +| adapter | 弹出层显示的位置元素 | object | —| null| +| masker | masker层 | object | — | {offset: {}}| + +## 对外方法 +| 名称 | 说明 | 回调参数 +| :------ |:------------- | :----- +| populate | 刷新列表 | result, searchResult, keyword | +| setValue | 设置value值 | value | +| getValue | 获取被选中的值 |—| +| empty| 清空组件|—| +| destroy| 销毁组件|—| +| adapter | 搜索列表位置 | — | +| doSearch | 开始搜索 | — | +| stopSearch | 停止搜索 | —| +| isSearching | 是否正在搜索 | —| +| isViewVisible | 组件是否可见 | —| +| getView | 获取搜索列表栏 | —| +| hasMatched | 是否匹配 | —| +| adjustHeight | 调整高度 | —| +| adjustView| 调整搜索列表栏| —| +| getKeyword | 获取搜索关键词| —| +| getKeywords | 获取搜索关键词数组| —| + + +## 事件方法 + +| 事件名称| 说明| 回调参数 | +| :------ |:------------- | :----- +| EVENT_START | 开始搜索 | —| +| EVENT_STOP | 停止搜索 | —| +| EVENT_PAUSE | 暂停搜索 | —| +| EVENT_SEARCHING | 搜索中| —| +| EVENT_AFTER_INIT | 初始化之后 | —| + +## 事件 +| 事件 | 说明 | +| :------ |:------------- | +|BI.Searcher.EVENT_CHANGE | 搜索结果面板发生改变触发 | +|BI.Searcher.EVENT_START | 开始搜索触发 | +|BI.Searcher.EVENT_STOP | 停止搜索触发(搜索框为空) | +|BI.Searcher.EVENT_PAUSE | 搜索暂停触发(搜索文本以空白字符结尾) | +|BI.Searcher.EVENT_SEARCHING | 正在搜索时触发 | +|BI.Searcher.EVENT_AFTER_INIT | 搜索结果面板初始化完成后触发 | + +--- + + diff --git a/docs/_book/core/combination/switcher.html b/docs/_book/core/combination/switcher.html new file mode 100644 index 000000000..c9b8e94d5 --- /dev/null +++ b/docs/_book/core/combination/switcher.html @@ -0,0 +1,2755 @@ + + + + + + + switcher · GitBook + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                          +
                                                                                                                                                          + + + + + + + + +
                                                                                                                                                          + +
                                                                                                                                                          + +
                                                                                                                                                          + + + + + + + + +
                                                                                                                                                          +
                                                                                                                                                          + +
                                                                                                                                                          +
                                                                                                                                                          + +
                                                                                                                                                          + +

                                                                                                                                                          bi.switcher

                                                                                                                                                          +

                                                                                                                                                          切换显示或隐藏面板,BI.Widget

                                                                                                                                                          +
                                                                                                                                                          
                                                                                                                                                          +BI.createWidget({
                                                                                                                                                          +  element: "#wrapper",
                                                                                                                                                          +  type: "bi.switcher",
                                                                                                                                                          +  el: {
                                                                                                                                                          +    type: "bi.button",
                                                                                                                                                          +    height: 25,
                                                                                                                                                          +    text: "Switcher"
                                                                                                                                                          +  },
                                                                                                                                                          +  popup: {
                                                                                                                                                          +
                                                                                                                                                          +  },
                                                                                                                                                          +  adapter: { 
                                                                                                                                                          +
                                                                                                                                                          +  }
                                                                                                                                                          +})
                                                                                                                                                          +
                                                                                                                                                          +
                                                                                                                                                          + +

                                                                                                                                                          API

                                                                                                                                                          +
                                                                                                                                                          基础属性
                                                                                                                                                          + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                          参数说明类型可选值默认值
                                                                                                                                                          trigger下拉列表的弹出方式stringclick,hover"click"
                                                                                                                                                          toggle切换状态booleantrue,falsetrue
                                                                                                                                                          direction面板显示的位置stringBI.Direction.Top
                                                                                                                                                          el自定义下拉框triggerobject{ }
                                                                                                                                                          popup弹出层object{ }
                                                                                                                                                          adapter弹出层的位置objectnull
                                                                                                                                                          maskermasker层obejct{ }
                                                                                                                                                          switcherClass切换类string"bi-switcher-popup"
                                                                                                                                                          hoverClasshover类string"bi-switcher-hover"
                                                                                                                                                          +

                                                                                                                                                          对外方法

                                                                                                                                                          + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                          名称说明回调参数
                                                                                                                                                          setValue设置value值value
                                                                                                                                                          getValue获取被选中的值
                                                                                                                                                          empty清空组件
                                                                                                                                                          destroy销毁组件
                                                                                                                                                          populate刷新列表items
                                                                                                                                                          isViewVisible弹窗层是否可见
                                                                                                                                                          showView显示弹出层
                                                                                                                                                          hideView隐藏弹出层
                                                                                                                                                          getView获取弹出层
                                                                                                                                                          getAllLeaves获取所有的叶子节点
                                                                                                                                                          getNodeById根据id获取节点id
                                                                                                                                                          getNodeByValue根据value值获取节点value
                                                                                                                                                          isExpanded节点是否展开
                                                                                                                                                          setAdapter设置弹出层显示的位置元素adapter
                                                                                                                                                          adjustView调整弹出层显示的位置元素
                                                                                                                                                          +

                                                                                                                                                          事件方法

                                                                                                                                                          + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                          事件名称说明回调参数
                                                                                                                                                          EVENT_EXPAND面板展开
                                                                                                                                                          EVENT_COLLAPSE面板收起
                                                                                                                                                          EVENT_TRIGGER_CHANGE面板切换
                                                                                                                                                          EVENT_AFTER_INIT初始化之后
                                                                                                                                                          EVENT_BEFORE_POPUPVIEW面板显示之前
                                                                                                                                                          EVENT_AFTER_POPUPVIEW面板显示之后
                                                                                                                                                          EVENT_BEFORE_HIDEVIEW面板隐藏之前
                                                                                                                                                          EVENT_AFTER_HIDEVIEW面板隐藏之后
                                                                                                                                                          +
                                                                                                                                                          + + +
                                                                                                                                                          + +
                                                                                                                                                          +
                                                                                                                                                          +
                                                                                                                                                          + +

                                                                                                                                                          results matching ""

                                                                                                                                                          +
                                                                                                                                                            + +
                                                                                                                                                            +
                                                                                                                                                            + +

                                                                                                                                                            No results matching ""

                                                                                                                                                            + +
                                                                                                                                                            +
                                                                                                                                                            +
                                                                                                                                                            + +
                                                                                                                                                            +
                                                                                                                                                            + +
                                                                                                                                                            + + + + +
                                                                                                                                                            + + +
                                                                                                                                                            + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/_book/core/combination/switcher.md b/docs/_book/core/combination/switcher.md new file mode 100644 index 000000000..b7354fdf9 --- /dev/null +++ b/docs/_book/core/combination/switcher.md @@ -0,0 +1,83 @@ +# bi.switcher + +## 切换显示或隐藏面板,[BI.Widget](/core/widget.md) + +{% method %} +[source](https://jsfiddle.net/fineui/4sj60ap0/) + +{% common %} +```javascript + +BI.createWidget({ + element: "#wrapper", + type: "bi.switcher", + el: { + type: "bi.button", + height: 25, + text: "Switcher" + }, + popup: { + + }, + adapter: { + + } +}) + + + + +``` + +{% endmethod %} + +## API +##### 基础属性 +| 参数 | 说明 | 类型 | 可选值 | 默认值 +| :------ |:------------- | :-----| :----|:---- +| trigger | 下拉列表的弹出方式 | string | click,hover | "click" | +| toggle | 切换状态 | boolean | true,false | true | +| direction | 面板显示的位置 | string | — | BI.Direction.Top | +| el | 自定义下拉框trigger | object | — | { }| +| popup | 弹出层 | object | — |{ }| +| adapter | 弹出层的位置 | object | — | null| +| masker | masker层 | obejct | — | { }| +| switcherClass | 切换类 | string| —| "bi-switcher-popup" | +| hoverClass | hover类 | string | — | "bi-switcher-hover" | + +## 对外方法 +| 名称 | 说明 | 回调参数 +| :------ |:------------- | :----- +| setValue | 设置value值 | value | +| getValue | 获取被选中的值 |—| +| empty| 清空组件|—| +| destroy| 销毁组件|—| +| populate | 刷新列表 | items | +| isViewVisible | 弹窗层是否可见 | —| +| showView | 显示弹出层 | —| +| hideView | 隐藏弹出层|—| +| getView | 获取弹出层|—| +| getAllLeaves | 获取所有的叶子节点 | —| +| getNodeById | 根据id获取节点 | id | +| getNodeByValue | 根据value值获取节点 | value | +| isExpanded | 节点是否展开 |— | +| setAdapter | 设置弹出层显示的位置元素|adapter| +| adjustView| 调整弹出层显示的位置元素 |—| + +## 事件方法 + +| 事件名称| 说明| 回调参数 | +| :------ |:------------- | :----- +| EVENT_EXPAND | 面板展开 | —| +| EVENT_COLLAPSE | 面板收起 | —| +| EVENT_TRIGGER_CHANGE | 面板切换 | —| +| EVENT_AFTER_INIT | 初始化之后 | —| +| EVENT_BEFORE_POPUPVIEW | 面板显示之前| —| +| EVENT_AFTER_POPUPVIEW | 面板显示之后| —| +| EVENT_BEFORE_HIDEVIEW | 面板隐藏之前| —| +| EVENT_AFTER_HIDEVIEW | 面板隐藏之后 | —| + + +--- + + diff --git a/docs/_book/core/combination/tab.html b/docs/_book/core/combination/tab.html new file mode 100644 index 000000000..7a97220bf --- /dev/null +++ b/docs/_book/core/combination/tab.html @@ -0,0 +1,2683 @@ + + + + + + + tab · GitBook + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                            +
                                                                                                                                                            + + + + + + + + +
                                                                                                                                                            + +
                                                                                                                                                            + +
                                                                                                                                                            + + + + + + + + +
                                                                                                                                                            +
                                                                                                                                                            + +
                                                                                                                                                            +
                                                                                                                                                            + +
                                                                                                                                                            + +

                                                                                                                                                            bi.switcher

                                                                                                                                                            +

                                                                                                                                                            切换显示或隐藏面板,BI.Widget

                                                                                                                                                            +
                                                                                                                                                            
                                                                                                                                                            +BI.createWidget({
                                                                                                                                                            +  element: "#wrapper",
                                                                                                                                                            +  type: "bi.tab",
                                                                                                                                                            +  tab: {
                                                                                                                                                            +    type: "bi.button_group",
                                                                                                                                                            +    height: 30,
                                                                                                                                                            +    items: [{
                                                                                                                                                            +      text: "Tab1",
                                                                                                                                                            +      value: 1,
                                                                                                                                                            +      width: 50
                                                                                                                                                            +    }, {
                                                                                                                                                            +      text: "Tab2",
                                                                                                                                                            +      value: 2,
                                                                                                                                                            +      width: 50
                                                                                                                                                            +    }]
                                                                                                                                                            +  },
                                                                                                                                                            +  cardCreator: function(v) {
                                                                                                                                                            +    switch (v) {
                                                                                                                                                            +      case 1:
                                                                                                                                                            +        return BI.createWidget({
                                                                                                                                                            +          type: "bi.label",
                                                                                                                                                            +          cls: "bi-card",
                                                                                                                                                            +          text: "面板1"
                                                                                                                                                            +        })
                                                                                                                                                            +      case 2:
                                                                                                                                                            +        return BI.createWidget({
                                                                                                                                                            +          type: "bi.label",
                                                                                                                                                            +          cls: "bi-card",
                                                                                                                                                            +          text: "面板2"
                                                                                                                                                            +        })
                                                                                                                                                            +    }
                                                                                                                                                            +  }
                                                                                                                                                            +})
                                                                                                                                                            +
                                                                                                                                                            +
                                                                                                                                                            + +

                                                                                                                                                            API

                                                                                                                                                            +
                                                                                                                                                            基础属性
                                                                                                                                                            + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                            参数说明类型可选值默认值
                                                                                                                                                            direction控件位置stringtop,bottom,left,right,custom"bottom"
                                                                                                                                                            single是否为单页booleantrue,falsefalse
                                                                                                                                                            defaultShowIndex是否默认显示tab页booleantrue,falsefalse
                                                                                                                                                            tabtab标签页object{ }
                                                                                                                                                            logic布局逻辑object{dynamic:false}
                                                                                                                                                            cardCreator面板构造器functionfunction (v) {return BI.createWidget();}
                                                                                                                                                            +

                                                                                                                                                            对外方法

                                                                                                                                                            + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                            名称说明回调参数
                                                                                                                                                            render渲染组件
                                                                                                                                                            mounted挂载组件
                                                                                                                                                            removeTab移除tab面板页cardname
                                                                                                                                                            getTab获取tab面板页v
                                                                                                                                                            setSelect设置选中的indexv
                                                                                                                                                            getSelect获取选中的index
                                                                                                                                                            getSelectedTab获取选中的tab面板页
                                                                                                                                                            populate刷新列表items
                                                                                                                                                            setValue设置value值value
                                                                                                                                                            getValue获取被选中的值
                                                                                                                                                            empty清空组件
                                                                                                                                                            destroy销毁组件
                                                                                                                                                            +
                                                                                                                                                            + + +
                                                                                                                                                            + +
                                                                                                                                                            +
                                                                                                                                                            +
                                                                                                                                                            + +

                                                                                                                                                            results matching ""

                                                                                                                                                            +
                                                                                                                                                              + +
                                                                                                                                                              +
                                                                                                                                                              + +

                                                                                                                                                              No results matching ""

                                                                                                                                                              + +
                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              + +
                                                                                                                                                              +
                                                                                                                                                              + +
                                                                                                                                                              + + + + +
                                                                                                                                                              + + +
                                                                                                                                                              + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/_book/core/combination/tab.md b/docs/_book/core/combination/tab.md new file mode 100644 index 000000000..9023bbf44 --- /dev/null +++ b/docs/_book/core/combination/tab.md @@ -0,0 +1,84 @@ +# bi.switcher + +## 切换显示或隐藏面板,[BI.Widget](/core/widget.md) + +{% method %} +[source](https://jsfiddle.net/fineui/pdo5s8pq/) + +{% common %} +```javascript + +BI.createWidget({ + element: "#wrapper", + type: "bi.tab", + tab: { + type: "bi.button_group", + height: 30, + items: [{ + text: "Tab1", + value: 1, + width: 50 + }, { + text: "Tab2", + value: 2, + width: 50 + }] + }, + cardCreator: function(v) { + switch (v) { + case 1: + return BI.createWidget({ + type: "bi.label", + cls: "bi-card", + text: "面板1" + }) + case 2: + return BI.createWidget({ + type: "bi.label", + cls: "bi-card", + text: "面板2" + }) + } + } +}) + + + + +``` + +{% endmethod %} + +## API +##### 基础属性 +| 参数 | 说明 | 类型 | 可选值 | 默认值 +| :------ |:------------- | :-----| :----|:---- +| direction | 控件位置 | string | top,bottom,left,right,custom | "bottom"| +| single | 是否为单页 | boolean | true,false | false | +| defaultShowIndex | 是否默认显示tab页 | boolean | true,false | false | +| tab | tab标签页 | object | — | { } | +| logic | 布局逻辑 | object | — | {dynamic:false} | +| cardCreator | 面板构造器| function | — | function (v) {return BI.createWidget();} | + +## 对外方法 +| 名称 | 说明 | 回调参数 +| :------ |:------------- | :----- +| render | 渲染组件 | — | +| mounted | 挂载组件 | —| +| removeTab | 移除tab面板页 | cardname | +| getTab | 获取tab面板页 | v | +| setSelect | 设置选中的index | v | +| getSelect | 获取选中的index| —| +| getSelectedTab | 获取选中的tab面板页 | —| +| populate | 刷新列表 | items | +| setValue | 设置value值 | value | +| getValue | 获取被选中的值 |—| +| empty| 清空组件|—| +| destroy| 销毁组件|—| + + + + +--- + + diff --git a/docs/_book/core/layer/layer_float_box.html b/docs/_book/core/layer/layer_float_box.html new file mode 100644 index 000000000..83e1e72ab --- /dev/null +++ b/docs/_book/core/layer/layer_float_box.html @@ -0,0 +1,2632 @@ + + + + + + + float_box · GitBook + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                              +
                                                                                                                                                              + + + + + + + + +
                                                                                                                                                              + +
                                                                                                                                                              + +
                                                                                                                                                              + + + + + + + + +
                                                                                                                                                              +
                                                                                                                                                              + +
                                                                                                                                                              +
                                                                                                                                                              + +
                                                                                                                                                              + +

                                                                                                                                                              bi.float_box

                                                                                                                                                              +

                                                                                                                                                              floatBox弹出层,BI.Widget

                                                                                                                                                              +
                                                                                                                                                              
                                                                                                                                                              +var id = BI.UUID();
                                                                                                                                                              +
                                                                                                                                                              +BI.createWidget({
                                                                                                                                                              +  element: "#wrapper",
                                                                                                                                                              +  type: "bi.text_button",
                                                                                                                                                              +  text: "点击弹出FloatBox",
                                                                                                                                                              +  width: 200,
                                                                                                                                                              +  height: 80,
                                                                                                                                                              +  handler: function() {
                                                                                                                                                              +    BI.Popovers.remove(id);
                                                                                                                                                              +    BI.Popovers.create(id, new BI.BarPopoverSection()).open(id);
                                                                                                                                                              +  }
                                                                                                                                                              +})
                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              + +

                                                                                                                                                              API

                                                                                                                                                              +
                                                                                                                                                              基础属性
                                                                                                                                                              + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                              参数说明类型可选值默认值
                                                                                                                                                              width弹出层宽度number600
                                                                                                                                                              height弹出层高度number500
                                                                                                                                                              +

                                                                                                                                                              对外方法

                                                                                                                                                              + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                              名称说明回调参数
                                                                                                                                                              populate刷新列表sectionProvider
                                                                                                                                                              destroyed销毁组件
                                                                                                                                                              show显示
                                                                                                                                                              hide隐藏
                                                                                                                                                              open打开弹出层
                                                                                                                                                              close关闭弹出层
                                                                                                                                                              setZindex设置z-indexz-index
                                                                                                                                                              +

                                                                                                                                                              事件方法

                                                                                                                                                              + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                              事件名称说明回调参数
                                                                                                                                                              EVENT_FLOAT_BOX_CLOSED关闭弹出层
                                                                                                                                                              EVENT_FLOAT_BOX_CLOSED打开弹出层
                                                                                                                                                              +
                                                                                                                                                              + + +
                                                                                                                                                              + +
                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              + +

                                                                                                                                                              results matching ""

                                                                                                                                                              +
                                                                                                                                                                + +
                                                                                                                                                                +
                                                                                                                                                                + +

                                                                                                                                                                No results matching ""

                                                                                                                                                                + +
                                                                                                                                                                +
                                                                                                                                                                +
                                                                                                                                                                + +
                                                                                                                                                                +
                                                                                                                                                                + +
                                                                                                                                                                + + + + +
                                                                                                                                                                + + +
                                                                                                                                                                + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/_book/core/layer/layer_float_box.md b/docs/_book/core/layer/layer_float_box.md new file mode 100644 index 000000000..8f2c8178f --- /dev/null +++ b/docs/_book/core/layer/layer_float_box.md @@ -0,0 +1,63 @@ +# bi.float_box + +## floatBox弹出层,[BI.Widget](/core/widget.md) + +{% method %} +[source](https://jsfiddle.net/fineui/72gp1n0p/) + +{% common %} +```javascript + +var id = BI.UUID(); + +BI.createWidget({ + element: "#wrapper", + type: "bi.text_button", + text: "点击弹出FloatBox", + width: 200, + height: 80, + handler: function() { + BI.Popovers.remove(id); + BI.Popovers.create(id, new BI.BarPopoverSection()).open(id); + } +}) + + + + +``` + +{% endmethod %} + +## API +##### 基础属性 +| 参数 | 说明 | 类型 | 可选值 | 默认值 +| :------ |:------------- | :-----| :----|:---- +| width | 弹出层宽度 | number | — | 600 | +| height | 弹出层高度 | number | — | 500 | + + +## 对外方法 +| 名称 | 说明 | 回调参数 +| :------ |:------------- | :----- +| populate | 刷新列表 | sectionProvider | +| destroyed| 销毁组件|—| +| show | 显示 | —| +| hide | 隐藏 | —| +| open | 打开弹出层 | —| +| close| 关闭弹出层 | —| +| setZindex | 设置z-index| z-index | + + +## 事件方法 + +| 事件名称| 说明| 回调参数 | +| :------ |:------------- | :----- +| EVENT_FLOAT_BOX_CLOSED | 关闭弹出层 | —| +| EVENT_FLOAT_BOX_CLOSED | 打开弹出层 | —| + + + +--- + + diff --git a/docs/_book/core/layer/layer_popup.html b/docs/_book/core/layer/layer_popup.html new file mode 100644 index 000000000..ee1a44290 --- /dev/null +++ b/docs/_book/core/layer/layer_popup.html @@ -0,0 +1,2728 @@ + + + + + + + popup · GitBook + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                +
                                                                                                                                                                + + + + + + + + +
                                                                                                                                                                + +
                                                                                                                                                                + +
                                                                                                                                                                + + + + + + + + +
                                                                                                                                                                +
                                                                                                                                                                + +
                                                                                                                                                                +
                                                                                                                                                                + +
                                                                                                                                                                + +

                                                                                                                                                                bi.popup_view

                                                                                                                                                                +

                                                                                                                                                                下拉框弹出层, zIndex在1000w,BI.Widget

                                                                                                                                                                +
                                                                                                                                                                
                                                                                                                                                                +BI.createWidget({
                                                                                                                                                                +  element: "#wrapper",
                                                                                                                                                                +  type: "bi.popup_view",
                                                                                                                                                                +  el: {
                                                                                                                                                                +    type: "bi.button_group",
                                                                                                                                                                +    items: [{
                                                                                                                                                                +      text: "aaa",
                                                                                                                                                                +      value: "aaa"
                                                                                                                                                                +    }, {
                                                                                                                                                                +      text: "bbb",
                                                                                                                                                                +      value: "bbb"
                                                                                                                                                                +    }],
                                                                                                                                                                +    layouts: [{
                                                                                                                                                                +      type: "bi.vertical"
                                                                                                                                                                +    }]
                                                                                                                                                                +  }
                                                                                                                                                                +})
                                                                                                                                                                +
                                                                                                                                                                +
                                                                                                                                                                + +

                                                                                                                                                                API

                                                                                                                                                                +
                                                                                                                                                                基础属性
                                                                                                                                                                + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                参数说明类型可选值默认值
                                                                                                                                                                maxWidth弹出层最大宽度number/string"auto"
                                                                                                                                                                minWidth弹出层最小宽度number100
                                                                                                                                                                maxHeight弹出层最大高度number/string
                                                                                                                                                                minHeight弹出层最小高度number25
                                                                                                                                                                hgap效果相当于容器左右padding值number0
                                                                                                                                                                vgap效果相当于容器上下padding值number0
                                                                                                                                                                lgap效果相当于容器left-padding值number0
                                                                                                                                                                rgap效果相当于容器right-padding值number0
                                                                                                                                                                tgap效果相当于容器top-padding值number0
                                                                                                                                                                bgap效果相当于容器bottom-padding值number0
                                                                                                                                                                direction工具栏的方向const参考button_groupBI.Direction.Top
                                                                                                                                                                stopEvent是否停止mousedown、mouseup事件booleantrue,falsefalse
                                                                                                                                                                stopPropagation是否停止mousedown、mouseup向上冒泡booleantrue,falsefalse
                                                                                                                                                                tabs导航栏array[]
                                                                                                                                                                logic布局逻辑object{dynamic:true}
                                                                                                                                                                tools自定义工具栏booleantrue,falsefalse
                                                                                                                                                                buttonstoolbar栏array[]
                                                                                                                                                                el子组件object{ type: "bi.button_group",items: [], chooseType: 0,behaviors: {},layouts: [{type: "bi.vertical"}]}
                                                                                                                                                                +

                                                                                                                                                                对外方法

                                                                                                                                                                + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                名称说明回调参数
                                                                                                                                                                populate刷新列表items
                                                                                                                                                                resetWidth重置宽度width
                                                                                                                                                                resetHeight重置高度height
                                                                                                                                                                setValue设置value 值value
                                                                                                                                                                getValue获取value值
                                                                                                                                                                setZindex设置z-indexz-index
                                                                                                                                                                getView获取弹出层
                                                                                                                                                                +
                                                                                                                                                                + + +
                                                                                                                                                                + +
                                                                                                                                                                +
                                                                                                                                                                +
                                                                                                                                                                + +

                                                                                                                                                                results matching ""

                                                                                                                                                                +
                                                                                                                                                                  + +
                                                                                                                                                                  +
                                                                                                                                                                  + +

                                                                                                                                                                  No results matching ""

                                                                                                                                                                  + +
                                                                                                                                                                  +
                                                                                                                                                                  +
                                                                                                                                                                  + +
                                                                                                                                                                  +
                                                                                                                                                                  + +
                                                                                                                                                                  + + + + +
                                                                                                                                                                  + + +
                                                                                                                                                                  + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/_book/core/layer/layer_popup.md b/docs/_book/core/layer/layer_popup.md new file mode 100644 index 000000000..365009083 --- /dev/null +++ b/docs/_book/core/layer/layer_popup.md @@ -0,0 +1,76 @@ +# bi.popup_view + +## 下拉框弹出层, zIndex在1000w,[BI.Widget](/core/widget.md) + +{% method %} +[source](https://jsfiddle.net/fineui/x95pg143/) + +{% common %} +```javascript + +BI.createWidget({ + element: "#wrapper", + type: "bi.popup_view", + el: { + type: "bi.button_group", + items: [{ + text: "aaa", + value: "aaa" + }, { + text: "bbb", + value: "bbb" + }], + layouts: [{ + type: "bi.vertical" + }] + } +}) + + + +``` + +{% endmethod %} + +## API +##### 基础属性 +| 参数 | 说明 | 类型 | 可选值 | 默认值 +| :------ |:------------- | :-----| :----|:---- +| maxWidth | 弹出层最大宽度 | number/string | — | "auto" | +| minWidth | 弹出层最小宽度 | number | — | 100 | +| maxHeight | 弹出层最大高度 | number/string | — | — | +| minHeight | 弹出层最小高度 | number | — | 25 | +| hgap | 效果相当于容器左右padding值 | number | — | 0 | +| vgap | 效果相当于容器上下padding值 | number | —| 0 | +| lgap | 效果相当于容器left-padding值 | number | — | 0 | +| rgap | 效果相当于容器right-padding值 | number | —| 0 | +| tgap | 效果相当于容器top-padding值 | number | —| 0 | +| bgap | 效果相当于容器bottom-padding值 | number | — | 0 | +| direction| 工具栏的方向| const | 参考button_group | BI.Direction.Top | +| stopEvent | 是否停止mousedown、mouseup事件 | boolean | true,false | false | +| stopPropagation | 是否停止mousedown、mouseup向上冒泡 | boolean | true,false | false | +| tabs | 导航栏 | array | — | [] | +| logic | 布局逻辑| object | — | {dynamic:true} | +| tools | 自定义工具栏 |boolean | true,false | false | +| buttons | toolbar栏 | array | — | [] | +| el | 子组件 | object | — |{ type: "bi.button_group",items: [], chooseType: 0,behaviors: {},layouts: [{type: "bi.vertical"}]} | + + +## 对外方法 +| 名称 | 说明 | 回调参数 +| :------ |:------------- | :----- +| populate | 刷新列表 | items | +| resetWidth | 重置宽度 | width | +| resetHeight | 重置高度 | height| +| setValue | 设置value 值 | value | +| getValue| 获取value值 | —| +| setZindex | 设置z-index| z-index | +| getView | 获取弹出层 | —| + + + + + +--- + + diff --git a/docs/_book/core/layer/layer_searcher.html b/docs/_book/core/layer/layer_searcher.html new file mode 100644 index 000000000..aad7d4b5f --- /dev/null +++ b/docs/_book/core/layer/layer_searcher.html @@ -0,0 +1,2617 @@ + + + + + + + searcher · GitBook + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                  +
                                                                                                                                                                  + + + + + + + + +
                                                                                                                                                                  + +
                                                                                                                                                                  + +
                                                                                                                                                                  + + + + + + + + +
                                                                                                                                                                  +
                                                                                                                                                                  + +
                                                                                                                                                                  +
                                                                                                                                                                  + +
                                                                                                                                                                  + +

                                                                                                                                                                  bi.searcher_view

                                                                                                                                                                  +

                                                                                                                                                                  搜索面板, 基类BI.Widget

                                                                                                                                                                  +
                                                                                                                                                                  
                                                                                                                                                                  +var searcher = BI.createWidget({
                                                                                                                                                                  +  element: "#wrapper",
                                                                                                                                                                  +  type: "bi.searcher_view",
                                                                                                                                                                  +});
                                                                                                                                                                  +searcher.populate([{
                                                                                                                                                                  +    text: "aba",
                                                                                                                                                                  +  value: "aba"
                                                                                                                                                                  +},{
                                                                                                                                                                  +    text: "acc",
                                                                                                                                                                  +  value: "acc"
                                                                                                                                                                  +}], [{
                                                                                                                                                                  +    text: "a",
                                                                                                                                                                  +  value: "a"
                                                                                                                                                                  +}], "a");
                                                                                                                                                                  +
                                                                                                                                                                  +
                                                                                                                                                                  + +

                                                                                                                                                                  API

                                                                                                                                                                  +
                                                                                                                                                                  基础属性
                                                                                                                                                                  + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                  参数说明类型可选值默认值
                                                                                                                                                                  tipTexttitle文本stringBI.i18nText("BI-No_Select")
                                                                                                                                                                  chooseType选择类型const参考button_groupBI.Selection.Single
                                                                                                                                                                  matcher完全匹配的构造器object{type: "bi.button_group",behaviors: { redmark: function () { return true;} },items: [], layouts: [{ type: "bi.vertical"}]}
                                                                                                                                                                  searcher搜索到的元素object{type: "bi.button_group",behaviors: {redmark: function () {return true;}}, items: [], layouts: [{ type: "bi.vertical" }]}
                                                                                                                                                                  +

                                                                                                                                                                  对外方法

                                                                                                                                                                  + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                  名称说明回调参数
                                                                                                                                                                  populate刷新列表searchResult, matchResult, keyword
                                                                                                                                                                  setValue设置value 值value
                                                                                                                                                                  getValue获取value值
                                                                                                                                                                  empty清空组件
                                                                                                                                                                  hasMatched是否有匹配的元素
                                                                                                                                                                  +
                                                                                                                                                                  + + +
                                                                                                                                                                  + +
                                                                                                                                                                  +
                                                                                                                                                                  +
                                                                                                                                                                  + +

                                                                                                                                                                  results matching ""

                                                                                                                                                                  +
                                                                                                                                                                    + +
                                                                                                                                                                    +
                                                                                                                                                                    + +

                                                                                                                                                                    No results matching ""

                                                                                                                                                                    + +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    + +
                                                                                                                                                                    +
                                                                                                                                                                    + +
                                                                                                                                                                    + + + + +
                                                                                                                                                                    + + +
                                                                                                                                                                    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/_book/core/layer/layer_searcher.md b/docs/_book/core/layer/layer_searcher.md new file mode 100644 index 000000000..64c0898b2 --- /dev/null +++ b/docs/_book/core/layer/layer_searcher.md @@ -0,0 +1,54 @@ +# bi.searcher_view + +## 搜索面板, 基类[BI.Widget](/core/widget.md) + +{% method %} +[source](https://jsfiddle.net/fineui/qkfns6wm/) + +{% common %} +```javascript + +var searcher = BI.createWidget({ + element: "#wrapper", + type: "bi.searcher_view", +}); +searcher.populate([{ + text: "aba", + value: "aba" +},{ + text: "acc", + value: "acc" +}], [{ + text: "a", + value: "a" +}], "a"); + + + +``` + +{% endmethod %} + +## API +##### 基础属性 +| 参数 | 说明 | 类型 | 可选值 | 默认值 +| :------ |:------------- | :-----| :----|:---- +| tipText | title文本 | string | — | BI.i18nText("BI-No_Select") | +| chooseType | 选择类型 | const | 参考button_group | BI.Selection.Single | +| matcher | 完全匹配的构造器 | object | — | {type: "bi.button_group",behaviors: { redmark: function () { return true;} },items: [], layouts: [{ type: "bi.vertical"}]} | +| searcher | 搜索到的元素 | object| — | {type: "bi.button_group",behaviors: {redmark: function () {return true;}}, items: [], layouts: [{ type: "bi.vertical" }]}| + +## 对外方法 +| 名称 | 说明 | 回调参数 +| :------ |:------------- | :----- +| populate | 刷新列表 | searchResult, matchResult, keyword | +| setValue | 设置value 值 | value | +| getValue| 获取value值 | —| +| empty | 清空组件 | —| +| hasMatched | 是否有匹配的元素 | —| + + + +--- + + diff --git a/docs/_book/core/layout/border.html b/docs/_book/core/layout/border.html new file mode 100644 index 000000000..14eb23043 --- /dev/null +++ b/docs/_book/core/layout/border.html @@ -0,0 +1,2576 @@ + + + + + + + border · GitBook + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                    +
                                                                                                                                                                    + + + + + + + + +
                                                                                                                                                                    + +
                                                                                                                                                                    + +
                                                                                                                                                                    + + + + + + + + +
                                                                                                                                                                    +
                                                                                                                                                                    + +
                                                                                                                                                                    +
                                                                                                                                                                    + +
                                                                                                                                                                    + +

                                                                                                                                                                    bi.border

                                                                                                                                                                    +

                                                                                                                                                                    上下的高度固定/左右的宽度固定,中间的高度/宽度自适应

                                                                                                                                                                    +
                                                                                                                                                                    BI.createWidget({
                                                                                                                                                                    +    type: 'bi.border',
                                                                                                                                                                    +    element: "#wrapper",
                                                                                                                                                                    +    items: {
                                                                                                                                                                    +        north: {
                                                                                                                                                                    +            el: {type: "bi.label"},
                                                                                                                                                                    +            height: 30,
                                                                                                                                                                    +            top: 20,
                                                                                                                                                                    +            left: 20,
                                                                                                                                                                    +            right: 20
                                                                                                                                                                    +        },
                                                                                                                                                                    +        south: {
                                                                                                                                                                    +            el: {type: "bi.label"},
                                                                                                                                                                    +            height: 50,
                                                                                                                                                                    +            bottom: 20,
                                                                                                                                                                    +            left: 20,
                                                                                                                                                                    +            right: 20
                                                                                                                                                                    +        },
                                                                                                                                                                    +        west: {
                                                                                                                                                                    +            el: {type: "bi.label"},
                                                                                                                                                                    +            width: 200,
                                                                                                                                                                    +            left: 20
                                                                                                                                                                    +        },
                                                                                                                                                                    +        east: {
                                                                                                                                                                    +            el: {type: "bi.label"},
                                                                                                                                                                    +            width: 300,
                                                                                                                                                                    +            right: 20
                                                                                                                                                                    +        },
                                                                                                                                                                    +        center: {el: {type: "bi.label"}}
                                                                                                                                                                    +    }
                                                                                                                                                                    +});
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    + + +

                                                                                                                                                                    API

                                                                                                                                                                    +
                                                                                                                                                                    基础属性
                                                                                                                                                                    + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                    参数说明类型可选值默认值
                                                                                                                                                                    items子控件对象objectnorth,east,west,south,center[ ]
                                                                                                                                                                    +
                                                                                                                                                                    + + +
                                                                                                                                                                    + +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    + +

                                                                                                                                                                    results matching ""

                                                                                                                                                                    +
                                                                                                                                                                      + +
                                                                                                                                                                      +
                                                                                                                                                                      + +

                                                                                                                                                                      No results matching ""

                                                                                                                                                                      + +
                                                                                                                                                                      +
                                                                                                                                                                      +
                                                                                                                                                                      + +
                                                                                                                                                                      +
                                                                                                                                                                      + +
                                                                                                                                                                      + + + + +
                                                                                                                                                                      + + +
                                                                                                                                                                      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/_book/core/layout/border.md b/docs/_book/core/layout/border.md new file mode 100644 index 000000000..73ed1973a --- /dev/null +++ b/docs/_book/core/layout/border.md @@ -0,0 +1,54 @@ +# bi.border + +#### 上下的高度固定/左右的宽度固定,中间的高度/宽度自适应 + +{% method %} +[source](https://jsfiddle.net/fineui/qtdsdegp/) + +{% common %} +```javascript +BI.createWidget({ + type: 'bi.border', + element: "#wrapper", + items: { + north: { + el: {type: "bi.label"}, + height: 30, + top: 20, + left: 20, + right: 20 + }, + south: { + el: {type: "bi.label"}, + height: 50, + bottom: 20, + left: 20, + right: 20 + }, + west: { + el: {type: "bi.label"}, + width: 200, + left: 20 + }, + east: { + el: {type: "bi.label"}, + width: 300, + right: 20 + }, + center: {el: {type: "bi.label"}} + } +}); + +``` + +{% endmethod %} + + +## API +##### 基础属性 + +| 参数 | 说明 | 类型 | 可选值 | 默认值 +| :------ |:------------- | :----- | :----|:---- +| items | 子控件对象 | object | north,east,west,south,center | [ ] | + +--- \ No newline at end of file diff --git a/docs/_book/core/layout/center.html b/docs/_book/core/layout/center.html new file mode 100644 index 000000000..c6d586039 --- /dev/null +++ b/docs/_book/core/layout/center.html @@ -0,0 +1,2598 @@ + + + + + + + center · GitBook + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                      +
                                                                                                                                                                      + + + + + + + + +
                                                                                                                                                                      + +
                                                                                                                                                                      + +
                                                                                                                                                                      + + + + + + + + +
                                                                                                                                                                      +
                                                                                                                                                                      + +
                                                                                                                                                                      +
                                                                                                                                                                      + +
                                                                                                                                                                      + +

                                                                                                                                                                      bi.center

                                                                                                                                                                      +

                                                                                                                                                                      水平和垂直方向都居中容器, 非自适应,用于宽度高度固定的面板

                                                                                                                                                                      +
                                                                                                                                                                      
                                                                                                                                                                      +BI.createWidget({
                                                                                                                                                                      +    type: "bi.center",
                                                                                                                                                                      +    element: "#wrapper",
                                                                                                                                                                      +    items: [{
                                                                                                                                                                      +        type: "bi.label",
                                                                                                                                                                      +        text: "Center 1,这里虽然设置label的高度30,但是最终影响高度的是center布局",
                                                                                                                                                                      +        cls: "layout-bg1",
                                                                                                                                                                      +        whiteSpace: "normal"
                                                                                                                                                                      +    },{
                                                                                                                                                                      +        type: "bi.label",
                                                                                                                                                                      +        text: "Center 2,为了演示label是占满整个的,用了一个whiteSpace:normal",
                                                                                                                                                                      +        cls: "layout-bg2",
                                                                                                                                                                      +        whiteSpace: "normal"
                                                                                                                                                                      +    }],
                                                                                                                                                                      +    hgap: 20,
                                                                                                                                                                      +    vgap: 20
                                                                                                                                                                      +});
                                                                                                                                                                      +
                                                                                                                                                                      +
                                                                                                                                                                      + + +

                                                                                                                                                                      API

                                                                                                                                                                      +
                                                                                                                                                                      基础属性
                                                                                                                                                                      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                      参数说明类型可选值默认值
                                                                                                                                                                      hgap效果相当于容器左右padding值number0
                                                                                                                                                                      vgap效果相当于容器上下padding值number0
                                                                                                                                                                      lgap效果相当于容器left-padding值number0
                                                                                                                                                                      rgap效果相当于容器right-padding值number0
                                                                                                                                                                      tgap效果相当于容器top-padding值number0
                                                                                                                                                                      bgap效果相当于容器bottom-padding值number0
                                                                                                                                                                      +
                                                                                                                                                                      + + +
                                                                                                                                                                      + +
                                                                                                                                                                      +
                                                                                                                                                                      +
                                                                                                                                                                      + +

                                                                                                                                                                      results matching ""

                                                                                                                                                                      +
                                                                                                                                                                        + +
                                                                                                                                                                        +
                                                                                                                                                                        + +

                                                                                                                                                                        No results matching ""

                                                                                                                                                                        + +
                                                                                                                                                                        +
                                                                                                                                                                        +
                                                                                                                                                                        + +
                                                                                                                                                                        +
                                                                                                                                                                        + +
                                                                                                                                                                        + + + + +
                                                                                                                                                                        + + +
                                                                                                                                                                        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/_book/core/layout/center.md b/docs/_book/core/layout/center.md new file mode 100644 index 000000000..cdce92265 --- /dev/null +++ b/docs/_book/core/layout/center.md @@ -0,0 +1,47 @@ +# bi.center + +#### 水平和垂直方向都居中容器, 非自适应,用于宽度高度固定的面板 + +{% method %} +[source](https://jsfiddle.net/fineui/8fd2nvkm/) + +{% common %} +```javascript + +BI.createWidget({ + type: "bi.center", + element: "#wrapper", + items: [{ + type: "bi.label", + text: "Center 1,这里虽然设置label的高度30,但是最终影响高度的是center布局", + cls: "layout-bg1", + whiteSpace: "normal" + },{ + type: "bi.label", + text: "Center 2,为了演示label是占满整个的,用了一个whiteSpace:normal", + cls: "layout-bg2", + whiteSpace: "normal" + }], + hgap: 20, + vgap: 20 +}); + + +``` + +{% endmethod %} + + +## API +##### 基础属性 +| 参数 | 说明 | 类型 | 可选值 | 默认值 +| :------ |:------------- | :----- | :----|:---- +| hgap | 效果相当于容器左右padding值 | number | — | 0 | +| vgap | 效果相当于容器上下padding值 | number | — | 0 | +| lgap | 效果相当于容器left-padding值 | number | — | 0 | +| rgap | 效果相当于容器right-padding值 | number | — | 0 | +| tgap | 效果相当于容器top-padding值 | number | — | 0 | +| bgap | 效果相当于容器bottom-padding值 | number | — | 0 | + + +--- \ No newline at end of file diff --git a/docs/_book/core/layout/center_adapt.html b/docs/_book/core/layout/center_adapt.html new file mode 100644 index 000000000..74c044a21 --- /dev/null +++ b/docs/_book/core/layout/center_adapt.html @@ -0,0 +1,2604 @@ + + + + + + + center_adapt · GitBook + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                        +
                                                                                                                                                                        + + + + + + + + +
                                                                                                                                                                        + +
                                                                                                                                                                        + +
                                                                                                                                                                        + + + + + + + + +
                                                                                                                                                                        +
                                                                                                                                                                        + +
                                                                                                                                                                        +
                                                                                                                                                                        + +
                                                                                                                                                                        + +

                                                                                                                                                                        bi.center_adapt

                                                                                                                                                                        +

                                                                                                                                                                        自适应左右垂直居中布局

                                                                                                                                                                        +
                                                                                                                                                                        
                                                                                                                                                                        +BI.createWidget({
                                                                                                                                                                        +    type: "bi.center_adapt",
                                                                                                                                                                        +    element: "#wrapper",
                                                                                                                                                                        +    hgap: 10,
                                                                                                                                                                        +    items: [{
                                                                                                                                                                        +        type: "bi.label",
                                                                                                                                                                        +        text: "Center Adapt 1",
                                                                                                                                                                        +        cls: "layout-bg1",
                                                                                                                                                                        +        height: 30
                                                                                                                                                                        +    }, {
                                                                                                                                                                        +        type: "bi.label",
                                                                                                                                                                        +        text: "Center Adapt 2",
                                                                                                                                                                        +        cls: "layout-bg2",
                                                                                                                                                                        +        height: 30
                                                                                                                                                                        +    }]
                                                                                                                                                                        +})
                                                                                                                                                                        +
                                                                                                                                                                        +
                                                                                                                                                                        + + +

                                                                                                                                                                        API

                                                                                                                                                                        +
                                                                                                                                                                        基础属性
                                                                                                                                                                        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                        参数说明类型可选值默认值
                                                                                                                                                                        hgap效果相当于容器左右padding值number0
                                                                                                                                                                        vgap效果相当于容器上下padding值number0
                                                                                                                                                                        lgap效果相当于容器left-padding值number0
                                                                                                                                                                        rgap效果相当于容器right-padding值number0
                                                                                                                                                                        tgap效果相当于容器top-padding值number0
                                                                                                                                                                        bgap效果相当于容器bottom-padding值number0
                                                                                                                                                                        columnSize每列宽度所组成的数组array[ ]
                                                                                                                                                                        +
                                                                                                                                                                        + + +
                                                                                                                                                                        + +
                                                                                                                                                                        +
                                                                                                                                                                        +
                                                                                                                                                                        + +

                                                                                                                                                                        results matching ""

                                                                                                                                                                        +
                                                                                                                                                                          + +
                                                                                                                                                                          +
                                                                                                                                                                          + +

                                                                                                                                                                          No results matching ""

                                                                                                                                                                          + +
                                                                                                                                                                          +
                                                                                                                                                                          +
                                                                                                                                                                          + +
                                                                                                                                                                          +
                                                                                                                                                                          + +
                                                                                                                                                                          + + + + +
                                                                                                                                                                          + + +
                                                                                                                                                                          + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/_book/core/layout/center_adapt.md b/docs/_book/core/layout/center_adapt.md new file mode 100644 index 000000000..25a58a328 --- /dev/null +++ b/docs/_book/core/layout/center_adapt.md @@ -0,0 +1,47 @@ +# bi.center_adapt + +#### 自适应左右垂直居中布局 + +{% method %} +[source](https://jsfiddle.net/fineui/7bsxw7u5/) + +{% common %} +```javascript + +BI.createWidget({ + type: "bi.center_adapt", + element: "#wrapper", + hgap: 10, + items: [{ + type: "bi.label", + text: "Center Adapt 1", + cls: "layout-bg1", + height: 30 + }, { + type: "bi.label", + text: "Center Adapt 2", + cls: "layout-bg2", + height: 30 + }] +}) + + + +``` + +{% endmethod %} + + +## API +##### 基础属性 +| 参数 | 说明 | 类型 | 可选值 | 默认值 +| :------ |:------------- | :----- | :----|:---- +| hgap | 效果相当于容器左右padding值 | number | — | 0 | +| vgap | 效果相当于容器上下padding值 | number | — | 0 | +| lgap | 效果相当于容器left-padding值 | number | — | 0 | +| rgap | 效果相当于容器right-padding值 | number | — | 0 | +| tgap | 效果相当于容器top-padding值 | number | — | 0 | +| bgap | 效果相当于容器bottom-padding值 | number | — | 0 | +| columnSize | 每列宽度所组成的数组 | array | — | [ ] | + +--- \ No newline at end of file diff --git a/docs/_book/core/layout/float_center.html b/docs/_book/core/layout/float_center.html new file mode 100644 index 000000000..0069cb9f8 --- /dev/null +++ b/docs/_book/core/layout/float_center.html @@ -0,0 +1,2599 @@ + + + + + + + float_center · GitBook + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                          +
                                                                                                                                                                          + + + + + + + + +
                                                                                                                                                                          + +
                                                                                                                                                                          + +
                                                                                                                                                                          + + + + + + + + +
                                                                                                                                                                          +
                                                                                                                                                                          + +
                                                                                                                                                                          +
                                                                                                                                                                          + +
                                                                                                                                                                          + +

                                                                                                                                                                          bi.float_center

                                                                                                                                                                          +

                                                                                                                                                                          浮动布局实现的居中容器

                                                                                                                                                                          +
                                                                                                                                                                          
                                                                                                                                                                          +BI.createWidget({
                                                                                                                                                                          +    type: 'bi.float_center',
                                                                                                                                                                          +    element: "#wrapper",
                                                                                                                                                                          +    items: [{
                                                                                                                                                                          +        type: "bi.label",
                                                                                                                                                                          +        text: "floatCenter与center的不同在于,它可以控制最小宽度和最大宽度",
                                                                                                                                                                          +        cls: "layout-bg1",
                                                                                                                                                                          +        whiteSpace: "normal"
                                                                                                                                                                          +    }, {
                                                                                                                                                                          +        type: "bi.label",
                                                                                                                                                                          +        text: "floatCenter与center的不同在于,它可以控制最小宽度和最大宽度",
                                                                                                                                                                          +        cls: "layout-bg2",
                                                                                                                                                                          +        whiteSpace: "normal"
                                                                                                                                                                          +    }],
                                                                                                                                                                          +    height: 300,
                                                                                                                                                                          +    hgap: 20,
                                                                                                                                                                          +    vgap: 20
                                                                                                                                                                          +});
                                                                                                                                                                          +
                                                                                                                                                                          +
                                                                                                                                                                          + + +

                                                                                                                                                                          API

                                                                                                                                                                          +
                                                                                                                                                                          基础属性
                                                                                                                                                                          + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                          参数说明类型可选值默认值
                                                                                                                                                                          hgap效果相当于容器左右padding值number0
                                                                                                                                                                          vgap效果相当于容器上下padding值number0
                                                                                                                                                                          lgap效果相当于容器left-padding值number0
                                                                                                                                                                          rgap效果相当于容器right-padding值number0
                                                                                                                                                                          tgap效果相当于容器top-padding值number0
                                                                                                                                                                          bgap效果相当于容器bottom-padding值number0
                                                                                                                                                                          +
                                                                                                                                                                          + + +
                                                                                                                                                                          + +
                                                                                                                                                                          +
                                                                                                                                                                          +
                                                                                                                                                                          + +

                                                                                                                                                                          results matching ""

                                                                                                                                                                          +
                                                                                                                                                                            + +
                                                                                                                                                                            +
                                                                                                                                                                            + +

                                                                                                                                                                            No results matching ""

                                                                                                                                                                            + +
                                                                                                                                                                            +
                                                                                                                                                                            +
                                                                                                                                                                            + +
                                                                                                                                                                            +
                                                                                                                                                                            + +
                                                                                                                                                                            + + + + +
                                                                                                                                                                            + + +
                                                                                                                                                                            + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/_book/core/layout/float_center.md b/docs/_book/core/layout/float_center.md new file mode 100644 index 000000000..d65513fea --- /dev/null +++ b/docs/_book/core/layout/float_center.md @@ -0,0 +1,48 @@ +# bi.float_center + +#### 浮动布局实现的居中容器 + +{% method %} +[source](https://jsfiddle.net/fineui/1vgn555m/) + +{% common %} +```javascript + +BI.createWidget({ + type: 'bi.float_center', + element: "#wrapper", + items: [{ + type: "bi.label", + text: "floatCenter与center的不同在于,它可以控制最小宽度和最大宽度", + cls: "layout-bg1", + whiteSpace: "normal" + }, { + type: "bi.label", + text: "floatCenter与center的不同在于,它可以控制最小宽度和最大宽度", + cls: "layout-bg2", + whiteSpace: "normal" + }], + height: 300, + hgap: 20, + vgap: 20 +}); + + +``` + +{% endmethod %} + + +## API +##### 基础属性 +| 参数 | 说明 | 类型 | 可选值 | 默认值 +| :------ |:------------- | :----- | :----|:---- +| hgap | 效果相当于容器左右padding值 | number | — | 0 | +| vgap | 效果相当于容器上下padding值 | number | — | 0 | +| lgap | 效果相当于容器left-padding值 | number | — | 0 | +| rgap | 效果相当于容器right-padding值 | number | — | 0 | +| tgap | 效果相当于容器top-padding值 | number | — | 0 | +| bgap | 效果相当于容器bottom-padding值 | number | — | 0 | + + +--- \ No newline at end of file diff --git a/docs/_book/core/layout/flow.html b/docs/_book/core/layout/flow.html new file mode 100644 index 000000000..99fc1e898 --- /dev/null +++ b/docs/_book/core/layout/flow.html @@ -0,0 +1,2627 @@ + + + + + + + flow · GitBook + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                            +
                                                                                                                                                                            + + + + + + + + +
                                                                                                                                                                            + +
                                                                                                                                                                            + +
                                                                                                                                                                            + + + + + + + + +
                                                                                                                                                                            +
                                                                                                                                                                            + +
                                                                                                                                                                            +
                                                                                                                                                                            + +
                                                                                                                                                                            + +

                                                                                                                                                                            bi.flow

                                                                                                                                                                            +

                                                                                                                                                                            靠左/右对齐的自由浮动布局

                                                                                                                                                                            +
                                                                                                                                                                            
                                                                                                                                                                            +BI.createWidget({
                                                                                                                                                                            +    type: "bi.center_adapt",
                                                                                                                                                                            +    element: "#wrapper",
                                                                                                                                                                            +    items: [{
                                                                                                                                                                            +        type: "bi.left",
                                                                                                                                                                            +        items: [{
                                                                                                                                                                            +            type: "bi.label",
                                                                                                                                                                            +            height: 30,
                                                                                                                                                                            +            text: "Left-1",
                                                                                                                                                                            +            cls: "layout-bg1",
                                                                                                                                                                            +            hgap: 20
                                                                                                                                                                            +        }, {
                                                                                                                                                                            +            type: "bi.label",
                                                                                                                                                                            +            height: 30,
                                                                                                                                                                            +            text: "Left-2",
                                                                                                                                                                            +            cls: "layout-bg2",
                                                                                                                                                                            +            hgap: 20
                                                                                                                                                                            +        }],
                                                                                                                                                                            +        hgap: 20,
                                                                                                                                                                            +        vgap: 20
                                                                                                                                                                            +    }, {
                                                                                                                                                                            +        type: "bi.right",
                                                                                                                                                                            +        items: [{
                                                                                                                                                                            +            type: "bi.label",
                                                                                                                                                                            +            height: 30,
                                                                                                                                                                            +            text: "Right-1",
                                                                                                                                                                            +            cls: "layout-bg3",
                                                                                                                                                                            +            hgap: 20
                                                                                                                                                                            +        }, {
                                                                                                                                                                            +            type: "bi.label",
                                                                                                                                                                            +            height: 30,
                                                                                                                                                                            +            text: "Right-2",
                                                                                                                                                                            +            cls: "layout-bg4",
                                                                                                                                                                            +            hgap: 20
                                                                                                                                                                            +        }],
                                                                                                                                                                            +        hgap: 20,
                                                                                                                                                                            +        vgap: 20
                                                                                                                                                                            +    }]
                                                                                                                                                                            +});
                                                                                                                                                                            +
                                                                                                                                                                            +
                                                                                                                                                                            + + +

                                                                                                                                                                            API

                                                                                                                                                                            +
                                                                                                                                                                            基础属性
                                                                                                                                                                            + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                            参数说明类型可选值默认值
                                                                                                                                                                            hgap效果相当于容器左右padding值number0
                                                                                                                                                                            vgap效果相当于容器上下padding值number0
                                                                                                                                                                            lgap效果相当于容器left-padding值number0
                                                                                                                                                                            rgap效果相当于容器right-padding值number0
                                                                                                                                                                            tgap效果相当于容器top-padding值number0
                                                                                                                                                                            bgap效果相当于容器bottom-padding值number0
                                                                                                                                                                            items子控件数组array
                                                                                                                                                                            +
                                                                                                                                                                            + + +
                                                                                                                                                                            + +
                                                                                                                                                                            +
                                                                                                                                                                            +
                                                                                                                                                                            + +

                                                                                                                                                                            results matching ""

                                                                                                                                                                            +
                                                                                                                                                                              + +
                                                                                                                                                                              +
                                                                                                                                                                              + +

                                                                                                                                                                              No results matching ""

                                                                                                                                                                              + +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              + +
                                                                                                                                                                              +
                                                                                                                                                                              + +
                                                                                                                                                                              + + + + +
                                                                                                                                                                              + + +
                                                                                                                                                                              + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/_book/core/layout/flow.md b/docs/_book/core/layout/flow.md new file mode 100644 index 000000000..88f72ab03 --- /dev/null +++ b/docs/_book/core/layout/flow.md @@ -0,0 +1,75 @@ +# bi.flow + +#### 靠左/右对齐的自由浮动布局 + +{% method %} +[source](https://jsfiddle.net/fineui/c761a856/) + +{% common %} +```javascript + +BI.createWidget({ + type: "bi.center_adapt", + element: "#wrapper", + items: [{ + type: "bi.left", + items: [{ + type: "bi.label", + height: 30, + text: "Left-1", + cls: "layout-bg1", + hgap: 20 + }, { + type: "bi.label", + height: 30, + text: "Left-2", + cls: "layout-bg2", + hgap: 20 + }], + hgap: 20, + vgap: 20 + }, { + type: "bi.right", + items: [{ + type: "bi.label", + height: 30, + text: "Right-1", + cls: "layout-bg3", + hgap: 20 + }, { + type: "bi.label", + height: 30, + text: "Right-2", + cls: "layout-bg4", + hgap: 20 + }], + hgap: 20, + vgap: 20 + }] +}); + + + + + +``` + +{% endmethod %} + + +## API +##### 基础属性 + +| 参数 | 说明 | 类型 | 可选值 | 默认值 +| :------ |:------------- | :----- | :----|:---- +| hgap | 效果相当于容器左右padding值 | number | — | 0 | +| vgap | 效果相当于容器上下padding值 | number | — | 0 | +| lgap | 效果相当于容器left-padding值 | number | — | 0 | +| rgap | 效果相当于容器right-padding值 | number | — | 0 | +| tgap | 效果相当于容器top-padding值 | number | — | 0 | +| bgap | 效果相当于容器bottom-padding值 | number | — | 0 | +| items | 子控件数组 | array | — | — | + + + +--- \ No newline at end of file diff --git a/docs/_book/core/layout/grid.html b/docs/_book/core/layout/grid.html new file mode 100644 index 000000000..3a532f90f --- /dev/null +++ b/docs/_book/core/layout/grid.html @@ -0,0 +1,2599 @@ + + + + + + + grid · GitBook + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                              +
                                                                                                                                                                              + + + + + + + + +
                                                                                                                                                                              + +
                                                                                                                                                                              + +
                                                                                                                                                                              + + + + + + + + +
                                                                                                                                                                              +
                                                                                                                                                                              + +
                                                                                                                                                                              +
                                                                                                                                                                              + +
                                                                                                                                                                              + +

                                                                                                                                                                              bi.grid

                                                                                                                                                                              +

                                                                                                                                                                              网格布局

                                                                                                                                                                              +
                                                                                                                                                                              
                                                                                                                                                                              +BI.createWidget({
                                                                                                                                                                              +    type: 'bi.grid',
                                                                                                                                                                              +    element: "#wrapper",
                                                                                                                                                                              +    columns: 2,
                                                                                                                                                                              +    rows: 2,
                                                                                                                                                                              +    items: [{
                                                                                                                                                                              +        column: 0,
                                                                                                                                                                              +        row: 0,
                                                                                                                                                                              +        el: {
                                                                                                                                                                              +            type: "bi.label",
                                                                                                                                                                              +            text: "column-0, row-0",
                                                                                                                                                                              +            cls: "layout-bg1"
                                                                                                                                                                              +        }
                                                                                                                                                                              +        }, {
                                                                                                                                                                              +        column: 1,
                                                                                                                                                                              +        row: 0,
                                                                                                                                                                              +        el: {
                                                                                                                                                                              +            type: "bi.label",
                                                                                                                                                                              +            text: "column-1, row-0",
                                                                                                                                                                              +            cls: "layout-bg2"
                                                                                                                                                                              +        }
                                                                                                                                                                              +        }  {
                                                                                                                                                                              +        column: 0,
                                                                                                                                                                              +        row: 1,
                                                                                                                                                                              +        el: {
                                                                                                                                                                              +            type: "bi.label",
                                                                                                                                                                              +            text: "column-0, row-1",
                                                                                                                                                                              +            cls: "layout-bg5"
                                                                                                                                                                              +        }
                                                                                                                                                                              +        }, {
                                                                                                                                                                              +        column: 1,
                                                                                                                                                                              +        row: 1,
                                                                                                                                                                              +        el: {
                                                                                                                                                                              +            type: "bi.label",
                                                                                                                                                                              +            text: "column-1, row-1",
                                                                                                                                                                              +            cls: "layout-bg6"
                                                                                                                                                                              +        }
                                                                                                                                                                              +    }]
                                                                                                                                                                              +});
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              + + +

                                                                                                                                                                              API

                                                                                                                                                                              +
                                                                                                                                                                              基础属性
                                                                                                                                                                              + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                              参数说明类型可选值默认值
                                                                                                                                                                              columns列数numbernull
                                                                                                                                                                              rows行数numbernull
                                                                                                                                                                              items子控件数组array[]
                                                                                                                                                                              +
                                                                                                                                                                              + + +
                                                                                                                                                                              + +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              + +

                                                                                                                                                                              results matching ""

                                                                                                                                                                              +
                                                                                                                                                                                + +
                                                                                                                                                                                +
                                                                                                                                                                                + +

                                                                                                                                                                                No results matching ""

                                                                                                                                                                                + +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                + +
                                                                                                                                                                                +
                                                                                                                                                                                + +
                                                                                                                                                                                + + + + +
                                                                                                                                                                                + + +
                                                                                                                                                                                + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/_book/core/layout/grid.md b/docs/_book/core/layout/grid.md new file mode 100644 index 000000000..613e2aed8 --- /dev/null +++ b/docs/_book/core/layout/grid.md @@ -0,0 +1,71 @@ +# bi.grid + +#### 网格布局 + +{% method %} +[source](https://jsfiddle.net/fineui/1gwjbpL6/) + +{% common %} +```javascript + +BI.createWidget({ + type: 'bi.grid', + element: "#wrapper", + columns: 2, + rows: 2, + items: [{ + column: 0, + row: 0, + el: { + type: "bi.label", + text: "column-0, row-0", + cls: "layout-bg1" + } + }, { + column: 1, + row: 0, + el: { + type: "bi.label", + text: "column-1, row-0", + cls: "layout-bg2" + } + } { + column: 0, + row: 1, + el: { + type: "bi.label", + text: "column-0, row-1", + cls: "layout-bg5" + } + }, { + column: 1, + row: 1, + el: { + type: "bi.label", + text: "column-1, row-1", + cls: "layout-bg6" + } + }] +}); + + + + + +``` + +{% endmethod %} + + +## API +##### 基础属性 + +| 参数 | 说明 | 类型 | 可选值 | 默认值 +| :------ |:------------- | :----- | :----|:---- +| columns | 列数 | number | — | null | +| rows | 行数 | number | — | null | +| items | 子控件数组 | array | — | [] | + + + +--- \ No newline at end of file diff --git a/docs/_book/core/layout/horizontal.html b/docs/_book/core/layout/horizontal.html new file mode 100644 index 000000000..b91daad20 --- /dev/null +++ b/docs/_book/core/layout/horizontal.html @@ -0,0 +1,2619 @@ + + + + + + + horizontal · GitBook + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                +
                                                                                                                                                                                + + + + + + + + +
                                                                                                                                                                                + +
                                                                                                                                                                                + +
                                                                                                                                                                                + + + + + + + + +
                                                                                                                                                                                +
                                                                                                                                                                                + +
                                                                                                                                                                                +
                                                                                                                                                                                + +
                                                                                                                                                                                + +

                                                                                                                                                                                bi.horizontal

                                                                                                                                                                                +

                                                                                                                                                                                水平流式布局

                                                                                                                                                                                +
                                                                                                                                                                                
                                                                                                                                                                                +BI.createWidget({
                                                                                                                                                                                +    type: 'bi.horizontal',
                                                                                                                                                                                +    element: "#wrapper",
                                                                                                                                                                                +    items: [{
                                                                                                                                                                                +        type: "bi.text_button",
                                                                                                                                                                                +        cls: "layout-bg1",
                                                                                                                                                                                +        text: "这里设置了lgap,rgap,tgap,bgap",
                                                                                                                                                                                +        height: 30,
                                                                                                                                                                                +        width: 200
                                                                                                                                                                                +    }, {
                                                                                                                                                                                +        type: "bi.text_button",
                                                                                                                                                                                +        cls: "layout-bg2",
                                                                                                                                                                                +        text: "这里设置了lgap,rgap,tgap,bgap",
                                                                                                                                                                                +        height: 30,
                                                                                                                                                                                +        width: 200
                                                                                                                                                                                +    }]
                                                                                                                                                                                +});
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                + + +

                                                                                                                                                                                API

                                                                                                                                                                                +
                                                                                                                                                                                基础属性
                                                                                                                                                                                + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                参数说明类型可选值默认值
                                                                                                                                                                                hgap效果相当于容器左右padding值number0
                                                                                                                                                                                vgap效果相当于容器上下padding值number0
                                                                                                                                                                                lgap效果相当于容器left-padding值number0
                                                                                                                                                                                rgap效果相当于容器right-padding值number0
                                                                                                                                                                                tgap效果相当于容器top-padding值number0
                                                                                                                                                                                bgap效果相当于容器bottom-padding值number0
                                                                                                                                                                                columnSize每列宽度所组成的数组array[ ]
                                                                                                                                                                                verticalAlign元素的垂直对齐方式string参考相关css属性"middle"
                                                                                                                                                                                scrollx设置水平方向是否有滚动条booleantrue,falsetrue
                                                                                                                                                                                +
                                                                                                                                                                                + + +
                                                                                                                                                                                + +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                + +

                                                                                                                                                                                results matching ""

                                                                                                                                                                                +
                                                                                                                                                                                  + +
                                                                                                                                                                                  +
                                                                                                                                                                                  + +

                                                                                                                                                                                  No results matching ""

                                                                                                                                                                                  + +
                                                                                                                                                                                  +
                                                                                                                                                                                  +
                                                                                                                                                                                  + +
                                                                                                                                                                                  +
                                                                                                                                                                                  + +
                                                                                                                                                                                  + + + + +
                                                                                                                                                                                  + + +
                                                                                                                                                                                  + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/_book/core/layout/horizontal.md b/docs/_book/core/layout/horizontal.md new file mode 100644 index 000000000..7be0637cc --- /dev/null +++ b/docs/_book/core/layout/horizontal.md @@ -0,0 +1,51 @@ +# bi.horizontal + +#### 水平流式布局 + +{% method %} +[source](https://jsfiddle.net/fineui/oj7y7q3o/) + +{% common %} +```javascript + +BI.createWidget({ + type: 'bi.horizontal', + element: "#wrapper", + items: [{ + type: "bi.text_button", + cls: "layout-bg1", + text: "这里设置了lgap,rgap,tgap,bgap", + height: 30, + width: 200 + }, { + type: "bi.text_button", + cls: "layout-bg2", + text: "这里设置了lgap,rgap,tgap,bgap", + height: 30, + width: 200 + }] +}); + + + +``` + +{% endmethod %} + + +## API +##### 基础属性 + +| 参数 | 说明 | 类型 | 可选值 | 默认值 +| :------ |:------------- | :----- | :----|:---- +| hgap | 效果相当于容器左右padding值 | number | — | 0 | +| vgap | 效果相当于容器上下padding值 | number | — | 0 | +| lgap | 效果相当于容器left-padding值 | number | — | 0 | +| rgap | 效果相当于容器right-padding值 | number | — | 0 | +| tgap | 效果相当于容器top-padding值 | number | — | 0 | +| bgap | 效果相当于容器bottom-padding值 | number | — | 0 | +| columnSize | 每列宽度所组成的数组 | array | — | [ ] | +| verticalAlign | 元素的垂直对齐方式 | string | 参考相关css属性 | "middle" | +| scrollx | 设置水平方向是否有滚动条 | boolean | true,false | true | + +--- \ No newline at end of file diff --git a/docs/_book/core/layout/horizontal_adapt.html b/docs/_book/core/layout/horizontal_adapt.html new file mode 100644 index 000000000..2e35f64ee --- /dev/null +++ b/docs/_book/core/layout/horizontal_adapt.html @@ -0,0 +1,2613 @@ + + + + + + + horizontal_adapt · GitBook + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                  +
                                                                                                                                                                                  + + + + + + + + +
                                                                                                                                                                                  + +
                                                                                                                                                                                  + +
                                                                                                                                                                                  + + + + + + + + +
                                                                                                                                                                                  +
                                                                                                                                                                                  + +
                                                                                                                                                                                  +
                                                                                                                                                                                  + +
                                                                                                                                                                                  + +

                                                                                                                                                                                  bi.horizontal_adapt

                                                                                                                                                                                  +

                                                                                                                                                                                  自适应左右居中布局

                                                                                                                                                                                  +
                                                                                                                                                                                  
                                                                                                                                                                                  +BI.createWidget({
                                                                                                                                                                                  +    type: "bi.horizontal_adapt",
                                                                                                                                                                                  +    element: "#wrapper",
                                                                                                                                                                                  +    vgap: 10,
                                                                                                                                                                                  +    items: [{
                                                                                                                                                                                  +        type: "bi.label",
                                                                                                                                                                                  +        text: "Horizontal Adapt左右自适应",
                                                                                                                                                                                  +        cls: "layout-bg1",
                                                                                                                                                                                  +        width: 300,
                                                                                                                                                                                  +        height: 30
                                                                                                                                                                                  +    }, {
                                                                                                                                                                                  +        type: "bi.label",
                                                                                                                                                                                  +        text: "Horizontal Adapt左右自适应",
                                                                                                                                                                                  +        cls: "layout-bg2",
                                                                                                                                                                                  +        //width: 300,
                                                                                                                                                                                  +        height: 30
                                                                                                                                                                                  +    }]
                                                                                                                                                                                  +})
                                                                                                                                                                                  +
                                                                                                                                                                                  +
                                                                                                                                                                                  + + +

                                                                                                                                                                                  API

                                                                                                                                                                                  +
                                                                                                                                                                                  基础属性
                                                                                                                                                                                  + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                  参数说明类型可选值默认值
                                                                                                                                                                                  hgap效果相当于容器左右padding值number0
                                                                                                                                                                                  vgap效果相当于容器上下padding值number0
                                                                                                                                                                                  lgap效果相当于容器left-padding值number0
                                                                                                                                                                                  rgap效果相当于容器right-padding值number0
                                                                                                                                                                                  tgap效果相当于容器top-padding值number0
                                                                                                                                                                                  bgap效果相当于容器bottom-padding值number0
                                                                                                                                                                                  columnSize每列宽度所组成的数组array[ ]
                                                                                                                                                                                  verticalAlign元素的垂直对齐方式const参考相关css属性BI.VerticalAlign.Middle
                                                                                                                                                                                  +
                                                                                                                                                                                  + + +
                                                                                                                                                                                  + +
                                                                                                                                                                                  +
                                                                                                                                                                                  +
                                                                                                                                                                                  + +

                                                                                                                                                                                  results matching ""

                                                                                                                                                                                  +
                                                                                                                                                                                    + +
                                                                                                                                                                                    +
                                                                                                                                                                                    + +

                                                                                                                                                                                    No results matching ""

                                                                                                                                                                                    + +
                                                                                                                                                                                    +
                                                                                                                                                                                    +
                                                                                                                                                                                    + +
                                                                                                                                                                                    +
                                                                                                                                                                                    + +
                                                                                                                                                                                    + + + + +
                                                                                                                                                                                    + + +
                                                                                                                                                                                    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/_book/core/layout/horizontal_adapt.md b/docs/_book/core/layout/horizontal_adapt.md new file mode 100644 index 000000000..33e41c616 --- /dev/null +++ b/docs/_book/core/layout/horizontal_adapt.md @@ -0,0 +1,52 @@ +# bi.horizontal_adapt + + +#### 自适应左右居中布局 + +{% method %} +[source](https://jsfiddle.net/fineui/Lgobog42/) + +{% common %} +```javascript + +BI.createWidget({ + type: "bi.horizontal_adapt", + element: "#wrapper", + vgap: 10, + items: [{ + type: "bi.label", + text: "Horizontal Adapt左右自适应", + cls: "layout-bg1", + width: 300, + height: 30 + }, { + type: "bi.label", + text: "Horizontal Adapt左右自适应", + cls: "layout-bg2", + //width: 300, + height: 30 + }] +}) + + +``` + +{% endmethod %} + + +## API +##### 基础属性 +| 参数 | 说明 | 类型 | 可选值 | 默认值 +| :------ |:------------- | :----- | :----|:---- +| hgap | 效果相当于容器左右padding值 | number | — | 0 | +| vgap | 效果相当于容器上下padding值 | number | — | 0 | +| lgap | 效果相当于容器left-padding值 | number | — | 0 | +| rgap | 效果相当于容器right-padding值 | number | — | 0 | +| tgap | 效果相当于容器top-padding值 | number | — | 0 | +| bgap | 效果相当于容器bottom-padding值 | number | — | 0 | +| columnSize | 每列宽度所组成的数组 | array | — | [ ] | +| verticalAlign | 元素的垂直对齐方式 | const | 参考相关css属性 | BI.VerticalAlign.Middle | + + +--- + diff --git a/docs/_book/core/layout/horizontal_auto.html b/docs/_book/core/layout/horizontal_auto.html new file mode 100644 index 000000000..0f9399a1f --- /dev/null +++ b/docs/_book/core/layout/horizontal_auto.html @@ -0,0 +1,2599 @@ + + + + + + + horizontal_auto · GitBook + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                    +
                                                                                                                                                                                    + + + + + + + + +
                                                                                                                                                                                    + +
                                                                                                                                                                                    + +
                                                                                                                                                                                    + + + + + + + + +
                                                                                                                                                                                    +
                                                                                                                                                                                    + +
                                                                                                                                                                                    +
                                                                                                                                                                                    + +
                                                                                                                                                                                    + +

                                                                                                                                                                                    bi.horizontal_auto

                                                                                                                                                                                    +

                                                                                                                                                                                    水平方向居中自适应容器

                                                                                                                                                                                    +
                                                                                                                                                                                    
                                                                                                                                                                                    +BI.createWidget({
                                                                                                                                                                                    +    type: "bi.horizontal_auto",
                                                                                                                                                                                    +    element: "#wrapper",
                                                                                                                                                                                    +    vgap: 10,
                                                                                                                                                                                    +    items: [{
                                                                                                                                                                                    +        type: "bi.label",
                                                                                                                                                                                    +        text: "Horizontal Auto左右自适应",
                                                                                                                                                                                    +        cls: "layout-bg1",
                                                                                                                                                                                    +        width: 300,
                                                                                                                                                                                    +        height: 30
                                                                                                                                                                                    +    }, {
                                                                                                                                                                                    +        type: "bi.label",
                                                                                                                                                                                    +        text: "Horizontal Auto左右自适应",
                                                                                                                                                                                    +        cls: "layout-bg2",
                                                                                                                                                                                    +        width: 300,
                                                                                                                                                                                    +        height: 30
                                                                                                                                                                                    +    }]
                                                                                                                                                                                    +})
                                                                                                                                                                                    +
                                                                                                                                                                                    +
                                                                                                                                                                                    + + +

                                                                                                                                                                                    API

                                                                                                                                                                                    +
                                                                                                                                                                                    基础属性
                                                                                                                                                                                    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                    参数说明类型可选值默认值
                                                                                                                                                                                    hgap效果相当于容器左右padding值number0
                                                                                                                                                                                    vgap效果相当于容器上下padding值number0
                                                                                                                                                                                    lgap效果相当于容器left-padding值number0
                                                                                                                                                                                    rgap效果相当于容器right-padding值number0
                                                                                                                                                                                    tgap效果相当于容器top-padding值number0
                                                                                                                                                                                    bgap效果相当于容器bottom-padding值number0
                                                                                                                                                                                    +
                                                                                                                                                                                    + + +
                                                                                                                                                                                    + +
                                                                                                                                                                                    +
                                                                                                                                                                                    +
                                                                                                                                                                                    + +

                                                                                                                                                                                    results matching ""

                                                                                                                                                                                    +
                                                                                                                                                                                      + +
                                                                                                                                                                                      +
                                                                                                                                                                                      + +

                                                                                                                                                                                      No results matching ""

                                                                                                                                                                                      + +
                                                                                                                                                                                      +
                                                                                                                                                                                      +
                                                                                                                                                                                      + +
                                                                                                                                                                                      +
                                                                                                                                                                                      + +
                                                                                                                                                                                      + + + + +
                                                                                                                                                                                      + + +
                                                                                                                                                                                      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/_book/core/layout/horizontal_auto.md b/docs/_book/core/layout/horizontal_auto.md new file mode 100644 index 000000000..91ee4f730 --- /dev/null +++ b/docs/_book/core/layout/horizontal_auto.md @@ -0,0 +1,49 @@ +# bi.horizontal_auto + +#### 水平方向居中自适应容器 + +{% method %} +[source](https://jsfiddle.net/fineui/ej2j8umg/) + +{% common %} +```javascript + +BI.createWidget({ + type: "bi.horizontal_auto", + element: "#wrapper", + vgap: 10, + items: [{ + type: "bi.label", + text: "Horizontal Auto左右自适应", + cls: "layout-bg1", + width: 300, + height: 30 + }, { + type: "bi.label", + text: "Horizontal Auto左右自适应", + cls: "layout-bg2", + width: 300, + height: 30 + }] +}) + + +``` + +{% endmethod %} + + +## API +##### 基础属性 +| 参数 | 说明 | 类型 | 可选值 | 默认值 +| :------ |:------------- | :----- | :----|:---- +| hgap | 效果相当于容器左右padding值 | number | — | 0 | +| vgap | 效果相当于容器上下padding值 | number | — | 0 | +| lgap | 效果相当于容器left-padding值 | number | — | 0 | +| rgap | 效果相当于容器right-padding值 | number | — | 0 | +| tgap | 效果相当于容器top-padding值 | number | — | 0 | +| bgap | 效果相当于容器bottom-padding值 | number | — | 0 | + + + +--- \ No newline at end of file diff --git a/docs/_book/core/layout/horizontal_float.html b/docs/_book/core/layout/horizontal_float.html new file mode 100644 index 000000000..d49d414ff --- /dev/null +++ b/docs/_book/core/layout/horizontal_float.html @@ -0,0 +1,2600 @@ + + + + + + + horizontal_float · GitBook + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                      +
                                                                                                                                                                                      + + + + + + + + +
                                                                                                                                                                                      + +
                                                                                                                                                                                      + +
                                                                                                                                                                                      + + + + + + + + +
                                                                                                                                                                                      +
                                                                                                                                                                                      + +
                                                                                                                                                                                      +
                                                                                                                                                                                      + +
                                                                                                                                                                                      + +

                                                                                                                                                                                      bi.horizontal_float

                                                                                                                                                                                      +

                                                                                                                                                                                      浮动的水平居中布局

                                                                                                                                                                                      +
                                                                                                                                                                                      
                                                                                                                                                                                      +BI.createWidget({
                                                                                                                                                                                      +    type: "bi.horizontal_float",
                                                                                                                                                                                      +    element: "#wrapper",
                                                                                                                                                                                      +    vgap: 10,
                                                                                                                                                                                      +    items: [{
                                                                                                                                                                                      +        type: "bi.label",
                                                                                                                                                                                      +        text: "Horizontal Float左右自适应",
                                                                                                                                                                                      +        cls: "layout-bg1",
                                                                                                                                                                                      +        width: 200,
                                                                                                                                                                                      +        height:30
                                                                                                                                                                                      +    }]
                                                                                                                                                                                      +})
                                                                                                                                                                                      +
                                                                                                                                                                                      +
                                                                                                                                                                                      + + +

                                                                                                                                                                                      API

                                                                                                                                                                                      +
                                                                                                                                                                                      基础属性
                                                                                                                                                                                      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                      参数说明类型可选值默认值
                                                                                                                                                                                      hgap效果相当于容器左右padding值number0
                                                                                                                                                                                      vgap效果相当于容器上下padding值number0
                                                                                                                                                                                      lgap效果相当于容器left-padding值number0
                                                                                                                                                                                      rgap效果相当于容器right-padding值number0
                                                                                                                                                                                      tgap效果相当于容器top-padding值number0
                                                                                                                                                                                      bgap效果相当于容器bottom-padding值number0
                                                                                                                                                                                      items子控件数组array[ ]
                                                                                                                                                                                      +
                                                                                                                                                                                      + + +
                                                                                                                                                                                      + +
                                                                                                                                                                                      +
                                                                                                                                                                                      +
                                                                                                                                                                                      + +

                                                                                                                                                                                      results matching ""

                                                                                                                                                                                      +
                                                                                                                                                                                        + +
                                                                                                                                                                                        +
                                                                                                                                                                                        + +

                                                                                                                                                                                        No results matching ""

                                                                                                                                                                                        + +
                                                                                                                                                                                        +
                                                                                                                                                                                        +
                                                                                                                                                                                        + +
                                                                                                                                                                                        +
                                                                                                                                                                                        + +
                                                                                                                                                                                        + + + + +
                                                                                                                                                                                        + + +
                                                                                                                                                                                        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/_book/core/layout/horizontal_float.md b/docs/_book/core/layout/horizontal_float.md new file mode 100644 index 000000000..2ec26e17c --- /dev/null +++ b/docs/_book/core/layout/horizontal_float.md @@ -0,0 +1,44 @@ +# bi.horizontal_float + +#### 浮动的水平居中布局 + +{% method %} +[source](https://jsfiddle.net/fineui/91rd0zpe/) + +{% common %} +```javascript + +BI.createWidget({ + type: "bi.horizontal_float", + element: "#wrapper", + vgap: 10, + items: [{ + type: "bi.label", + text: "Horizontal Float左右自适应", + cls: "layout-bg1", + width: 200, + height:30 + }] +}) + + + +``` + +{% endmethod %} + + +## API +##### 基础属性 +| 参数 | 说明 | 类型 | 可选值 | 默认值 +| :------ |:------------- | :----- | :----|:---- +| hgap | 效果相当于容器左右padding值 | number | — | 0 | +| vgap | 效果相当于容器上下padding值 | number | — | 0 | +| lgap | 效果相当于容器left-padding值 | number | — | 0 | +| rgap | 效果相当于容器right-padding值 | number | — | 0 | +| tgap | 效果相当于容器top-padding值 | number | — | 0 | +| bgap | 效果相当于容器bottom-padding值 | number | — | 0 | +| items | 子控件数组 | array | — |[ ] | + + +--- \ No newline at end of file diff --git a/docs/_book/core/layout/htape.html b/docs/_book/core/layout/htape.html new file mode 100644 index 000000000..839c8a1ac --- /dev/null +++ b/docs/_book/core/layout/htape.html @@ -0,0 +1,2616 @@ + + + + + + + htape · GitBook + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                        +
                                                                                                                                                                                        + + + + + + + + +
                                                                                                                                                                                        + +
                                                                                                                                                                                        + +
                                                                                                                                                                                        + + + + + + + + +
                                                                                                                                                                                        +
                                                                                                                                                                                        + +
                                                                                                                                                                                        +
                                                                                                                                                                                        + +
                                                                                                                                                                                        + +

                                                                                                                                                                                        bi.htape

                                                                                                                                                                                        +

                                                                                                                                                                                        水平tape布局,两列定宽,一列自适应

                                                                                                                                                                                        +
                                                                                                                                                                                        
                                                                                                                                                                                        +BI.createWidget({
                                                                                                                                                                                        +  type: "bi.htape",
                                                                                                                                                                                        +  element: "#wrapper",         
                                                                                                                                                                                        +  items : [
                                                                                                                                                                                        +    {
                                                                                                                                                                                        +      width: 100,
                                                                                                                                                                                        +      el : {
                                                                                                                                                                                        +        type : 'bi.label',
                                                                                                                                                                                        +        text : '1',
                                                                                                                                                                                        +        cls: "layout-bg1"
                                                                                                                                                                                        +      }
                                                                                                                                                                                        +    }, {
                                                                                                                                                                                        +      width: 200,
                                                                                                                                                                                        +      el : {
                                                                                                                                                                                        +        type : 'bi.label',
                                                                                                                                                                                        +        text : '2',
                                                                                                                                                                                        +        cls: "layout-bg2"
                                                                                                                                                                                        +      }
                                                                                                                                                                                        +    }, {
                                                                                                                                                                                        +      width: 'fill',
                                                                                                                                                                                        +      el : {
                                                                                                                                                                                        +        type : 'bi.label',
                                                                                                                                                                                        +        text : '3',
                                                                                                                                                                                        +        cls: "layout-bg3"
                                                                                                                                                                                        +      }
                                                                                                                                                                                        +    }
                                                                                                                                                                                        +  ]
                                                                                                                                                                                        +});
                                                                                                                                                                                        +
                                                                                                                                                                                        +
                                                                                                                                                                                        + + +

                                                                                                                                                                                        API

                                                                                                                                                                                        +
                                                                                                                                                                                        基础属性
                                                                                                                                                                                        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                        参数说明类型可选值默认值
                                                                                                                                                                                        hgap效果相当于容器左右padding值number0
                                                                                                                                                                                        vgap效果相当于容器上下padding值number0
                                                                                                                                                                                        lgap效果相当于容器left-padding值number0
                                                                                                                                                                                        rgap效果相当于容器right-padding值number0
                                                                                                                                                                                        tgap效果相当于容器top-padding值number0
                                                                                                                                                                                        bgap效果相当于容器bottom-padding值number0
                                                                                                                                                                                        items子控件数组array[{width: 100,el: {type: 'bi.button', text: 'button1'}},{width: 'fill',el: {type: 'bi.button', text: 'button2'}},{width: 200,el: {type: 'bi.button', text: 'button3'}}]
                                                                                                                                                                                        +
                                                                                                                                                                                        + + +
                                                                                                                                                                                        + +
                                                                                                                                                                                        +
                                                                                                                                                                                        +
                                                                                                                                                                                        + +

                                                                                                                                                                                        results matching ""

                                                                                                                                                                                        +
                                                                                                                                                                                          + +
                                                                                                                                                                                          +
                                                                                                                                                                                          + +

                                                                                                                                                                                          No results matching ""

                                                                                                                                                                                          + +
                                                                                                                                                                                          +
                                                                                                                                                                                          +
                                                                                                                                                                                          + +
                                                                                                                                                                                          +
                                                                                                                                                                                          + +
                                                                                                                                                                                          + + + + +
                                                                                                                                                                                          + + +
                                                                                                                                                                                          + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/_book/core/layout/htape.md b/docs/_book/core/layout/htape.md new file mode 100644 index 000000000..166da0a9f --- /dev/null +++ b/docs/_book/core/layout/htape.md @@ -0,0 +1,64 @@ +# bi.htape + +#### 水平tape布局,两列定宽,一列自适应 + +{% method %} +[source](https://jsfiddle.net/fineui/ry7Lnhgw/) + +{% common %} +```javascript + +BI.createWidget({ + type: "bi.htape", + element: "#wrapper", + items : [ + { + width: 100, + el : { + type : 'bi.label', + text : '1', + cls: "layout-bg1" + } + }, { + width: 200, + el : { + type : 'bi.label', + text : '2', + cls: "layout-bg2" + } + }, { + width: 'fill', + el : { + type : 'bi.label', + text : '3', + cls: "layout-bg3" + } + } + ] +}); + + + + + +``` + +{% endmethod %} + + +## API +##### 基础属性 + +| 参数 | 说明 | 类型 | 可选值 | 默认值 +| :------ |:------------- | :----- | :----|:---- +| hgap | 效果相当于容器左右padding值 | number | — | 0 | +| vgap | 效果相当于容器上下padding值 | number | — | 0 | +| lgap | 效果相当于容器left-padding值 | number |— | 0 | +| rgap | 效果相当于容器right-padding值 | number | — | 0 | +| tgap | 效果相当于容器top-padding值 | number | —| 0 | +| bgap | 效果相当于容器bottom-padding值 | number | — | 0 | +| items | 子控件数组 | array | — | [{width: 100,el: {type: 'bi.button', text: 'button1'}},{width: 'fill',el: {type: 'bi.button', text: 'button2'}},{width: 200,el: {type: 'bi.button', text: 'button3'}}] | + + + +--- \ No newline at end of file diff --git a/docs/_book/core/layout/left_right_vertical_adapt.html b/docs/_book/core/layout/left_right_vertical_adapt.html new file mode 100644 index 000000000..b2c2f18d9 --- /dev/null +++ b/docs/_book/core/layout/left_right_vertical_adapt.html @@ -0,0 +1,2610 @@ + + + + + + + left_right_vertical_adapt · GitBook + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                          +
                                                                                                                                                                                          + + + + + + + + +
                                                                                                                                                                                          + +
                                                                                                                                                                                          + +
                                                                                                                                                                                          + + + + + + + + +
                                                                                                                                                                                          +
                                                                                                                                                                                          + +
                                                                                                                                                                                          +
                                                                                                                                                                                          + +
                                                                                                                                                                                          + +

                                                                                                                                                                                          bi.left_right_vertical_adapt

                                                                                                                                                                                          +

                                                                                                                                                                                          左右分离,垂直方向居中容器

                                                                                                                                                                                          +
                                                                                                                                                                                          
                                                                                                                                                                                          +BI.createWidget({
                                                                                                                                                                                          +    type: 'bi.left_right_vertical_adapt',
                                                                                                                                                                                          +    element: "#wrapper",
                                                                                                                                                                                          +    lhgap: 10,
                                                                                                                                                                                          +    rhgap: 10,
                                                                                                                                                                                          +    items: {
                                                                                                                                                                                          +        left: [{
                                                                                                                                                                                          +            type: "bi.label",
                                                                                                                                                                                          +            text: "左边的垂直居中",
                                                                                                                                                                                          +            cls: "layout-bg1",
                                                                                                                                                                                          +            width: 100,
                                                                                                                                                                                          +            height: 30
                                                                                                                                                                                          +        }],
                                                                                                                                                                                          +        right: [{
                                                                                                                                                                                          +            type: "bi.label",
                                                                                                                                                                                          +            text: "右边的垂直居中",
                                                                                                                                                                                          +            cls: "layout-bg1",
                                                                                                                                                                                          +            width: 100,
                                                                                                                                                                                          +            height: 30
                                                                                                                                                                                          +        }]
                                                                                                                                                                                          +    }
                                                                                                                                                                                          +});
                                                                                                                                                                                          +
                                                                                                                                                                                          +
                                                                                                                                                                                          + + +

                                                                                                                                                                                          API

                                                                                                                                                                                          +
                                                                                                                                                                                          基础属性
                                                                                                                                                                                          + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                          参数说明类型可选值默认值
                                                                                                                                                                                          lhgap左边容器左右padding值number0
                                                                                                                                                                                          lrgap左边容器right-padding值number0
                                                                                                                                                                                          llgap左边容器left-padding值number0
                                                                                                                                                                                          rhgap右边容器左右padding值number0
                                                                                                                                                                                          rrgap右边容器right-padding值number0
                                                                                                                                                                                          rhgap右边容器left-padding值number0
                                                                                                                                                                                          items子控件数组array[ ]
                                                                                                                                                                                          +
                                                                                                                                                                                          + + +
                                                                                                                                                                                          + +
                                                                                                                                                                                          +
                                                                                                                                                                                          +
                                                                                                                                                                                          + +

                                                                                                                                                                                          results matching ""

                                                                                                                                                                                          +
                                                                                                                                                                                            + +
                                                                                                                                                                                            +
                                                                                                                                                                                            + +

                                                                                                                                                                                            No results matching ""

                                                                                                                                                                                            + +
                                                                                                                                                                                            +
                                                                                                                                                                                            +
                                                                                                                                                                                            + +
                                                                                                                                                                                            +
                                                                                                                                                                                            + +
                                                                                                                                                                                            + + + + +
                                                                                                                                                                                            + + +
                                                                                                                                                                                            + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/_book/core/layout/left_right_vertical_adapt.md b/docs/_book/core/layout/left_right_vertical_adapt.md new file mode 100644 index 000000000..8c101a587 --- /dev/null +++ b/docs/_book/core/layout/left_right_vertical_adapt.md @@ -0,0 +1,55 @@ + +# bi.left_right_vertical_adapt + +#### 左右分离,垂直方向居中容器 + +{% method %} +[source](https://jsfiddle.net/fineui/2udhep9z/) + +{% common %} +```javascript + +BI.createWidget({ + type: 'bi.left_right_vertical_adapt', + element: "#wrapper", + lhgap: 10, + rhgap: 10, + items: { + left: [{ + type: "bi.label", + text: "左边的垂直居中", + cls: "layout-bg1", + width: 100, + height: 30 + }], + right: [{ + type: "bi.label", + text: "右边的垂直居中", + cls: "layout-bg1", + width: 100, + height: 30 + }] + } +}); + + + +``` + +{% endmethod %} + + +## API +##### 基础属性 +| 参数 | 说明 | 类型 | 可选值 | 默认值 +| :------ |:------------- | :----- | :----|:---- +| lhgap | 左边容器左右padding值 | number | — | 0 | +| lrgap | 左边容器right-padding值 | number | — | 0 | +| llgap | 左边容器left-padding值 | number | — | 0 | +| rhgap | 右边容器左右padding值 | number | — | 0 | +| rrgap | 右边容器right-padding值 | number | — | 0 | +| rhgap | 右边容器left-padding值 | number | — | 0 | +| items | 子控件数组 | array | — | [ ] | + + +--- \ No newline at end of file diff --git a/docs/_book/core/layout/table.html b/docs/_book/core/layout/table.html new file mode 100644 index 000000000..76fd080aa --- /dev/null +++ b/docs/_book/core/layout/table.html @@ -0,0 +1,2601 @@ + + + + + + + table · GitBook + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                            +
                                                                                                                                                                                            + + + + + + + + +
                                                                                                                                                                                            + +
                                                                                                                                                                                            + +
                                                                                                                                                                                            + + + + + + + + +
                                                                                                                                                                                            +
                                                                                                                                                                                            + +
                                                                                                                                                                                            +
                                                                                                                                                                                            + +
                                                                                                                                                                                            + +

                                                                                                                                                                                            bi.table

                                                                                                                                                                                            +

                                                                                                                                                                                            table作为一个列表集合存在,继承BI.Widget

                                                                                                                                                                                            +
                                                                                                                                                                                            BI.createWidget({
                                                                                                                                                                                            +  element: "body",
                                                                                                                                                                                            +  type: "bi.table",
                                                                                                                                                                                            +  items: [],
                                                                                                                                                                                            +  columnSize: [100, "fill", 200],
                                                                                                                                                                                            +  rowSize: [10, 30, 50, 70, 90, 110, 130],
                                                                                                                                                                                            +  hgap: 20,
                                                                                                                                                                                            +  vgap: 10
                                                                                                                                                                                            +});
                                                                                                                                                                                            +
                                                                                                                                                                                            +
                                                                                                                                                                                            + +

                                                                                                                                                                                            参数设置

                                                                                                                                                                                            + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                            参数说明类型默认值
                                                                                                                                                                                            scrolly是否出现滚动条booleantrue
                                                                                                                                                                                            columnSize列项宽度array/number[200, 200, 'fill']
                                                                                                                                                                                            rowSize行高array/number30
                                                                                                                                                                                            hgap内部元素间纵向距离number0
                                                                                                                                                                                            vgap内部元素间横向距离number0
                                                                                                                                                                                            items子项array[{width: 100,el: {type: 'bi.button', text: 'button1'}},{width: 'fill',el: {type: 'bi.button', text: 'button2'}},{width: 200,el: {type: 'bi.button', text: 'button3'}}]
                                                                                                                                                                                            +

                                                                                                                                                                                            方法

                                                                                                                                                                                            + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                            方法名说明用法
                                                                                                                                                                                            addItem增加内容addItem(arr)
                                                                                                                                                                                            populate更换新的内容poplulate(items)
                                                                                                                                                                                            + + +
                                                                                                                                                                                            + +
                                                                                                                                                                                            +
                                                                                                                                                                                            +
                                                                                                                                                                                            + +

                                                                                                                                                                                            results matching ""

                                                                                                                                                                                            +
                                                                                                                                                                                              + +
                                                                                                                                                                                              +
                                                                                                                                                                                              + +

                                                                                                                                                                                              No results matching ""

                                                                                                                                                                                              + +
                                                                                                                                                                                              +
                                                                                                                                                                                              +
                                                                                                                                                                                              + +
                                                                                                                                                                                              +
                                                                                                                                                                                              + +
                                                                                                                                                                                              + + + + +
                                                                                                                                                                                              + + +
                                                                                                                                                                                              + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/_book/core/layout/table.md b/docs/_book/core/layout/table.md new file mode 100644 index 000000000..c8bcb316f --- /dev/null +++ b/docs/_book/core/layout/table.md @@ -0,0 +1,37 @@ +# bi.table + +### table作为一个列表集合存在,继承BI.Widget +{% method %} +[source](https://jsfiddle.net/fineui/8t2en619/) + +{% common %} +```javascript +BI.createWidget({ + element: "body", + type: "bi.table", + items: [], + columnSize: [100, "fill", 200], + rowSize: [10, 30, 50, 70, 90, 110, 130], + hgap: 20, + vgap: 10 +}); +``` + +{% endmethod %} + +## 参数设置 +| 参数 | 说明 | 类型 | 默认值 | +| ---------- | --------- | ------------ | ---------------------------------------- | +| scrolly | 是否出现滚动条 | boolean | true | +| columnSize | 列项宽度 | array/number | [200, 200, 'fill'] | +| rowSize | 行高 | array/number | 30 | +| hgap | 内部元素间纵向距离 | number | 0 | +| vgap | 内部元素间横向距离 | number | 0 | +| items | 子项 | array | [{width: 100,el: {type: 'bi.button', text: 'button1'}},{width: 'fill',el: {type: 'bi.button', text: 'button2'}},{width: 200,el: {type: 'bi.button', text: 'button3'}}] | + +## 方法 +| 方法名 | 说明 | 用法 | +| :------- | ------ | ---------------- | +| addItem | 增加内容 | addItem(arr) | +| populate | 更换新的内容 | poplulate(items) | + diff --git a/docs/_book/core/layout/td.html b/docs/_book/core/layout/td.html new file mode 100644 index 000000000..43b0ca57e --- /dev/null +++ b/docs/_book/core/layout/td.html @@ -0,0 +1,2586 @@ + + + + + + + td · GitBook + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                              +
                                                                                                                                                                                              + + + + + + + + +
                                                                                                                                                                                              + +
                                                                                                                                                                                              + +
                                                                                                                                                                                              + + + + + + + + +
                                                                                                                                                                                              +
                                                                                                                                                                                              + +
                                                                                                                                                                                              +
                                                                                                                                                                                              + +
                                                                                                                                                                                              + +

                                                                                                                                                                                              bi.td

                                                                                                                                                                                              +

                                                                                                                                                                                              单元格控件,继承BI.Layout

                                                                                                                                                                                              +
                                                                                                                                                                                              BI.createWidget({
                                                                                                                                                                                              +  type: "bi.td",
                                                                                                                                                                                              +  element: 'body',
                                                                                                                                                                                              +  columnSize: [20, 20, 'fill'],
                                                                                                                                                                                              +  items: []
                                                                                                                                                                                              +});
                                                                                                                                                                                              +
                                                                                                                                                                                              +
                                                                                                                                                                                              + + + +

                                                                                                                                                                                              参数

                                                                                                                                                                                              + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                              参数说明类型默认值
                                                                                                                                                                                              columnSize列宽array[200, 200, 200]
                                                                                                                                                                                              hgap纵向间隙number0
                                                                                                                                                                                              vgap横向间隙number0
                                                                                                                                                                                              items内容项array[[{el: {text: 'label1'}},{ el: {text: 'label2'},{ el: {text: 'label3'}
                                                                                                                                                                                              +

                                                                                                                                                                                              方法

                                                                                                                                                                                              + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                              方法名说明用法
                                                                                                                                                                                              addItem增加内容addItem(arr)
                                                                                                                                                                                              populate更换新的内容poplulate(items)
                                                                                                                                                                                              + + +
                                                                                                                                                                                              + +
                                                                                                                                                                                              +
                                                                                                                                                                                              +
                                                                                                                                                                                              + +

                                                                                                                                                                                              results matching ""

                                                                                                                                                                                              +
                                                                                                                                                                                                + +
                                                                                                                                                                                                +
                                                                                                                                                                                                + +

                                                                                                                                                                                                No results matching ""

                                                                                                                                                                                                + +
                                                                                                                                                                                                +
                                                                                                                                                                                                +
                                                                                                                                                                                                + +
                                                                                                                                                                                                +
                                                                                                                                                                                                + +
                                                                                                                                                                                                + + + + +
                                                                                                                                                                                                + + +
                                                                                                                                                                                                + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/_book/core/layout/td.md b/docs/_book/core/layout/td.md new file mode 100644 index 000000000..53f047f5d --- /dev/null +++ b/docs/_book/core/layout/td.md @@ -0,0 +1,38 @@ +# bi.td + +### 单元格控件,继承BI.Layout + +{% method %} +[source](https://jsfiddle.net/fineui/v4jrz6a3/) + +{% common %} +```javascript +BI.createWidget({ + type: "bi.td", + element: 'body', + columnSize: [20, 20, 'fill'], + items: [] +}); +``` + +{% endmethod %} + + + +##参数 + +| 参数 | 说明 | 类型 | 默认值 | +| ---------- | ---- | ------ | ---------------------------------------- | +| columnSize | 列宽 | array | [200, 200, 200] | +| hgap | 纵向间隙 | number | 0 | +| vgap | 横向间隙 | number | 0 | +| items | 内容项 | array | [[{el: {text: 'label1'}},{ el: {text: 'label2'},{ el: {text: 'label3'} | + + +## 方法 + +| 方法名 | 说明 | 用法 | +| -------- | ------ | ---------------- | +| addItem | 增加内容 | addItem(arr) | +| populate | 更换新的内容 | poplulate(items) | + diff --git a/docs/_book/core/layout/vertical.html b/docs/_book/core/layout/vertical.html new file mode 100644 index 000000000..d759e6a58 --- /dev/null +++ b/docs/_book/core/layout/vertical.html @@ -0,0 +1,2601 @@ + + + + + + + vertical · GitBook + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                +
                                                                                                                                                                                                + + + + + + + + +
                                                                                                                                                                                                + +
                                                                                                                                                                                                + +
                                                                                                                                                                                                + + + + + + + + +
                                                                                                                                                                                                +
                                                                                                                                                                                                + +
                                                                                                                                                                                                +
                                                                                                                                                                                                + +
                                                                                                                                                                                                + +

                                                                                                                                                                                                bi.vertical

                                                                                                                                                                                                +

                                                                                                                                                                                                垂直流式布局

                                                                                                                                                                                                +
                                                                                                                                                                                                
                                                                                                                                                                                                +BI.createWidget({
                                                                                                                                                                                                +    type: 'demo.vertical',
                                                                                                                                                                                                +    element: "#wrapper",
                                                                                                                                                                                                +    items: [{
                                                                                                                                                                                                +        type: "bi.label",
                                                                                                                                                                                                +        cls: "layout-bg1",
                                                                                                                                                                                                +        text: "这里设置了hgap(水平间距),vgap(垂直间距)",
                                                                                                                                                                                                +        height: 30
                                                                                                                                                                                                +    }, {
                                                                                                                                                                                                +        type: "bi.label",
                                                                                                                                                                                                +        cls: "layout-bg2",
                                                                                                                                                                                                +        text: "这里设置了hgap(水平间距),vgap(垂直间距)",
                                                                                                                                                                                                +        height: 30
                                                                                                                                                                                                +    }]
                                                                                                                                                                                                +});
                                                                                                                                                                                                +
                                                                                                                                                                                                +
                                                                                                                                                                                                + + +

                                                                                                                                                                                                API

                                                                                                                                                                                                +
                                                                                                                                                                                                基础属性
                                                                                                                                                                                                + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                参数说明类型可选值默认值
                                                                                                                                                                                                hgap效果相当于容器左右padding值number0
                                                                                                                                                                                                vgap效果相当于容器上下padding值number0
                                                                                                                                                                                                lgap效果相当于容器left-padding值number0
                                                                                                                                                                                                rgap效果相当于容器right-padding值number0
                                                                                                                                                                                                tgap效果相当于容器top-padding值number0
                                                                                                                                                                                                bgap效果相当于容器bottom-padding值number0
                                                                                                                                                                                                scrolly设置垂直方向是否有滚动条booleantrue,falsetrue
                                                                                                                                                                                                +
                                                                                                                                                                                                + + +
                                                                                                                                                                                                + +
                                                                                                                                                                                                +
                                                                                                                                                                                                +
                                                                                                                                                                                                + +

                                                                                                                                                                                                results matching ""

                                                                                                                                                                                                +
                                                                                                                                                                                                  + +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  + +

                                                                                                                                                                                                  No results matching ""

                                                                                                                                                                                                  + +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  + +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  + +
                                                                                                                                                                                                  + + + + +
                                                                                                                                                                                                  + + +
                                                                                                                                                                                                  + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/_book/core/layout/vertical.md b/docs/_book/core/layout/vertical.md new file mode 100644 index 000000000..a85b8b942 --- /dev/null +++ b/docs/_book/core/layout/vertical.md @@ -0,0 +1,46 @@ +# bi.vertical + +#### 垂直流式布局 + +{% method %} +[source](https://jsfiddle.net/fineui/zjyaz9fn/) + +{% common %} +```javascript + +BI.createWidget({ + type: 'demo.vertical', + element: "#wrapper", + items: [{ + type: "bi.label", + cls: "layout-bg1", + text: "这里设置了hgap(水平间距),vgap(垂直间距)", + height: 30 + }, { + type: "bi.label", + cls: "layout-bg2", + text: "这里设置了hgap(水平间距),vgap(垂直间距)", + height: 30 + }] +}); + + + +``` + +{% endmethod %} + + +## API +##### 基础属性 +| 参数 | 说明 | 类型 | 可选值 | 默认值 +| :------ |:------------- | :----- | :----|:---- +| hgap | 效果相当于容器左右padding值 | number | — | 0 | +| vgap | 效果相当于容器上下padding值 | number | — | 0 | +| lgap | 效果相当于容器left-padding值 | number | — | 0 | +| rgap | 效果相当于容器right-padding值 | number | — | 0 | +| tgap | 效果相当于容器top-padding值 | number | — | 0 | +| bgap | 效果相当于容器bottom-padding值 | number | — | 0 | +| scrolly | 设置垂直方向是否有滚动条 | boolean | true,false | true | + +--- \ No newline at end of file diff --git a/docs/_book/core/layout/vertical_adapt.html b/docs/_book/core/layout/vertical_adapt.html new file mode 100644 index 000000000..1d123e474 --- /dev/null +++ b/docs/_book/core/layout/vertical_adapt.html @@ -0,0 +1,2606 @@ + + + + + + + vertical_adapt · GitBook + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  + + + + + + + + +
                                                                                                                                                                                                  + +
                                                                                                                                                                                                  + +
                                                                                                                                                                                                  + + + + + + + + +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  + +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  + +
                                                                                                                                                                                                  + +

                                                                                                                                                                                                  bi.vertical_adapt

                                                                                                                                                                                                  +

                                                                                                                                                                                                  自适应垂直居中布局

                                                                                                                                                                                                  +
                                                                                                                                                                                                  
                                                                                                                                                                                                  +BI.createWidget({
                                                                                                                                                                                                  +    type: "bi.vertical_adapt",
                                                                                                                                                                                                  +    element: "#wrapper",
                                                                                                                                                                                                  +    vgap: 10,
                                                                                                                                                                                                  +    items: [{
                                                                                                                                                                                                  +        type: "bi.label",
                                                                                                                                                                                                  +        text: "Vertical Adapt上下自适应",
                                                                                                                                                                                                  +        cls: "layout-bg1",
                                                                                                                                                                                                  +        width: 300,
                                                                                                                                                                                                  +        height: 30
                                                                                                                                                                                                  +    }, {
                                                                                                                                                                                                  +        type: "bi.label",
                                                                                                                                                                                                  +        text: "Vertical Adapt上下自适应",
                                                                                                                                                                                                  +        cls: "layout-bg2",
                                                                                                                                                                                                  +        width: 300,
                                                                                                                                                                                                  +        height: 30
                                                                                                                                                                                                  +    }]
                                                                                                                                                                                                  +})
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  + + +

                                                                                                                                                                                                  API

                                                                                                                                                                                                  +
                                                                                                                                                                                                  基础属性
                                                                                                                                                                                                  + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                  参数说明类型可选值默认值
                                                                                                                                                                                                  hgap效果相当于容器左右padding值number0
                                                                                                                                                                                                  vgap效果相当于容器上下padding值number0
                                                                                                                                                                                                  lgap效果相当于容器left-padding值number0
                                                                                                                                                                                                  rgap效果相当于容器right-padding值number0
                                                                                                                                                                                                  tgap效果相当于容器top-padding值number0
                                                                                                                                                                                                  bgap效果相当于容器bottom-padding值number0
                                                                                                                                                                                                  columnSize每列宽度所组成的数组array[ ]
                                                                                                                                                                                                  +
                                                                                                                                                                                                  + + +
                                                                                                                                                                                                  + +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  + +

                                                                                                                                                                                                  results matching ""

                                                                                                                                                                                                  +
                                                                                                                                                                                                    + +
                                                                                                                                                                                                    +
                                                                                                                                                                                                    + +

                                                                                                                                                                                                    No results matching ""

                                                                                                                                                                                                    + +
                                                                                                                                                                                                    +
                                                                                                                                                                                                    +
                                                                                                                                                                                                    + +
                                                                                                                                                                                                    +
                                                                                                                                                                                                    + +
                                                                                                                                                                                                    + + + + +
                                                                                                                                                                                                    + + +
                                                                                                                                                                                                    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/_book/core/layout/vertical_adapt.md b/docs/_book/core/layout/vertical_adapt.md new file mode 100644 index 000000000..f3ea0a336 --- /dev/null +++ b/docs/_book/core/layout/vertical_adapt.md @@ -0,0 +1,49 @@ +# bi.vertical_adapt + +#### 自适应垂直居中布局 + +{% method %} +[source](https://jsfiddle.net/fineui/7t1bsfy0/) + +{% common %} +```javascript + +BI.createWidget({ + type: "bi.vertical_adapt", + element: "#wrapper", + vgap: 10, + items: [{ + type: "bi.label", + text: "Vertical Adapt上下自适应", + cls: "layout-bg1", + width: 300, + height: 30 + }, { + type: "bi.label", + text: "Vertical Adapt上下自适应", + cls: "layout-bg2", + width: 300, + height: 30 + }] +}) + + + +``` + +{% endmethod %} + + +## API +##### 基础属性 +| 参数 | 说明 | 类型 | 可选值 | 默认值 +| :------ |:------------- | :----- | :----|:---- +| hgap | 效果相当于容器左右padding值 | number | — | 0 | +| vgap | 效果相当于容器上下padding值 | number | — | 0 | +| lgap | 效果相当于容器left-padding值 | number | — | 0 | +| rgap | 效果相当于容器right-padding值 | number | — | 0 | +| tgap | 效果相当于容器top-padding值 | number | — | 0 | +| bgap | 效果相当于容器bottom-padding值 | number | — | 0 | +| columnSize | 每列宽度所组成的数组 | array | — | [ ] | + +--- \ No newline at end of file diff --git a/docs/_book/core/layout/vtape.html b/docs/_book/core/layout/vtape.html new file mode 100644 index 000000000..f34880714 --- /dev/null +++ b/docs/_book/core/layout/vtape.html @@ -0,0 +1,2616 @@ + + + + + + + vtape · GitBook + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                    +
                                                                                                                                                                                                    + + + + + + + + +
                                                                                                                                                                                                    + +
                                                                                                                                                                                                    + +
                                                                                                                                                                                                    + + + + + + + + +
                                                                                                                                                                                                    +
                                                                                                                                                                                                    + +
                                                                                                                                                                                                    +
                                                                                                                                                                                                    + +
                                                                                                                                                                                                    + +

                                                                                                                                                                                                    bi.vtape

                                                                                                                                                                                                    +

                                                                                                                                                                                                    垂直tape布局,两列定高,一列自适应

                                                                                                                                                                                                    +
                                                                                                                                                                                                    
                                                                                                                                                                                                    +BI.createWidget({
                                                                                                                                                                                                    +  type: "bi.vtape",
                                                                                                                                                                                                    +  element: "#wrapper",         
                                                                                                                                                                                                    +  items : [
                                                                                                                                                                                                    +    {
                                                                                                                                                                                                    +      height: 100,
                                                                                                                                                                                                    +      el : {
                                                                                                                                                                                                    +        type : 'bi.label',
                                                                                                                                                                                                    +        text : '1',
                                                                                                                                                                                                    +        cls: "layout-bg1"
                                                                                                                                                                                                    +      }
                                                                                                                                                                                                    +    }, {
                                                                                                                                                                                                    +      height: 200,
                                                                                                                                                                                                    +      el : {
                                                                                                                                                                                                    +        type : 'bi.label',
                                                                                                                                                                                                    +        text : '2',
                                                                                                                                                                                                    +        cls: "layout-bg2"
                                                                                                                                                                                                    +      }
                                                                                                                                                                                                    +    }, {
                                                                                                                                                                                                    +      height: 'fill',
                                                                                                                                                                                                    +      el : {
                                                                                                                                                                                                    +        type : 'bi.label',
                                                                                                                                                                                                    +        text : '3',
                                                                                                                                                                                                    +        cls: "layout-bg3"
                                                                                                                                                                                                    +      }
                                                                                                                                                                                                    +    }
                                                                                                                                                                                                    +  ]
                                                                                                                                                                                                    +});
                                                                                                                                                                                                    +
                                                                                                                                                                                                    +
                                                                                                                                                                                                    + + +

                                                                                                                                                                                                    API

                                                                                                                                                                                                    +
                                                                                                                                                                                                    基础属性
                                                                                                                                                                                                    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                    参数说明类型可选值默认值
                                                                                                                                                                                                    hgap效果相当于容器左右padding值number0
                                                                                                                                                                                                    vgap效果相当于容器上下padding值number0
                                                                                                                                                                                                    lgap效果相当于容器left-padding值number0
                                                                                                                                                                                                    rgap效果相当于容器right-padding值number0
                                                                                                                                                                                                    tgap效果相当于容器top-padding值number0
                                                                                                                                                                                                    bgap效果相当于容器bottom-padding值number0
                                                                                                                                                                                                    items子控件数组array{height: 100,el: {type: 'bi.button', text: 'button1'}},{height: 'fill',el: {type: 'bi.button', text: 'button2'}},{height: 200,el: {type: 'bi.button', text: 'button3'}}
                                                                                                                                                                                                    +
                                                                                                                                                                                                    + + +
                                                                                                                                                                                                    + +
                                                                                                                                                                                                    +
                                                                                                                                                                                                    +
                                                                                                                                                                                                    + +

                                                                                                                                                                                                    results matching ""

                                                                                                                                                                                                    +
                                                                                                                                                                                                      + +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      + +

                                                                                                                                                                                                      No results matching ""

                                                                                                                                                                                                      + +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      + +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      + +
                                                                                                                                                                                                      + + + + +
                                                                                                                                                                                                      + + +
                                                                                                                                                                                                      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/_book/core/layout/vtape.md b/docs/_book/core/layout/vtape.md new file mode 100644 index 000000000..370508b76 --- /dev/null +++ b/docs/_book/core/layout/vtape.md @@ -0,0 +1,64 @@ +# bi.vtape + +#### 垂直tape布局,两列定高,一列自适应 + +{% method %} +[source](https://jsfiddle.net/fineui/ufpnz53d/) + +{% common %} +```javascript + +BI.createWidget({ + type: "bi.vtape", + element: "#wrapper", + items : [ + { + height: 100, + el : { + type : 'bi.label', + text : '1', + cls: "layout-bg1" + } + }, { + height: 200, + el : { + type : 'bi.label', + text : '2', + cls: "layout-bg2" + } + }, { + height: 'fill', + el : { + type : 'bi.label', + text : '3', + cls: "layout-bg3" + } + } + ] +}); + + + + + +``` + +{% endmethod %} + + +## API +##### 基础属性 + +| 参数 | 说明 | 类型 | 可选值 | 默认值 +| :------ |:------------- | :----- | :----|:---- +| hgap | 效果相当于容器左右padding值 | number | — | 0 | +| vgap | 效果相当于容器上下padding值 | number | — | 0 | +| lgap | 效果相当于容器left-padding值 | number | — | 0 | +| rgap | 效果相当于容器right-padding值 | number | — | 0 | +| tgap | 效果相当于容器top-padding值 | number | — | 0 | +| bgap | 效果相当于容器bottom-padding值 | number | — | 0 | +| items | 子控件数组 | array | — | {height: 100,el: {type: 'bi.button', text: 'button1'}},{height: 'fill',el: {type: 'bi.button', text: 'button2'}},{height: 200,el: {type: 'bi.button', text: 'button3'}} | + + + +--- \ No newline at end of file diff --git a/docs/_book/core/node_button.html b/docs/_book/core/node_button.html new file mode 100644 index 000000000..d94ebc6e9 --- /dev/null +++ b/docs/_book/core/node_button.html @@ -0,0 +1,2582 @@ + + + + + + + node_button · GitBook + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      + + + + + + + + +
                                                                                                                                                                                                      + +
                                                                                                                                                                                                      + +
                                                                                                                                                                                                      + + + + + + + + +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      + +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      + +
                                                                                                                                                                                                      + +

                                                                                                                                                                                                      bi.NodeButton

                                                                                                                                                                                                      +

                                                                                                                                                                                                      表示一个可以展开的节点, 不仅有选中状态而且有展开状态, BI.BasicButton

                                                                                                                                                                                                      +

                                                                                                                                                                                                      API

                                                                                                                                                                                                      +
                                                                                                                                                                                                      基础属性
                                                                                                                                                                                                      + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                      参数说明类型可选值默认值
                                                                                                                                                                                                      open节点是否展开booleantrue,falsefalse
                                                                                                                                                                                                      +

                                                                                                                                                                                                      对外方法

                                                                                                                                                                                                      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                      名称说明回调参数
                                                                                                                                                                                                      doClick点击展开
                                                                                                                                                                                                      isOnce点击一次后失效
                                                                                                                                                                                                      isOpened判断节点是否展开
                                                                                                                                                                                                      setOpened设置节点展开状态b
                                                                                                                                                                                                      triggerCollapse节点收起
                                                                                                                                                                                                      triggerExpand节点展开
                                                                                                                                                                                                      +
                                                                                                                                                                                                      + + +
                                                                                                                                                                                                      + +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      + +

                                                                                                                                                                                                      results matching ""

                                                                                                                                                                                                      +
                                                                                                                                                                                                        + +
                                                                                                                                                                                                        +
                                                                                                                                                                                                        + +

                                                                                                                                                                                                        No results matching ""

                                                                                                                                                                                                        + +
                                                                                                                                                                                                        +
                                                                                                                                                                                                        +
                                                                                                                                                                                                        + +
                                                                                                                                                                                                        +
                                                                                                                                                                                                        + +
                                                                                                                                                                                                        + + + + +
                                                                                                                                                                                                        + + +
                                                                                                                                                                                                        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/_book/core/node_button.md b/docs/_book/core/node_button.md new file mode 100644 index 000000000..212f98fda --- /dev/null +++ b/docs/_book/core/node_button.md @@ -0,0 +1,28 @@ +# bi.NodeButton + +## 表示一个可以展开的节点, 不仅有选中状态而且有展开状态, [BI.BasicButton](/core/basic_button.md) + + +## API +##### 基础属性 +| 参数 | 说明 | 类型 | 可选值 | 默认值 +| :------ |:------------- | :-----| :----|:---- +| open | 节点是否展开 | boolean | true,false | false | + + +## 对外方法 +| 名称 | 说明 | 回调参数 +| :------ |:------------- | :----- +| doClick | 点击展开| — +| isOnce | 点击一次后失效 | — +| isOpened | 判断节点是否展开| — +| setOpened | 设置节点展开状态| b +| triggerCollapse | 节点收起 | — +| triggerExpand | 节点展开| — + + + + +--- + + diff --git a/docs/_book/core/pane.html b/docs/_book/core/pane.html new file mode 100644 index 000000000..2c7505cd1 --- /dev/null +++ b/docs/_book/core/pane.html @@ -0,0 +1,2601 @@ + + + + + + + pane · GitBook + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                        +
                                                                                                                                                                                                        + + + + + + + + +
                                                                                                                                                                                                        + +
                                                                                                                                                                                                        + +
                                                                                                                                                                                                        + + + + + + + + +
                                                                                                                                                                                                        +
                                                                                                                                                                                                        + +
                                                                                                                                                                                                        +
                                                                                                                                                                                                        + +
                                                                                                                                                                                                        + +

                                                                                                                                                                                                        bi.pane

                                                                                                                                                                                                        +

                                                                                                                                                                                                        当没有元素时有提示信息的view, BI.Widget

                                                                                                                                                                                                        +

                                                                                                                                                                                                        API

                                                                                                                                                                                                        +
                                                                                                                                                                                                        基础属性
                                                                                                                                                                                                        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                        参数说明类型可选值默认值
                                                                                                                                                                                                        tipTexttitle文本stringBI.i18nText("BI-No_Selected_Item")
                                                                                                                                                                                                        overlap是否含有遮罩层booleantrue,falsetrue
                                                                                                                                                                                                        onLoaded已经加载function
                                                                                                                                                                                                        +

                                                                                                                                                                                                        对外方法

                                                                                                                                                                                                        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                        名称说明回调参数
                                                                                                                                                                                                        populate刷新列表items
                                                                                                                                                                                                        empty清空组件
                                                                                                                                                                                                        hasMatched是否有匹配的元素
                                                                                                                                                                                                        loading加载中
                                                                                                                                                                                                        loaded加载完毕
                                                                                                                                                                                                        check检查是否为空
                                                                                                                                                                                                        setTipVisible设tip可见
                                                                                                                                                                                                        +
                                                                                                                                                                                                        + + +
                                                                                                                                                                                                        + +
                                                                                                                                                                                                        +
                                                                                                                                                                                                        +
                                                                                                                                                                                                        + +

                                                                                                                                                                                                        results matching ""

                                                                                                                                                                                                        +
                                                                                                                                                                                                          + +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          + +

                                                                                                                                                                                                          No results matching ""

                                                                                                                                                                                                          + +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          + +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          + +
                                                                                                                                                                                                          + + + + +
                                                                                                                                                                                                          + + +
                                                                                                                                                                                                          + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/_book/core/pane.md b/docs/_book/core/pane.md new file mode 100644 index 000000000..93ea2f6e5 --- /dev/null +++ b/docs/_book/core/pane.md @@ -0,0 +1,32 @@ +# bi.pane + +## 当没有元素时有提示信息的view, [BI.Widget](/core/widget.md) + + +## API +##### 基础属性 +| 参数 | 说明 | 类型 | 可选值 | 默认值 +| :------ |:------------- | :-----| :----|:---- +| tipText | title文本 | string | — | BI.i18nText("BI-No_Selected_Item") | +| overlap| 是否含有遮罩层 | boolean | true,false | true | +| onLoaded | 已经加载 | function | — | — | + + +## 对外方法 +| 名称 | 说明 | 回调参数 +| :------ |:------------- | :----- +| populate | 刷新列表 | items | +| empty | 清空组件 | — | +| hasMatched | 是否有匹配的元素 | —| +| loading | 加载中 | — | +| loaded | 加载完毕 | — +| check | 检查是否为空| — +| setTipVisible | 设tip可见| — + + + + + +--- + + diff --git a/docs/_book/core/single.html b/docs/_book/core/single.html new file mode 100644 index 000000000..41e7f20d0 --- /dev/null +++ b/docs/_book/core/single.html @@ -0,0 +1,2635 @@ + + + + + + + single · GitBook + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          + + + + + + + + +
                                                                                                                                                                                                          + +
                                                                                                                                                                                                          + +
                                                                                                                                                                                                          + + + + + + + + +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          + +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          + +
                                                                                                                                                                                                          + +

                                                                                                                                                                                                          bi.single

                                                                                                                                                                                                          +

                                                                                                                                                                                                          这仅仅只是一个超类, 所有简单控件的基类,类的控制,title的控制,文字超过边界显示3个点,cursor默认pointor,基类BI.Widget

                                                                                                                                                                                                          +

                                                                                                                                                                                                          API

                                                                                                                                                                                                          +
                                                                                                                                                                                                          基础属性
                                                                                                                                                                                                          + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                          参数说明类型可选值默认值
                                                                                                                                                                                                          readonly是否只读booleantrue,falsefalse
                                                                                                                                                                                                          titletitlestringnull
                                                                                                                                                                                                          warningTitle错误titlestringnull
                                                                                                                                                                                                          tipTypetitle类型stringsuccess,warningnull
                                                                                                                                                                                                          value组件value值stringnull
                                                                                                                                                                                                          +

                                                                                                                                                                                                          对外方法

                                                                                                                                                                                                          + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                          名称说明回调参数
                                                                                                                                                                                                          enableHover恢复hover可用opt
                                                                                                                                                                                                          disabledHover取消hover事件
                                                                                                                                                                                                          populate刷新或者清空列表items
                                                                                                                                                                                                          setTitle设置titletitle,opt
                                                                                                                                                                                                          setWarningTitle设置错误titletitle,opt
                                                                                                                                                                                                          getTipType获取tipType
                                                                                                                                                                                                          isReadOnly是否只读
                                                                                                                                                                                                          getTitle获取title
                                                                                                                                                                                                          getWarningTitle获取warningtitle
                                                                                                                                                                                                          setValue设置value值value
                                                                                                                                                                                                          getValue获取value值
                                                                                                                                                                                                          +
                                                                                                                                                                                                          + + +
                                                                                                                                                                                                          + +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          + +

                                                                                                                                                                                                          results matching ""

                                                                                                                                                                                                          +
                                                                                                                                                                                                            + +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            + +

                                                                                                                                                                                                            No results matching ""

                                                                                                                                                                                                            + +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            + +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            + +
                                                                                                                                                                                                            + + + + +
                                                                                                                                                                                                            + + +
                                                                                                                                                                                                            + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/_book/core/single.md b/docs/_book/core/single.md new file mode 100644 index 000000000..a99f542b8 --- /dev/null +++ b/docs/_book/core/single.md @@ -0,0 +1,39 @@ +# bi.single + +## 这仅仅只是一个超类, 所有简单控件的基类,类的控制,title的控制,文字超过边界显示3个点,cursor默认pointor,基类[BI.Widget](/core/widget.md) + + +## API +##### 基础属性 +| 参数 | 说明 | 类型 | 可选值 | 默认值 +| :------ |:------------- | :-----| :----|:---- +| readonly | 是否只读 | boolean | true,false| false | +| title | title | string |— | null | +| warningTitle | 错误title | string | —| null| +| tipType | title类型 | string | success,warning | null | +| value | 组件value值 | string |— | null | + + + +## 对外方法 +| 名称 | 说明 | 回调参数 +| :------ |:------------- | :----- +| enableHover | 恢复hover可用| opt | +| disabledHover | 取消hover事件 | —| +| populate | 刷新或者清空列表 | items | +| setTitle | 设置title| title,opt | +| setWarningTitle | 设置错误title | title,opt| +| getTipType | 获取tipType|—| +| isReadOnly | 是否只读| —| +| getTitle | 获取title|—| +| getWarningTitle | 获取warningtitle| —| +| setValue | 设置value值| value| +|getValue| 获取value值| —| + + + + + +--- + + diff --git a/docs/_book/core/widget.html b/docs/_book/core/widget.html new file mode 100644 index 000000000..16082d4b6 --- /dev/null +++ b/docs/_book/core/widget.html @@ -0,0 +1,2834 @@ + + + + + + + widget · GitBook + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            + + + + + + + + +
                                                                                                                                                                                                            + +
                                                                                                                                                                                                            + +
                                                                                                                                                                                                            + + + + + + + + +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            + +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            + +
                                                                                                                                                                                                            + +

                                                                                                                                                                                                            bi.widget

                                                                                                                                                                                                            +

                                                                                                                                                                                                            所有控件的超类

                                                                                                                                                                                                            +

                                                                                                                                                                                                            API

                                                                                                                                                                                                            +
                                                                                                                                                                                                            基础属性
                                                                                                                                                                                                            + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                            参数说明类型可选值默认值
                                                                                                                                                                                                            root根组件booleantrue,falsefalse
                                                                                                                                                                                                            tagNamehtml标签string"div"
                                                                                                                                                                                                            attributes属性objectnull
                                                                                                                                                                                                            data数据objectnull
                                                                                                                                                                                                            disabled是否可用booleantrue,falsefalse
                                                                                                                                                                                                            invisible是否可见booleantrue,falsefalse
                                                                                                                                                                                                            invalid是否有效booleantrue,falsefalse
                                                                                                                                                                                                            baseCls基础class类string" "
                                                                                                                                                                                                            extraCls扩展class类string" "
                                                                                                                                                                                                            clsclass类名string" "
                                                                                                                                                                                                            +

                                                                                                                                                                                                            生命周期函数

                                                                                                                                                                                                            + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                            名称说明回调参数
                                                                                                                                                                                                            beforeCreate组件实例刚被创建
                                                                                                                                                                                                            created组件实例创建完成
                                                                                                                                                                                                            render渲染组件
                                                                                                                                                                                                            beforeMounted组件挂载之前
                                                                                                                                                                                                            mounted组件挂载
                                                                                                                                                                                                            update组件更新
                                                                                                                                                                                                            beforeDestroyed组件销毁前调用
                                                                                                                                                                                                            destroyed组件销毁后调用
                                                                                                                                                                                                            +

                                                                                                                                                                                                            对外方法

                                                                                                                                                                                                            +
                                                                                                                                                                                                            (注: fineui2.0引入生命周期后,widget的实现类不需要重写setEnable,setValid等方法,会自动调用子组件的对应方法
                                                                                                                                                                                                            +
                                                                                                                                                                                                            ,一些需要在设置状态后做的额外工作可以通过重写_setXXX来实现)
                                                                                                                                                                                                            + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                            名称说明回调参数
                                                                                                                                                                                                            isMounted判断组件是否挂载
                                                                                                                                                                                                            setWidth设置组件宽度width
                                                                                                                                                                                                            setHeight设置组件高度height
                                                                                                                                                                                                            setEnable设置组件是否可用enable
                                                                                                                                                                                                            setVisible设置组件是否可见visible
                                                                                                                                                                                                            setValid设置组件是否有效valid
                                                                                                                                                                                                            doBehavior自定义下拉列表中item项的行为,如高亮,标红等
                                                                                                                                                                                                            getWidth获取组件宽度
                                                                                                                                                                                                            getHeight获取组件高度
                                                                                                                                                                                                            isValid判断是否有效
                                                                                                                                                                                                            addWidget添加组件name,widget
                                                                                                                                                                                                            getWidgetByName根据组件名称获取组件name
                                                                                                                                                                                                            removeWidget移除组件nameOrWidget
                                                                                                                                                                                                            hasWidget判断是否有该组件name
                                                                                                                                                                                                            getName获取组件名称
                                                                                                                                                                                                            setTag设置tagtag
                                                                                                                                                                                                            getTag获取tag
                                                                                                                                                                                                            attr设置组件属性key,value
                                                                                                                                                                                                            getText获取text值
                                                                                                                                                                                                            setText设置text值text
                                                                                                                                                                                                            getValue获取value值
                                                                                                                                                                                                            setValue设置value值value
                                                                                                                                                                                                            isEnabled是否可用
                                                                                                                                                                                                            isVisible是否可见
                                                                                                                                                                                                            disable设置组件不可用
                                                                                                                                                                                                            enable设置组件可用
                                                                                                                                                                                                            valid设置组件有效
                                                                                                                                                                                                            invalid设置组件无效
                                                                                                                                                                                                            invisible设置组件不可见
                                                                                                                                                                                                            visible设置组件可见
                                                                                                                                                                                                            isolate组件不在页面展示,组件事件和内容都在
                                                                                                                                                                                                            empty清空组件
                                                                                                                                                                                                            destroy销毁组件
                                                                                                                                                                                                            +
                                                                                                                                                                                                            + + +
                                                                                                                                                                                                            + +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            + +

                                                                                                                                                                                                            results matching ""

                                                                                                                                                                                                            +
                                                                                                                                                                                                              + +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              + +

                                                                                                                                                                                                              No results matching ""

                                                                                                                                                                                                              + +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              + +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              + +
                                                                                                                                                                                                              + + + + +
                                                                                                                                                                                                              + + +
                                                                                                                                                                                                              + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/_book/core/widget.md b/docs/_book/core/widget.md new file mode 100644 index 000000000..5cc99bcc7 --- /dev/null +++ b/docs/_book/core/widget.md @@ -0,0 +1,77 @@ +# bi.widget + +## 所有控件的超类 + +## API +##### 基础属性 +| 参数 | 说明 | 类型 | 可选值 | 默认值 +| :------ |:------------- | :-----| :----|:---- +| root | 根组件 | boolean | true,false | false | +| tagName | html标签 | string| —| "div" | +| attributes | 属性| object | —| null | +| data | 数据 | object | — | null | +| disabled | 是否可用 | boolean |true,false | false | +| invisible | 是否可见 | boolean | true,false | false| +| invalid | 是否有效 | boolean | true,false |false | +| baseCls | 基础class类 | string | —| " "| +| extraCls | 扩展class类 | string| — | " "| +| cls | class类名 | string |— | " "| + +## 生命周期函数 +| 名称 | 说明 | 回调参数 +| :------ |:------------- | :----- +| beforeCreate | 组件实例刚被创建 |— | +| created | 组件实例创建完成 | —| +| render | 渲染组件 | — | +| beforeMounted | 组件挂载之前| —| +| mounted | 组件挂载 |—| +| update | 组件更新 | —| +| beforeDestroyed | 组件销毁前调用| —| +| destroyed | 组件销毁后调用 | —| + + +## 对外方法 +#####(注: fineui2.0引入生命周期后,widget的实现类不需要重写setEnable,setValid等方法,会自动调用子组件的对应方法 +#####,一些需要在设置状态后做的额外工作可以通过重写_setXXX来实现) + +| 名称 | 说明 | 回调参数 +| :------ |:------------- | :----- +| isMounted | 判断组件是否挂载| — | +| setWidth | 设置组件宽度 | width | +| setHeight | 设置组件高度 | height | +| setEnable | 设置组件是否可用 | enable | +| setVisible | 设置组件是否可见 | visible | +| setValid | 设置组件是否有效 | valid| +| doBehavior | 自定义下拉列表中item项的行为,如高亮,标红等 | —| +| getWidth | 获取组件宽度 | —| +| getHeight| 获取组件高度| —| +| isValid | 判断是否有效 | —| +| addWidget | 添加组件 | name,widget| +| getWidgetByName | 根据组件名称获取组件| name | +| removeWidget | 移除组件 | nameOrWidget | +| hasWidget | 判断是否有该组件 | name | +| getName | 获取组件名称 | —| +| setTag | 设置tag | tag | +| getTag | 获取tag | —| +| attr | 设置组件属性 | key,value | +| getText | 获取text值 | —| +| setText | 设置text值 | text| +| getValue | 获取value值 | —| +|setValue| 设置value值| value| +| isEnabled | 是否可用 | —| +| isVisible | 是否可见 | —| +| disable | 设置组件不可用 | —| +| enable | 设置组件可用| —| +| valid | 设置组件有效| —| +|invalid | 设置组件无效 | —| +| invisible | 设置组件不可见 | —| +| visible | 设置组件可见 | —| +| isolate | 组件不在页面展示,组件事件和内容都在 | —| +| empty | 清空组件 | —| +| destroy | 销毁组件| —| + + + +--- + + diff --git a/docs/_book/detailed/bi.button/general.html b/docs/_book/detailed/bi.button/general.html new file mode 100644 index 000000000..11815960c --- /dev/null +++ b/docs/_book/detailed/bi.button/general.html @@ -0,0 +1,2515 @@ + + + + + + + 通用按钮 · GitBook + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              + + + + + + + + +
                                                                                                                                                                                                              + +
                                                                                                                                                                                                              + +
                                                                                                                                                                                                              + + + + + + + + +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              + +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              + +
                                                                                                                                                                                                              + +

                                                                                                                                                                                                              bi.button

                                                                                                                                                                                                              +

                                                                                                                                                                                                              通用按钮,详情见BI.button

                                                                                                                                                                                                              + + +
                                                                                                                                                                                                              + +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              + +

                                                                                                                                                                                                              results matching ""

                                                                                                                                                                                                              +
                                                                                                                                                                                                                + +
                                                                                                                                                                                                                +
                                                                                                                                                                                                                + +

                                                                                                                                                                                                                No results matching ""

                                                                                                                                                                                                                + +
                                                                                                                                                                                                                +
                                                                                                                                                                                                                +
                                                                                                                                                                                                                + +
                                                                                                                                                                                                                +
                                                                                                                                                                                                                + +
                                                                                                                                                                                                                + + + + +
                                                                                                                                                                                                                + + +
                                                                                                                                                                                                                + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/_book/detailed/bi.button/general.md b/docs/_book/detailed/bi.button/general.md new file mode 100644 index 000000000..76adf095c --- /dev/null +++ b/docs/_book/detailed/bi.button/general.md @@ -0,0 +1,7 @@ +# bi.button + +## 通用按钮,详情见[BI.button](/base/button/button.md) + + + + diff --git a/docs/_book/detailed/bi.button/items.html b/docs/_book/detailed/bi.button/items.html new file mode 100644 index 000000000..c078740cd --- /dev/null +++ b/docs/_book/detailed/bi.button/items.html @@ -0,0 +1,2619 @@ + + + + + + + 各种items · GitBook + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                +
                                                                                                                                                                                                                + + + + + + + + +
                                                                                                                                                                                                                + +
                                                                                                                                                                                                                + +
                                                                                                                                                                                                                + + + + + + + + +
                                                                                                                                                                                                                +
                                                                                                                                                                                                                + +
                                                                                                                                                                                                                +
                                                                                                                                                                                                                + +
                                                                                                                                                                                                                + +

                                                                                                                                                                                                                各种items

                                                                                                                                                                                                                +
                                                                                                                                                                                                                
                                                                                                                                                                                                                +BI.createWidget({
                                                                                                                                                                                                                +    type: 'bi.vertical',
                                                                                                                                                                                                                +    element: "#wrapper",
                                                                                                                                                                                                                +    items: [{
                                                                                                                                                                                                                +        type: "bi.label",
                                                                                                                                                                                                                +        height: 30,
                                                                                                                                                                                                                +        text: "单选item"
                                                                                                                                                                                                                +    }, {
                                                                                                                                                                                                                +        type: "bi.single_select_item",
                                                                                                                                                                                                                +        text: "单选项"
                                                                                                                                                                                                                +    }, {
                                                                                                                                                                                                                +        type: "bi.label",
                                                                                                                                                                                                                +        height: 30,
                                                                                                                                                                                                                +        text: "复选item"
                                                                                                                                                                                                                +    }, {
                                                                                                                                                                                                                +        type: "bi.multi_select_item",
                                                                                                                                                                                                                +        text: "复选项"
                                                                                                                                                                                                                +    }]
                                                                                                                                                                                                                +});
                                                                                                                                                                                                                +
                                                                                                                                                                                                                +
                                                                                                                                                                                                                + +

                                                                                                                                                                                                                API

                                                                                                                                                                                                                +
                                                                                                                                                                                                                基础属性
                                                                                                                                                                                                                + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                参数说明类型可选值默认值
                                                                                                                                                                                                                hgap效果相当于文本框左右padding值,如果clear属性为true,该属性值置0number10
                                                                                                                                                                                                                vgap效果相当于文本框上下padding值number0
                                                                                                                                                                                                                lgap效果相当于文本框left-padding值number0
                                                                                                                                                                                                                rgap效果相当于文本框right-padding值number0
                                                                                                                                                                                                                tgap效果相当于文本框top-padding值number0
                                                                                                                                                                                                                bgap效果相当于文本框bottom-padding值number0
                                                                                                                                                                                                                items子控件数组array[ ]
                                                                                                                                                                                                                width宽度number
                                                                                                                                                                                                                height高度number
                                                                                                                                                                                                                +
                                                                                                                                                                                                                + + +
                                                                                                                                                                                                                + +
                                                                                                                                                                                                                +
                                                                                                                                                                                                                +
                                                                                                                                                                                                                + +

                                                                                                                                                                                                                results matching ""

                                                                                                                                                                                                                +
                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  + +

                                                                                                                                                                                                                  No results matching ""

                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                  + + + + +
                                                                                                                                                                                                                  + + +
                                                                                                                                                                                                                  + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/_book/detailed/bi.button/items.md b/docs/_book/detailed/bi.button/items.md new file mode 100644 index 000000000..57bc8ae65 --- /dev/null +++ b/docs/_book/detailed/bi.button/items.md @@ -0,0 +1,52 @@ +## 各种items + +{% method %} +[source](https://jsfiddle.net/fineui/jyo0qdwL/) + +{% common %} +```javascript + +BI.createWidget({ + type: 'bi.vertical', + element: "#wrapper", + items: [{ + type: "bi.label", + height: 30, + text: "单选item" + }, { + type: "bi.single_select_item", + text: "单选项" + }, { + type: "bi.label", + height: 30, + text: "复选item" + }, { + type: "bi.multi_select_item", + text: "复选项" + }] +}); + + +``` + +{% endmethod %} + +## API +##### 基础属性 +| 参数 | 说明 | 类型 | 可选值 | 默认值 +| :------ |:------------- | :-----| :----|:---- +| hgap | 效果相当于文本框左右padding值,如果clear属性为true,该属性值置0 | number | — | 10 | +| vgap | 效果相当于文本框上下padding值 | number | — | 0 | +| lgap | 效果相当于文本框left-padding值 | number | — | 0 | +| rgap | 效果相当于文本框right-padding值 | number | — | 0 | +| tgap |效果相当于文本框top-padding值 | number | — | 0 | +| bgap | 效果相当于文本框bottom-padding值 | number | — | 0 | +| items | 子控件数组 | array | — | [ ] | +| width | 宽度 | number | — | — | +| height | 高度 | number | — | — | + + + +--- + + diff --git a/docs/_book/detailed/bi.button/node.html b/docs/_book/detailed/bi.button/node.html new file mode 100644 index 000000000..08febf3fa --- /dev/null +++ b/docs/_book/detailed/bi.button/node.html @@ -0,0 +1,2626 @@ + + + + + + + 各种节点nodes · GitBook + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  + + + + + + + + +
                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                  + + + + + + + + +
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                  + +

                                                                                                                                                                                                                  各种节点nodes

                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  
                                                                                                                                                                                                                  +BI.createWidget({
                                                                                                                                                                                                                  +    type: 'bi.vertical',
                                                                                                                                                                                                                  +    element: "#wrapper",
                                                                                                                                                                                                                  +    items: [{
                                                                                                                                                                                                                  +        type: "bi.label",
                                                                                                                                                                                                                  +        height: 30,
                                                                                                                                                                                                                  +        text: "十字形的节点"
                                                                                                                                                                                                                  +    }, {
                                                                                                                                                                                                                  +        type: "bi.plus_group_node",
                                                                                                                                                                                                                  +        text: "十字形的节点"
                                                                                                                                                                                                                  +    }, {
                                                                                                                                                                                                                  +        type: "bi.label",
                                                                                                                                                                                                                  +        height: 30,
                                                                                                                                                                                                                  +        text: "三角形的节点"
                                                                                                                                                                                                                  +    }, {
                                                                                                                                                                                                                  +        type: "bi.triangle_group_node",
                                                                                                                                                                                                                  +        text: "三角形的节点"
                                                                                                                                                                                                                  +    }, {
                                                                                                                                                                                                                  +        type: "bi.label",
                                                                                                                                                                                                                  +        height: 30,
                                                                                                                                                                                                                  +        text: "箭头节点"
                                                                                                                                                                                                                  +    }, {
                                                                                                                                                                                                                  +        type: "bi.arrow_group_node",
                                                                                                                                                                                                                  +        text: "箭头节点"
                                                                                                                                                                                                                  +    }]
                                                                                                                                                                                                                  +});
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  + +

                                                                                                                                                                                                                  API

                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  基础属性
                                                                                                                                                                                                                  + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                  参数说明类型可选值默认值
                                                                                                                                                                                                                  hgap效果相当于文本框左右padding值,如果clear属性为true,该属性值置0number10
                                                                                                                                                                                                                  vgap效果相当于文本框上下padding值number0
                                                                                                                                                                                                                  lgap效果相当于文本框left-padding值number0
                                                                                                                                                                                                                  rgap效果相当于文本框right-padding值number0
                                                                                                                                                                                                                  tgap效果相当于文本框top-padding值number0
                                                                                                                                                                                                                  bgap效果相当于文本框bottom-padding值number0
                                                                                                                                                                                                                  items子控件数组array[ ]
                                                                                                                                                                                                                  width宽度number
                                                                                                                                                                                                                  height高度number
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  + + +
                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  + +

                                                                                                                                                                                                                  results matching ""

                                                                                                                                                                                                                  +
                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                    +
                                                                                                                                                                                                                    + +

                                                                                                                                                                                                                    No results matching ""

                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                    +
                                                                                                                                                                                                                    +
                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                    +
                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                    + + + + +
                                                                                                                                                                                                                    + + +
                                                                                                                                                                                                                    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/_book/detailed/bi.button/node.md b/docs/_book/detailed/bi.button/node.md new file mode 100644 index 000000000..1445723ba --- /dev/null +++ b/docs/_book/detailed/bi.button/node.md @@ -0,0 +1,58 @@ +## 各种节点nodes + +{% method %} +[source](https://jsfiddle.net/fineui/jg257cog/) + +{% common %} +```javascript + +BI.createWidget({ + type: 'bi.vertical', + element: "#wrapper", + items: [{ + type: "bi.label", + height: 30, + text: "十字形的节点" + }, { + type: "bi.plus_group_node", + text: "十字形的节点" + }, { + type: "bi.label", + height: 30, + text: "三角形的节点" + }, { + type: "bi.triangle_group_node", + text: "三角形的节点" + }, { + type: "bi.label", + height: 30, + text: "箭头节点" + }, { + type: "bi.arrow_group_node", + text: "箭头节点" + }] +}); + + +``` + +{% endmethod %} + +## API +##### 基础属性 +| 参数 | 说明 | 类型 | 可选值 | 默认值 +| :------ |:------------- | :-----| :----|:---- +| hgap | 效果相当于文本框左右padding值,如果clear属性为true,该属性值置0 | number | — | 10 | +| vgap | 效果相当于文本框上下padding值 | number | — | 0 | +| lgap | 效果相当于文本框left-padding值 | number | — | 0 | +| rgap | 效果相当于文本框right-padding值 | number | — | 0 | +| tgap |效果相当于文本框top-padding值 | number | — | 0 | +| bgap | 效果相当于文本框bottom-padding值 | number | — | 0 | +| items | 子控件数组 | array | — | [ ] | +| width | 宽度 | number | — | — | +| height | 高度 | number | — | — | + + +--- + + diff --git a/docs/_book/detailed/bi.button/segment.html b/docs/_book/detailed/bi.button/segment.html new file mode 100644 index 000000000..b567ddaeb --- /dev/null +++ b/docs/_book/detailed/bi.button/segment.html @@ -0,0 +1,2624 @@ + + + + + + + 各种segment · GitBook + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                    +
                                                                                                                                                                                                                    + + + + + + + + +
                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                    + + + + + + + + +
                                                                                                                                                                                                                    +
                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                    +
                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                    + +

                                                                                                                                                                                                                    bi.sgement

                                                                                                                                                                                                                    +

                                                                                                                                                                                                                    各种segment

                                                                                                                                                                                                                    +
                                                                                                                                                                                                                    
                                                                                                                                                                                                                    +BI.createWidget({
                                                                                                                                                                                                                    +    type: "bi.vertical",
                                                                                                                                                                                                                    +    element: "#wrapper",
                                                                                                                                                                                                                    +    items: [{
                                                                                                                                                                                                                    +        type: "bi.label",
                                                                                                                                                                                                                    +        height: 30,
                                                                                                                                                                                                                    +        text: "默认风格"
                                                                                                                                                                                                                    +    }, {
                                                                                                                                                                                                                    +        type: "bi.segment",
                                                                                                                                                                                                                    +        items: [{
                                                                                                                                                                                                                    +            text: "tab1",
                                                                                                                                                                                                                    +            value: 1,
                                                                                                                                                                                                                    +            selected: true
                                                                                                                                                                                                                    +        }, {
                                                                                                                                                                                                                    +            text: "tab2",
                                                                                                                                                                                                                    +            value: 2
                                                                                                                                                                                                                    +        }, {
                                                                                                                                                                                                                    +            text: "tab3 disabled",
                                                                                                                                                                                                                    +            disabled: true,
                                                                                                                                                                                                                    +            value: 3
                                                                                                                                                                                                                    +        }]
                                                                                                                                                                                                                    +    }],
                                                                                                                                                                                                                    +    hgap: 50,
                                                                                                                                                                                                                    +    vgap: 20
                                                                                                                                                                                                                    +});
                                                                                                                                                                                                                    +
                                                                                                                                                                                                                    +
                                                                                                                                                                                                                    + +

                                                                                                                                                                                                                    API

                                                                                                                                                                                                                    +
                                                                                                                                                                                                                    基础属性
                                                                                                                                                                                                                    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                    参数说明类型可选值默认值
                                                                                                                                                                                                                    hgap效果相当于文本框左右padding值number10
                                                                                                                                                                                                                    vgap效果相当于文本框上下padding值number0
                                                                                                                                                                                                                    lgap效果相当于文本框left-padding值number0
                                                                                                                                                                                                                    rgap效果相当于文本框right-padding值number0
                                                                                                                                                                                                                    tgap效果相当于文本框top-padding值number0
                                                                                                                                                                                                                    bgap效果相当于文本框bottom-padding值number0
                                                                                                                                                                                                                    items子控件数组array[ ]
                                                                                                                                                                                                                    width宽度number
                                                                                                                                                                                                                    height高度number
                                                                                                                                                                                                                    +
                                                                                                                                                                                                                    + + +
                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                    +
                                                                                                                                                                                                                    +
                                                                                                                                                                                                                    + +

                                                                                                                                                                                                                    results matching ""

                                                                                                                                                                                                                    +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +

                                                                                                                                                                                                                      No results matching ""

                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + + + + +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/_book/detailed/bi.button/segment.md b/docs/_book/detailed/bi.button/segment.md new file mode 100644 index 000000000..2261e781e --- /dev/null +++ b/docs/_book/detailed/bi.button/segment.md @@ -0,0 +1,58 @@ +# bi.sgement + +## 各种segment + +{% method %} +[source](https://jsfiddle.net/fineui/7skvd64L/) + +{% common %} +```javascript + +BI.createWidget({ + type: "bi.vertical", + element: "#wrapper", + items: [{ + type: "bi.label", + height: 30, + text: "默认风格" + }, { + type: "bi.segment", + items: [{ + text: "tab1", + value: 1, + selected: true + }, { + text: "tab2", + value: 2 + }, { + text: "tab3 disabled", + disabled: true, + value: 3 + }] + }], + hgap: 50, + vgap: 20 +}); + +``` + +{% endmethod %} + +## API +##### 基础属性 +| 参数 | 说明 | 类型 | 可选值 | 默认值 +| :------ |:------------- | :-----| :----|:---- +| hgap | 效果相当于文本框左右padding值 | number | — | 10 | +| vgap | 效果相当于文本框上下padding值 | number | — | 0 | +| lgap | 效果相当于文本框left-padding值 | number | — | 0 | +| rgap | 效果相当于文本框right-padding值 | number | — | 0 | +| tgap |效果相当于文本框top-padding值 | number | — | 0 | +| bgap | 效果相当于文本框bottom-padding值 | number | — | 0 | +| items | 子控件数组 | array | — | [ ] | +| width | 宽度 | number | — | — | +| height | 高度 | number | — | — | + + +--- + + diff --git a/docs/_book/detailed/bi.button/tooltip.html b/docs/_book/detailed/bi.button/tooltip.html new file mode 100644 index 000000000..89a5dedca --- /dev/null +++ b/docs/_book/detailed/bi.button/tooltip.html @@ -0,0 +1,2614 @@ + + + + + + + 提示性信息 · GitBook + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + + + + +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + + + + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + +

                                                                                                                                                                                                                      提示性信息

                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      var toast = BI.createWidget({
                                                                                                                                                                                                                      +    type: "bi.vertical",
                                                                                                                                                                                                                      +    element: "#wrapper",
                                                                                                                                                                                                                      +    items: [{
                                                                                                                                                                                                                      +        el: {
                                                                                                                                                                                                                      +            type: 'bi.button',
                                                                                                                                                                                                                      +            text: '简单Toast测试',
                                                                                                                                                                                                                      +            height: 30,
                                                                                                                                                                                                                      +            handler: function () {
                                                                                                                                                                                                                      +                BI.Msg.toast("这是一条简单的数据");
                                                                                                                                                                                                                      +            }
                                                                                                                                                                                                                      +        }
                                                                                                                                                                                                                      +    }],
                                                                                                                                                                                                                      +    vgap: 20
                                                                                                                                                                                                                      +});
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +

                                                                                                                                                                                                                      API

                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      基础属性
                                                                                                                                                                                                                      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                      参数说明类型可选值默认值
                                                                                                                                                                                                                      hgap效果相当于文本框左右padding值number10
                                                                                                                                                                                                                      vgap效果相当于文本框上下padding值number0
                                                                                                                                                                                                                      lgap效果相当于文本框left-padding值number0
                                                                                                                                                                                                                      rgap效果相当于文本框right-padding值number0
                                                                                                                                                                                                                      tgap效果相当于文本框top-padding值number0
                                                                                                                                                                                                                      bgap效果相当于文本框bottom-padding值number0
                                                                                                                                                                                                                      items子控件数组array[ ]
                                                                                                                                                                                                                      width宽度number
                                                                                                                                                                                                                      height高度number
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +

                                                                                                                                                                                                                      results matching ""

                                                                                                                                                                                                                      +
                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                        +
                                                                                                                                                                                                                        + +

                                                                                                                                                                                                                        No results matching ""

                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                        +
                                                                                                                                                                                                                        +
                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                        +
                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                        + + + + +
                                                                                                                                                                                                                        + + +
                                                                                                                                                                                                                        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/_book/detailed/bi.button/tooltip.md b/docs/_book/detailed/bi.button/tooltip.md new file mode 100644 index 000000000..ad2075e88 --- /dev/null +++ b/docs/_book/detailed/bi.button/tooltip.md @@ -0,0 +1,46 @@ +## 提示性信息 + +{% method %} +[source](https://jsfiddle.net/fineui/gn25yyrx/) + +{% common %} +```javascript +var toast = BI.createWidget({ + type: "bi.vertical", + element: "#wrapper", + items: [{ + el: { + type: 'bi.button', + text: '简单Toast测试', + height: 30, + handler: function () { + BI.Msg.toast("这是一条简单的数据"); + } + } + }], + vgap: 20 +}); + +``` + +{% endmethod %} + +## API +##### 基础属性 +| 参数 | 说明 | 类型 | 可选值 | 默认值 +| :------ |:------------- | :-----| :----|:---- +| hgap | 效果相当于文本框左右padding值 | number | — | 10 | +| vgap | 效果相当于文本框上下padding值 | number | — | 0 | +| lgap | 效果相当于文本框left-padding值 | number | — | 0 | +| rgap | 效果相当于文本框right-padding值 | number | — | 0 | +| tgap |效果相当于文本框top-padding值 | number | — | 0 | +| bgap | 效果相当于文本框bottom-padding值 | number | — | 0 | +| items | 子控件数组 | array | — | [ ] | +| width | 宽度 | number | — | — | +| height | 高度 | number | — | — | + + + +--- + + diff --git a/docs/_book/detailed/combo/multilayer_select_tree_combo.html b/docs/_book/detailed/combo/multilayer_select_tree_combo.html new file mode 100644 index 000000000..26f4ad4cb --- /dev/null +++ b/docs/_book/detailed/combo/multilayer_select_tree_combo.html @@ -0,0 +1,2587 @@ + + + + + + + multilayer_select_tree_combo · GitBook + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                        +
                                                                                                                                                                                                                        + + + + + + + + +
                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                        + + + + + + + + +
                                                                                                                                                                                                                        +
                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                        +
                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                        + +

                                                                                                                                                                                                                        bi.multilayer_select_tree_combo

                                                                                                                                                                                                                        +

                                                                                                                                                                                                                        多层级下拉可选节点树

                                                                                                                                                                                                                        +
                                                                                                                                                                                                                        var tree = BI.createWidget({
                                                                                                                                                                                                                        +  type: "bi.multilayer_select_tree_combo",
                                                                                                                                                                                                                        +  element: 'body',
                                                                                                                                                                                                                        +  items: [],
                                                                                                                                                                                                                        +  text: "默认值",
                                                                                                                                                                                                                        +  width: 300,
                                                                                                                                                                                                                        +});
                                                                                                                                                                                                                        +
                                                                                                                                                                                                                        +
                                                                                                                                                                                                                        + + + +

                                                                                                                                                                                                                        参数设置

                                                                                                                                                                                                                        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                        参数说明类型默认值
                                                                                                                                                                                                                        height高度number30
                                                                                                                                                                                                                        text文本框值string''
                                                                                                                                                                                                                        items元素arraynull
                                                                                                                                                                                                                        +

                                                                                                                                                                                                                        方法

                                                                                                                                                                                                                        + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                        方法名说明回调参数
                                                                                                                                                                                                                        populate刷新内容items: 子项数组
                                                                                                                                                                                                                        setValue设置值setValue
                                                                                                                                                                                                                        getValue获取值getValue
                                                                                                                                                                                                                        +
                                                                                                                                                                                                                        + + +
                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                        +
                                                                                                                                                                                                                        +
                                                                                                                                                                                                                        + +

                                                                                                                                                                                                                        results matching ""

                                                                                                                                                                                                                        +
                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          + +

                                                                                                                                                                                                                          No results matching ""

                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                          + + + + +
                                                                                                                                                                                                                          + + +
                                                                                                                                                                                                                          + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/_book/detailed/combo/multilayer_select_tree_combo.md b/docs/_book/detailed/combo/multilayer_select_tree_combo.md new file mode 100644 index 000000000..f5934c7a6 --- /dev/null +++ b/docs/_book/detailed/combo/multilayer_select_tree_combo.md @@ -0,0 +1,41 @@ +# bi.multilayer_select_tree_combo + +### 多层级下拉可选节点树 + +{% method %} +[source](https://jsfiddle.net/fineui/ryo1cnrL/) + +{% common %} +```javascript +var tree = BI.createWidget({ + type: "bi.multilayer_select_tree_combo", + element: 'body', + items: [], + text: "默认值", + width: 300, +}); +``` + +{% endmethod %} + + + +### 参数设置 + +| 参数 | 说明 | 类型 | 默认值 | +| ------ | ---- | ------ | ---- | +| height | 高度 | number | 30 | +| text | 文本框值 | string | '' | +| items | 元素 | array | null | + + + +### 方法 + +| 方法名 | 说明 | 回调参数 | +| -------- | ---- | ----------- | +| populate | 刷新内容 | items: 子项数组 | +| setValue | 设置值 | setValue | +| getValue | 获取值 | getValue | + +------ \ No newline at end of file diff --git a/docs/_book/detailed/combo/multilayer_single_tree_combo.html b/docs/_book/detailed/combo/multilayer_single_tree_combo.html new file mode 100644 index 000000000..b4a2860a8 --- /dev/null +++ b/docs/_book/detailed/combo/multilayer_single_tree_combo.html @@ -0,0 +1,2595 @@ + + + + + + + multilayer_single_tree_combo · GitBook + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          + + + + + + + + +
                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                          + + + + + + + + +
                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                          + +

                                                                                                                                                                                                                          bi.multilayer_single_tree_combo

                                                                                                                                                                                                                          +

                                                                                                                                                                                                                          多层级下拉单选树

                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          var tree = BI.createWidget({
                                                                                                                                                                                                                          +  type: "bi.multilayer_single_tree_combo",
                                                                                                                                                                                                                          +  element: 'body',
                                                                                                                                                                                                                          +  items: [],
                                                                                                                                                                                                                          +  text: "默认值",
                                                                                                                                                                                                                          +  width: 300,
                                                                                                                                                                                                                          +});
                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          + + + +

                                                                                                                                                                                                                          参数设置

                                                                                                                                                                                                                          + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                          参数说明类型默认值
                                                                                                                                                                                                                          height高度number30
                                                                                                                                                                                                                          text文本框值string''
                                                                                                                                                                                                                          itemsCreator元素创造器functionBI.emptyFn
                                                                                                                                                                                                                          items元素arraynull
                                                                                                                                                                                                                          +

                                                                                                                                                                                                                          方法

                                                                                                                                                                                                                          + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                          方法名说明回调参数
                                                                                                                                                                                                                          populate刷新内容items: 子项数组
                                                                                                                                                                                                                          setValue设置值setValue
                                                                                                                                                                                                                          getValue获取值getValue
                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          + + +
                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          + +

                                                                                                                                                                                                                          results matching ""

                                                                                                                                                                                                                          +
                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            + +

                                                                                                                                                                                                                            No results matching ""

                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                            + + + + +
                                                                                                                                                                                                                            + + +
                                                                                                                                                                                                                            + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/_book/detailed/combo/multilayer_single_tree_combo.md b/docs/_book/detailed/combo/multilayer_single_tree_combo.md new file mode 100644 index 000000000..de905edce --- /dev/null +++ b/docs/_book/detailed/combo/multilayer_single_tree_combo.md @@ -0,0 +1,42 @@ +# bi.multilayer_single_tree_combo + +### 多层级下拉单选树 + +{% method %} +[source](https://jsfiddle.net/fineui/o0u3vp83/) + +{% common %} +```javascript +var tree = BI.createWidget({ + type: "bi.multilayer_single_tree_combo", + element: 'body', + items: [], + text: "默认值", + width: 300, +}); +``` + +{% endmethod %} + + + +### 参数设置 + +| 参数 | 说明 | 类型 | 默认值 | +| ------------ | ----- | -------- | ---------- | +| height | 高度 | number | 30 | +| text | 文本框值 | string | '' | +| itemsCreator | 元素创造器 | function | BI.emptyFn | +| items | 元素 | array | null | + + + +### 方法 + +| 方法名 | 说明 | 回调参数 | +| -------- | ---- | ----------- | +| populate | 刷新内容 | items: 子项数组 | +| setValue | 设置值 | setValue | +| getValue | 获取值 | getValue | + +------ \ No newline at end of file diff --git a/docs/_book/detailed/combo/select_tree_combo.html b/docs/_book/detailed/combo/select_tree_combo.html new file mode 100644 index 000000000..2d8e9b870 --- /dev/null +++ b/docs/_book/detailed/combo/select_tree_combo.html @@ -0,0 +1,2589 @@ + + + + + + + select_tree_combo · GitBook + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            + + + + + + + + +
                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                            + + + + + + + + +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                            + +

                                                                                                                                                                                                                            bi.select_tree_combo

                                                                                                                                                                                                                            +

                                                                                                                                                                                                                            二级可选节点下拉框树

                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            var tree = BI.createWidget({
                                                                                                                                                                                                                            +  type: "bi.select_tree_combo",
                                                                                                                                                                                                                            +  element: 'body',
                                                                                                                                                                                                                            +  items: [],
                                                                                                                                                                                                                            +  text: "默认值",
                                                                                                                                                                                                                            +  width: 300,
                                                                                                                                                                                                                            +});
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            + + + +

                                                                                                                                                                                                                            参数设置

                                                                                                                                                                                                                            + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                            参数说明类型默认值
                                                                                                                                                                                                                            height高度number30
                                                                                                                                                                                                                            text文本框值string''
                                                                                                                                                                                                                            items元素arraynull
                                                                                                                                                                                                                            +

                                                                                                                                                                                                                            方法

                                                                                                                                                                                                                            + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                            方法名说明回调参数
                                                                                                                                                                                                                            populate刷新内容items: 子项数组
                                                                                                                                                                                                                            setValue设置值setValue
                                                                                                                                                                                                                            getValue获取值getValue
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            + + +
                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            + +

                                                                                                                                                                                                                            results matching ""

                                                                                                                                                                                                                            +
                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                              No results matching ""

                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                              + + + + +
                                                                                                                                                                                                                              + + +
                                                                                                                                                                                                                              + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/_book/detailed/combo/select_tree_combo.md b/docs/_book/detailed/combo/select_tree_combo.md new file mode 100644 index 000000000..30d7679c0 --- /dev/null +++ b/docs/_book/detailed/combo/select_tree_combo.md @@ -0,0 +1,41 @@ +# bi.select_tree_combo + +### 二级可选节点下拉框树 + +{% method %} +[source](https://jsfiddle.net/fineui/Lgqr17tg/) + +{% common %} +```javascript +var tree = BI.createWidget({ + type: "bi.select_tree_combo", + element: 'body', + items: [], + text: "默认值", + width: 300, +}); +``` + +{% endmethod %} + + + +### 参数设置 + +| 参数 | 说明 | 类型 | 默认值 | +| ------- | ---- | ------ | ---- | +| height | 高度 | number | 30 | +| text | 文本框值 | string | '' | +| items | 元素 | array | null | + + + +### 方法 + +| 方法名 | 说明 | 回调参数 | +| -------- | ---- | ----------- | +| populate | 刷新内容 | items: 子项数组 | +| setValue | 设置值 | setValue | +| getValue | 获取值 | getValue | + +------ \ No newline at end of file diff --git a/docs/_book/detailed/combo/single_tree_combo.html b/docs/_book/detailed/combo/single_tree_combo.html new file mode 100644 index 000000000..9c268bfb8 --- /dev/null +++ b/docs/_book/detailed/combo/single_tree_combo.html @@ -0,0 +1,2609 @@ + + + + + + + single_tree_combo · GitBook + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + + + + + + + + +
                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                              + + + + + + + + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                              bi.single_tree_combo

                                                                                                                                                                                                                              +

                                                                                                                                                                                                                              二级树下拉框

                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              var tree = BI.createWidget({
                                                                                                                                                                                                                              +  type: "bi.single_tree_combo",
                                                                                                                                                                                                                              +  element: 'body',
                                                                                                                                                                                                                              +  items: [],
                                                                                                                                                                                                                              +  text: "默认值",
                                                                                                                                                                                                                              +  width: 300,
                                                                                                                                                                                                                              +});
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + + + +

                                                                                                                                                                                                                              参数设置

                                                                                                                                                                                                                              + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                              参数说明类型默认值
                                                                                                                                                                                                                              trigger下拉列表的弹出方式object{}
                                                                                                                                                                                                                              height高度number30
                                                                                                                                                                                                                              text文本框值string''
                                                                                                                                                                                                                              items元素arraynull
                                                                                                                                                                                                                              +

                                                                                                                                                                                                                              方法

                                                                                                                                                                                                                              + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                              方法名说明参数
                                                                                                                                                                                                                              populate刷新内容items: 子项数组
                                                                                                                                                                                                                              setValue设置值setValue
                                                                                                                                                                                                                              getValue获取值getValue
                                                                                                                                                                                                                              +

                                                                                                                                                                                                                              事件

                                                                                                                                                                                                                              + + + + + + + + + + + + + +
                                                                                                                                                                                                                              事件说明
                                                                                                                                                                                                                              BI.SingleTreeCombo.EVENT_BEFORE_POPUPVIEW下拉框弹出前触发
                                                                                                                                                                                                                              +

                                                                                                                                                                                                                              其他事件详见Input

                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + + +
                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                              results matching ""

                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + +

                                                                                                                                                                                                                                No results matching ""

                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                + + + + +
                                                                                                                                                                                                                                + + +
                                                                                                                                                                                                                                + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/_book/detailed/combo/single_tree_combo.md b/docs/_book/detailed/combo/single_tree_combo.md new file mode 100644 index 000000000..e40484146 --- /dev/null +++ b/docs/_book/detailed/combo/single_tree_combo.md @@ -0,0 +1,51 @@ +# bi.single_tree_combo + +### 二级树下拉框 + +{% method %} +[source](https://jsfiddle.net/fineui/oxkb9uw5/) + +{% common %} +```javascript +var tree = BI.createWidget({ + type: "bi.single_tree_combo", + element: 'body', + items: [], + text: "默认值", + width: 300, +}); +``` + +{% endmethod %} + + + +### 参数设置 + +| 参数 | 说明 | 类型 | 默认值 | +| ------- | ---- | ------ | ---- | +| trigger | 下拉列表的弹出方式 | object | {} | +| height | 高度 | number | 30 | +| text | 文本框值 | string | '' | +| items | 元素 | array | null | + + + +### 方法 + +| 方法名 | 说明 | 参数 | +| -------- | ---- | ----------- | +| populate | 刷新内容 | items: 子项数组 | +| setValue | 设置值 | setValue | +| getValue | 获取值 | getValue | + + +## 事件 +| 事件 | 说明 | +| :------ |:------------- | +|BI.SingleTreeCombo.EVENT_BEFORE_POPUPVIEW| 下拉框弹出前触发 | +其他事件详见[Input](../../base/editor/editor.md) + + +--- + diff --git a/docs/_book/detailed/date/custom_date_time.html b/docs/_book/detailed/date/custom_date_time.html new file mode 100644 index 000000000..756b5ffd9 --- /dev/null +++ b/docs/_book/detailed/date/custom_date_time.html @@ -0,0 +1,2560 @@ + + + + + + + custom_date_time · GitBook + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + + + + + + + + +
                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                + + + + + + + + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                + +

                                                                                                                                                                                                                                custom_date_time

                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                日期选择下拉框(可以选择时分秒)

                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                BI.createWidget({
                                                                                                                                                                                                                                +    type: "bi.custom_date_time_combo",
                                                                                                                                                                                                                                +    element: "#wrapper",
                                                                                                                                                                                                                                +});
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + +

                                                                                                                                                                                                                                参数

                                                                                                                                                                                                                                + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                参数说明类型可选值默认值
                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                事件

                                                                                                                                                                                                                                + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                事件说明
                                                                                                                                                                                                                                BI.CustomDateTimeCombo.EVENT_CANCEL点击取消触发
                                                                                                                                                                                                                                BI.CustomDateTimeCombo.EVENT_CONFIRM点击确认触发
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + + +
                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + +

                                                                                                                                                                                                                                results matching ""

                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + +

                                                                                                                                                                                                                                  No results matching ""

                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                  + + + + +
                                                                                                                                                                                                                                  + + +
                                                                                                                                                                                                                                  + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/_book/detailed/date/custom_date_time.md b/docs/_book/detailed/date/custom_date_time.md new file mode 100644 index 000000000..cd2b1d456 --- /dev/null +++ b/docs/_book/detailed/date/custom_date_time.md @@ -0,0 +1,30 @@ +# custom_date_time + +## 日期选择下拉框(可以选择时分秒) + +{% method %} +[source](https://jsfiddle.net/fineui/2d9dcxov/) + +{% common %} +```javascript +BI.createWidget({ + type: "bi.custom_date_time_combo", + element: "#wrapper", +}); +``` + +{% endmethod %} + +##参数 + +| 参数 | 说明 | 类型 | 可选值 | 默认值 +| :------ |:------------- | :-----| :----|:---- + + +##事件 +| 事件 | 说明 | +| :------ |:------------- | +| BI.CustomDateTimeCombo.EVENT_CANCEL| 点击取消触发 | +| BI.CustomDateTimeCombo.EVENT_CONFIRM| 点击确认触发 | + +--- diff --git a/docs/_book/detailed/date/date_combo.html b/docs/_book/detailed/date/date_combo.html new file mode 100644 index 000000000..0bc10438b --- /dev/null +++ b/docs/_book/detailed/date/date_combo.html @@ -0,0 +1,2542 @@ + + + + + + + date_combo · GitBook + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + + + + + + + + +
                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                  + + + + + + + + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                  + +

                                                                                                                                                                                                                                  date_combo

                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                  日期选择下拉框(弹出的年月选择可以进一步选择日期)

                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  BI.createWidget({
                                                                                                                                                                                                                                  +    type: "bi.date_combo",
                                                                                                                                                                                                                                  +    element: "#wrapper",
                                                                                                                                                                                                                                  +    width: 300
                                                                                                                                                                                                                                  +});
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + +

                                                                                                                                                                                                                                  参数

                                                                                                                                                                                                                                  + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                  参数说明类型可选值默认值
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + + +
                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + +

                                                                                                                                                                                                                                  results matching ""

                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                    + +

                                                                                                                                                                                                                                    No results matching ""

                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                    + + + + +
                                                                                                                                                                                                                                    + + +
                                                                                                                                                                                                                                    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/_book/detailed/date/date_combo.md b/docs/_book/detailed/date/date_combo.md new file mode 100644 index 000000000..0db0306f3 --- /dev/null +++ b/docs/_book/detailed/date/date_combo.md @@ -0,0 +1,25 @@ +# date_combo + +##日期选择下拉框(弹出的年月选择可以进一步选择日期) + +{% method %} +[source](https://jsfiddle.net/fineui/ebps32uy/) + +{% common %} +```javascript +BI.createWidget({ + type: "bi.date_combo", + element: "#wrapper", + width: 300 +}); +``` + +{% endmethod %} + +##参数 + +| 参数 | 说明 | 类型 | 可选值 | 默认值 +| :------ |:------------- | :-----| :----|:---- + + +--- \ No newline at end of file diff --git a/docs/_book/detailed/date/date_pane_widget.html b/docs/_book/detailed/date/date_pane_widget.html new file mode 100644 index 000000000..c4b46d757 --- /dev/null +++ b/docs/_book/detailed/date/date_pane_widget.html @@ -0,0 +1,2562 @@ + + + + + + + date_pane_widget · GitBook + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                    + + + + + + + + +
                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                    + + + + + + + + +
                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                    + +

                                                                                                                                                                                                                                    date_pane_widget

                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                    日期选择下拉框的弹出面板

                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                    BI.createWidget({
                                                                                                                                                                                                                                    +    type: "bi.date_pane_widget",
                                                                                                                                                                                                                                    +    element: "#wrapper",
                                                                                                                                                                                                                                    +    width: 300
                                                                                                                                                                                                                                    +});
                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                    + +

                                                                                                                                                                                                                                    参数

                                                                                                                                                                                                                                    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                    参数说明类型可选值默认值
                                                                                                                                                                                                                                    min限定可选日期的下限string'1900-01-01'
                                                                                                                                                                                                                                    max限定可选日期的上限string'2099-12-31'
                                                                                                                                                                                                                                    selectedTime选中的初始年月obj({year: y, month: m})
                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                    + + +
                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                    + +

                                                                                                                                                                                                                                    results matching ""

                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                      + +

                                                                                                                                                                                                                                      No results matching ""

                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                      + + + + +
                                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                                      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/_book/detailed/date/date_pane_widget.md b/docs/_book/detailed/date/date_pane_widget.md new file mode 100644 index 000000000..57a017220 --- /dev/null +++ b/docs/_book/detailed/date/date_pane_widget.md @@ -0,0 +1,28 @@ +# date_pane_widget + +##日期选择下拉框的弹出面板 + +{% method %} +[source](https://jsfiddle.net/fineui/rL9005u6/) + +{% common %} +```javascript +BI.createWidget({ + type: "bi.date_pane_widget", + element: "#wrapper", + width: 300 +}); +``` + +{% endmethod %} + +##参数 + +| 参数 | 说明 | 类型 | 可选值 | 默认值 +| :------ |:------------- | :-----| :----|:----| +| min | 限定可选日期的下限 | string | | '1900-01-01' | +| max | 限定可选日期的上限 | string | | '2099-12-31' | +| selectedTime | 选中的初始年月 | obj({year: y, month: m}) | — | — | + + +--- \ No newline at end of file diff --git a/docs/_book/detailed/date/year_month_combo.html b/docs/_book/detailed/date/year_month_combo.html new file mode 100644 index 000000000..e6fcce2c3 --- /dev/null +++ b/docs/_book/detailed/date/year_month_combo.html @@ -0,0 +1,2573 @@ + + + + + + + year_month_combo · GitBook + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                      + + + + + + + + +
                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                      + + + + + + + + +
                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                      + +

                                                                                                                                                                                                                                      year_month_combo

                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                      年月选择下拉框

                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                      BI.createWidget({
                                                                                                                                                                                                                                      +    type: "bi.year_month_combo",
                                                                                                                                                                                                                                      +    width: 300
                                                                                                                                                                                                                                      +});
                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                      + +

                                                                                                                                                                                                                                      参数

                                                                                                                                                                                                                                      + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                      参数说明类型可选值默认值
                                                                                                                                                                                                                                      yearBehaviors自定义年份选择的行为(详见button_group)object{ }
                                                                                                                                                                                                                                      monthBehaviors自定义年份选择的行为(详见button_group)object{ }
                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                      事件

                                                                                                                                                                                                                                      + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                      事件说明
                                                                                                                                                                                                                                      BI.YearMonthCombo.EVENT_BEFORE_POPUPVIEW弹出框弹出前触发
                                                                                                                                                                                                                                      BI.YearMonthCombo.EVENT_CONFIRM点击确认触发
                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                      + +

                                                                                                                                                                                                                                      results matching ""

                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                        + +

                                                                                                                                                                                                                                        No results matching ""

                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                        + + + + +
                                                                                                                                                                                                                                        + + +
                                                                                                                                                                                                                                        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/_book/detailed/date/year_month_combo.md b/docs/_book/detailed/date/year_month_combo.md new file mode 100644 index 000000000..f22537f98 --- /dev/null +++ b/docs/_book/detailed/date/year_month_combo.md @@ -0,0 +1,33 @@ +# year_month_combo + +##年月选择下拉框 + +{% method %} +[source](https://jsfiddle.net/fineui/ehvjj3xt/) + +{% common %} +```javascript +BI.createWidget({ + type: "bi.year_month_combo", + width: 300 +}); +``` + +{% endmethod %} + +##参数 + +| 参数 | 说明 | 类型 | 可选值 | 默认值 +| :------ |:------------- | :-----| :----|:----| +| yearBehaviors |自定义年份选择的行为(详见[button_group](../../core/abstract/button_group.md)) | object| —| { } | +| monthBehaviors |自定义年份选择的行为(详见[button_group](../../core/abstract/button_group.md)) | object|— | { }| + + +##事件 +| 事件 | 说明 | +| :------ |:------------- | +| BI.YearMonthCombo.EVENT_BEFORE_POPUPVIEW | 弹出框弹出前触发 | +| BI.YearMonthCombo.EVENT_CONFIRM| 点击确认触发 | + + +--- \ No newline at end of file diff --git a/docs/_book/detailed/date/year_quarter_combo.html b/docs/_book/detailed/date/year_quarter_combo.html new file mode 100644 index 000000000..c09074bfc --- /dev/null +++ b/docs/_book/detailed/date/year_quarter_combo.html @@ -0,0 +1,2573 @@ + + + + + + + year_quarter_combo · GitBook + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                        + + + + + + + + +
                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                        + + + + + + + + +
                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                        + +

                                                                                                                                                                                                                                        year_quarter_combo

                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                        年季度选择下拉框

                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                        BI.createWidget({
                                                                                                                                                                                                                                        +    type: "bi.year_quarter_combo",
                                                                                                                                                                                                                                        +    width: 300
                                                                                                                                                                                                                                        +});
                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                        + +

                                                                                                                                                                                                                                        参数

                                                                                                                                                                                                                                        + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                        参数说明类型可选值默认值
                                                                                                                                                                                                                                        yearBehaviors自定义年份选择的行为(详见button_group)object
                                                                                                                                                                                                                                        monthBehaviors自定义年份选择的行为(详见button_group)object{ }
                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                        事件

                                                                                                                                                                                                                                        + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                        事件说明
                                                                                                                                                                                                                                        BI.YearQuarterCombo.EVENT_BEFORE_POPUPVIEW弹出框弹出前触发
                                                                                                                                                                                                                                        BI.YearQuarterCombo.EVENT_CONFIRM点击确认触发
                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                        + + +
                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                        + +

                                                                                                                                                                                                                                        results matching ""

                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          + +

                                                                                                                                                                                                                                          No results matching ""

                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                          + + + + +
                                                                                                                                                                                                                                          + + +
                                                                                                                                                                                                                                          + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/_book/detailed/date/year_quarter_combo.md b/docs/_book/detailed/date/year_quarter_combo.md new file mode 100644 index 000000000..6389cf304 --- /dev/null +++ b/docs/_book/detailed/date/year_quarter_combo.md @@ -0,0 +1,34 @@ +# year_quarter_combo + +##年季度选择下拉框 + +{% method %} +[source](https://jsfiddle.net/fineui/xe6Lt6mo/) + +{% common %} +```javascript +BI.createWidget({ + type: "bi.year_quarter_combo", + width: 300 +}); +``` + +{% endmethod %} + +##参数 + +| 参数 | 说明 | 类型 | 可选值 | 默认值 +| :------ |:------------- | :-----| :----|:----| +| yearBehaviors |自定义年份选择的行为(详见[button_group](../../core/abstract/button_group.md)) | object| | | +| monthBehaviors |自定义年份选择的行为(详见[button_group](../../core/abstract/button_group.md)) | object| —|{ } | + + + +##事件 +| 事件 | 说明 | +| :------ |:------------- | +| BI.YearQuarterCombo.EVENT_BEFORE_POPUPVIEW | 弹出框弹出前触发 | +| BI.YearQuarterCombo.EVENT_CONFIRM| 点击确认触发 | + + +--- \ No newline at end of file diff --git a/docs/_book/detailed/dialog.html b/docs/_book/detailed/dialog.html new file mode 100644 index 000000000..67dda70d5 --- /dev/null +++ b/docs/_book/detailed/dialog.html @@ -0,0 +1,2551 @@ + + + + + + + dialog · GitBook + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          + + + + + + + + +
                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                          + + + + + + + + +
                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                          + +

                                                                                                                                                                                                                                          dialog

                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                          对话框

                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          BI.Msg.alert(title, content)
                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          + +

                                                                                                                                                                                                                                          参数

                                                                                                                                                                                                                                          + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                          参数说明类型可选值默认值
                                                                                                                                                                                                                                          title对话框标题string" "
                                                                                                                                                                                                                                          content对话框内容string" "
                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          + + +
                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          + +

                                                                                                                                                                                                                                          results matching ""

                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + +

                                                                                                                                                                                                                                            No results matching ""

                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                            + + + + +
                                                                                                                                                                                                                                            + + +
                                                                                                                                                                                                                                            + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/_book/detailed/dialog.md b/docs/_book/detailed/dialog.md new file mode 100644 index 000000000..51e5b7776 --- /dev/null +++ b/docs/_book/detailed/dialog.md @@ -0,0 +1,24 @@ +# dialog + +## 对话框 + +{% method %} +[source](https://jsfiddle.net/fineui/9tj0jrpp/) + +{% common %} +```javascript +BI.Msg.alert(title, content) +``` + +{% endmethod %} + +##参数 + +| 参数 | 说明 | 类型 | 可选值 | 默认值 +| :------ |:------------- | :-----| :----|:----| +| title | 对话框标题 | string | — | " " | +| content | 对话框内容 | string | — | " " | + + + +--- \ No newline at end of file diff --git a/docs/_book/detailed/down_list_combo.html b/docs/_book/detailed/down_list_combo.html new file mode 100644 index 000000000..37d15622e --- /dev/null +++ b/docs/_book/detailed/down_list_combo.html @@ -0,0 +1,2633 @@ + + + + + + + down_list_combo · GitBook + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + + + + + + + + +
                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                            + + + + + + + + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                            + +

                                                                                                                                                                                                                                            down_list_combo

                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                            多层下拉列表的下拉框

                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            BI.createWidget({
                                                                                                                                                                                                                                            +    type: 'bi.down_list_combo',
                                                                                                                                                                                                                                            +    element: '#wrapper',
                                                                                                                                                                                                                                            +    width: 300,
                                                                                                                                                                                                                                            +    items: [
                                                                                                                                                                                                                                            +                [{
                                                                                                                                                                                                                                            +                    el: {
                                                                                                                                                                                                                                            +                        text: "column 1111",
                                                                                                                                                                                                                                            +                        iconCls1: "check-mark-e-font",
                                                                                                                                                                                                                                            +                        value: 11
                                                                                                                                                                                                                                            +                    },
                                                                                                                                                                                                                                            +                    children: [{
                                                                                                                                                                                                                                            +                        text: "column 1.1",
                                                                                                                                                                                                                                            +                        value: 21,
                                                                                                                                                                                                                                            +                        cls: "dot-e-font",
                                                                                                                                                                                                                                            +                        selected: true
                                                                                                                                                                                                                                            +                    }, {
                                                                                                                                                                                                                                            +                        text: "column 1.222222222222222222222222222222222222",
                                                                                                                                                                                                                                            +                        cls: "dot-e-font",
                                                                                                                                                                                                                                            +                        value: 22,
                                                                                                                                                                                                                                            +                    }]
                                                                                                                                                                                                                                            +                }],
                                                                                                                                                                                                                                            +                [{
                                                                                                                                                                                                                                            +                    el: {
                                                                                                                                                                                                                                            +                        type: "bi.icon_text_icon_item",
                                                                                                                                                                                                                                            +                        text: "column 2",
                                                                                                                                                                                                                                            +                        iconCls1: "chart-type-e-font",
                                                                                                                                                                                                                                            +                        cls: "dot-e-font",
                                                                                                                                                                                                                                            +                        value: 12
                                                                                                                                                                                                                                            +                    },
                                                                                                                                                                                                                                            +                    disabled: true,
                                                                                                                                                                                                                                            +                    children: [{
                                                                                                                                                                                                                                            +                            type: "bi.icon_text_item",
                                                                                                                                                                                                                                            +                            cls: "dot-e-font",
                                                                                                                                                                                                                                            +                            height: 25,
                                                                                                                                                                                                                                            +                            text: "column 2.1",
                                                                                                                                                                                                                                            +                            value: 11
                                                                                                                                                                                                                                            +                           }, {
                                                                                                                                                                                                                                            +                            text: "column 2.2",
                                                                                                                                                                                                                                            +                            value: 12,
                                                                                                                                                                                                                                            +                            cls: "dot-e-font"
                                                                                                                                                                                                                                            +                          }]
                                                                                                                                                                                                                                            +                    }]
                                                                                                                                                                                                                                            +                ]
                                                                                                                                                                                                                                            +});
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + +

                                                                                                                                                                                                                                            参数

                                                                                                                                                                                                                                            + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                            参数说明类型可选值默认值
                                                                                                                                                                                                                                            el自定义下拉框triggerobject
                                                                                                                                                                                                                                            trigger下拉列表的弹出方式stringclick, hoverclick
                                                                                                                                                                                                                                            direction弹出列表和trigger的位置关系stringtop | bottom | left | right | top,left | top,right | bottom,left | bottom,rightbottom
                                                                                                                                                                                                                                            adjustLength弹出列表和trigger的距离number0
                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                            事件

                                                                                                                                                                                                                                            + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                            事件说明
                                                                                                                                                                                                                                            BI.DownListCombo.EVENT_CHANGE点击一级节点触发
                                                                                                                                                                                                                                            BI.DownListCombo.EVENT_SON_VALUE_CHANGE点击二级节点触发
                                                                                                                                                                                                                                            BI.DownListCombo.EVENT_BEFORE_POPUPVIEW下拉列表弹出前触发
                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                            具体配置方法见Combo

                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + + +
                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + +

                                                                                                                                                                                                                                            results matching ""

                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                              No results matching ""

                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                              + + + + +
                                                                                                                                                                                                                                              + + +
                                                                                                                                                                                                                                              + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/_book/detailed/down_list_combo.md b/docs/_book/detailed/down_list_combo.md new file mode 100644 index 000000000..5766bd532 --- /dev/null +++ b/docs/_book/detailed/down_list_combo.md @@ -0,0 +1,80 @@ +# down_list_combo + +## 多层下拉列表的下拉框 + +{% method %} +[source](https://jsfiddle.net/fineui/p0hykqo9/) + +{% common %} +```javascript +BI.createWidget({ + type: 'bi.down_list_combo', + element: '#wrapper', + width: 300, + items: [ + [{ + el: { + text: "column 1111", + iconCls1: "check-mark-e-font", + value: 11 + }, + children: [{ + text: "column 1.1", + value: 21, + cls: "dot-e-font", + selected: true + }, { + text: "column 1.222222222222222222222222222222222222", + cls: "dot-e-font", + value: 22, + }] + }], + [{ + el: { + type: "bi.icon_text_icon_item", + text: "column 2", + iconCls1: "chart-type-e-font", + cls: "dot-e-font", + value: 12 + }, + disabled: true, + children: [{ + type: "bi.icon_text_item", + cls: "dot-e-font", + height: 25, + text: "column 2.1", + value: 11 + }, { + text: "column 2.2", + value: 12, + cls: "dot-e-font" + }] + }] + ] +}); +``` + +{% endmethod %} + +##参数 + +| 参数 | 说明 | 类型 | 可选值 | 默认值 +| :------ |:------------- | :-----| :----|:----| +| el | 自定义下拉框trigger | object | | | +| trigger | 下拉列表的弹出方式 | string | click, hover | click | +| direction | 弹出列表和trigger的位置关系 | string | top | bottom | left | right | top,left | top,right | bottom,left | bottom,right | bottom | +| adjustLength | 弹出列表和trigger的距离 | number | | 0 | + + +##事件 +| 事件 | 说明 | +| :------ |:------------- | +|BI.DownListCombo.EVENT_CHANGE| 点击一级节点触发 | +|BI.DownListCombo.EVENT_SON_VALUE_CHANGE| 点击二级节点触发 | +|BI.DownListCombo.EVENT_BEFORE_POPUPVIEW| 下拉列表弹出前触发 | + +##具体配置方法见[Combo](../core/combination/bi.combo.md) + + + +--- \ No newline at end of file diff --git a/docs/_book/detailed/file_manager.html b/docs/_book/detailed/file_manager.html new file mode 100644 index 000000000..1294176a4 --- /dev/null +++ b/docs/_book/detailed/file_manager.html @@ -0,0 +1,2561 @@ + + + + + + + file_manager · GitBook + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              + + + + + + + + +
                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                              + + + + + + + + +
                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                              file_manager

                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                              文件管理器

                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              BI.createWidget({
                                                                                                                                                                                                                                              +    type: "bi.file_manager",
                                                                                                                                                                                                                                              +    items: [{
                                                                                                                                                                                                                                              +                id: "1",
                                                                                                                                                                                                                                              +                value: "1",
                                                                                                                                                                                                                                              +                text: "根目录"
                                                                                                                                                                                                                                              +              }, {
                                                                                                                                                                                                                                              +                id: "11",
                                                                                                                                                                                                                                              +                pId: "1",
                                                                                                                                                                                                                                              +                value: "11",
                                                                                                                                                                                                                                              +                text: "第一级子目录1"
                                                                                                                                                                                                                                              +              }, {
                                                                                                                                                                                                                                              +                id: "12",
                                                                                                                                                                                                                                              +                pId: "1",
                                                                                                                                                                                                                                              +                value: "12",
                                                                                                                                                                                                                                              +                text: "第一级子目录2"
                                                                                                                                                                                                                                              +              }]
                                                                                                                                                                                                                                              +})
                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              + + + +

                                                                                                                                                                                                                                              方法

                                                                                                                                                                                                                                              + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                              方法说明
                                                                                                                                                                                                                                              getSelectedValue()获取当前选中项的value值
                                                                                                                                                                                                                                              getSelectedId获取当前选中项的id属性
                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              + + +
                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                              results matching ""

                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                + +

                                                                                                                                                                                                                                                No results matching ""

                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                + + + + +
                                                                                                                                                                                                                                                + + +
                                                                                                                                                                                                                                                + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/_book/detailed/file_manager.md b/docs/_book/detailed/file_manager.md new file mode 100644 index 000000000..dbad35967 --- /dev/null +++ b/docs/_book/detailed/file_manager.md @@ -0,0 +1,42 @@ +# file_manager + +## 文件管理器 + +{% method %} +[source](https://jsfiddle.net/fineui/2g4k0kxh/) + +{% common %} +```javascript +BI.createWidget({ + type: "bi.file_manager", + items: [{ + id: "1", + value: "1", + text: "根目录" + }, { + id: "11", + pId: "1", + value: "11", + text: "第一级子目录1" + }, { + id: "12", + pId: "1", + value: "12", + text: "第一级子目录2" + }] +}) +``` + +{% endmethod %} + + + +##方法 + +| 方法 | 说明 | +| :------ |:------------- | +| getSelectedValue() | 获取当前选中项的value值 | +| getSelectedId | 获取当前选中项的id属性 | + + +--- \ No newline at end of file diff --git a/docs/_book/detailed/month_combo.html b/docs/_book/detailed/month_combo.html new file mode 100644 index 000000000..f008b30c7 --- /dev/null +++ b/docs/_book/detailed/month_combo.html @@ -0,0 +1,2567 @@ + + + + + + + month_combo · GitBook + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                + + + + + + + + +
                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                + + + + + + + + +
                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                + +

                                                                                                                                                                                                                                                month_combo

                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                月份选择下拉框

                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                BI.createWidget({
                                                                                                                                                                                                                                                +    type: 'bi.month_combo',
                                                                                                                                                                                                                                                +    element: '#wrapper',
                                                                                                                                                                                                                                                +    width: 300
                                                                                                                                                                                                                                                +});
                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                + +

                                                                                                                                                                                                                                                参数

                                                                                                                                                                                                                                                + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                参数说明类型可选值默认值
                                                                                                                                                                                                                                                behaviors自定义下拉列表中item项的行为,如高亮,标红等(详见button_group)object{}
                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                事件

                                                                                                                                                                                                                                                + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                事件说明
                                                                                                                                                                                                                                                BI.MonthCombo.EVENT_CONFIRM选中日期或者退出编辑状态触发
                                                                                                                                                                                                                                                BI.MonthCombo.EVENT_BEFORE_POPUPVIEW选中日期或者退出编辑状态触发
                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                + + +
                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                + +

                                                                                                                                                                                                                                                results matching ""

                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  + +

                                                                                                                                                                                                                                                  No results matching ""

                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                  + + + + +
                                                                                                                                                                                                                                                  + + +
                                                                                                                                                                                                                                                  + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/_book/detailed/month_combo.md b/docs/_book/detailed/month_combo.md new file mode 100644 index 000000000..ea87ce4bc --- /dev/null +++ b/docs/_book/detailed/month_combo.md @@ -0,0 +1,34 @@ +# month_combo + +## 月份选择下拉框 + +{% method %} +[source](https://jsfiddle.net/fineui/u4u04ntn/) + +{% common %} +```javascript +BI.createWidget({ + type: 'bi.month_combo', + element: '#wrapper', + width: 300 +}); +``` + +{% endmethod %} + +##参数 + +| 参数 | 说明 | 类型 | 可选值 | 默认值 +| :------ |:------------- | :-----| :----|:----| +| behaviors | 自定义下拉列表中item项的行为,如高亮,标红等(详见[button_group](../core/abstract/button_group.md)) | object | | {} | + + + +##事件 +| 事件 | 说明 | +| :------ |:------------- | +|BI.MonthCombo.EVENT_CONFIRM| 选中日期或者退出编辑状态触发 | +|BI.MonthCombo.EVENT_BEFORE_POPUPVIEW| 选中日期或者退出编辑状态触发 | + + +--- \ No newline at end of file diff --git a/docs/_book/detailed/multi_select_combo.html b/docs/_book/detailed/multi_select_combo.html new file mode 100644 index 000000000..a5c8d13aa --- /dev/null +++ b/docs/_book/detailed/multi_select_combo.html @@ -0,0 +1,2546 @@ + + + + + + + multi_select_combo · GitBook + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  + + + + + + + + +
                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                  + + + + + + + + +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                  + +

                                                                                                                                                                                                                                                  multi_select_combo

                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                  带确定的复选下拉框

                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  BI.createWidget({
                                                                                                                                                                                                                                                  +    type: "bi.multi_select_combo",
                                                                                                                                                                                                                                                  +    element: '#wrapper',
                                                                                                                                                                                                                                                  +    width: 500,
                                                                                                                                                                                                                                                  +    itemsCreator: function(){
                                                                                                                                                                                                                                                  +        return {
                                                                                                                                                                                                                                                  +            items: [],
                                                                                                                                                                                                                                                  +            hasNext: false
                                                                                                                                                                                                                                                  +        }
                                                                                                                                                                                                                                                  +    }
                                                                                                                                                                                                                                                  +});
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                  事件说明
                                                                                                                                                                                                                                                  BI.MultiSelectCombo.EVENT_CONFIRM点击确定触发
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  + + +
                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  + +

                                                                                                                                                                                                                                                  results matching ""

                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + +

                                                                                                                                                                                                                                                    No results matching ""

                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                    + + + + +
                                                                                                                                                                                                                                                    + + +
                                                                                                                                                                                                                                                    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/_book/detailed/multi_select_combo.md b/docs/_book/detailed/multi_select_combo.md new file mode 100644 index 000000000..f0b44627d --- /dev/null +++ b/docs/_book/detailed/multi_select_combo.md @@ -0,0 +1,31 @@ +# multi_select_combo + +## 带确定的复选下拉框 + +{% method %} +[source](https://jsfiddle.net/fineui/oskypvLe/) + +{% common %} +```javascript +BI.createWidget({ + type: "bi.multi_select_combo", + element: '#wrapper', + width: 500, + itemsCreator: function(){ + return { + items: [], + hasNext: false + } + } +}); +``` + +{% endmethod %} + + +| 事件 | 说明 | +| :------ |:------------- | +|BI.MultiSelectCombo.EVENT_CONFIRM| 点击确定触发 | + + +--- \ No newline at end of file diff --git a/docs/_book/detailed/numeric_interval.html b/docs/_book/detailed/numeric_interval.html new file mode 100644 index 000000000..4c0226d7d --- /dev/null +++ b/docs/_book/detailed/numeric_interval.html @@ -0,0 +1,2630 @@ + + + + + + + numeric_interval · GitBook + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + + + + + + + + +
                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                    + + + + + + + + +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                    + +

                                                                                                                                                                                                                                                    numeric_interval

                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                    数值区间控件

                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    BI.createWidget({
                                                                                                                                                                                                                                                    +    type: "bi.numerical_interval",
                                                                                                                                                                                                                                                    +    element: '#wrapper',
                                                                                                                                                                                                                                                    +    width: 500
                                                                                                                                                                                                                                                    +});
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + +

                                                                                                                                                                                                                                                    参数

                                                                                                                                                                                                                                                    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                    参数说明类型可选值默认值
                                                                                                                                                                                                                                                    min最小值初始值number
                                                                                                                                                                                                                                                    max最大值初始值number
                                                                                                                                                                                                                                                    closeMin左区间初始状态booleantrue
                                                                                                                                                                                                                                                    closeMax右区间初始状态booleantrue
                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                    方法

                                                                                                                                                                                                                                                    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                    方法说明用法
                                                                                                                                                                                                                                                    isStateValid()当前状态是否有效(输入是否合法, 区间是否成立)
                                                                                                                                                                                                                                                    setMinEnable(boolean)设置左区间输入框disable状态
                                                                                                                                                                                                                                                    setCloseMinEnable(boolean)设置左区间开闭combo的disable状态
                                                                                                                                                                                                                                                    setMaxEnable(boolean)设置右区间输入框disable状态
                                                                                                                                                                                                                                                    setCloseMaxEnable(boolean)设置右区间开闭combo的disable状态
                                                                                                                                                                                                                                                    setNumTip(string)设置数值区间的tip提示
                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                    事件

                                                                                                                                                                                                                                                    + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                    事件说明
                                                                                                                                                                                                                                                    BI.NumericalInterval.EVENT_VALID区间合法的状态事件
                                                                                                                                                                                                                                                    BI.NumericalInterval.EVENT_ERROR区间不合法的状态事件
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + + +
                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + +

                                                                                                                                                                                                                                                    results matching ""

                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                      + +

                                                                                                                                                                                                                                                      No results matching ""

                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                      + + + + +
                                                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                                                      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/_book/detailed/numeric_interval.md b/docs/_book/detailed/numeric_interval.md new file mode 100644 index 000000000..374a520d6 --- /dev/null +++ b/docs/_book/detailed/numeric_interval.md @@ -0,0 +1,45 @@ +# numeric_interval + +## 数值区间控件 + +{% method %} +[source](https://jsfiddle.net/fineui/oskypvLe/) + +{% common %} +```javascript +BI.createWidget({ + type: "bi.numerical_interval", + element: '#wrapper', + width: 500 +}); +``` + +{% endmethod %} + +##参数 + +| 参数 | 说明 | 类型 | 可选值 | 默认值 +| :------ |:------------- | :-----| :----|:----| +| min | 最小值初始值 | number | | 无 | +| max | 最大值初始值 | number | | 无 | +| closeMin | 左区间初始状态 | boolean | | true | +| closeMax | 右区间初始状态 | boolean | | true | + +## 方法 +| 方法 | 说明 | 用法 | +| ---------------------------- | ---------------- | ------------------------------------ | +| isStateValid() | 当前状态是否有效(输入是否合法, 区间是否成立) | | +| setMinEnable(boolean) | 设置左区间输入框disable状态 | | +| setCloseMinEnable(boolean) | 设置左区间开闭combo的disable状态 | | +| setMaxEnable(boolean) | 设置右区间输入框disable状态 | | +| setCloseMaxEnable(boolean) | 设置右区间开闭combo的disable状态 | | +| setNumTip(string) | 设置数值区间的tip提示 | — | + +##事件 +| 事件 | 说明 | +| :------ |:------------- | +|BI.NumericalInterval.EVENT_VALID| 区间合法的状态事件 | +|BI.NumericalInterval.EVENT_ERROR| 区间不合法的状态事件 | + + +--- \ No newline at end of file diff --git a/docs/_book/detailed/path/direction_path_chooser.html b/docs/_book/detailed/path/direction_path_chooser.html new file mode 100644 index 000000000..01568fa78 --- /dev/null +++ b/docs/_book/detailed/path/direction_path_chooser.html @@ -0,0 +1,2562 @@ + + + + + + + direction_path_chooser · GitBook + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                      + + + + + + + + +
                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                      + + + + + + + + +
                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                      + +

                                                                                                                                                                                                                                                      direction_path_chooser

                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                      带方向的路径选择

                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                      BI.createWidget({
                                                                                                                                                                                                                                                      +    type: "bi.direction_path_chooser",
                                                                                                                                                                                                                                                      +    element: "#wrapper",
                                                                                                                                                                                                                                                      +    items: [[{
                                                                                                                                                                                                                                                      +                "region": "合同信息",
                                                                                                                                                                                                                                                      +                "text": "客户ID",
                                                                                                                                                                                                                                                      +                "value": "defa1f7ba8b2684a客户ID"
                                                                                                                                                                                                                                                      +            }, {
                                                                                                                                                                                                                                                      +                "region": "客户信息",
                                                                                                                                                                                                                                                      +                "text": "主键",
                                                                                                                                                                                                                                                      +                "value": "1f4711c201ef1842",
                                                                                                                                                                                                                                                      +                "direction": -1
                                                                                                                                                                                                                                                      +            }, {
                                                                                                                                                                                                                                                      +                "region": "合同的回款信息",
                                                                                                                                                                                                                                                      +                "text": "合同ID",
                                                                                                                                                                                                                                                      +                "value": "e351e9f1d8147947合同ID",
                                                                                                                                                                                                                                                      +                "direction": -1
                                                                                                                                                                                                                                                      +            }]]
                                                                                                                                                                                                                                                      +});
                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                      + +

                                                                                                                                                                                                                                                      参数

                                                                                                                                                                                                                                                      + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                      参数说明类型可选值默认值
                                                                                                                                                                                                                                                      items二维数组,每个元素代表一条路径,相较于path_chooser多一个属性direction来指定方向array[ ]
                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                      + +

                                                                                                                                                                                                                                                      results matching ""

                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        + +

                                                                                                                                                                                                                                                        No results matching ""

                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                        + + + + +
                                                                                                                                                                                                                                                        + + +
                                                                                                                                                                                                                                                        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/_book/detailed/path/direction_path_chooser.md b/docs/_book/detailed/path/direction_path_chooser.md new file mode 100644 index 000000000..e22203d23 --- /dev/null +++ b/docs/_book/detailed/path/direction_path_chooser.md @@ -0,0 +1,40 @@ +# direction_path_chooser + +## 带方向的路径选择 + +{% method %} +[source](https://jsfiddle.net/fineui/04h6gsps/) + +{% common %} +```javascript +BI.createWidget({ + type: "bi.direction_path_chooser", + element: "#wrapper", + items: [[{ + "region": "合同信息", + "text": "客户ID", + "value": "defa1f7ba8b2684a客户ID" + }, { + "region": "客户信息", + "text": "主键", + "value": "1f4711c201ef1842", + "direction": -1 + }, { + "region": "合同的回款信息", + "text": "合同ID", + "value": "e351e9f1d8147947合同ID", + "direction": -1 + }]] +}); +``` + +{% endmethod %} + +##参数 + +| 参数 | 说明 | 类型 | 可选值 | 默认值 +| :------ |:------------- | :-----| :----|:----| +| items |二维数组,每个元素代表一条路径,相较于[path_chooser](path_chooser.md)多一个属性direction来指定方向 | array| — | [ ]| + + +--- \ No newline at end of file diff --git a/docs/_book/detailed/path/path_chooser.html b/docs/_book/detailed/path/path_chooser.html new file mode 100644 index 000000000..ae18224f4 --- /dev/null +++ b/docs/_book/detailed/path/path_chooser.html @@ -0,0 +1,2561 @@ + + + + + + + path_chooser · GitBook + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        + + + + + + + + +
                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                        + + + + + + + + +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                        + +

                                                                                                                                                                                                                                                        path_chooser

                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                        路径选择

                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        BI.createWidget({
                                                                                                                                                                                                                                                        +    type: "bi.path_chooser",
                                                                                                                                                                                                                                                        +    element: "#wrapper",
                                                                                                                                                                                                                                                        +    items: [[{
                                                                                                                                                                                                                                                        +        "region": "8c4460bc3605685e",
                                                                                                                                                                                                                                                        +        "regionText": "采购订单XXX",
                                                                                                                                                                                                                                                        +        "text": "ID",
                                                                                                                                                                                                                                                        +        "value": "1"
                                                                                                                                                                                                                                                        +    }, {
                                                                                                                                                                                                                                                        +        "region": "0fbd0dc648f41e97",
                                                                                                                                                                                                                                                        +        "regionText": "采购订单",
                                                                                                                                                                                                                                                        +        "text": "学号",
                                                                                                                                                                                                                                                        +        "value": "3"
                                                                                                                                                                                                                                                        +    }, {
                                                                                                                                                                                                                                                        +        "region": "c6d72d6c7e19a667",
                                                                                                                                                                                                                                                        +        "regionText": "供应商基本信息",
                                                                                                                                                                                                                                                        +        "text": "ID",
                                                                                                                                                                                                                                                        +        "value": "5"
                                                                                                                                                                                                                                                        +    }]]
                                                                                                                                                                                                                                                        +});
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        + +

                                                                                                                                                                                                                                                        参数

                                                                                                                                                                                                                                                        + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                        参数说明类型可选值默认值
                                                                                                                                                                                                                                                        items二维数组,每个元素代表一条路径array[ ]
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        + + +
                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        + +

                                                                                                                                                                                                                                                        results matching ""

                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                          + +

                                                                                                                                                                                                                                                          No results matching ""

                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                          + + + + +
                                                                                                                                                                                                                                                          + + +
                                                                                                                                                                                                                                                          + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/_book/detailed/path/path_chooser.md b/docs/_book/detailed/path/path_chooser.md new file mode 100644 index 000000000..097ecb060 --- /dev/null +++ b/docs/_book/detailed/path/path_chooser.md @@ -0,0 +1,42 @@ +# path_chooser + +## 路径选择 + +{% method %} +[source](https://jsfiddle.net/fineui/5519b4xo/) + +{% common %} +```javascript +BI.createWidget({ + type: "bi.path_chooser", + element: "#wrapper", + items: [[{ + "region": "8c4460bc3605685e", + "regionText": "采购订单XXX", + "text": "ID", + "value": "1" + }, { + "region": "0fbd0dc648f41e97", + "regionText": "采购订单", + "text": "学号", + "value": "3" + }, { + "region": "c6d72d6c7e19a667", + "regionText": "供应商基本信息", + "text": "ID", + "value": "5" + }]] +}); +``` + +{% endmethod %} + +##参数 + +| 参数 | 说明 | 类型 | 可选值 | 默认值 +| :------ |:------------- | :-----| :----|:----| +| items |二维数组,每个元素代表一条路径 | array| — | [ ] | + + + +--- \ No newline at end of file diff --git a/docs/_book/detailed/quarter_combo.html b/docs/_book/detailed/quarter_combo.html new file mode 100644 index 000000000..a30bd3cc4 --- /dev/null +++ b/docs/_book/detailed/quarter_combo.html @@ -0,0 +1,2567 @@ + + + + + + + quarter_combo · GitBook + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                          + + + + + + + + +
                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                          + + + + + + + + +
                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                          + +

                                                                                                                                                                                                                                                          quarter_combo

                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                          季度选择下拉框

                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                          BI.createWidget({
                                                                                                                                                                                                                                                          +    type: 'bi.quarter_combo',
                                                                                                                                                                                                                                                          +    element: '#wrapper',
                                                                                                                                                                                                                                                          +    width: 300
                                                                                                                                                                                                                                                          +});
                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                          + +

                                                                                                                                                                                                                                                          参数

                                                                                                                                                                                                                                                          + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                          参数说明类型可选值默认值
                                                                                                                                                                                                                                                          behaviors自定义下拉列表中item项的行为,如高亮,标红等(详见button_group)object{}
                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                          事件

                                                                                                                                                                                                                                                          + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                          事件说明
                                                                                                                                                                                                                                                          BI.QuarterCombo.EVENT_CONFIRM选中日期或者退出编辑状态触发
                                                                                                                                                                                                                                                          BI.QuarterCombo.EVENT_BEFORE_POPUPVIEW选中日期或者退出编辑状态触发
                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                          + + +
                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                          + +

                                                                                                                                                                                                                                                          results matching ""

                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                            + +

                                                                                                                                                                                                                                                            No results matching ""

                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                            + + + + +
                                                                                                                                                                                                                                                            + + +
                                                                                                                                                                                                                                                            + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/_book/detailed/quarter_combo.md b/docs/_book/detailed/quarter_combo.md new file mode 100644 index 000000000..e15d26d54 --- /dev/null +++ b/docs/_book/detailed/quarter_combo.md @@ -0,0 +1,34 @@ +# quarter_combo + +## 季度选择下拉框 + +{% method %} +[source](https://jsfiddle.net/fineui/rw7ubwtj/) + +{% common %} +```javascript +BI.createWidget({ + type: 'bi.quarter_combo', + element: '#wrapper', + width: 300 +}); +``` + +{% endmethod %} + +##参数 + +| 参数 | 说明 | 类型 | 可选值 | 默认值 +| :------ |:------------- | :-----| :----|:----| +| behaviors | 自定义下拉列表中item项的行为,如高亮,标红等(详见[button_group](../core/abstract/button_group.md)) | object | | {} | + + + +##事件 +| 事件 | 说明 | +| :------ |:------------- | +|BI.QuarterCombo.EVENT_CONFIRM| 选中日期或者退出编辑状态触发 | +|BI.QuarterCombo.EVENT_BEFORE_POPUPVIEW| 选中日期或者退出编辑状态触发 | + + +--- \ No newline at end of file diff --git a/docs/_book/detailed/relation_view.html b/docs/_book/detailed/relation_view.html new file mode 100644 index 000000000..543a7d1fd --- /dev/null +++ b/docs/_book/detailed/relation_view.html @@ -0,0 +1,2553 @@ + + + + + + + relation_view · GitBook + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                            + + + + + + + + +
                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                            + + + + + + + + +
                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                            + +

                                                                                                                                                                                                                                                            relation_view

                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                            关联视图

                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                            BI.createWidget({
                                                                                                                                                                                                                                                            +    type: "bi.relation_view",
                                                                                                                                                                                                                                                            +    items: [{
                                                                                                                                                                                                                                                            +                primary: {
                                                                                                                                                                                                                                                            +                     region: "B", regionText: "比",
                                                                                                                                                                                                                                                            +                     title: "b2...",
                                                                                                                                                                                                                                                            +                     value: "b2", text: "b2字段"
                                                                                                                                                                                                                                                            +                },
                                                                                                                                                                                                                                                            +                foreign: {region: "C", value: "c1", text: "c1字段"}
                                                                                                                                                                                                                                                            +             }, {
                                                                                                                                                                                                                                                            +                  primary: {region: "A", value: "a1", text: "a1字段"},
                                                                                                                                                                                                                                                            +                  foreign: {region: "C", value: "c2", text: "c2字段"}
                                                                                                                                                                                                                                                            +             }]
                                                                                                                                                                                                                                                            +});
                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                            + +

                                                                                                                                                                                                                                                            参数

                                                                                                                                                                                                                                                            + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                            参数说明类型可选值默认值
                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                            + + +
                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                            + +

                                                                                                                                                                                                                                                            results matching ""

                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                              No results matching ""

                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                              + + + + +
                                                                                                                                                                                                                                                              + + +
                                                                                                                                                                                                                                                              + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/_book/detailed/relation_view.md b/docs/_book/detailed/relation_view.md new file mode 100644 index 000000000..d2997620d --- /dev/null +++ b/docs/_book/detailed/relation_view.md @@ -0,0 +1,35 @@ +# relation_view + +## 关联视图 + +{% method %} +[source](https://jsfiddle.net/fineui/k19mvL7q/) + +{% common %} +```javascript +BI.createWidget({ + type: "bi.relation_view", + items: [{ + primary: { + region: "B", regionText: "比", + title: "b2...", + value: "b2", text: "b2字段" + }, + foreign: {region: "C", value: "c1", text: "c1字段"} + }, { + primary: {region: "A", value: "a1", text: "a1字段"}, + foreign: {region: "C", value: "c2", text: "c2字段"} + }] +}); +``` + +{% endmethod %} + +##参数 + +| 参数 | 说明 | 类型 | 可选值 | 默认值 +| :------ |:------------- | :-----| :----|:----| + + + +--- \ No newline at end of file diff --git a/docs/_book/detailed/slider.html b/docs/_book/detailed/slider.html new file mode 100644 index 000000000..0f7ed836d --- /dev/null +++ b/docs/_book/detailed/slider.html @@ -0,0 +1,2578 @@ + + + + + + + slider · GitBook + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                              + + + + + + + + +
                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                              + + + + + + + + +
                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                              bi.slider

                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                              slider插件

                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                              BI.createWidget({
                                                                                                                                                                                                                                                              +    type: "bi.slider",
                                                                                                                                                                                                                                                              +    min: 16,
                                                                                                                                                                                                                                                              +    max: 50,
                                                                                                                                                                                                                                                              +});
                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                              + + + +

                                                                                                                                                                                                                                                              参数

                                                                                                                                                                                                                                                              + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                              参数说明类型默认值
                                                                                                                                                                                                                                                              min最小值number10
                                                                                                                                                                                                                                                              max最大值number50
                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                              方法

                                                                                                                                                                                                                                                              + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                              方法名说明参数
                                                                                                                                                                                                                                                              getValue获得当前值
                                                                                                                                                                                                                                                              setValue设置当前值value
                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                              + + +
                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                              results matching ""

                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                + +

                                                                                                                                                                                                                                                                No results matching ""

                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                + + + + +
                                                                                                                                                                                                                                                                + + +
                                                                                                                                                                                                                                                                + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/_book/detailed/slider.md b/docs/_book/detailed/slider.md new file mode 100644 index 000000000..d8a9ae6f2 --- /dev/null +++ b/docs/_book/detailed/slider.md @@ -0,0 +1,39 @@ +# bi.slider + +### slider插件 + +{% method %} +[source](https://jsfiddle.net/fineui/k6svamdz/) + +{% common %} +```javascript +BI.createWidget({ + type: "bi.slider", + min: 16, + max: 50, +}); +``` + +{% endmethod %} + + + +##参数 + +| 参数 | 说明 | 类型 | 默认值 | +| ---- | ---- | ------ | ---- | +| min | 最小值 | number | 10 | +| max | 最大值 | number | 50 | + + + +## 方法 + +| 方法名 | 说明 | 参数 | +| -------- | ---- | ----- | +| getValue | 获得当前值 | — | +| setValue | 设置当前值 | value | +| | | | + +------ + diff --git a/docs/_book/detailed/table/bi.excel_table.html b/docs/_book/detailed/table/bi.excel_table.html new file mode 100644 index 000000000..62d36bf84 --- /dev/null +++ b/docs/_book/detailed/table/bi.excel_table.html @@ -0,0 +1,2758 @@ + + + + + + + excel_table · GitBook + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                + + + + + + + + +
                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                + + + + + + + + +
                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                + +

                                                                                                                                                                                                                                                                bi.excel_table

                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                类似excel式的表格,继承BI.Widget

                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                BI.createWidget({
                                                                                                                                                                                                                                                                +  type: "bi.excel_table",
                                                                                                                                                                                                                                                                +  element: "body",
                                                                                                                                                                                                                                                                +  columnSize: [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是否需要调整大小booleanfalse
                                                                                                                                                                                                                                                                isResizeAdapt是否调整时自适应booleantrue
                                                                                                                                                                                                                                                                isNeedMerge是否需要合并单元格booleanfalse
                                                                                                                                                                                                                                                                mergeCols合并的单元格列号array[]
                                                                                                                                                                                                                                                                mergeRule合并规则, 默认相等时合并function(row1, row2)默认row1 = row2 时合并
                                                                                                                                                                                                                                                                columnSize单元格宽度集合array[]
                                                                                                                                                                                                                                                                headerRowSize表头高度number37
                                                                                                                                                                                                                                                                footerRowSize表尾高度number37
                                                                                                                                                                                                                                                                rowSize普通单元格高度number37
                                                                                                                                                                                                                                                                regionColumnSize列项间的array[82, ""]
                                                                                                                                                                                                                                                                items子组件array[]
                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                方法

                                                                                                                                                                                                                                                                + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                方法名说明参数
                                                                                                                                                                                                                                                                resize调整表格
                                                                                                                                                                                                                                                                setColumnSize设置列宽columnSize
                                                                                                                                                                                                                                                                getColumnSize得到列宽
                                                                                                                                                                                                                                                                getCalculateColumnSize获得计算后的列宽
                                                                                                                                                                                                                                                                setHeaderColumnSize设置表头的列宽columnSize
                                                                                                                                                                                                                                                                setRegionColumnSize设置列项之间的间隙columnSize
                                                                                                                                                                                                                                                                getRegionColumnSize获得列项之间的间隙
                                                                                                                                                                                                                                                                getCalculateRegionColumnSize获取计算后的列项之间的间隙
                                                                                                                                                                                                                                                                getCalculateRegionRowSize获取计算后的列项上下之间的间隙
                                                                                                                                                                                                                                                                getClientRegionColumnSize获取浏览器中显示的列项之间的间隙
                                                                                                                                                                                                                                                                getScrollRegionColumnSize获取横向滚动条宽度
                                                                                                                                                                                                                                                                getScrollRegionRowSize获取纵向滚动条宽度
                                                                                                                                                                                                                                                                hasVerticalScroll是否含有数值滚动条
                                                                                                                                                                                                                                                                setVerticalScroll设置纵向滚动距离scrollTop
                                                                                                                                                                                                                                                                setLeftHorizontalScroll设置左到右横向滚动距离scrollLeft
                                                                                                                                                                                                                                                                setRightHorizontalScroll设置右往左横向滚动距离scrollLeft
                                                                                                                                                                                                                                                                getVerticalScroll获取纵向滚动距离
                                                                                                                                                                                                                                                                getLeftHorizontalScroll获取左到右横向滚动距离
                                                                                                                                                                                                                                                                getRightHorizontalScroll获取右往左横向滚动距离
                                                                                                                                                                                                                                                                getColumns获取列项
                                                                                                                                                                                                                                                                resizeHeader调整表头
                                                                                                                                                                                                                                                                attr设置属性key:键,value:值
                                                                                                                                                                                                                                                                populate增加行rows
                                                                                                                                                                                                                                                                destroy摧毁表
                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                + + +
                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                + +

                                                                                                                                                                                                                                                                results matching ""

                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                  + +

                                                                                                                                                                                                                                                                  No results matching ""

                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                  + + + + +
                                                                                                                                                                                                                                                                  + + +
                                                                                                                                                                                                                                                                  + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/_book/detailed/table/bi.excel_table.md b/docs/_book/detailed/table/bi.excel_table.md new file mode 100644 index 000000000..4ab567cc9 --- /dev/null +++ b/docs/_book/detailed/table/bi.excel_table.md @@ -0,0 +1,84 @@ +# bi.excel_table + +### 类似excel式的表格,继承BI.Widget + +{% method %} +[source](https://jsfiddle.net/fineui/cbmv07g4/) + +{% common %} +```javascript +BI.createWidget({ + type: "bi.excel_table", + element: "body", + columnSize: [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 | 是否需要调整大小 | boolean | false | +| isResizeAdapt | 是否调整时自适应 | boolean | true | +| isNeedMerge | 是否需要合并单元格 | boolean | false | +| mergeCols | 合并的单元格列号 | array | [] | +| mergeRule | 合并规则, 默认相等时合并 | function(row1, row2) | 默认row1 = row2 时合并 | +| columnSize | 单元格宽度集合 | array | [] | +| headerRowSize | 表头高度 | number | 37 | +| footerRowSize | 表尾高度 | number | 37 | +| rowSize | 普通单元格高度 | number | 37 | +| regionColumnSize | 列项间的 | array | [82, ""] | +| items | 子组件 | array | [] | + +## 方法 +| 方法名 | 说明 | 参数 | +| ---------------------------- | ---------------- | ------------- | +| resize | 调整表格 | — | +| setColumnSize | 设置列宽 | columnSize | +| getColumnSize | 得到列宽 | — | +| getCalculateColumnSize | 获得计算后的列宽 | — | +| setHeaderColumnSize | 设置表头的列宽 | columnSize | +| setRegionColumnSize | 设置列项之间的间隙 | columnSize | +| getRegionColumnSize | 获得列项之间的间隙 | — | +| getCalculateRegionColumnSize | 获取计算后的列项之间的间隙 | — | +| getCalculateRegionRowSize | 获取计算后的列项上下之间的间隙 | — | +| getClientRegionColumnSize | 获取浏览器中显示的列项之间的间隙 | — | +| getScrollRegionColumnSize | 获取横向滚动条宽度 | — | +| getScrollRegionRowSize | 获取纵向滚动条宽度 | — | +| hasVerticalScroll | 是否含有数值滚动条 | — | +| setVerticalScroll | 设置纵向滚动距离 | scrollTop | +| setLeftHorizontalScroll | 设置左到右横向滚动距离 | scrollLeft | +| setRightHorizontalScroll | 设置右往左横向滚动距离 | scrollLeft | +| getVerticalScroll | 获取纵向滚动距离 | — | +| getLeftHorizontalScroll | 获取左到右横向滚动距离 | — | +| getRightHorizontalScroll | 获取右往左横向滚动距离 | — | +| getColumns | 获取列项 | — | +| resizeHeader | 调整表头 | — | +| attr | 设置属性 | key:键,value:值 | +| populate | 增加行 | rows | +| destroy | 摧毁表 | — | + +--- + + diff --git a/docs/_book/detailed/table/bi.page_table.html b/docs/_book/detailed/table/bi.page_table.html new file mode 100644 index 000000000..4f5849a46 --- /dev/null +++ b/docs/_book/detailed/table/bi.page_table.html @@ -0,0 +1,2876 @@ + + + + + + + page_table · GitBook + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                  + + + + + + + + +
                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                  + + + + + + + + +
                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                  + +

                                                                                                                                                                                                                                                                  bi.page_table

                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                  分页表格

                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                  BI.createWidget({
                                                                                                                                                                                                                                                                  +  type: "bi.page_table",
                                                                                                                                                                                                                                                                  +  element: "body",
                                                                                                                                                                                                                                                                  +  columnSize: [200,200],
                                                                                                                                                                                                                                                                  +  items: [],
                                                                                                                                                                                                                                                                  +  pager: {
                                                                                                                                                                                                                                                                  +    horizontal : {},
                                                                                                                                                                                                                                                                  +    vertical: {}
                                                                                                                                                                                                                                                                  +  } 
                                                                                                                                                                                                                                                                  +});
                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                  + +

                                                                                                                                                                                                                                                                  参数设置

                                                                                                                                                                                                                                                                  + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                  参数二级参数三级参数说明类型默认值
                                                                                                                                                                                                                                                                  pager分页选项object
                                                                                                                                                                                                                                                                  horizontal水平分页选项object
                                                                                                                                                                                                                                                                  pages显示总页数booleanfalse
                                                                                                                                                                                                                                                                  curr当前页number1
                                                                                                                                                                                                                                                                  hasPrev判断是否有前一页的函数functionBI.emptyFn
                                                                                                                                                                                                                                                                  hasNext是否有下一页functionBI.emptyFn
                                                                                                                                                                                                                                                                  firstPage第一页number1
                                                                                                                                                                                                                                                                  lastPage最后一页number/functionBI.emptyFn
                                                                                                                                                                                                                                                                  vertical纵向分页,参数与horizontalobject
                                                                                                                                                                                                                                                                  itemsCreator元素创造器functionBI.emptyFn
                                                                                                                                                                                                                                                                  isNeedFreeze是否需要冻结表头booleanfalse
                                                                                                                                                                                                                                                                  freezeCols冻结的列array[]
                                                                                                                                                                                                                                                                  isNeedMerge是否需要合并单元格booleanfalse
                                                                                                                                                                                                                                                                  mergeCols合并的单元格列号array[]
                                                                                                                                                                                                                                                                  mergeRule合并规则, 默认相等时合并function(row1, row2)默认row1 = row2 时合并
                                                                                                                                                                                                                                                                  columnSize单元格宽度集合array[]
                                                                                                                                                                                                                                                                  minColumnSize最小列宽array[]
                                                                                                                                                                                                                                                                  maxColumnSize最大列宽array[]
                                                                                                                                                                                                                                                                  headerRowSize表头高度number25
                                                                                                                                                                                                                                                                  rowSize普通单元格高度number25
                                                                                                                                                                                                                                                                  regionColumnSize列项间的array[]
                                                                                                                                                                                                                                                                  headerCellStyleGetterfunctionBI.emptyFn
                                                                                                                                                                                                                                                                  summaryCellStyleGetterfunctionBI.emptyFn
                                                                                                                                                                                                                                                                  sequenceCellStyleGetterfunctionBI.emptyFn
                                                                                                                                                                                                                                                                  header表头array[]
                                                                                                                                                                                                                                                                  items子组件array[]
                                                                                                                                                                                                                                                                  crossHeader交叉表头array[]
                                                                                                                                                                                                                                                                  crossItems交叉项array[]
                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                  方法

                                                                                                                                                                                                                                                                  + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                  方法名说明参数
                                                                                                                                                                                                                                                                  setHPage设置水平页数v: 页码
                                                                                                                                                                                                                                                                  setVpage设置纵向页数v: 页码
                                                                                                                                                                                                                                                                  getHPage获得水平页数
                                                                                                                                                                                                                                                                  getVPage获得垂直页数
                                                                                                                                                                                                                                                                  setWidth设置宽度width: 宽度
                                                                                                                                                                                                                                                                  setHeight设置高度height: 高度
                                                                                                                                                                                                                                                                  setColumnSize设置列宽columnSize: 列宽数组
                                                                                                                                                                                                                                                                  getColumnSize得到列宽
                                                                                                                                                                                                                                                                  setRegionColumnSize设置列项之间的间隙columnSize: 列宽数组
                                                                                                                                                                                                                                                                  getRegionColumnSize获得列项之间的间隙
                                                                                                                                                                                                                                                                  setVerticalScroll设置纵向滚动距离scrollTop: 纵向滚动距离
                                                                                                                                                                                                                                                                  setLeftHorizontalScroll设置左到右横向滚动距离scrollLeft: 横向滚动距离
                                                                                                                                                                                                                                                                  setRightHorizontalScroll设置右往左横向滚动距离scrollLeft: 横向滚动距离
                                                                                                                                                                                                                                                                  getVerticalScroll获取纵向滚动距离
                                                                                                                                                                                                                                                                  getLeftHorizontalScroll获取左到右横向滚动距离
                                                                                                                                                                                                                                                                  getRightHorizontalScroll获取右往左横向滚动距离
                                                                                                                                                                                                                                                                  attr设置属性key: 键 value: 值
                                                                                                                                                                                                                                                                  populate增加
                                                                                                                                                                                                                                                                  destroy摧毁表
                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                  + + +
                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                  + +

                                                                                                                                                                                                                                                                  results matching ""

                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                    + +

                                                                                                                                                                                                                                                                    No results matching ""

                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                    + + + + +
                                                                                                                                                                                                                                                                    + + +
                                                                                                                                                                                                                                                                    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/_book/detailed/table/bi.page_table.md b/docs/_book/detailed/table/bi.page_table.md new file mode 100644 index 000000000..1dc78f881 --- /dev/null +++ b/docs/_book/detailed/table/bi.page_table.md @@ -0,0 +1,81 @@ +# bi.page_table + +### 分页表格 + +{% method %} +[source](https://jsfiddle.net/fineui/4egug10x/) + +{% common %} +```javascript +BI.createWidget({ + type: "bi.page_table", + element: "body", + columnSize: [200,200], + items: [], + pager: { + horizontal : {}, + vertical: {} + } +}); +``` + +{% endmethod %} + +## 参数设置 +| 参数 | 二级参数 | 三级参数 | 说明 | 类型 | 默认值 | +| ----------------------- | ---------- | --------- | ------------------ | -------------------- | ----------------- | +| pager | | | 分页选项 | object | — | +| | horizontal | | 水平分页选项 | object | — | +| | | pages | 显示总页数 | boolean | false | +| | | curr | 当前页 | number | 1 | +| | | hasPrev | 判断是否有前一页的函数 | function | BI.emptyFn | +| | | hasNext | 是否有下一页 | function | BI.emptyFn | +| | | firstPage | 第一页 | number | 1 | +| | | lastPage | 最后一页 | number/function | BI.emptyFn | +| | vertical | | 纵向分页,参数与horizontal | object | — | +| itemsCreator | | | 元素创造器 | function | BI.emptyFn | +| isNeedFreeze | | | 是否需要冻结表头 | boolean | false | +| freezeCols | | | 冻结的列 | array | [] | +| isNeedMerge | | | 是否需要合并单元格 | boolean | false | +| mergeCols | | | 合并的单元格列号 | array | [] | +| mergeRule | | | 合并规则, 默认相等时合并 | function(row1, row2) | 默认row1 = row2 时合并 | +| columnSize | | | 单元格宽度集合 | array | [] | +| minColumnSize | | | 最小列宽 | array | [] | +| maxColumnSize | | | 最大列宽 | array | [] | +| headerRowSize | | | 表头高度 | number | 25 | +| rowSize | | | 普通单元格高度 | number | 25 | +| regionColumnSize | | | 列项间的 | array | [] | +| headerCellStyleGetter | | | | function | BI.emptyFn | +| summaryCellStyleGetter | | | | function | BI.emptyFn | +| sequenceCellStyleGetter | | | | function | BI.emptyFn | +| header | | | 表头 | array | [] | +| items | | | 子组件 | array | [] | +| crossHeader | | | 交叉表头 | array | [] | +| crossItems | | | 交叉项 | array | [] | + + + +## 方法 +| 方法名 | 说明 | 参数 | +| ------------------------ | ----------- | ------------------ | +| setHPage | 设置水平页数 | v: 页码 | +| setVpage | 设置纵向页数 | v: 页码 | +| getHPage | 获得水平页数 | — | +| getVPage | 获得垂直页数 | — | +| setWidth | 设置宽度 | width: 宽度 | +| setHeight | 设置高度 | height: 高度 | +| setColumnSize | 设置列宽 | columnSize: 列宽数组 | +| getColumnSize | 得到列宽 | — | +| setRegionColumnSize | 设置列项之间的间隙 | columnSize: 列宽数组 | +| getRegionColumnSize | 获得列项之间的间隙 | — | +| setVerticalScroll | 设置纵向滚动距离 | scrollTop: 纵向滚动距离 | +| setLeftHorizontalScroll | 设置左到右横向滚动距离 | scrollLeft: 横向滚动距离 | +| setRightHorizontalScroll | 设置右往左横向滚动距离 | scrollLeft: 横向滚动距离 | +| getVerticalScroll | 获取纵向滚动距离 | — | +| getLeftHorizontalScroll | 获取左到右横向滚动距离 | — | +| getRightHorizontalScroll | 获取右往左横向滚动距离 | — | +| attr | 设置属性 | key: 键 value: 值 | +| populate | 增加 | — | +| destroy | 摧毁表 | — | + +------ \ No newline at end of file diff --git a/docs/_book/detailed/table/bi.preview_table.html b/docs/_book/detailed/table/bi.preview_table.html new file mode 100644 index 000000000..090ac1331 --- /dev/null +++ b/docs/_book/detailed/table/bi.preview_table.html @@ -0,0 +1,2727 @@ + + + + + + + preview_table · GitBook + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                    + + + + + + + + +
                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                    + + + + + + + + +
                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                    + +

                                                                                                                                                                                                                                                                    bi.preview_table

                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                    用于表格预览,继承BI.Widget

                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                    
                                                                                                                                                                                                                                                                    +BI.createWidget({
                                                                                                                                                                                                                                                                    +  type: "bi.preview_table",
                                                                                                                                                                                                                                                                    +  header: [[{
                                                                                                                                                                                                                                                                    +    text: "表头1"
                                                                                                                                                                                                                                                                    +  }, {
                                                                                                                                                                                                                                                                    +    text: "表头2"
                                                                                                                                                                                                                                                                    +  }, {
                                                                                                                                                                                                                                                                    +    text: "表头3"
                                                                                                                                                                                                                                                                    +  }]],
                                                                                                                                                                                                                                                                    +  element: 'body',
                                                                                                                                                                                                                                                                    +  columnSize: [100, "", 50],
                                                                                                                                                                                                                                                                    +  items: [[{
                                                                                                                                                                                                                                                                    +    text: "第一行第一列"
                                                                                                                                                                                                                                                                    +  }, {
                                                                                                                                                                                                                                                                    +    text: "第一行第二列"
                                                                                                                                                                                                                                                                    +  }, {
                                                                                                                                                                                                                                                                    +    text: "第一行第三列"
                                                                                                                                                                                                                                                                    +  }]]
                                                                                                                                                                                                                                                                    +});
                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                    + +

                                                                                                                                                                                                                                                                    参数

                                                                                                                                                                                                                                                                    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                    参数说明类型默认值
                                                                                                                                                                                                                                                                    isNeedFreeze是否冻结booleanfalse
                                                                                                                                                                                                                                                                    freezeCols冻结的列array[]
                                                                                                                                                                                                                                                                    rowSize行高array/numbernull
                                                                                                                                                                                                                                                                    columnSize列宽array[]
                                                                                                                                                                                                                                                                    headerRowSize表头行高number30
                                                                                                                                                                                                                                                                    header表头内容array[]
                                                                                                                                                                                                                                                                    items子组件array[]
                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                    方法

                                                                                                                                                                                                                                                                    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                    方法名说明参数
                                                                                                                                                                                                                                                                    resize调整表格
                                                                                                                                                                                                                                                                    setColumnSize设置列宽columnSize
                                                                                                                                                                                                                                                                    getColumnSize得到列宽
                                                                                                                                                                                                                                                                    getCalculateColumnSize获得计算后的列宽
                                                                                                                                                                                                                                                                    setHeaderColumnSize设置表头的列宽columnSize
                                                                                                                                                                                                                                                                    setRegionColumnSize设置列项之间的间隙columnSize
                                                                                                                                                                                                                                                                    getRegionColumnSize获得列项之间的间隙
                                                                                                                                                                                                                                                                    getCalculateRegionColumnSize获取计算后的列项之间的间隙
                                                                                                                                                                                                                                                                    getCalculateRegionRowSize获取计算后的列项上下之间的间隙
                                                                                                                                                                                                                                                                    getClientRegionColumnSize获取浏览器中显示的列项之间的间隙
                                                                                                                                                                                                                                                                    getScrollRegionColumnSize获取横向滚动条宽度
                                                                                                                                                                                                                                                                    getScrollRegionRowSize获取纵向滚动条宽度
                                                                                                                                                                                                                                                                    hasVerticalScroll是否含有数值滚动条
                                                                                                                                                                                                                                                                    setVerticalScroll设置纵向滚动距离scrollTop
                                                                                                                                                                                                                                                                    setLeftHorizontalScroll设置左到右横向滚动距离scrollLeft
                                                                                                                                                                                                                                                                    setRightHorizontalScroll设置右往左横向滚动距离scrollLeft
                                                                                                                                                                                                                                                                    getVerticalScroll获取纵向滚动距离
                                                                                                                                                                                                                                                                    getLeftHorizontalScroll获取左到右横向滚动距离
                                                                                                                                                                                                                                                                    getRightHorizontalScroll获取右往左横向滚动距离
                                                                                                                                                                                                                                                                    getColumns获取列项
                                                                                                                                                                                                                                                                    resizeHeader调整表头
                                                                                                                                                                                                                                                                    attr设置属性key:键,value:值
                                                                                                                                                                                                                                                                    populate替换为新的内容rows
                                                                                                                                                                                                                                                                    destroy摧毁表
                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                    + + +
                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                    + +

                                                                                                                                                                                                                                                                    results matching ""

                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                      + +

                                                                                                                                                                                                                                                                      No results matching ""

                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                      + + + + +
                                                                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                                                                      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/_book/detailed/table/bi.preview_table.md b/docs/_book/detailed/table/bi.preview_table.md new file mode 100644 index 000000000..e8d99a07b --- /dev/null +++ b/docs/_book/detailed/table/bi.preview_table.md @@ -0,0 +1,75 @@ +# bi.preview_table + +### 用于表格预览,继承BI.Widget + +{% method %} +[source](https://jsfiddle.net/fineui/po4s0hub/) + +{% common %} +```javascript + +BI.createWidget({ + type: "bi.preview_table", + header: [[{ + text: "表头1" + }, { + text: "表头2" + }, { + text: "表头3" + }]], + element: 'body', + columnSize: [100, "", 50], + items: [[{ + text: "第一行第一列" + }, { + text: "第一行第二列" + }, { + text: "第一行第三列" + }]] +}); +``` + +{% endmethod %} + +##参数 + +| 参数 | 说明 | 类型 | 默认值 | +| ------------- | ---- | ------------ | ----- | +| isNeedFreeze | 是否冻结 | boolean | false | +| freezeCols | 冻结的列 | array | [] | +| rowSize | 行高 | array/number | null | +| columnSize | 列宽 | array | [] | +| headerRowSize | 表头行高 | number | 30 | +| header | 表头内容 | array | [] | +| items | 子组件 | array | [] | + +## 方法 +| 方法名 | 说明 | 参数 | +| ---------------------------- | ---------------- | ------------- | +| resize | 调整表格 | — | +| setColumnSize | 设置列宽 | columnSize | +| getColumnSize | 得到列宽 | — | +| getCalculateColumnSize | 获得计算后的列宽 | — | +| setHeaderColumnSize | 设置表头的列宽 | columnSize | +| setRegionColumnSize | 设置列项之间的间隙 | columnSize | +| getRegionColumnSize | 获得列项之间的间隙 | — | +| getCalculateRegionColumnSize | 获取计算后的列项之间的间隙 | — | +| getCalculateRegionRowSize | 获取计算后的列项上下之间的间隙 | — | +| getClientRegionColumnSize | 获取浏览器中显示的列项之间的间隙 | — | +| getScrollRegionColumnSize | 获取横向滚动条宽度 | — | +| getScrollRegionRowSize | 获取纵向滚动条宽度 | — | +| hasVerticalScroll | 是否含有数值滚动条 | — | +| setVerticalScroll | 设置纵向滚动距离 | scrollTop | +| setLeftHorizontalScroll | 设置左到右横向滚动距离 | scrollLeft | +| setRightHorizontalScroll | 设置右往左横向滚动距离 | scrollLeft | +| getVerticalScroll | 获取纵向滚动距离 | — | +| getLeftHorizontalScroll | 获取左到右横向滚动距离 | — | +| getRightHorizontalScroll | 获取右往左横向滚动距离 | — | +| getColumns | 获取列项 | — | +| resizeHeader | 调整表头 | — | +| attr | 设置属性 | key:键,value:值 | +| populate | 替换为新的内容 | rows | +| destroy | 摧毁表 | — | + +--- + diff --git a/docs/_book/detailed/table/bi.responsive_table.html b/docs/_book/detailed/table/bi.responsive_table.html new file mode 100644 index 000000000..155177aea --- /dev/null +++ b/docs/_book/detailed/table/bi.responsive_table.html @@ -0,0 +1,2780 @@ + + + + + + + responsive_table · GitBook + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                      + + + + + + + + +
                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                      + + + + + + + + +
                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                      + +

                                                                                                                                                                                                                                                                      bi.responsive_table

                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                      自适应宽度的表格,继承BI.Widget

                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                      
                                                                                                                                                                                                                                                                      +BI.createWidget({
                                                                                                                                                                                                                                                                      +  type: "bi.responsive_table",
                                                                                                                                                                                                                                                                      +  isNeedMerge: true,
                                                                                                                                                                                                                                                                      +  isNeedFreeze: true,
                                                                                                                                                                                                                                                                      +  mergeCols: [0, 1],
                                                                                                                                                                                                                                                                      +  columnSize: ["", "", ""],
                                                                                                                                                                                                                                                                      +  items: [[{
                                                                                                                                                                                                                                                                      +    text: "第一行第一列"
                                                                                                                                                                                                                                                                      +  }, {
                                                                                                                                                                                                                                                                      +    text: "第一行第二列"
                                                                                                                                                                                                                                                                      +  }, {
                                                                                                                                                                                                                                                                      +    text: "第一行第三列"
                                                                                                                                                                                                                                                                      +  }]],
                                                                                                                                                                                                                                                                      +  header: [[{
                                                                                                                                                                                                                                                                      +    text: "表头1"
                                                                                                                                                                                                                                                                      +  }, {
                                                                                                                                                                                                                                                                      +    text: "表头2"
                                                                                                                                                                                                                                                                      +  }, {
                                                                                                                                                                                                                                                                      +    text: "表头3"
                                                                                                                                                                                                                                                                      +  }]],
                                                                                                                                                                                                                                                                      +  element: 'body'
                                                                                                                                                                                                                                                                      +});
                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                      + +

                                                                                                                                                                                                                                                                      参数

                                                                                                                                                                                                                                                                      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                      参数说明类型默认值
                                                                                                                                                                                                                                                                      isNeedFreeze是否需要冻结单元格booleanfalse
                                                                                                                                                                                                                                                                      freezeCols冻结的列号,从0开始,isNeedFreeze为true时生效array[]
                                                                                                                                                                                                                                                                      isNeedMerge是否需要合并单元格booleanfalse
                                                                                                                                                                                                                                                                      mergeRulefunction (row1, row2) 合并规则, 默认相等时合并functionfunction
                                                                                                                                                                                                                                                                      columnSize列宽array[]
                                                                                                                                                                                                                                                                      headerRowSize表头行高number25
                                                                                                                                                                                                                                                                      footerRowSize表尾行高number25
                                                                                                                                                                                                                                                                      rowSize行高number25
                                                                                                                                                                                                                                                                      columnSize列宽array[]
                                                                                                                                                                                                                                                                      regionColumnSizebooleanfalse
                                                                                                                                                                                                                                                                      header表头内容array[]
                                                                                                                                                                                                                                                                      footer是否需要表尾booleanfalse
                                                                                                                                                                                                                                                                      items子组件二维数组array[]
                                                                                                                                                                                                                                                                      crossHeader交叉表头array[]
                                                                                                                                                                                                                                                                      crossItems交叉表内容二维数组array[]
                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                      方法

                                                                                                                                                                                                                                                                      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                      方法名说明参数
                                                                                                                                                                                                                                                                      resize调整表格
                                                                                                                                                                                                                                                                      setColumnSize设置列宽columnSize
                                                                                                                                                                                                                                                                      getColumnSize得到列宽
                                                                                                                                                                                                                                                                      getCalculateColumnSize获得计算后的列宽
                                                                                                                                                                                                                                                                      setHeaderColumnSize设置表头的列宽columnSize
                                                                                                                                                                                                                                                                      setRegionColumnSize设置列项之间的间隙columnSize
                                                                                                                                                                                                                                                                      getRegionColumnSize获得列项之间的间隙
                                                                                                                                                                                                                                                                      getCalculateRegionColumnSize获取计算后的列项之间的间隙
                                                                                                                                                                                                                                                                      getCalculateRegionRowSize获取计算后的列项上下之间的间隙
                                                                                                                                                                                                                                                                      getClientRegionColumnSize获取浏览器中显示的列项之间的间隙
                                                                                                                                                                                                                                                                      getScrollRegionColumnSize获取横向滚动条宽度
                                                                                                                                                                                                                                                                      getScrollRegionRowSize获取纵向滚动条宽度
                                                                                                                                                                                                                                                                      hasVerticalScroll是否含有数值滚动条
                                                                                                                                                                                                                                                                      setVerticalScroll设置纵向滚动距离scrollTop
                                                                                                                                                                                                                                                                      setLeftHorizontalScroll设置左到右横向滚动距离scrollLeft
                                                                                                                                                                                                                                                                      setRightHorizontalScroll设置右往左横向滚动距离scrollLeft
                                                                                                                                                                                                                                                                      getVerticalScroll获取纵向滚动距离
                                                                                                                                                                                                                                                                      getLeftHorizontalScroll获取左到右横向滚动距离
                                                                                                                                                                                                                                                                      getRightHorizontalScroll获取右往左横向滚动距离
                                                                                                                                                                                                                                                                      getColumns获取列项
                                                                                                                                                                                                                                                                      resizeHeader调整表头
                                                                                                                                                                                                                                                                      attr设置属性key:键,value:值
                                                                                                                                                                                                                                                                      populate替换为新内容rows
                                                                                                                                                                                                                                                                      destroy摧毁表
                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                      + +

                                                                                                                                                                                                                                                                      results matching ""

                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        + +

                                                                                                                                                                                                                                                                        No results matching ""

                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                        + + + + +
                                                                                                                                                                                                                                                                        + + +
                                                                                                                                                                                                                                                                        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/_book/detailed/table/bi.responsive_table.md b/docs/_book/detailed/table/bi.responsive_table.md new file mode 100644 index 000000000..de0f5e2fa --- /dev/null +++ b/docs/_book/detailed/table/bi.responsive_table.md @@ -0,0 +1,86 @@ +# bi.responsive_table + +### 自适应宽度的表格,继承BI.Widget + +{% method %} +[source](https://jsfiddle.net/fineui/y70jwztm/) + +{% common %} +```javascript + +BI.createWidget({ + type: "bi.responsive_table", + isNeedMerge: true, + isNeedFreeze: true, + mergeCols: [0, 1], + columnSize: ["", "", ""], + items: [[{ + text: "第一行第一列" + }, { + text: "第一行第二列" + }, { + text: "第一行第三列" + }]], + header: [[{ + text: "表头1" + }, { + text: "表头2" + }, { + text: "表头3" + }]], + element: 'body' +}); +``` + +{% endmethod %} + +##参数 + +| 参数 | 说明 | 类型 | 默认值 | +| ---------------- | ------------------------------------ | -------- | -------- | +| isNeedFreeze | 是否需要冻结单元格 | boolean | false | +| freezeCols | 冻结的列号,从0开始,isNeedFreeze为true时生效 | array | [] | +| isNeedMerge | 是否需要合并单元格 | boolean | false | +| mergeRule | function (row1, row2) 合并规则, 默认相等时合并 | function | function | +| columnSize | 列宽 | array | [] | +| headerRowSize | 表头行高 | number | 25 | +| footerRowSize | 表尾行高 | number | 25 | +| rowSize | 行高 | number | 25 | +| columnSize | 列宽 | array | [] | +| regionColumnSize | | boolean | false | +| header | 表头内容 | array | [] | +| footer | 是否需要表尾 | boolean | false | +| items | 子组件二维数组 | array | [] | +| crossHeader | 交叉表头 | array | [] | +| crossItems | 交叉表内容二维数组 | array | [] | + +## 方法 +| 方法名 | 说明 | 参数 | +| ---------------------------- | ---------------- | ------------- | +| resize | 调整表格 | — | +| setColumnSize | 设置列宽 | columnSize | +| getColumnSize | 得到列宽 | — | +| getCalculateColumnSize | 获得计算后的列宽 | — | +| setHeaderColumnSize | 设置表头的列宽 | columnSize | +| setRegionColumnSize | 设置列项之间的间隙 | columnSize | +| getRegionColumnSize | 获得列项之间的间隙 | — | +| getCalculateRegionColumnSize | 获取计算后的列项之间的间隙 | — | +| getCalculateRegionRowSize | 获取计算后的列项上下之间的间隙 | — | +| getClientRegionColumnSize | 获取浏览器中显示的列项之间的间隙 | — | +| getScrollRegionColumnSize | 获取横向滚动条宽度 | — | +| getScrollRegionRowSize | 获取纵向滚动条宽度 | — | +| hasVerticalScroll | 是否含有数值滚动条 | — | +| setVerticalScroll | 设置纵向滚动距离 | scrollTop | +| setLeftHorizontalScroll | 设置左到右横向滚动距离 | scrollLeft | +| setRightHorizontalScroll | 设置右往左横向滚动距离 | scrollLeft | +| getVerticalScroll | 获取纵向滚动距离 | — | +| getLeftHorizontalScroll | 获取左到右横向滚动距离 | — | +| getRightHorizontalScroll | 获取右往左横向滚动距离 | — | +| getColumns | 获取列项 | — | +| resizeHeader | 调整表头 | — | +| attr | 设置属性 | key:键,value:值 | +| populate | 替换为新内容 | rows | +| destroy | 摧毁表 | — | + +------ + diff --git a/docs/_book/detailed/text_input/bi.clear_editor.html b/docs/_book/detailed/text_input/bi.clear_editor.html new file mode 100644 index 000000000..87b3904c4 --- /dev/null +++ b/docs/_book/detailed/text_input/bi.clear_editor.html @@ -0,0 +1,2657 @@ + + + + + + + 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
                                                                                                                                                                                                                                                                        allowBlank是否允许空值booleantrue,falsefalse
                                                                                                                                                                                                                                                                        watermark文本框placeholderstringnull
                                                                                                                                                                                                                                                                        value文本框默认值string" "
                                                                                                                                                                                                                                                                        errorText错误提示stringnull
                                                                                                                                                                                                                                                                        width文本框宽度number
                                                                                                                                                                                                                                                                        height文本框高度number30
                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                        事件

                                                                                                                                                                                                                                                                        + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                        事件说明
                                                                                                                                                                                                                                                                        BI.ClearEditor.EVENT_CLEAR点击清空按钮触发
                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                        其他事件详见Input

                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        + + +
                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        + +

                                                                                                                                                                                                                                                                        results matching ""

                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                          + +

                                                                                                                                                                                                                                                                          No results matching ""

                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                          + + + + +
                                                                                                                                                                                                                                                                          + + +
                                                                                                                                                                                                                                                                          + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/_book/detailed/text_input/bi.clear_editor.md b/docs/_book/detailed/text_input/bi.clear_editor.md new file mode 100644 index 000000000..63a1303d8 --- /dev/null +++ b/docs/_book/detailed/text_input/bi.clear_editor.md @@ -0,0 +1,51 @@ +# 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 | — | — | +| allowBlank | 是否允许空值 | boolean | true,false | false | +| watermark | 文本框placeholder | string | — | null | +| value | 文本框默认值 | string | — | " " | +| errorText | 错误提示 | string | — | null | +| width | 文本框宽度 | number | — | — | +| height | 文本框高度 | number | — | 30 | + + + +## 事件 +| 事件 | 说明 | +| :------ |:------------- | +|BI.ClearEditor.EVENT_CLEAR| 点击清空按钮触发 | + +### 其他事件详见[Input](../../base/editor/editor.md) + + +--- + diff --git a/docs/_book/detailed/text_input/bi.search_editor.html b/docs/_book/detailed/text_input/bi.search_editor.html new file mode 100644 index 000000000..6287315c2 --- /dev/null +++ b/docs/_book/detailed/text_input/bi.search_editor.html @@ -0,0 +1,2656 @@ + + + + + + + bi.search_editor · GitBook + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                          + + + + + + + + +
                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                          + + + + + + + + +
                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                          + +

                                                                                                                                                                                                                                                                          bi.search_editor

                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                          搜索框

                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                          BI.createWidget({
                                                                                                                                                                                                                                                                          +    type: 'bi.search_editor',
                                                                                                                                                                                                                                                                          +    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
                                                                                                                                                                                                                                                                          allowBlank是否允许空值booleantrue,falsefalse
                                                                                                                                                                                                                                                                          watermark文本框placeholderstringnull
                                                                                                                                                                                                                                                                          value文本框默认值string" "
                                                                                                                                                                                                                                                                          errorText错误提示stringnull
                                                                                                                                                                                                                                                                          width文本框宽度number
                                                                                                                                                                                                                                                                          height文本框高度number30
                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                          事件

                                                                                                                                                                                                                                                                          + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                          事件说明
                                                                                                                                                                                                                                                                          BI.SearchEditor.EVENT_CLEAR点击清空按钮触发
                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                          其他事件详见Editor

                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                          + + +
                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                          + +

                                                                                                                                                                                                                                                                          results matching ""

                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                            + +

                                                                                                                                                                                                                                                                            No results matching ""

                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                            + + + + +
                                                                                                                                                                                                                                                                            + + +
                                                                                                                                                                                                                                                                            + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/_book/detailed/text_input/bi.search_editor.md b/docs/_book/detailed/text_input/bi.search_editor.md new file mode 100644 index 000000000..62a967f49 --- /dev/null +++ b/docs/_book/detailed/text_input/bi.search_editor.md @@ -0,0 +1,50 @@ + +## bi.search_editor +### 搜索框 + +{% method %} +[source](https://jsfiddle.net/fineui/4a1rLppw/) + +{% 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 | — | — | +| allowBlank | 是否允许空值 | boolean | true,false | false | +| watermark | 文本框placeholder | string | — | null | +| value | 文本框默认值 | string | — | " " | +| errorText | 错误提示 | string | —| null | +| width | 文本框宽度 | number | — | — | +| height | 文本框高度 | number | — | 30 | + + + +## 事件 +| 事件 | 说明 | +| :------ |:------------- | +|BI.SearchEditor.EVENT_CLEAR| 点击清空按钮触发 | + +### 其他事件详见[Editor](../../base/editor/editor.md) + + +--- + diff --git a/docs/_book/detailed/text_input/bi.text_editor.html b/docs/_book/detailed/text_input/bi.text_editor.html new file mode 100644 index 000000000..3da0280ad --- /dev/null +++ b/docs/_book/detailed/text_input/bi.text_editor.html @@ -0,0 +1,2641 @@ + + + + + + + bi.text_editor · GitBook + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                            + + + + + + + + +
                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                            + + + + + + + + +
                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                            + +

                                                                                                                                                                                                                                                                            bi.text_editor

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

                                                                                                                                                                                                                                                                            基础用法

                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                            BI.createWidget({
                                                                                                                                                                                                                                                                            +  type: "bi.text_editor",
                                                                                                                                                                                                                                                                            +  element: "#wrapper",
                                                                                                                                                                                                                                                                            +  width: 200,
                                                                                                                                                                                                                                                                            +  height: 30,
                                                                                                                                                                                                                                                                            +  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
                                                                                                                                                                                                                                                                            allowBlank是否允许空值booleantrue,falsefalse
                                                                                                                                                                                                                                                                            watermark文本框placeholderstringnull
                                                                                                                                                                                                                                                                            value文本框默认值string" "
                                                                                                                                                                                                                                                                            errorText错误提示stringnull
                                                                                                                                                                                                                                                                            width文本框宽度number
                                                                                                                                                                                                                                                                            height文本框高度number30
                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                            事件详见Editor

                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                            + + +
                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                            + +

                                                                                                                                                                                                                                                                            results matching ""

                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                              No results matching ""

                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                              + + + + +
                                                                                                                                                                                                                                                                              + + +
                                                                                                                                                                                                                                                                              + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/_book/detailed/text_input/bi.text_editor.md b/docs/_book/detailed/text_input/bi.text_editor.md new file mode 100644 index 000000000..8ee6de74d --- /dev/null +++ b/docs/_book/detailed/text_input/bi.text_editor.md @@ -0,0 +1,48 @@ +#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 %} + +## 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 | — | — | +| allowBlank | 是否允许空值 | boolean | true,false | false | +| watermark | 文本框placeholder | string | — | null | +| value | 文本框默认值 | string | — | " " | +| errorText | 错误提示 | string | — | null | +| width | 文本框宽度 | number | — | — | +| height | 文本框高度 | number | — | 30 | + + + + +### 事件详见[Editor](../../base/editor/editor.md) + + + +--- \ No newline at end of file diff --git a/docs/_book/detailed/text_input/finetuning_number_editor.html b/docs/_book/detailed/text_input/finetuning_number_editor.html new file mode 100644 index 000000000..eb41cb6af --- /dev/null +++ b/docs/_book/detailed/text_input/finetuning_number_editor.html @@ -0,0 +1,2563 @@ + + + + + + + finetuning_number_editor · GitBook + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                              + + + + + + + + +
                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                              + + + + + + + + +
                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                              finetuning_number_editor

                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                              数值微调器

                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                              BI.createWidget({
                                                                                                                                                                                                                                                                              +    type: 'bi.fine_tuning_number_editor',
                                                                                                                                                                                                                                                                              +    element: '#wrapper',
                                                                                                                                                                                                                                                                              +    width: 300
                                                                                                                                                                                                                                                                              +});
                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                              参数

                                                                                                                                                                                                                                                                              + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                              参数说明类型可选值默认值
                                                                                                                                                                                                                                                                              value编辑框中的值,-1表示自动number-1
                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                              事件

                                                                                                                                                                                                                                                                              + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                              事件说明
                                                                                                                                                                                                                                                                              BI.FineTuningNumberEditor.EVENT_CONFIRM点击增加/减少按钮或者编辑框确定时触发
                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                              + + +
                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                              results matching ""

                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                + +

                                                                                                                                                                                                                                                                                No results matching ""

                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                + + + + +
                                                                                                                                                                                                                                                                                + + +
                                                                                                                                                                                                                                                                                + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/_book/detailed/text_input/finetuning_number_editor.md b/docs/_book/detailed/text_input/finetuning_number_editor.md new file mode 100644 index 000000000..1864f9f73 --- /dev/null +++ b/docs/_book/detailed/text_input/finetuning_number_editor.md @@ -0,0 +1,34 @@ +# finetuning_number_editor + +## 数值微调器 + +{% method %} +[source](https://jsfiddle.net/fineui/52dhwtfz/) + +{% common %} +```javascript +BI.createWidget({ + type: 'bi.fine_tuning_number_editor', + element: '#wrapper', + width: 300 +}); +``` + +{% endmethod %} + +## 参数 + +| 参数 | 说明 | 类型 | 可选值 | 默认值 +| :------ |:------------- | :-----| :----|:----| +| value | 编辑框中的值,-1表示自动 | number | | -1 | + + + +## 事件 +| 事件 | 说明 | +| :------ |:------------- | +|BI.FineTuningNumberEditor.EVENT_CONFIRM| 点击增加/减少按钮或者编辑框确定时触发 | + + + +--- \ No newline at end of file diff --git a/docs/_book/detailed/tree/bi.multi_tree_combo.html b/docs/_book/detailed/tree/bi.multi_tree_combo.html new file mode 100644 index 000000000..20131bd49 --- /dev/null +++ b/docs/_book/detailed/tree/bi.multi_tree_combo.html @@ -0,0 +1,2625 @@ + + + + + + + multi_tree_combo · GitBook + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                + + + + + + + + +
                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                + + + + + + + + +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                + +

                                                                                                                                                                                                                                                                                bi.multi_tree_combo

                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                树下拉框,继承BI.Widget

                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                var items = [{
                                                                                                                                                                                                                                                                                +    id: -1,
                                                                                                                                                                                                                                                                                +  pId: -2,
                                                                                                                                                                                                                                                                                +  value: "根目录",
                                                                                                                                                                                                                                                                                +  text: "根目录"
                                                                                                                                                                                                                                                                                +}, {
                                                                                                                                                                                                                                                                                +    id: 1,
                                                                                                                                                                                                                                                                                +  pId: -1,
                                                                                                                                                                                                                                                                                +  value: "第一级目录1",
                                                                                                                                                                                                                                                                                +  text: "第一级目录1"
                                                                                                                                                                                                                                                                                +}, {
                                                                                                                                                                                                                                                                                +    id: 11,
                                                                                                                                                                                                                                                                                +  pId: 1,
                                                                                                                                                                                                                                                                                +  value: "第二级文件1",
                                                                                                                                                                                                                                                                                +  text: "第二级文件1"
                                                                                                                                                                                                                                                                                +}];
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +BI.createWidget({
                                                                                                                                                                                                                                                                                +  type: "bi.multi_tree_combo",
                                                                                                                                                                                                                                                                                +  itemsCreator: function (options, callback) {
                                                                                                                                                                                                                                                                                +        callback({
                                                                                                                                                                                                                                                                                +          items: items
                                                                                                                                                                                                                                                                                +        });
                                                                                                                                                                                                                                                                                +  },
                                                                                                                                                                                                                                                                                +  width: 300
                                                                                                                                                                                                                                                                                +})
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                + +

                                                                                                                                                                                                                                                                                参数设置

                                                                                                                                                                                                                                                                                + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                参数说明类型默认值
                                                                                                                                                                                                                                                                                width宽度number200
                                                                                                                                                                                                                                                                                height高度number30
                                                                                                                                                                                                                                                                                items子项,pId代表父节点IDarraynull
                                                                                                                                                                                                                                                                                itemsCreator子项创建函数functionfunction() {}
                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                方法

                                                                                                                                                                                                                                                                                + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                方法名说明参数
                                                                                                                                                                                                                                                                                setValue设置文本框值v
                                                                                                                                                                                                                                                                                getValue获取文本框值
                                                                                                                                                                                                                                                                                populate更改树结构内容items
                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                事件

                                                                                                                                                                                                                                                                                + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                事件说明
                                                                                                                                                                                                                                                                                BI.MultiTreeCombo.EVENT_CONFIRM点击一级节点触发
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                + + +
                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                + +

                                                                                                                                                                                                                                                                                results matching ""

                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                  + +

                                                                                                                                                                                                                                                                                  No results matching ""

                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                  + + + + +
                                                                                                                                                                                                                                                                                  + + +
                                                                                                                                                                                                                                                                                  + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/_book/detailed/tree/bi.multi_tree_combo.md b/docs/_book/detailed/tree/bi.multi_tree_combo.md new file mode 100644 index 000000000..dca879fad --- /dev/null +++ b/docs/_book/detailed/tree/bi.multi_tree_combo.md @@ -0,0 +1,60 @@ +# bi.multi_tree_combo + +### 树下拉框,继承BI.Widget + +{% method %} +[source](https://jsfiddle.net/fineui/caw7efpf/) + +{% common %} +```javascript +var items = [{ + id: -1, + pId: -2, + value: "根目录", + text: "根目录" +}, { + id: 1, + pId: -1, + value: "第一级目录1", + text: "第一级目录1" +}, { + id: 11, + pId: 1, + value: "第二级文件1", + text: "第二级文件1" +}]; + +BI.createWidget({ + type: "bi.multi_tree_combo", + itemsCreator: function (options, callback) { + callback({ + items: items + }); + }, + width: 300 +}) +``` + +{% endmethod %} + +## 参数设置 +| 参数 | 说明 | 类型 | 默认值 | +| ------------ | ------------- | -------- | ------------- | +| width | 宽度 | number | 200 | +| height | 高度 | number | 30 | +| items | 子项,pId代表父节点ID | array | null | +| itemsCreator | 子项创建函数 | function | function() {} | + +## 方法 +| 方法名 | 说明 | 参数 | +| -------- | ------- | --------------- | +| setValue | 设置文本框值 | v | +| getValue | 获取文本框值 | — | +| populate | 更改树结构内容 | items | + +## 事件 +| 事件 | 说明 | +| :------ |:------------- | +|BI.MultiTreeCombo.EVENT_CONFIRM| 点击一级节点触发 | +--- + diff --git a/docs/_book/detailed/tree/bi.switch_tree.html b/docs/_book/detailed/tree/bi.switch_tree.html new file mode 100644 index 000000000..943fba220 --- /dev/null +++ b/docs/_book/detailed/tree/bi.switch_tree.html @@ -0,0 +1,2602 @@ + + + + + + + switch_tree · GitBook + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                  + + + + + + + + +
                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                  + + + + + + + + +
                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                  + +

                                                                                                                                                                                                                                                                                  bi.switch_tree

                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                  可以单选多选切换的树,继承BI.Widget

                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                  var items = [{
                                                                                                                                                                                                                                                                                  +  id: -1,
                                                                                                                                                                                                                                                                                  +  pId: -2,
                                                                                                                                                                                                                                                                                  +  value: "根目录",
                                                                                                                                                                                                                                                                                  +  text: "根目录"
                                                                                                                                                                                                                                                                                  +}, {
                                                                                                                                                                                                                                                                                  +  id: 1,
                                                                                                                                                                                                                                                                                  +  pId: -1,
                                                                                                                                                                                                                                                                                  +  value: "第一级目录1",
                                                                                                                                                                                                                                                                                  +  text: "第一级目录1"
                                                                                                                                                                                                                                                                                  +}, {
                                                                                                                                                                                                                                                                                  +  id: 11,
                                                                                                                                                                                                                                                                                  +  pId: 1,
                                                                                                                                                                                                                                                                                  +  value: "第二级文件1",
                                                                                                                                                                                                                                                                                  +  text: "第二级文件1"
                                                                                                                                                                                                                                                                                  +}];
                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                  +var tree = BI.createWidget({
                                                                                                                                                                                                                                                                                  +  type: "bi.switch_tree",
                                                                                                                                                                                                                                                                                  +  items: items,
                                                                                                                                                                                                                                                                                  +});
                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                  + +

                                                                                                                                                                                                                                                                                  参数设置

                                                                                                                                                                                                                                                                                  + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                  参数说明类型默认值
                                                                                                                                                                                                                                                                                  items子项,pId代表父节点IDarray[]
                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                  方法

                                                                                                                                                                                                                                                                                  + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                  方法名说明参数
                                                                                                                                                                                                                                                                                  switchSelect切换树结构
                                                                                                                                                                                                                                                                                  setSelect设置选中项v
                                                                                                                                                                                                                                                                                  getSelect获取选中项
                                                                                                                                                                                                                                                                                  setValue设置当前选中项内容v
                                                                                                                                                                                                                                                                                  getValue获取当前选中项内容v
                                                                                                                                                                                                                                                                                  populate更改树结构内容items
                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                  + + +
                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                  + +

                                                                                                                                                                                                                                                                                  results matching ""

                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                    + +

                                                                                                                                                                                                                                                                                    No results matching ""

                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                    + + + + +
                                                                                                                                                                                                                                                                                    + + +
                                                                                                                                                                                                                                                                                    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/_book/detailed/tree/bi.switch_tree.md b/docs/_book/detailed/tree/bi.switch_tree.md new file mode 100644 index 000000000..b1e330207 --- /dev/null +++ b/docs/_book/detailed/tree/bi.switch_tree.md @@ -0,0 +1,53 @@ +# bi.switch_tree + +### 可以单选多选切换的树,继承BI.Widget + +{% method %} +[source](https://jsfiddle.net/fineui/crd4z1nd/) + +{% common %} +```javascript +var items = [{ + id: -1, + pId: -2, + value: "根目录", + text: "根目录" +}, { + id: 1, + pId: -1, + value: "第一级目录1", + text: "第一级目录1" +}, { + id: 11, + pId: 1, + value: "第二级文件1", + text: "第二级文件1" +}]; + +var tree = BI.createWidget({ + type: "bi.switch_tree", + items: items, +}); +``` + +{% endmethod %} + +## 参数设置 +| 参数 | 说明 | 类型 | 默认值 | +| ----- | ------------- | ----- | ---- | +| items | 子项,pId代表父节点ID | array | [] | + +## 方法 +| 方法名 | 说明 | 参数 | +| ------------ | --------- | ------------ | +| switchSelect | 切换树结构 | — | +| setSelect | 设置选中项 | v | +| getSelect | 获取选中项 | — | +| setValue | 设置当前选中项内容 | v | +| getValue | 获取当前选中项内容 | v | +| populate | 更改树结构内容 | items | + +------ + + + diff --git a/docs/_book/detailed/year_combo.html b/docs/_book/detailed/year_combo.html new file mode 100644 index 000000000..87b54635b --- /dev/null +++ b/docs/_book/detailed/year_combo.html @@ -0,0 +1,2581 @@ + + + + + + + year_combo · GitBook + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                    + + + + + + + + +
                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                    + + + + + + + + +
                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                    + +

                                                                                                                                                                                                                                                                                    year_combo

                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                    年份选择下拉框

                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                    BI.createWidget({
                                                                                                                                                                                                                                                                                    +    type: 'bi.year_combo',
                                                                                                                                                                                                                                                                                    +    element: '#wrapper',
                                                                                                                                                                                                                                                                                    +    width: 300
                                                                                                                                                                                                                                                                                    +});
                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                    + +

                                                                                                                                                                                                                                                                                    参数

                                                                                                                                                                                                                                                                                    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                    参数说明类型可选值默认值
                                                                                                                                                                                                                                                                                    behaviors自定义下拉列表中item项的行为,如高亮,标红等(详见button_group)object{}
                                                                                                                                                                                                                                                                                    min限定可选日期的下限string'1900-01-01'
                                                                                                                                                                                                                                                                                    max限定可选日期的上限string'2099-12-31'
                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                    事件

                                                                                                                                                                                                                                                                                    + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                    事件说明
                                                                                                                                                                                                                                                                                    BI.YearCombo.EVENT_CONFIRM选中日期或者退出编辑状态触发
                                                                                                                                                                                                                                                                                    BI.YearCombo.EVENT_BEFORE_POPUPVIEW选中日期或者退出编辑状态触发
                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                    + + +
                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                    + +

                                                                                                                                                                                                                                                                                    results matching ""

                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                      + +

                                                                                                                                                                                                                                                                                      No results matching ""

                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                      + + + + +
                                                                                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                                                                                      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/_book/detailed/year_combo.md b/docs/_book/detailed/year_combo.md new file mode 100644 index 000000000..7cd74f0bc --- /dev/null +++ b/docs/_book/detailed/year_combo.md @@ -0,0 +1,37 @@ +# year_combo + +## 年份选择下拉框 + +{% method %} +[source](https://jsfiddle.net/fineui/3na3125L/) + +{% common %} +```javascript +BI.createWidget({ + type: 'bi.year_combo', + element: '#wrapper', + width: 300 +}); +``` + +{% endmethod %} + +##参数 + +| 参数 | 说明 | 类型 | 可选值 | 默认值 +| :------ |:------------- | :-----| :----|:----| +| behaviors | 自定义下拉列表中item项的行为,如高亮,标红等(详见[button_group](../core/abstract/button_group.md)) | object | | {} | +| min | 限定可选日期的下限 | string | | '1900-01-01' | +| max | 限定可选日期的上限 | string | | '2099-12-31' | + + + +##事件 +| 事件 | 说明 | +| :------ |:------------- | +|BI.YearCombo.EVENT_CONFIRM| 选中日期或者退出编辑状态触发 | +|BI.YearCombo.EVENT_BEFORE_POPUPVIEW| 选中日期或者退出编辑状态触发 | + + + +--- \ No newline at end of file diff --git a/docs/_book/gitbook/fonts/fontawesome/FontAwesome.otf b/docs/_book/gitbook/fonts/fontawesome/FontAwesome.otf new file mode 100644 index 000000000..d4de13e83 Binary files /dev/null and b/docs/_book/gitbook/fonts/fontawesome/FontAwesome.otf differ diff --git a/docs/_book/gitbook/fonts/fontawesome/fontawesome-webfont.eot b/docs/_book/gitbook/fonts/fontawesome/fontawesome-webfont.eot new file mode 100644 index 000000000..c7b00d2ba Binary files /dev/null and b/docs/_book/gitbook/fonts/fontawesome/fontawesome-webfont.eot differ diff --git a/docs/_book/gitbook/fonts/fontawesome/fontawesome-webfont.svg b/docs/_book/gitbook/fonts/fontawesome/fontawesome-webfont.svg new file mode 100644 index 000000000..8b66187fe --- /dev/null +++ b/docs/_book/gitbook/fonts/fontawesome/fontawesome-webfont.svg @@ -0,0 +1,685 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/_book/gitbook/fonts/fontawesome/fontawesome-webfont.ttf b/docs/_book/gitbook/fonts/fontawesome/fontawesome-webfont.ttf new file mode 100644 index 000000000..f221e50a2 Binary files /dev/null and b/docs/_book/gitbook/fonts/fontawesome/fontawesome-webfont.ttf differ diff --git a/docs/_book/gitbook/fonts/fontawesome/fontawesome-webfont.woff b/docs/_book/gitbook/fonts/fontawesome/fontawesome-webfont.woff new file mode 100644 index 000000000..6e7483cf6 Binary files /dev/null and b/docs/_book/gitbook/fonts/fontawesome/fontawesome-webfont.woff differ diff --git a/docs/_book/gitbook/fonts/fontawesome/fontawesome-webfont.woff2 b/docs/_book/gitbook/fonts/fontawesome/fontawesome-webfont.woff2 new file mode 100644 index 000000000..7eb74fd12 Binary files /dev/null and b/docs/_book/gitbook/fonts/fontawesome/fontawesome-webfont.woff2 differ diff --git a/docs/_book/gitbook/gitbook-plugin-expandable-chapters/expandable-chapters.css b/docs/_book/gitbook/gitbook-plugin-expandable-chapters/expandable-chapters.css new file mode 100644 index 000000000..9f46b9723 --- /dev/null +++ b/docs/_book/gitbook/gitbook-plugin-expandable-chapters/expandable-chapters.css @@ -0,0 +1,29 @@ +.book .book-summary .chapter > .articles { + overflow: hidden; + max-height: 0px; +} + +.book .book-summary .chapter.expanded > .articles { + max-height: 9999px; +} + +.book .book-summary .exc-trigger { + position: absolute; + left: 12px; + top: 12px; +} + +.book .book-summary ul.summary li a, +.book .book-summary ul.summary li span { + padding-left: 30px; + cursor: pointer; +} + +.book .book-summary .exc-trigger:before { + content: "\f054"; +} + +.book .book-summary .expanded > a .exc-trigger:before, +.book .book-summary .expanded > span .exc-trigger:before { + content: "\f078"; +} diff --git a/docs/_book/gitbook/gitbook-plugin-expandable-chapters/expandable-chapters.js b/docs/_book/gitbook/gitbook-plugin-expandable-chapters/expandable-chapters.js new file mode 100644 index 000000000..19c35d3c4 --- /dev/null +++ b/docs/_book/gitbook/gitbook-plugin-expandable-chapters/expandable-chapters.js @@ -0,0 +1,69 @@ +require(['gitbook', 'jQuery'], function(gitbook, $) { + var TOGGLE_CLASSNAME = 'expanded', + CHAPTER = '.chapter', + ARTICLES = '.articles', + TRIGGER_TEMPLATE = '', + LS_NAMESPACE = 'expChapters'; + var init = function () { + // adding the trigger element to each ARTICLES parent and binding the event + $(ARTICLES) + .parent(CHAPTER) + .children('a,span') + .append(TRIGGER_TEMPLATE) + .on('click', function(e) { + if (!$(e.target).is('a')) { + e.preventDefault(); + e.stopPropagation(); + toggle($(e.target).closest(CHAPTER)); + } + }); + + expand(lsItem()); + //expand current selected chapter with it's parents + var activeChapter = $(CHAPTER + '.active'); + expand(activeChapter); + expand(activeChapter.parents(CHAPTER)); + + + } + var toggle = function ($chapter) { + if ($chapter.hasClass('expanded')) { + collapse($chapter); + } else { + expand($chapter); + } + } + var collapse = function ($chapter) { + if ($chapter.length && $chapter.hasClass(TOGGLE_CLASSNAME)) { + $chapter.removeClass(TOGGLE_CLASSNAME); + lsItem($chapter); + } + } + var expand = function ($chapter) { + if ($chapter.length && !$chapter.hasClass(TOGGLE_CLASSNAME)) { + $chapter.addClass(TOGGLE_CLASSNAME); + lsItem($chapter); + } + } + var lsItem = function () { + var map = JSON.parse(localStorage.getItem(LS_NAMESPACE)) || {} + if (arguments.length) { + var $chapters = arguments[0]; + $chapters.each(function (index, element) { + var level = $(this).data('level'); + var value = $(this).hasClass(TOGGLE_CLASSNAME); + map[level] = value; + }) + localStorage.setItem(LS_NAMESPACE, JSON.stringify(map)); + } else { + return $(CHAPTER).map(function(index, element){ + if (map[$(this).data('level')]) { + return this; + } + }) + } + } + gitbook.events.bind('page.change', function() { + init() + }); +}); diff --git a/docs/_book/gitbook/gitbook-plugin-fontsettings/fontsettings.js b/docs/_book/gitbook/gitbook-plugin-fontsettings/fontsettings.js new file mode 100644 index 000000000..ff7be7141 --- /dev/null +++ b/docs/_book/gitbook/gitbook-plugin-fontsettings/fontsettings.js @@ -0,0 +1,240 @@ +require(['gitbook', 'jquery'], function(gitbook, $) { + // Configuration + var MAX_SIZE = 4, + MIN_SIZE = 0, + BUTTON_ID; + + // Current fontsettings state + var fontState; + + // Default themes + var THEMES = [ + { + config: 'white', + text: 'White', + id: 0 + }, + { + config: 'sepia', + text: 'Sepia', + id: 1 + }, + { + config: 'night', + text: 'Night', + id: 2 + } + ]; + + // Default font families + var FAMILIES = [ + { + config: 'serif', + text: 'Serif', + id: 0 + }, + { + config: 'sans', + text: 'Sans', + id: 1 + } + ]; + + // Return configured themes + function getThemes() { + return THEMES; + } + + // Modify configured themes + function setThemes(themes) { + THEMES = themes; + updateButtons(); + } + + // Return configured font families + function getFamilies() { + return FAMILIES; + } + + // Modify configured font families + function setFamilies(families) { + FAMILIES = families; + updateButtons(); + } + + // Save current font settings + function saveFontSettings() { + gitbook.storage.set('fontState', fontState); + update(); + } + + // Increase font size + function enlargeFontSize(e) { + e.preventDefault(); + if (fontState.size >= MAX_SIZE) return; + + fontState.size++; + saveFontSettings(); + } + + // Decrease font size + function reduceFontSize(e) { + e.preventDefault(); + if (fontState.size <= MIN_SIZE) return; + + fontState.size--; + saveFontSettings(); + } + + // Change font family + function changeFontFamily(configName, e) { + if (e && e instanceof Event) { + e.preventDefault(); + } + + var familyId = getFontFamilyId(configName); + fontState.family = familyId; + saveFontSettings(); + } + + // Change type of color theme + function changeColorTheme(configName, e) { + if (e && e instanceof Event) { + e.preventDefault(); + } + + var $book = gitbook.state.$book; + + // Remove currently applied color theme + if (fontState.theme !== 0) + $book.removeClass('color-theme-'+fontState.theme); + + // Set new color theme + var themeId = getThemeId(configName); + fontState.theme = themeId; + if (fontState.theme !== 0) + $book.addClass('color-theme-'+fontState.theme); + + saveFontSettings(); + } + + // Return the correct id for a font-family config key + // Default to first font-family + function getFontFamilyId(configName) { + // Search for plugin configured font family + var configFamily = $.grep(FAMILIES, function(family) { + return family.config == configName; + })[0]; + // Fallback to default font family + return (!!configFamily)? configFamily.id : 0; + } + + // Return the correct id for a theme config key + // Default to first theme + function getThemeId(configName) { + // Search for plugin configured theme + var configTheme = $.grep(THEMES, function(theme) { + return theme.config == configName; + })[0]; + // Fallback to default theme + return (!!configTheme)? configTheme.id : 0; + } + + function update() { + var $book = gitbook.state.$book; + + $('.font-settings .font-family-list li').removeClass('active'); + $('.font-settings .font-family-list li:nth-child('+(fontState.family+1)+')').addClass('active'); + + $book[0].className = $book[0].className.replace(/\bfont-\S+/g, ''); + $book.addClass('font-size-'+fontState.size); + $book.addClass('font-family-'+fontState.family); + + if(fontState.theme !== 0) { + $book[0].className = $book[0].className.replace(/\bcolor-theme-\S+/g, ''); + $book.addClass('color-theme-'+fontState.theme); + } + } + + function init(config) { + // Search for plugin configured font family + var configFamily = getFontFamilyId(config.family), + configTheme = getThemeId(config.theme); + + // Instantiate font state object + fontState = gitbook.storage.get('fontState', { + size: config.size || 2, + family: configFamily, + theme: configTheme + }); + + update(); + } + + function updateButtons() { + // Remove existing fontsettings buttons + if (!!BUTTON_ID) { + gitbook.toolbar.removeButton(BUTTON_ID); + } + + // Create buttons in toolbar + BUTTON_ID = gitbook.toolbar.createButton({ + icon: 'fa fa-font', + label: 'Font Settings', + className: 'font-settings', + dropdown: [ + [ + { + text: 'A', + className: 'font-reduce', + onClick: reduceFontSize + }, + { + text: 'A', + className: 'font-enlarge', + onClick: enlargeFontSize + } + ], + $.map(FAMILIES, function(family) { + family.onClick = function(e) { + return changeFontFamily(family.config, e); + }; + + return family; + }), + $.map(THEMES, function(theme) { + theme.onClick = function(e) { + return changeColorTheme(theme.config, e); + }; + + return theme; + }) + ] + }); + } + + // Init configuration at start + gitbook.events.bind('start', function(e, config) { + var opts = config.fontsettings; + + // Generate buttons at start + updateButtons(); + + // Init current settings + init(opts); + }); + + // Expose API + gitbook.fontsettings = { + enlargeFontSize: enlargeFontSize, + reduceFontSize: reduceFontSize, + setTheme: changeColorTheme, + setFamily: changeFontFamily, + getThemes: getThemes, + setThemes: setThemes, + getFamilies: getFamilies, + setFamilies: setFamilies + }; +}); + + diff --git a/docs/_book/gitbook/gitbook-plugin-fontsettings/website.css b/docs/_book/gitbook/gitbook-plugin-fontsettings/website.css new file mode 100644 index 000000000..26591fe81 --- /dev/null +++ b/docs/_book/gitbook/gitbook-plugin-fontsettings/website.css @@ -0,0 +1,291 @@ +/* + * Theme 1 + */ +.color-theme-1 .dropdown-menu { + background-color: #111111; + border-color: #7e888b; +} +.color-theme-1 .dropdown-menu .dropdown-caret .caret-inner { + border-bottom: 9px solid #111111; +} +.color-theme-1 .dropdown-menu .buttons { + border-color: #7e888b; +} +.color-theme-1 .dropdown-menu .button { + color: #afa790; +} +.color-theme-1 .dropdown-menu .button:hover { + color: #73553c; +} +/* + * Theme 2 + */ +.color-theme-2 .dropdown-menu { + background-color: #2d3143; + border-color: #272a3a; +} +.color-theme-2 .dropdown-menu .dropdown-caret .caret-inner { + border-bottom: 9px solid #2d3143; +} +.color-theme-2 .dropdown-menu .buttons { + border-color: #272a3a; +} +.color-theme-2 .dropdown-menu .button { + color: #62677f; +} +.color-theme-2 .dropdown-menu .button:hover { + color: #f4f4f5; +} +.book .book-header .font-settings .font-enlarge { + line-height: 30px; + font-size: 1.4em; +} +.book .book-header .font-settings .font-reduce { + line-height: 30px; + font-size: 1em; +} +.book.color-theme-1 .book-body { + color: #704214; + background: #f3eacb; +} +.book.color-theme-1 .book-body .page-wrapper .page-inner section { + background: #f3eacb; +} +.book.color-theme-2 .book-body { + color: #bdcadb; + background: #1c1f2b; +} +.book.color-theme-2 .book-body .page-wrapper .page-inner section { + background: #1c1f2b; +} +.book.font-size-0 .book-body .page-inner section { + font-size: 1.2rem; +} +.book.font-size-1 .book-body .page-inner section { + font-size: 1.4rem; +} +.book.font-size-2 .book-body .page-inner section { + font-size: 1.6rem; +} +.book.font-size-3 .book-body .page-inner section { + font-size: 2.2rem; +} +.book.font-size-4 .book-body .page-inner section { + font-size: 4rem; +} +.book.font-family-0 { + font-family: Georgia, serif; +} +.book.font-family-1 { + font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; +} +.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal { + color: #704214; +} +.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal a { + color: inherit; +} +.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal h1, +.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal h2, +.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal h3, +.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal h4, +.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal h5, +.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal h6 { + color: inherit; +} +.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal h1, +.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal h2 { + border-color: inherit; +} +.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal h6 { + color: inherit; +} +.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal hr { + background-color: inherit; +} +.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal blockquote { + border-color: inherit; +} +.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal pre, +.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal code { + background: #fdf6e3; + color: #657b83; + border-color: #f8df9c; +} +.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal .highlight { + background-color: inherit; +} +.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal table th, +.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal table td { + border-color: #f5d06c; +} +.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal table tr { + color: inherit; + background-color: #fdf6e3; + border-color: #444444; +} +.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal table tr:nth-child(2n) { + background-color: #fbeecb; +} +.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal { + color: #bdcadb; +} +.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal a { + color: #3eb1d0; +} +.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal h1, +.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal h2, +.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal h3, +.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal h4, +.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal h5, +.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal h6 { + color: #fffffa; +} +.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal h1, +.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal h2 { + border-color: #373b4e; +} +.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal h6 { + color: #373b4e; +} +.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal hr { + background-color: #373b4e; +} +.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal blockquote { + border-color: #373b4e; +} +.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal pre, +.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal code { + color: #9dbed8; + background: #2d3143; + border-color: #2d3143; +} +.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal .highlight { + background-color: #282a39; +} +.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal table th, +.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal table td { + border-color: #3b3f54; +} +.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal table tr { + color: #b6c2d2; + background-color: #2d3143; + border-color: #3b3f54; +} +.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal table tr:nth-child(2n) { + background-color: #35394b; +} +.book.color-theme-1 .book-header { + color: #afa790; + background: transparent; +} +.book.color-theme-1 .book-header .btn { + color: #afa790; +} +.book.color-theme-1 .book-header .btn:hover { + color: #73553c; + background: none; +} +.book.color-theme-1 .book-header h1 { + color: #704214; +} +.book.color-theme-2 .book-header { + color: #7e888b; + background: transparent; +} +.book.color-theme-2 .book-header .btn { + color: #3b3f54; +} +.book.color-theme-2 .book-header .btn:hover { + color: #fffff5; + background: none; +} +.book.color-theme-2 .book-header h1 { + color: #bdcadb; +} +.book.color-theme-1 .book-body .navigation { + color: #afa790; +} +.book.color-theme-1 .book-body .navigation:hover { + color: #73553c; +} +.book.color-theme-2 .book-body .navigation { + color: #383f52; +} +.book.color-theme-2 .book-body .navigation:hover { + color: #fffff5; +} +/* + * Theme 1 + */ +.book.color-theme-1 .book-summary { + color: #afa790; + background: #111111; + border-right: 1px solid rgba(0, 0, 0, 0.07); +} +.book.color-theme-1 .book-summary .book-search { + background: transparent; +} +.book.color-theme-1 .book-summary .book-search input, +.book.color-theme-1 .book-summary .book-search input:focus { + border: 1px solid transparent; +} +.book.color-theme-1 .book-summary ul.summary li.divider { + background: #7e888b; + box-shadow: none; +} +.book.color-theme-1 .book-summary ul.summary li i.fa-check { + color: #33cc33; +} +.book.color-theme-1 .book-summary ul.summary li.done > a { + color: #877f6a; +} +.book.color-theme-1 .book-summary ul.summary li a, +.book.color-theme-1 .book-summary ul.summary li span { + color: #877f6a; + background: transparent; + font-weight: normal; +} +.book.color-theme-1 .book-summary ul.summary li.active > a, +.book.color-theme-1 .book-summary ul.summary li a:hover { + color: #704214; + background: transparent; + font-weight: normal; +} +/* + * Theme 2 + */ +.book.color-theme-2 .book-summary { + color: #bcc1d2; + background: #2d3143; + border-right: none; +} +.book.color-theme-2 .book-summary .book-search { + background: transparent; +} +.book.color-theme-2 .book-summary .book-search input, +.book.color-theme-2 .book-summary .book-search input:focus { + border: 1px solid transparent; +} +.book.color-theme-2 .book-summary ul.summary li.divider { + background: #272a3a; + box-shadow: none; +} +.book.color-theme-2 .book-summary ul.summary li i.fa-check { + color: #33cc33; +} +.book.color-theme-2 .book-summary ul.summary li.done > a { + color: #62687f; +} +.book.color-theme-2 .book-summary ul.summary li a, +.book.color-theme-2 .book-summary ul.summary li span { + color: #c1c6d7; + background: transparent; + font-weight: 600; +} +.book.color-theme-2 .book-summary ul.summary li.active > a, +.book.color-theme-2 .book-summary ul.summary li a:hover { + color: #f4f4f5; + background: #252737; + font-weight: 600; +} diff --git a/docs/_book/gitbook/gitbook-plugin-highlight/ebook.css b/docs/_book/gitbook/gitbook-plugin-highlight/ebook.css new file mode 100644 index 000000000..cecaaab5a --- /dev/null +++ b/docs/_book/gitbook/gitbook-plugin-highlight/ebook.css @@ -0,0 +1,135 @@ +pre, +code { + /* http://jmblog.github.io/color-themes-for-highlightjs */ + /* Tomorrow Comment */ + /* Tomorrow Red */ + /* Tomorrow Orange */ + /* Tomorrow Yellow */ + /* Tomorrow Green */ + /* Tomorrow Aqua */ + /* Tomorrow Blue */ + /* Tomorrow Purple */ +} +pre .hljs-comment, +code .hljs-comment, +pre .hljs-title, +code .hljs-title { + color: #8e908c; +} +pre .hljs-variable, +code .hljs-variable, +pre .hljs-attribute, +code .hljs-attribute, +pre .hljs-tag, +code .hljs-tag, +pre .hljs-regexp, +code .hljs-regexp, +pre .hljs-deletion, +code .hljs-deletion, +pre .ruby .hljs-constant, +code .ruby .hljs-constant, +pre .xml .hljs-tag .hljs-title, +code .xml .hljs-tag .hljs-title, +pre .xml .hljs-pi, +code .xml .hljs-pi, +pre .xml .hljs-doctype, +code .xml .hljs-doctype, +pre .html .hljs-doctype, +code .html .hljs-doctype, +pre .css .hljs-id, +code .css .hljs-id, +pre .css .hljs-class, +code .css .hljs-class, +pre .css .hljs-pseudo, +code .css .hljs-pseudo { + color: #c82829; +} +pre .hljs-number, +code .hljs-number, +pre .hljs-preprocessor, +code .hljs-preprocessor, +pre .hljs-pragma, +code .hljs-pragma, +pre .hljs-built_in, +code .hljs-built_in, +pre .hljs-literal, +code .hljs-literal, +pre .hljs-params, +code .hljs-params, +pre .hljs-constant, +code .hljs-constant { + color: #f5871f; +} +pre .ruby .hljs-class .hljs-title, +code .ruby .hljs-class .hljs-title, +pre .css .hljs-rules .hljs-attribute, +code .css .hljs-rules .hljs-attribute { + color: #eab700; +} +pre .hljs-string, +code .hljs-string, +pre .hljs-value, +code .hljs-value, +pre .hljs-inheritance, +code .hljs-inheritance, +pre .hljs-header, +code .hljs-header, +pre .hljs-addition, +code .hljs-addition, +pre .ruby .hljs-symbol, +code .ruby .hljs-symbol, +pre .xml .hljs-cdata, +code .xml .hljs-cdata { + color: #718c00; +} +pre .css .hljs-hexcolor, +code .css .hljs-hexcolor { + color: #3e999f; +} +pre .hljs-function, +code .hljs-function, +pre .python .hljs-decorator, +code .python .hljs-decorator, +pre .python .hljs-title, +code .python .hljs-title, +pre .ruby .hljs-function .hljs-title, +code .ruby .hljs-function .hljs-title, +pre .ruby .hljs-title .hljs-keyword, +code .ruby .hljs-title .hljs-keyword, +pre .perl .hljs-sub, +code .perl .hljs-sub, +pre .javascript .hljs-title, +code .javascript .hljs-title, +pre .coffeescript .hljs-title, +code .coffeescript .hljs-title { + color: #4271ae; +} +pre .hljs-keyword, +code .hljs-keyword, +pre .javascript .hljs-function, +code .javascript .hljs-function { + color: #8959a8; +} +pre .hljs, +code .hljs { + display: block; + background: white; + color: #4d4d4c; + padding: 0.5em; +} +pre .coffeescript .javascript, +code .coffeescript .javascript, +pre .javascript .xml, +code .javascript .xml, +pre .tex .hljs-formula, +code .tex .hljs-formula, +pre .xml .javascript, +code .xml .javascript, +pre .xml .vbscript, +code .xml .vbscript, +pre .xml .css, +code .xml .css, +pre .xml .hljs-cdata, +code .xml .hljs-cdata { + opacity: 0.5; +} diff --git a/docs/_book/gitbook/gitbook-plugin-highlight/website.css b/docs/_book/gitbook/gitbook-plugin-highlight/website.css new file mode 100644 index 000000000..6674448f7 --- /dev/null +++ b/docs/_book/gitbook/gitbook-plugin-highlight/website.css @@ -0,0 +1,434 @@ +.book .book-body .page-wrapper .page-inner section.normal pre, +.book .book-body .page-wrapper .page-inner section.normal code { + /* http://jmblog.github.com/color-themes-for-google-code-highlightjs */ + /* Tomorrow Comment */ + /* Tomorrow Red */ + /* Tomorrow Orange */ + /* Tomorrow Yellow */ + /* Tomorrow Green */ + /* Tomorrow Aqua */ + /* Tomorrow Blue */ + /* Tomorrow Purple */ +} +.book .book-body .page-wrapper .page-inner section.normal pre .hljs-comment, +.book .book-body .page-wrapper .page-inner section.normal code .hljs-comment, +.book .book-body .page-wrapper .page-inner section.normal pre .hljs-title, +.book .book-body .page-wrapper .page-inner section.normal code .hljs-title { + color: #8e908c; +} +.book .book-body .page-wrapper .page-inner section.normal pre .hljs-variable, +.book .book-body .page-wrapper .page-inner section.normal code .hljs-variable, +.book .book-body .page-wrapper .page-inner section.normal pre .hljs-attribute, +.book .book-body .page-wrapper .page-inner section.normal code .hljs-attribute, +.book .book-body .page-wrapper .page-inner section.normal pre .hljs-tag, +.book .book-body .page-wrapper .page-inner section.normal code .hljs-tag, +.book .book-body .page-wrapper .page-inner section.normal pre .hljs-regexp, +.book .book-body .page-wrapper .page-inner section.normal code .hljs-regexp, +.book .book-body .page-wrapper .page-inner section.normal pre .hljs-deletion, +.book .book-body .page-wrapper .page-inner section.normal code .hljs-deletion, +.book .book-body .page-wrapper .page-inner section.normal pre .ruby .hljs-constant, +.book .book-body .page-wrapper .page-inner section.normal code .ruby .hljs-constant, +.book .book-body .page-wrapper .page-inner section.normal pre .xml .hljs-tag .hljs-title, +.book .book-body .page-wrapper .page-inner section.normal code .xml .hljs-tag .hljs-title, +.book .book-body .page-wrapper .page-inner section.normal pre .xml .hljs-pi, +.book .book-body .page-wrapper .page-inner section.normal code .xml .hljs-pi, +.book .book-body .page-wrapper .page-inner section.normal pre .xml .hljs-doctype, +.book .book-body .page-wrapper .page-inner section.normal code .xml .hljs-doctype, +.book .book-body .page-wrapper .page-inner section.normal pre .html .hljs-doctype, +.book .book-body .page-wrapper .page-inner section.normal code .html .hljs-doctype, +.book .book-body .page-wrapper .page-inner section.normal pre .css .hljs-id, +.book .book-body .page-wrapper .page-inner section.normal code .css .hljs-id, +.book .book-body .page-wrapper .page-inner section.normal pre .css .hljs-class, +.book .book-body .page-wrapper .page-inner section.normal code .css .hljs-class, +.book .book-body .page-wrapper .page-inner section.normal pre .css .hljs-pseudo, +.book .book-body .page-wrapper .page-inner section.normal code .css .hljs-pseudo { + color: #c82829; +} +.book .book-body .page-wrapper .page-inner section.normal pre .hljs-number, +.book .book-body .page-wrapper .page-inner section.normal code .hljs-number, +.book .book-body .page-wrapper .page-inner section.normal pre .hljs-preprocessor, +.book .book-body .page-wrapper .page-inner section.normal code .hljs-preprocessor, +.book .book-body .page-wrapper .page-inner section.normal pre .hljs-pragma, +.book .book-body .page-wrapper .page-inner section.normal code .hljs-pragma, +.book .book-body .page-wrapper .page-inner section.normal pre .hljs-built_in, +.book .book-body .page-wrapper .page-inner section.normal code .hljs-built_in, +.book .book-body .page-wrapper .page-inner section.normal pre .hljs-literal, +.book .book-body .page-wrapper .page-inner section.normal code .hljs-literal, +.book .book-body .page-wrapper .page-inner section.normal pre .hljs-params, +.book .book-body .page-wrapper .page-inner section.normal code .hljs-params, +.book .book-body .page-wrapper .page-inner section.normal pre .hljs-constant, +.book .book-body .page-wrapper .page-inner section.normal code .hljs-constant { + color: #f5871f; +} +.book .book-body .page-wrapper .page-inner section.normal pre .ruby .hljs-class .hljs-title, +.book .book-body .page-wrapper .page-inner section.normal code .ruby .hljs-class .hljs-title, +.book .book-body .page-wrapper .page-inner section.normal pre .css .hljs-rules .hljs-attribute, +.book .book-body .page-wrapper .page-inner section.normal code .css .hljs-rules .hljs-attribute { + color: #eab700; +} +.book .book-body .page-wrapper .page-inner section.normal pre .hljs-string, +.book .book-body .page-wrapper .page-inner section.normal code .hljs-string, +.book .book-body .page-wrapper .page-inner section.normal pre .hljs-value, +.book .book-body .page-wrapper .page-inner section.normal code .hljs-value, +.book .book-body .page-wrapper .page-inner section.normal pre .hljs-inheritance, +.book .book-body .page-wrapper .page-inner section.normal code .hljs-inheritance, +.book .book-body .page-wrapper .page-inner section.normal pre .hljs-header, +.book .book-body .page-wrapper .page-inner section.normal code .hljs-header, +.book .book-body .page-wrapper .page-inner section.normal pre .hljs-addition, +.book .book-body .page-wrapper .page-inner section.normal code .hljs-addition, +.book .book-body .page-wrapper .page-inner section.normal pre .ruby .hljs-symbol, +.book .book-body .page-wrapper .page-inner section.normal code .ruby .hljs-symbol, +.book .book-body .page-wrapper .page-inner section.normal pre .xml .hljs-cdata, +.book .book-body .page-wrapper .page-inner section.normal code .xml .hljs-cdata { + color: #718c00; +} +.book .book-body .page-wrapper .page-inner section.normal pre .css .hljs-hexcolor, +.book .book-body .page-wrapper .page-inner section.normal code .css .hljs-hexcolor { + color: #3e999f; +} +.book .book-body .page-wrapper .page-inner section.normal pre .hljs-function, +.book .book-body .page-wrapper .page-inner section.normal code .hljs-function, +.book .book-body .page-wrapper .page-inner section.normal pre .python .hljs-decorator, +.book .book-body .page-wrapper .page-inner section.normal code .python .hljs-decorator, +.book .book-body .page-wrapper .page-inner section.normal pre .python .hljs-title, +.book .book-body .page-wrapper .page-inner section.normal code .python .hljs-title, +.book .book-body .page-wrapper .page-inner section.normal pre .ruby .hljs-function .hljs-title, +.book .book-body .page-wrapper .page-inner section.normal code .ruby .hljs-function .hljs-title, +.book .book-body .page-wrapper .page-inner section.normal pre .ruby .hljs-title .hljs-keyword, +.book .book-body .page-wrapper .page-inner section.normal code .ruby .hljs-title .hljs-keyword, +.book .book-body .page-wrapper .page-inner section.normal pre .perl .hljs-sub, +.book .book-body .page-wrapper .page-inner section.normal code .perl .hljs-sub, +.book .book-body .page-wrapper .page-inner section.normal pre .javascript .hljs-title, +.book .book-body .page-wrapper .page-inner section.normal code .javascript .hljs-title, +.book .book-body .page-wrapper .page-inner section.normal pre .coffeescript .hljs-title, +.book .book-body .page-wrapper .page-inner section.normal code .coffeescript .hljs-title { + color: #4271ae; +} +.book .book-body .page-wrapper .page-inner section.normal pre .hljs-keyword, +.book .book-body .page-wrapper .page-inner section.normal code .hljs-keyword, +.book .book-body .page-wrapper .page-inner section.normal pre .javascript .hljs-function, +.book .book-body .page-wrapper .page-inner section.normal code .javascript .hljs-function { + color: #8959a8; +} +.book .book-body .page-wrapper .page-inner section.normal pre .hljs, +.book .book-body .page-wrapper .page-inner section.normal code .hljs { + display: block; + background: white; + color: #4d4d4c; + padding: 0.5em; +} +.book .book-body .page-wrapper .page-inner section.normal pre .coffeescript .javascript, +.book .book-body .page-wrapper .page-inner section.normal code .coffeescript .javascript, +.book .book-body .page-wrapper .page-inner section.normal pre .javascript .xml, +.book .book-body .page-wrapper .page-inner section.normal code .javascript .xml, +.book .book-body .page-wrapper .page-inner section.normal pre .tex .hljs-formula, +.book .book-body .page-wrapper .page-inner section.normal code .tex .hljs-formula, +.book .book-body .page-wrapper .page-inner section.normal pre .xml .javascript, +.book .book-body .page-wrapper .page-inner section.normal code .xml .javascript, +.book .book-body .page-wrapper .page-inner section.normal pre .xml .vbscript, +.book .book-body .page-wrapper .page-inner section.normal code .xml .vbscript, +.book .book-body .page-wrapper .page-inner section.normal pre .xml .css, +.book .book-body .page-wrapper .page-inner section.normal code .xml .css, +.book .book-body .page-wrapper .page-inner section.normal pre .xml .hljs-cdata, +.book .book-body .page-wrapper .page-inner section.normal code .xml .hljs-cdata { + opacity: 0.5; +} +.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal pre, +.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal code { + /* + +Orginal Style from ethanschoonover.com/solarized (c) Jeremy Hull + +*/ + /* Solarized Green */ + /* Solarized Cyan */ + /* Solarized Blue */ + /* Solarized Yellow */ + /* Solarized Orange */ + /* Solarized Red */ + /* Solarized Violet */ +} +.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal pre .hljs, +.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal code .hljs { + display: block; + padding: 0.5em; + background: #fdf6e3; + color: #657b83; +} +.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal pre .hljs-comment, +.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal code .hljs-comment, +.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal pre .hljs-template_comment, +.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal code .hljs-template_comment, +.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal pre .diff .hljs-header, +.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal code .diff .hljs-header, +.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal pre .hljs-doctype, +.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal code .hljs-doctype, +.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal pre .hljs-pi, +.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal code .hljs-pi, +.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal pre .lisp .hljs-string, +.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal code .lisp .hljs-string, +.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal pre .hljs-javadoc, +.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal code .hljs-javadoc { + color: #93a1a1; +} +.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal pre .hljs-keyword, +.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal code .hljs-keyword, +.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal pre .hljs-winutils, +.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal code .hljs-winutils, +.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal pre .method, +.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal code .method, +.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal pre .hljs-addition, +.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal code .hljs-addition, +.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal pre .css .hljs-tag, +.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal code .css .hljs-tag, +.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal pre .hljs-request, +.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal code .hljs-request, +.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal pre .hljs-status, +.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal code .hljs-status, +.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal pre .nginx .hljs-title, +.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal code .nginx .hljs-title { + color: #859900; +} +.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal pre .hljs-number, +.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal code .hljs-number, +.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal pre .hljs-command, +.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal code .hljs-command, +.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal pre .hljs-string, +.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal code .hljs-string, +.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal pre .hljs-tag .hljs-value, +.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal code .hljs-tag .hljs-value, +.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal pre .hljs-rules .hljs-value, +.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal code .hljs-rules .hljs-value, +.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal pre .hljs-phpdoc, +.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal code .hljs-phpdoc, +.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal pre .tex .hljs-formula, +.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal code .tex .hljs-formula, +.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal pre .hljs-regexp, +.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal code .hljs-regexp, +.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal pre .hljs-hexcolor, +.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal code .hljs-hexcolor, +.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal pre .hljs-link_url, +.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal code .hljs-link_url { + color: #2aa198; +} +.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal pre .hljs-title, +.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal code .hljs-title, +.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal pre .hljs-localvars, +.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal code .hljs-localvars, +.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal pre .hljs-chunk, +.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal code .hljs-chunk, +.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal pre .hljs-decorator, +.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal code .hljs-decorator, +.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal pre .hljs-built_in, +.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal code .hljs-built_in, +.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal pre .hljs-identifier, +.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal code .hljs-identifier, +.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal pre .vhdl .hljs-literal, +.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal code .vhdl .hljs-literal, +.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal pre .hljs-id, +.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal code .hljs-id, +.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal pre .css .hljs-function, +.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal code .css .hljs-function { + color: #268bd2; +} +.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal pre .hljs-attribute, +.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal code .hljs-attribute, +.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal pre .hljs-variable, +.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal code .hljs-variable, +.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal pre .lisp .hljs-body, +.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal code .lisp .hljs-body, +.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal pre .smalltalk .hljs-number, +.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal code .smalltalk .hljs-number, +.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal pre .hljs-constant, +.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal code .hljs-constant, +.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal pre .hljs-class .hljs-title, +.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal code .hljs-class .hljs-title, +.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal pre .hljs-parent, +.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal code .hljs-parent, +.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal pre .haskell .hljs-type, +.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal code .haskell .hljs-type, +.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal pre .hljs-link_reference, +.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal code .hljs-link_reference { + color: #b58900; +} +.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal pre .hljs-preprocessor, +.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal code .hljs-preprocessor, +.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal pre .hljs-preprocessor .hljs-keyword, +.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal code .hljs-preprocessor .hljs-keyword, +.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal pre .hljs-pragma, +.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal code .hljs-pragma, +.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal pre .hljs-shebang, +.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal code .hljs-shebang, +.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal pre .hljs-symbol, +.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal code .hljs-symbol, +.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal pre .hljs-symbol .hljs-string, +.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal code .hljs-symbol .hljs-string, +.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal pre .diff .hljs-change, +.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal code .diff .hljs-change, +.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal pre .hljs-special, +.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal code .hljs-special, +.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal pre .hljs-attr_selector, +.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal code .hljs-attr_selector, +.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal pre .hljs-subst, +.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal code .hljs-subst, +.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal pre .hljs-cdata, +.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal code .hljs-cdata, +.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal pre .clojure .hljs-title, +.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal code .clojure .hljs-title, +.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal pre .css .hljs-pseudo, +.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal code .css .hljs-pseudo, +.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal pre .hljs-header, +.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal code .hljs-header { + color: #cb4b16; +} +.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal pre .hljs-deletion, +.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal code .hljs-deletion, +.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal pre .hljs-important, +.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal code .hljs-important { + color: #dc322f; +} +.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal pre .hljs-link_label, +.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal code .hljs-link_label { + color: #6c71c4; +} +.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal pre .tex .hljs-formula, +.book.color-theme-1 .book-body .page-wrapper .page-inner section.normal code .tex .hljs-formula { + background: #eee8d5; +} +.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal pre, +.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal code { + /* Tomorrow Night Bright Theme */ + /* Original theme - https://github.com/chriskempson/tomorrow-theme */ + /* http://jmblog.github.com/color-themes-for-google-code-highlightjs */ + /* Tomorrow Comment */ + /* Tomorrow Red */ + /* Tomorrow Orange */ + /* Tomorrow Yellow */ + /* Tomorrow Green */ + /* Tomorrow Aqua */ + /* Tomorrow Blue */ + /* Tomorrow Purple */ +} +.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal pre .hljs-comment, +.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal code .hljs-comment, +.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal pre .hljs-title, +.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal code .hljs-title { + color: #969896; +} +.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal pre .hljs-variable, +.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal code .hljs-variable, +.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal pre .hljs-attribute, +.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal code .hljs-attribute, +.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal pre .hljs-tag, +.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal code .hljs-tag, +.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal pre .hljs-regexp, +.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal code .hljs-regexp, +.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal pre .hljs-deletion, +.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal code .hljs-deletion, +.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal pre .ruby .hljs-constant, +.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal code .ruby .hljs-constant, +.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal pre .xml .hljs-tag .hljs-title, +.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal code .xml .hljs-tag .hljs-title, +.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal pre .xml .hljs-pi, +.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal code .xml .hljs-pi, +.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal pre .xml .hljs-doctype, +.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal code .xml .hljs-doctype, +.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal pre .html .hljs-doctype, +.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal code .html .hljs-doctype, +.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal pre .css .hljs-id, +.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal code .css .hljs-id, +.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal pre .css .hljs-class, +.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal code .css .hljs-class, +.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal pre .css .hljs-pseudo, +.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal code .css .hljs-pseudo { + color: #d54e53; +} +.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal pre .hljs-number, +.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal code .hljs-number, +.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal pre .hljs-preprocessor, +.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal code .hljs-preprocessor, +.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal pre .hljs-pragma, +.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal code .hljs-pragma, +.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal pre .hljs-built_in, +.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal code .hljs-built_in, +.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal pre .hljs-literal, +.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal code .hljs-literal, +.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal pre .hljs-params, +.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal code .hljs-params, +.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal pre .hljs-constant, +.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal code .hljs-constant { + color: #e78c45; +} +.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal pre .ruby .hljs-class .hljs-title, +.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal code .ruby .hljs-class .hljs-title, +.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal pre .css .hljs-rules .hljs-attribute, +.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal code .css .hljs-rules .hljs-attribute { + color: #e7c547; +} +.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal pre .hljs-string, +.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal code .hljs-string, +.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal pre .hljs-value, +.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal code .hljs-value, +.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal pre .hljs-inheritance, +.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal code .hljs-inheritance, +.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal pre .hljs-header, +.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal code .hljs-header, +.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal pre .hljs-addition, +.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal code .hljs-addition, +.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal pre .ruby .hljs-symbol, +.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal code .ruby .hljs-symbol, +.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal pre .xml .hljs-cdata, +.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal code .xml .hljs-cdata { + color: #b9ca4a; +} +.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal pre .css .hljs-hexcolor, +.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal code .css .hljs-hexcolor { + color: #70c0b1; +} +.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal pre .hljs-function, +.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal code .hljs-function, +.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal pre .python .hljs-decorator, +.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal code .python .hljs-decorator, +.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal pre .python .hljs-title, +.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal code .python .hljs-title, +.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal pre .ruby .hljs-function .hljs-title, +.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal code .ruby .hljs-function .hljs-title, +.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal pre .ruby .hljs-title .hljs-keyword, +.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal code .ruby .hljs-title .hljs-keyword, +.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal pre .perl .hljs-sub, +.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal code .perl .hljs-sub, +.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal pre .javascript .hljs-title, +.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal code .javascript .hljs-title, +.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal pre .coffeescript .hljs-title, +.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal code .coffeescript .hljs-title { + color: #7aa6da; +} +.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal pre .hljs-keyword, +.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal code .hljs-keyword, +.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal pre .javascript .hljs-function, +.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal code .javascript .hljs-function { + color: #c397d8; +} +.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal pre .hljs, +.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal code .hljs { + display: block; + background: black; + color: #eaeaea; + padding: 0.5em; +} +.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal pre .coffeescript .javascript, +.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal code .coffeescript .javascript, +.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal pre .javascript .xml, +.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal code .javascript .xml, +.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal pre .tex .hljs-formula, +.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal code .tex .hljs-formula, +.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal pre .xml .javascript, +.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal code .xml .javascript, +.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal pre .xml .vbscript, +.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal code .xml .vbscript, +.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal pre .xml .css, +.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal code .xml .css, +.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal pre .xml .hljs-cdata, +.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal code .xml .hljs-cdata { + opacity: 0.5; +} diff --git a/docs/_book/gitbook/gitbook-plugin-jsfiddle/plugin.js b/docs/_book/gitbook/gitbook-plugin-jsfiddle/plugin.js new file mode 100644 index 000000000..c8bce1c8e --- /dev/null +++ b/docs/_book/gitbook/gitbook-plugin-jsfiddle/plugin.js @@ -0,0 +1,102 @@ +require(["gitbook", "jquery"], function (gitbook, $) { + var matcher = /\/\/jsfiddle.net\/.+/; + var defaults = { + type: 'script', + tabs: ['js', 'html', 'css', 'result'], + theme: 'light' + }; + var localConfig = { + jsfiddle: {} + }; + var extractConfigFromURL = function (href) { + var match = /(#)(.+)$/ig.exec(href); + if (match && match[2]) { + return match[2].split('&').reduce(function (params, param) { + var splitParam = param.split('='); + if (splitParam[0] === 'tabs') { + splitParam[1] = splitParam[1].split(','); + } + params[splitParam[0]] = splitParam[1]; + return params; + }, {}); + } + return {}; + }; + var generateAdditionalParams = function (config) { + var params = '/'; + if (config.theme) { + params += config.theme + '/'; + } + var colors = Object.keys(config).reduce(function (colors, key) { + if (['href', 'type', 'theme', 'tabs', 'width', 'height'].indexOf(key) !== -1) { + return colors; + } + colors += key + '=' + config[key] + '&'; + return colors; + }, ''); + + colors = colors.replace(/&$/, ''); + if (colors) { + return params + '?' + colors; + } + return params; + }; + + var generateUrl = function (config) { + var additionalParam = generateAdditionalParams(config); + var type = config.type == 'frame' ? 'embedded' : 'embed'; + return config.href + type + '/' + config.tabs.join(',') + additionalParam; + }; + + var creator = { + script: function (config) { + var script = document.createElement('script'); + script.src = generateUrl(config); + script.async = true; + return script; + }, + frame: function (config) { + return $([ + '', + '' + ].join(''))[0]; + } + }; + + var createEmbedNode = function (href, config) { + var normalURL = href.replace(/#.+$/, ''); + var configFromUrl = extractConfigFromURL(href); + var mergedConfig = $.extend({href: normalURL}, config, configFromUrl); + return creator[mergedConfig.type](mergedConfig); + }; + + function embedAllLink(config) { + localConfig.jsfiddle = $.extend(localConfig.jsfiddle || {}, config.jsfiddle); + $(".book-body a").each(function (index, link) { + if (link.href && matcher.test(link.href)) { + link.parentNode.insertBefore(createEmbedNode(link.href, localConfig.jsfiddle), link.nextSibling); + link.parentNode.removeChild(link); + } + }); + } + + gitbook.events.bind("start", function (e, config) { + localConfig.jsfiddle = $.extend({}, defaults); + matcher = /(http|https):\/\/jsfiddle.net\/.+/; + embedAllLink(config); + }); + + gitbook.events.bind("page.change", function () { + if (matcher) { + embedAllLink(localConfig); + } + }); + +}); \ No newline at end of file diff --git a/docs/_book/gitbook/gitbook-plugin-lunr/lunr.min.js b/docs/_book/gitbook/gitbook-plugin-lunr/lunr.min.js new file mode 100644 index 000000000..6aa6bc7d6 --- /dev/null +++ b/docs/_book/gitbook/gitbook-plugin-lunr/lunr.min.js @@ -0,0 +1,7 @@ +/** + * lunr - http://lunrjs.com - A bit like Solr, but much smaller and not as bright - 0.5.12 + * Copyright (C) 2015 Oliver Nightingale + * MIT Licensed + * @license + */ +!function(){var t=function(e){var n=new t.Index;return n.pipeline.add(t.trimmer,t.stopWordFilter,t.stemmer),e&&e.call(n,n),n};t.version="0.5.12",t.utils={},t.utils.warn=function(t){return function(e){t.console&&console.warn&&console.warn(e)}}(this),t.EventEmitter=function(){this.events={}},t.EventEmitter.prototype.addListener=function(){var t=Array.prototype.slice.call(arguments),e=t.pop(),n=t;if("function"!=typeof e)throw new TypeError("last argument must be a function");n.forEach(function(t){this.hasHandler(t)||(this.events[t]=[]),this.events[t].push(e)},this)},t.EventEmitter.prototype.removeListener=function(t,e){if(this.hasHandler(t)){var n=this.events[t].indexOf(e);this.events[t].splice(n,1),this.events[t].length||delete this.events[t]}},t.EventEmitter.prototype.emit=function(t){if(this.hasHandler(t)){var e=Array.prototype.slice.call(arguments,1);this.events[t].forEach(function(t){t.apply(void 0,e)})}},t.EventEmitter.prototype.hasHandler=function(t){return t in this.events},t.tokenizer=function(t){return arguments.length&&null!=t&&void 0!=t?Array.isArray(t)?t.map(function(t){return t.toLowerCase()}):t.toString().trim().toLowerCase().split(/[\s\-]+/):[]},t.Pipeline=function(){this._stack=[]},t.Pipeline.registeredFunctions={},t.Pipeline.registerFunction=function(e,n){n in this.registeredFunctions&&t.utils.warn("Overwriting existing registered function: "+n),e.label=n,t.Pipeline.registeredFunctions[e.label]=e},t.Pipeline.warnIfFunctionNotRegistered=function(e){var n=e.label&&e.label in this.registeredFunctions;n||t.utils.warn("Function is not registered with pipeline. This may cause problems when serialising the index.\n",e)},t.Pipeline.load=function(e){var n=new t.Pipeline;return e.forEach(function(e){var i=t.Pipeline.registeredFunctions[e];if(!i)throw new Error("Cannot load un-registered function: "+e);n.add(i)}),n},t.Pipeline.prototype.add=function(){var e=Array.prototype.slice.call(arguments);e.forEach(function(e){t.Pipeline.warnIfFunctionNotRegistered(e),this._stack.push(e)},this)},t.Pipeline.prototype.after=function(e,n){t.Pipeline.warnIfFunctionNotRegistered(n);var i=this._stack.indexOf(e);if(-1==i)throw new Error("Cannot find existingFn");i+=1,this._stack.splice(i,0,n)},t.Pipeline.prototype.before=function(e,n){t.Pipeline.warnIfFunctionNotRegistered(n);var i=this._stack.indexOf(e);if(-1==i)throw new Error("Cannot find existingFn");this._stack.splice(i,0,n)},t.Pipeline.prototype.remove=function(t){var e=this._stack.indexOf(t);-1!=e&&this._stack.splice(e,1)},t.Pipeline.prototype.run=function(t){for(var e=[],n=t.length,i=this._stack.length,o=0;n>o;o++){for(var r=t[o],s=0;i>s&&(r=this._stack[s](r,o,t),void 0!==r);s++);void 0!==r&&e.push(r)}return e},t.Pipeline.prototype.reset=function(){this._stack=[]},t.Pipeline.prototype.toJSON=function(){return this._stack.map(function(e){return t.Pipeline.warnIfFunctionNotRegistered(e),e.label})},t.Vector=function(){this._magnitude=null,this.list=void 0,this.length=0},t.Vector.Node=function(t,e,n){this.idx=t,this.val=e,this.next=n},t.Vector.prototype.insert=function(e,n){this._magnitude=void 0;var i=this.list;if(!i)return this.list=new t.Vector.Node(e,n,i),this.length++;if(en.idx?n=n.next:(i+=e.val*n.val,e=e.next,n=n.next);return i},t.Vector.prototype.similarity=function(t){return this.dot(t)/(this.magnitude()*t.magnitude())},t.SortedSet=function(){this.length=0,this.elements=[]},t.SortedSet.load=function(t){var e=new this;return e.elements=t,e.length=t.length,e},t.SortedSet.prototype.add=function(){var t,e;for(t=0;t1;){if(r===t)return o;t>r&&(e=o),r>t&&(n=o),i=n-e,o=e+Math.floor(i/2),r=this.elements[o]}return r===t?o:-1},t.SortedSet.prototype.locationFor=function(t){for(var e=0,n=this.elements.length,i=n-e,o=e+Math.floor(i/2),r=this.elements[o];i>1;)t>r&&(e=o),r>t&&(n=o),i=n-e,o=e+Math.floor(i/2),r=this.elements[o];return r>t?o:t>r?o+1:void 0},t.SortedSet.prototype.intersect=function(e){for(var n=new t.SortedSet,i=0,o=0,r=this.length,s=e.length,a=this.elements,h=e.elements;;){if(i>r-1||o>s-1)break;a[i]!==h[o]?a[i]h[o]&&o++:(n.add(a[i]),i++,o++)}return n},t.SortedSet.prototype.clone=function(){var e=new t.SortedSet;return e.elements=this.toArray(),e.length=e.elements.length,e},t.SortedSet.prototype.union=function(t){var e,n,i;return this.length>=t.length?(e=this,n=t):(e=t,n=this),i=e.clone(),i.add.apply(i,n.toArray()),i},t.SortedSet.prototype.toJSON=function(){return this.toArray()},t.Index=function(){this._fields=[],this._ref="id",this.pipeline=new t.Pipeline,this.documentStore=new t.Store,this.tokenStore=new t.TokenStore,this.corpusTokens=new t.SortedSet,this.eventEmitter=new t.EventEmitter,this._idfCache={},this.on("add","remove","update",function(){this._idfCache={}}.bind(this))},t.Index.prototype.on=function(){var t=Array.prototype.slice.call(arguments);return this.eventEmitter.addListener.apply(this.eventEmitter,t)},t.Index.prototype.off=function(t,e){return this.eventEmitter.removeListener(t,e)},t.Index.load=function(e){e.version!==t.version&&t.utils.warn("version mismatch: current "+t.version+" importing "+e.version);var n=new this;return n._fields=e.fields,n._ref=e.ref,n.documentStore=t.Store.load(e.documentStore),n.tokenStore=t.TokenStore.load(e.tokenStore),n.corpusTokens=t.SortedSet.load(e.corpusTokens),n.pipeline=t.Pipeline.load(e.pipeline),n},t.Index.prototype.field=function(t,e){var e=e||{},n={name:t,boost:e.boost||1};return this._fields.push(n),this},t.Index.prototype.ref=function(t){return this._ref=t,this},t.Index.prototype.add=function(e,n){var i={},o=new t.SortedSet,r=e[this._ref],n=void 0===n?!0:n;this._fields.forEach(function(n){var r=this.pipeline.run(t.tokenizer(e[n.name]));i[n.name]=r,t.SortedSet.prototype.add.apply(o,r)},this),this.documentStore.set(r,o),t.SortedSet.prototype.add.apply(this.corpusTokens,o.toArray());for(var s=0;s0&&(i=1+Math.log(this.documentStore.length/n)),this._idfCache[e]=i},t.Index.prototype.search=function(e){var n=this.pipeline.run(t.tokenizer(e)),i=new t.Vector,o=[],r=this._fields.reduce(function(t,e){return t+e.boost},0),s=n.some(function(t){return this.tokenStore.has(t)},this);if(!s)return[];n.forEach(function(e,n,s){var a=1/s.length*this._fields.length*r,h=this,l=this.tokenStore.expand(e).reduce(function(n,o){var r=h.corpusTokens.indexOf(o),s=h.idf(o),l=1,u=new t.SortedSet;if(o!==e){var c=Math.max(3,o.length-e.length);l=1/Math.log(c)}return r>-1&&i.insert(r,a*s*l),Object.keys(h.tokenStore.get(o)).forEach(function(t){u.add(t)}),n.union(u)},new t.SortedSet);o.push(l)},this);var a=o.reduce(function(t,e){return t.intersect(e)});return a.map(function(t){return{ref:t,score:i.similarity(this.documentVector(t))}},this).sort(function(t,e){return e.score-t.score})},t.Index.prototype.documentVector=function(e){for(var n=this.documentStore.get(e),i=n.length,o=new t.Vector,r=0;i>r;r++){var s=n.elements[r],a=this.tokenStore.get(s)[e].tf,h=this.idf(s);o.insert(this.corpusTokens.indexOf(s),a*h)}return o},t.Index.prototype.toJSON=function(){return{version:t.version,fields:this._fields,ref:this._ref,documentStore:this.documentStore.toJSON(),tokenStore:this.tokenStore.toJSON(),corpusTokens:this.corpusTokens.toJSON(),pipeline:this.pipeline.toJSON()}},t.Index.prototype.use=function(t){var e=Array.prototype.slice.call(arguments,1);e.unshift(this),t.apply(this,e)},t.Store=function(){this.store={},this.length=0},t.Store.load=function(e){var n=new this;return n.length=e.length,n.store=Object.keys(e.store).reduce(function(n,i){return n[i]=t.SortedSet.load(e.store[i]),n},{}),n},t.Store.prototype.set=function(t,e){this.has(t)||this.length++,this.store[t]=e},t.Store.prototype.get=function(t){return this.store[t]},t.Store.prototype.has=function(t){return t in this.store},t.Store.prototype.remove=function(t){this.has(t)&&(delete this.store[t],this.length--)},t.Store.prototype.toJSON=function(){return{store:this.store,length:this.length}},t.stemmer=function(){var t={ational:"ate",tional:"tion",enci:"ence",anci:"ance",izer:"ize",bli:"ble",alli:"al",entli:"ent",eli:"e",ousli:"ous",ization:"ize",ation:"ate",ator:"ate",alism:"al",iveness:"ive",fulness:"ful",ousness:"ous",aliti:"al",iviti:"ive",biliti:"ble",logi:"log"},e={icate:"ic",ative:"",alize:"al",iciti:"ic",ical:"ic",ful:"",ness:""},n="[^aeiou]",i="[aeiouy]",o=n+"[^aeiouy]*",r=i+"[aeiou]*",s="^("+o+")?"+r+o,a="^("+o+")?"+r+o+"("+r+")?$",h="^("+o+")?"+r+o+r+o,l="^("+o+")?"+i,u=new RegExp(s),c=new RegExp(h),f=new RegExp(a),d=new RegExp(l),p=/^(.+?)(ss|i)es$/,m=/^(.+?)([^s])s$/,v=/^(.+?)eed$/,y=/^(.+?)(ed|ing)$/,g=/.$/,S=/(at|bl|iz)$/,w=new RegExp("([^aeiouylsz])\\1$"),x=new RegExp("^"+o+i+"[^aeiouwxy]$"),k=/^(.+?[^aeiou])y$/,b=/^(.+?)(ational|tional|enci|anci|izer|bli|alli|entli|eli|ousli|ization|ation|ator|alism|iveness|fulness|ousness|aliti|iviti|biliti|logi)$/,E=/^(.+?)(icate|ative|alize|iciti|ical|ful|ness)$/,_=/^(.+?)(al|ance|ence|er|ic|able|ible|ant|ement|ment|ent|ou|ism|ate|iti|ous|ive|ize)$/,F=/^(.+?)(s|t)(ion)$/,O=/^(.+?)e$/,P=/ll$/,N=new RegExp("^"+o+i+"[^aeiouwxy]$"),T=function(n){var i,o,r,s,a,h,l;if(n.length<3)return n;if(r=n.substr(0,1),"y"==r&&(n=r.toUpperCase()+n.substr(1)),s=p,a=m,s.test(n)?n=n.replace(s,"$1$2"):a.test(n)&&(n=n.replace(a,"$1$2")),s=v,a=y,s.test(n)){var T=s.exec(n);s=u,s.test(T[1])&&(s=g,n=n.replace(s,""))}else if(a.test(n)){var T=a.exec(n);i=T[1],a=d,a.test(i)&&(n=i,a=S,h=w,l=x,a.test(n)?n+="e":h.test(n)?(s=g,n=n.replace(s,"")):l.test(n)&&(n+="e"))}if(s=k,s.test(n)){var T=s.exec(n);i=T[1],n=i+"i"}if(s=b,s.test(n)){var T=s.exec(n);i=T[1],o=T[2],s=u,s.test(i)&&(n=i+t[o])}if(s=E,s.test(n)){var T=s.exec(n);i=T[1],o=T[2],s=u,s.test(i)&&(n=i+e[o])}if(s=_,a=F,s.test(n)){var T=s.exec(n);i=T[1],s=c,s.test(i)&&(n=i)}else if(a.test(n)){var T=a.exec(n);i=T[1]+T[2],a=c,a.test(i)&&(n=i)}if(s=O,s.test(n)){var T=s.exec(n);i=T[1],s=c,a=f,h=N,(s.test(i)||a.test(i)&&!h.test(i))&&(n=i)}return s=P,a=c,s.test(n)&&a.test(n)&&(s=g,n=n.replace(s,"")),"y"==r&&(n=r.toLowerCase()+n.substr(1)),n};return T}(),t.Pipeline.registerFunction(t.stemmer,"stemmer"),t.stopWordFilter=function(e){return e&&t.stopWordFilter.stopWords[e]!==e?e:void 0},t.stopWordFilter.stopWords={a:"a",able:"able",about:"about",across:"across",after:"after",all:"all",almost:"almost",also:"also",am:"am",among:"among",an:"an",and:"and",any:"any",are:"are",as:"as",at:"at",be:"be",because:"because",been:"been",but:"but",by:"by",can:"can",cannot:"cannot",could:"could",dear:"dear",did:"did","do":"do",does:"does",either:"either","else":"else",ever:"ever",every:"every","for":"for",from:"from",get:"get",got:"got",had:"had",has:"has",have:"have",he:"he",her:"her",hers:"hers",him:"him",his:"his",how:"how",however:"however",i:"i","if":"if","in":"in",into:"into",is:"is",it:"it",its:"its",just:"just",least:"least",let:"let",like:"like",likely:"likely",may:"may",me:"me",might:"might",most:"most",must:"must",my:"my",neither:"neither",no:"no",nor:"nor",not:"not",of:"of",off:"off",often:"often",on:"on",only:"only",or:"or",other:"other",our:"our",own:"own",rather:"rather",said:"said",say:"say",says:"says",she:"she",should:"should",since:"since",so:"so",some:"some",than:"than",that:"that",the:"the",their:"their",them:"them",then:"then",there:"there",these:"these",they:"they","this":"this",tis:"tis",to:"to",too:"too",twas:"twas",us:"us",wants:"wants",was:"was",we:"we",were:"were",what:"what",when:"when",where:"where",which:"which","while":"while",who:"who",whom:"whom",why:"why",will:"will","with":"with",would:"would",yet:"yet",you:"you",your:"your"},t.Pipeline.registerFunction(t.stopWordFilter,"stopWordFilter"),t.trimmer=function(t){var e=t.replace(/^\W+/,"").replace(/\W+$/,"");return""===e?void 0:e},t.Pipeline.registerFunction(t.trimmer,"trimmer"),t.TokenStore=function(){this.root={docs:{}},this.length=0},t.TokenStore.load=function(t){var e=new this;return e.root=t.root,e.length=t.length,e},t.TokenStore.prototype.add=function(t,e,n){var n=n||this.root,i=t[0],o=t.slice(1);return i in n||(n[i]={docs:{}}),0===o.length?(n[i].docs[e.ref]=e,void(this.length+=1)):this.add(o,e,n[i])},t.TokenStore.prototype.has=function(t){if(!t)return!1;for(var e=this.root,n=0;no;o++){for(var r=t[o],s=0;i>s&&(r=this._stack[s](r,o,t),void 0!==r);s++);void 0!==r&&e.push(r)}return e},t.Pipeline.prototype.reset=function(){this._stack=[]},t.Pipeline.prototype.toJSON=function(){return this._stack.map(function(e){return t.Pipeline.warnIfFunctionNotRegistered(e),e.label})},t.Vector=function(){this._magnitude=null,this.list=void 0,this.length=0},t.Vector.Node=function(t,e,n){this.idx=t,this.val=e,this.next=n},t.Vector.prototype.insert=function(e,n){this._magnitude=void 0;var i=this.list;if(!i)return this.list=new t.Vector.Node(e,n,i),this.length++;if(en.idx?n=n.next:(i+=e.val*n.val,e=e.next,n=n.next);return i},t.Vector.prototype.similarity=function(t){return this.dot(t)/(this.magnitude()*t.magnitude())},t.SortedSet=function(){this.length=0,this.elements=[]},t.SortedSet.load=function(t){var e=new this;return e.elements=t,e.length=t.length,e},t.SortedSet.prototype.add=function(){var t,e;for(t=0;t1;){if(r===t)return o;t>r&&(e=o),r>t&&(n=o),i=n-e,o=e+Math.floor(i/2),r=this.elements[o]}return r===t?o:-1},t.SortedSet.prototype.locationFor=function(t){for(var e=0,n=this.elements.length,i=n-e,o=e+Math.floor(i/2),r=this.elements[o];i>1;)t>r&&(e=o),r>t&&(n=o),i=n-e,o=e+Math.floor(i/2),r=this.elements[o];return r>t?o:t>r?o+1:void 0},t.SortedSet.prototype.intersect=function(e){for(var n=new t.SortedSet,i=0,o=0,r=this.length,s=e.length,a=this.elements,h=e.elements;;){if(i>r-1||o>s-1)break;a[i]!==h[o]?a[i]h[o]&&o++:(n.add(a[i]),i++,o++)}return n},t.SortedSet.prototype.clone=function(){var e=new t.SortedSet;return e.elements=this.toArray(),e.length=e.elements.length,e},t.SortedSet.prototype.union=function(t){var e,n,i;return this.length>=t.length?(e=this,n=t):(e=t,n=this),i=e.clone(),i.add.apply(i,n.toArray()),i},t.SortedSet.prototype.toJSON=function(){return this.toArray()},t.Index=function(){this._fields=[],this._ref="id",this.pipeline=new t.Pipeline,this.documentStore=new t.Store,this.tokenStore=new t.TokenStore,this.corpusTokens=new t.SortedSet,this.eventEmitter=new t.EventEmitter,this._idfCache={},this.on("add","remove","update",function(){this._idfCache={}}.bind(this))},t.Index.prototype.on=function(){var t=Array.prototype.slice.call(arguments);return this.eventEmitter.addListener.apply(this.eventEmitter,t)},t.Index.prototype.off=function(t,e){return this.eventEmitter.removeListener(t,e)},t.Index.load=function(e){e.version!==t.version&&t.utils.warn("version mismatch: current "+t.version+" importing "+e.version);var n=new this;return n._fields=e.fields,n._ref=e.ref,n.documentStore=t.Store.load(e.documentStore),n.tokenStore=t.TokenStore.load(e.tokenStore),n.corpusTokens=t.SortedSet.load(e.corpusTokens),n.pipeline=t.Pipeline.load(e.pipeline),n},t.Index.prototype.field=function(t,e){var e=e||{},n={name:t,boost:e.boost||1};return this._fields.push(n),this},t.Index.prototype.ref=function(t){return this._ref=t,this},t.Index.prototype.add=function(e,n){var i={},o=new t.SortedSet,r=e[this._ref],n=void 0===n?!0:n;this._fields.forEach(function(n){var r=this.pipeline.run(t.tokenizer(e[n.name]));i[n.name]=r,t.SortedSet.prototype.add.apply(o,r)},this),this.documentStore.set(r,o),t.SortedSet.prototype.add.apply(this.corpusTokens,o.toArray());for(var s=0;s0&&(i=1+Math.log(this.documentStore.length/n)),this._idfCache[e]=i},t.Index.prototype.search=function(e){var n=this.pipeline.run(t.tokenizer(e)),i=new t.Vector,o=[],r=this._fields.reduce(function(t,e){return t+e.boost},0),s=n.some(function(t){return this.tokenStore.has(t)},this);if(!s)return[];n.forEach(function(e,n,s){var a=1/s.length*this._fields.length*r,h=this,l=this.tokenStore.expand(e).reduce(function(n,o){var r=h.corpusTokens.indexOf(o),s=h.idf(o),l=1,u=new t.SortedSet;if(o!==e){var c=Math.max(3,o.length-e.length);l=1/Math.log(c)}return r>-1&&i.insert(r,a*s*l),Object.keys(h.tokenStore.get(o)).forEach(function(t){u.add(t)}),n.union(u)},new t.SortedSet);o.push(l)},this);var a=o.reduce(function(t,e){return t.intersect(e)});return a.map(function(t){return{ref:t,score:i.similarity(this.documentVector(t))}},this).sort(function(t,e){return e.score-t.score})},t.Index.prototype.documentVector=function(e){for(var n=this.documentStore.get(e),i=n.length,o=new t.Vector,r=0;i>r;r++){var s=n.elements[r],a=this.tokenStore.get(s)[e].tf,h=this.idf(s);o.insert(this.corpusTokens.indexOf(s),a*h)}return o},t.Index.prototype.toJSON=function(){return{version:t.version,fields:this._fields,ref:this._ref,documentStore:this.documentStore.toJSON(),tokenStore:this.tokenStore.toJSON(),corpusTokens:this.corpusTokens.toJSON(),pipeline:this.pipeline.toJSON()}},t.Index.prototype.use=function(t){var e=Array.prototype.slice.call(arguments,1);e.unshift(this),t.apply(this,e)},t.Store=function(){this.store={},this.length=0},t.Store.load=function(e){var n=new this;return n.length=e.length,n.store=Object.keys(e.store).reduce(function(n,i){return n[i]=t.SortedSet.load(e.store[i]),n},{}),n},t.Store.prototype.set=function(t,e){this.has(t)||this.length++,this.store[t]=e},t.Store.prototype.get=function(t){return this.store[t]},t.Store.prototype.has=function(t){return t in this.store},t.Store.prototype.remove=function(t){this.has(t)&&(delete this.store[t],this.length--)},t.Store.prototype.toJSON=function(){return{store:this.store,length:this.length}},t.stemmer=function(){var t={ational:"ate",tional:"tion",enci:"ence",anci:"ance",izer:"ize",bli:"ble",alli:"al",entli:"ent",eli:"e",ousli:"ous",ization:"ize",ation:"ate",ator:"ate",alism:"al",iveness:"ive",fulness:"ful",ousness:"ous",aliti:"al",iviti:"ive",biliti:"ble",logi:"log"},e={icate:"ic",ative:"",alize:"al",iciti:"ic",ical:"ic",ful:"",ness:""},n="[^aeiou]",i="[aeiouy]",o=n+"[^aeiouy]*",r=i+"[aeiou]*",s="^("+o+")?"+r+o,a="^("+o+")?"+r+o+"("+r+")?$",h="^("+o+")?"+r+o+r+o,l="^("+o+")?"+i,u=new RegExp(s),c=new RegExp(h),f=new RegExp(a),d=new RegExp(l),p=/^(.+?)(ss|i)es$/,m=/^(.+?)([^s])s$/,v=/^(.+?)eed$/,y=/^(.+?)(ed|ing)$/,g=/.$/,S=/(at|bl|iz)$/,w=new RegExp("([^aeiouylsz])\\1$"),x=new RegExp("^"+o+i+"[^aeiouwxy]$"),k=/^(.+?[^aeiou])y$/,b=/^(.+?)(ational|tional|enci|anci|izer|bli|alli|entli|eli|ousli|ization|ation|ator|alism|iveness|fulness|ousness|aliti|iviti|biliti|logi)$/,E=/^(.+?)(icate|ative|alize|iciti|ical|ful|ness)$/,_=/^(.+?)(al|ance|ence|er|ic|able|ible|ant|ement|ment|ent|ou|ism|ate|iti|ous|ive|ize)$/,F=/^(.+?)(s|t)(ion)$/,O=/^(.+?)e$/,P=/ll$/,N=new RegExp("^"+o+i+"[^aeiouwxy]$"),T=function(n){var i,o,r,s,a,h,l;if(n.length<3)return n;if(r=n.substr(0,1),"y"==r&&(n=r.toUpperCase()+n.substr(1)),s=p,a=m,s.test(n)?n=n.replace(s,"$1$2"):a.test(n)&&(n=n.replace(a,"$1$2")),s=v,a=y,s.test(n)){var T=s.exec(n);s=u,s.test(T[1])&&(s=g,n=n.replace(s,""))}else if(a.test(n)){var T=a.exec(n);i=T[1],a=d,a.test(i)&&(n=i,a=S,h=w,l=x,a.test(n)?n+="e":h.test(n)?(s=g,n=n.replace(s,"")):l.test(n)&&(n+="e"))}if(s=k,s.test(n)){var T=s.exec(n);i=T[1],n=i+"i"}if(s=b,s.test(n)){var T=s.exec(n);i=T[1],o=T[2],s=u,s.test(i)&&(n=i+t[o])}if(s=E,s.test(n)){var T=s.exec(n);i=T[1],o=T[2],s=u,s.test(i)&&(n=i+e[o])}if(s=_,a=F,s.test(n)){var T=s.exec(n);i=T[1],s=c,s.test(i)&&(n=i)}else if(a.test(n)){var T=a.exec(n);i=T[1]+T[2],a=c,a.test(i)&&(n=i)}if(s=O,s.test(n)){var T=s.exec(n);i=T[1],s=c,a=f,h=N,(s.test(i)||a.test(i)&&!h.test(i))&&(n=i)}return s=P,a=c,s.test(n)&&a.test(n)&&(s=g,n=n.replace(s,"")),"y"==r&&(n=r.toLowerCase()+n.substr(1)),n};return T}(),t.Pipeline.registerFunction(t.stemmer,"stemmer"),t.stopWordFilter=function(e){return e&&t.stopWordFilter.stopWords[e]!==e?e:void 0},t.stopWordFilter.stopWords={a:"a",able:"able",about:"about",across:"across",after:"after",all:"all",almost:"almost",also:"also",am:"am",among:"among",an:"an",and:"and",any:"any",are:"are",as:"as",at:"at",be:"be",because:"because",been:"been",but:"but",by:"by",can:"can",cannot:"cannot",could:"could",dear:"dear",did:"did","do":"do",does:"does",either:"either","else":"else",ever:"ever",every:"every","for":"for",from:"from",get:"get",got:"got",had:"had",has:"has",have:"have",he:"he",her:"her",hers:"hers",him:"him",his:"his",how:"how",however:"however",i:"i","if":"if","in":"in",into:"into",is:"is",it:"it",its:"its",just:"just",least:"least",let:"let",like:"like",likely:"likely",may:"may",me:"me",might:"might",most:"most",must:"must",my:"my",neither:"neither",no:"no",nor:"nor",not:"not",of:"of",off:"off",often:"often",on:"on",only:"only",or:"or",other:"other",our:"our",own:"own",rather:"rather",said:"said",say:"say",says:"says",she:"she",should:"should",since:"since",so:"so",some:"some",than:"than",that:"that",the:"the",their:"their",them:"them",then:"then",there:"there",these:"these",they:"they","this":"this",tis:"tis",to:"to",too:"too",twas:"twas",us:"us",wants:"wants",was:"was",we:"we",were:"were",what:"what",when:"when",where:"where",which:"which","while":"while",who:"who",whom:"whom",why:"why",will:"will","with":"with",would:"would",yet:"yet",you:"you",your:"your"},t.Pipeline.registerFunction(t.stopWordFilter,"stopWordFilter"),t.trimmer=function(t){var e=t.replace(/^\W+/,"").replace(/\W+$/,"");return""===e?void 0:e},t.Pipeline.registerFunction(t.trimmer,"trimmer"),t.TokenStore=function(){this.root={docs:{}},this.length=0},t.TokenStore.load=function(t){var e=new this;return e.root=t.root,e.length=t.length,e},t.TokenStore.prototype.add=function(t,e,n){var n=n||this.root,i=t[0],o=t.slice(1);return i in n||(n[i]={docs:{}}),0===o.length?(n[i].docs[e.ref]=e,void(this.length+=1)):this.add(o,e,n[i])},t.TokenStore.prototype.has=function(t){if(!t)return!1;for(var e=this.root,n=0;n element for each result + res.results.forEach(function(res) { + var $li = $('
                                                                                                                                                                                                                                                                                    • ', { + 'class': 'search-results-item' + }); + + var $title = $('

                                                                                                                                                                                                                                                                                      '); + + var $link = $('', { + 'href': gitbook.state.basePath + '/' + res.url, + 'text': res.title + }); + + var content = res.body.trim(); + if (content.length > MAX_DESCRIPTION_SIZE) { + content = content.slice(0, MAX_DESCRIPTION_SIZE).trim()+'...'; + } + var $content = $('

                                                                                                                                                                                                                                                                                      ').html(content); + + $link.appendTo($title); + $title.appendTo($li); + $content.appendTo($li); + $li.appendTo($searchList); + }); + } + + function launchSearch(q) { + // Add class for loading + $body.addClass('with-search'); + $body.addClass('search-loading'); + + // Launch search query + throttle(gitbook.search.query(q, 0, MAX_RESULTS) + .then(function(results) { + displayResults(results); + }) + .always(function() { + $body.removeClass('search-loading'); + }), 1000); + } + + function closeSearch() { + $body.removeClass('with-search'); + $bookSearchResults.removeClass('open'); + } + + function launchSearchFromQueryString() { + var q = getParameterByName('q'); + if (q && q.length > 0) { + // Update search input + $searchInput.val(q); + + // Launch search + launchSearch(q); + } + } + + function bindSearch() { + // Bind DOM + $searchInput = $('#book-search-input input'); + $bookSearchResults = $('#book-search-results'); + $searchList = $bookSearchResults.find('.search-results-list'); + $searchTitle = $bookSearchResults.find('.search-results-title'); + $searchResultsCount = $searchTitle.find('.search-results-count'); + $searchQuery = $searchTitle.find('.search-query'); + + // Launch query based on input content + function handleUpdate() { + var q = $searchInput.val(); + + if (q.length == 0) { + closeSearch(); + } + else { + launchSearch(q); + } + } + + // Detect true content change in search input + // Workaround for IE < 9 + var propertyChangeUnbound = false; + $searchInput.on('propertychange', function(e) { + if (e.originalEvent.propertyName == 'value') { + handleUpdate(); + } + }); + + // HTML5 (IE9 & others) + $searchInput.on('input', function(e) { + // Unbind propertychange event for IE9+ + if (!propertyChangeUnbound) { + $(this).unbind('propertychange'); + propertyChangeUnbound = true; + } + + handleUpdate(); + }); + + // Push to history on blur + $searchInput.on('blur', function(e) { + // Update history state + if (usePushState) { + var uri = updateQueryString('q', $(this).val()); + history.pushState({ path: uri }, null, uri); + } + }); + } + + gitbook.events.on('page.change', function() { + bindSearch(); + closeSearch(); + + // Launch search based on query parameter + if (gitbook.search.isInitialized()) { + launchSearchFromQueryString(); + } + }); + + gitbook.events.on('search.ready', function() { + bindSearch(); + + // Launch search from query param at start + launchSearchFromQueryString(); + }); + + function getParameterByName(name) { + var url = window.location.href; + name = name.replace(/[\[\]]/g, '\\$&'); + var regex = new RegExp('[?&]' + name + '(=([^&#]*)|&|#|$)', 'i'), + results = regex.exec(url); + if (!results) return null; + if (!results[2]) return ''; + return decodeURIComponent(results[2].replace(/\+/g, ' ')); + } + + function updateQueryString(key, value) { + value = encodeURIComponent(value); + + var url = window.location.href; + var re = new RegExp('([?&])' + key + '=.*?(&|#|$)(.*)', 'gi'), + hash; + + if (re.test(url)) { + if (typeof value !== 'undefined' && value !== null) + return url.replace(re, '$1' + key + '=' + value + '$2$3'); + else { + hash = url.split('#'); + url = hash[0].replace(re, '$1$3').replace(/(&|\?)$/, ''); + if (typeof hash[1] !== 'undefined' && hash[1] !== null) + url += '#' + hash[1]; + return url; + } + } + else { + if (typeof value !== 'undefined' && value !== null) { + var separator = url.indexOf('?') !== -1 ? '&' : '?'; + hash = url.split('#'); + url = hash[0] + separator + key + '=' + value; + if (typeof hash[1] !== 'undefined' && hash[1] !== null) + url += '#' + hash[1]; + return url; + } + else + return url; + } + } +}); diff --git a/docs/_book/gitbook/gitbook-plugin-sharing/buttons.js b/docs/_book/gitbook/gitbook-plugin-sharing/buttons.js new file mode 100644 index 000000000..709a4e4c0 --- /dev/null +++ b/docs/_book/gitbook/gitbook-plugin-sharing/buttons.js @@ -0,0 +1,90 @@ +require(['gitbook', 'jquery'], function(gitbook, $) { + var SITES = { + 'facebook': { + 'label': 'Facebook', + 'icon': 'fa fa-facebook', + 'onClick': function(e) { + e.preventDefault(); + window.open('http://www.facebook.com/sharer/sharer.php?s=100&p[url]='+encodeURIComponent(location.href)); + } + }, + 'twitter': { + 'label': 'Twitter', + 'icon': 'fa fa-twitter', + 'onClick': function(e) { + e.preventDefault(); + window.open('http://twitter.com/home?status='+encodeURIComponent(document.title+' '+location.href)); + } + }, + 'google': { + 'label': 'Google+', + 'icon': 'fa fa-google-plus', + 'onClick': function(e) { + e.preventDefault(); + window.open('https://plus.google.com/share?url='+encodeURIComponent(location.href)); + } + }, + 'weibo': { + 'label': 'Weibo', + 'icon': 'fa fa-weibo', + 'onClick': function(e) { + e.preventDefault(); + window.open('http://service.weibo.com/share/share.php?content=utf-8&url='+encodeURIComponent(location.href)+'&title='+encodeURIComponent(document.title)); + } + }, + 'instapaper': { + 'label': 'Instapaper', + 'icon': 'fa fa-instapaper', + 'onClick': function(e) { + e.preventDefault(); + window.open('http://www.instapaper.com/text?u='+encodeURIComponent(location.href)); + } + }, + 'vk': { + 'label': 'VK', + 'icon': 'fa fa-vk', + 'onClick': function(e) { + e.preventDefault(); + window.open('http://vkontakte.ru/share.php?url='+encodeURIComponent(location.href)); + } + } + }; + + + + gitbook.events.bind('start', function(e, config) { + var opts = config.sharing; + + // Create dropdown menu + var menu = $.map(opts.all, function(id) { + var site = SITES[id]; + + return { + text: site.label, + onClick: site.onClick + }; + }); + + // Create main button with dropdown + if (menu.length > 0) { + gitbook.toolbar.createButton({ + icon: 'fa fa-share-alt', + label: 'Share', + position: 'right', + dropdown: [menu] + }); + } + + // Direct actions to share + $.each(SITES, function(sideId, site) { + if (!opts[sideId]) return; + + gitbook.toolbar.createButton({ + icon: site.icon, + label: site.text, + position: 'right', + onClick: site.onClick + }); + }); + }); +}); diff --git a/docs/_book/gitbook/gitbook-plugin-splitter/splitter.css b/docs/_book/gitbook/gitbook-plugin-splitter/splitter.css new file mode 100644 index 000000000..4e84720bf --- /dev/null +++ b/docs/_book/gitbook/gitbook-plugin-splitter/splitter.css @@ -0,0 +1,22 @@ +.divider-content-summary { + position: absolute; + top: 0; + right: 0; + height: 100%; + width: 5px; + display: table; + cursor: col-resize; + color: #ccc; + -webkit-transition: color 350ms ease; + -moz-transition: color 350ms ease; + -o-transition: color 350ms ease; + transition: color 350ms ease +} +.divider-content-summary:hover { + color: #444; +} + .divider-content-summary__icon { + display: table-cell; + vertical-align: middle; + text-align: center; + } diff --git a/docs/_book/gitbook/gitbook-plugin-splitter/splitter.js b/docs/_book/gitbook/gitbook-plugin-splitter/splitter.js new file mode 100644 index 000000000..5034e5b15 --- /dev/null +++ b/docs/_book/gitbook/gitbook-plugin-splitter/splitter.js @@ -0,0 +1,128 @@ +require(['gitbook', 'jQuery'], function (gitbook, $) { + + // MEMO: + // Gitbook is calculated as "calc (100% - 60px)" in the horizontal width when the width of the screen size is 600px + // or less. + // In this case, since contradiction occurs in the implementation of this module, return. + if($(window).width() <= 600) { + return; + } + + gitbook.events.bind('start', function () { + }); + + gitbook.events.bind('page.change', function () { + + var KEY_SPLIT_STATE = 'plugin_gitbook_split'; + + var dividerWidth = null; + var isDraggable = false; + var dividerCenterOffsetLeft = null; + var splitState = null; + var grabPointWidth = null; + + var $body = $('body'); + var $book = $('.book'); + var $summary = $('.book-summary'); + var $bookBody = $('.book-body'); + var $divider = $('

                                                                                                                                                                                                                                                                                      ' + + '
                                                                                                                                                                                                                                                                                      ' + + '' + + '
                                                                                                                                                                                                                                                                                      ' + + '
                                                                                                                                                                                                                                                                                      '); + + $summary.append($divider); + + dividerWidth = $divider.outerWidth(); + dividerCenterOffsetLeft = $divider.outerWidth() / 2; + + // restore split state from sessionStorage + splitState = getSplitState(); + setSplitState( + splitState.summaryWidth, + splitState.summaryOffset, + splitState.bookBodyOffset + ); + + setTimeout(function() { + var isGreaterThanEqualGitbookV2_5 = !Boolean($('.toggle-summary').length); + + var $toggleSummary = isGreaterThanEqualGitbookV2_5 + ? $('.fa.fa-align-justify').parent() : $('.toggle-summary'); + + $toggleSummary.on('click', function () { + + var summaryOffset = null; + var bookBodyOffset = null; + + var isOpen = isGreaterThanEqualGitbookV2_5 + ? !gitbook.sidebar.isOpen() : $book.hasClass('with-summary'); + + if (isOpen) { + summaryOffset = -($summary.outerWidth()); + bookBodyOffset = 0; + } else { + summaryOffset = 0; + bookBodyOffset = $summary.outerWidth(); + } + + setSplitState($summary.outerWidth(), summaryOffset, bookBodyOffset); + saveSplitState($summary.outerWidth(), summaryOffset, bookBodyOffset); + }); + }, 1); + + $divider.on('mousedown', function (event) { + event.stopPropagation(); + isDraggable = true; + grabPointWidth = $summary.outerWidth() - event.pageX; + }); + + $body.on('mouseup', function (event) { + event.stopPropagation(); + isDraggable = false; + saveSplitState( + $summary.outerWidth(), + $summary.position().left, + $bookBody.position().left + ); + }); + + $body.on('mousemove', function (event) { + if (!isDraggable) { + return; + } + event.stopPropagation(); + event.preventDefault(); + $summary.outerWidth(event.pageX + grabPointWidth); + $bookBody.offset({ left: event.pageX + grabPointWidth }); + }); + + function getSplitState() { + var splitState = JSON.parse(sessionStorage.getItem(KEY_SPLIT_STATE)); + splitState || (splitState = {}); + splitState.summaryWidth || (splitState.summaryWidth = $summary.outerWidth()); + splitState.summaryOffset || (splitState.summaryOffset = $summary.position().left); + splitState.bookBodyOffset || (splitState.bookBodyOffset = $bookBody.position().left); + return splitState; + } + + function saveSplitState(summaryWidth, summaryWidthOffset, bookBodyOffset) { + sessionStorage.setItem(KEY_SPLIT_STATE, JSON.stringify({ + summaryWidth: summaryWidth, + summaryOffset: summaryWidthOffset, + bookBodyOffset: bookBodyOffset, + })); + } + + function setSplitState(summaryWidth, summaryOffset, bookBodyOffset) { + $summary.outerWidth(summaryWidth); + $summary.offset({ left: summaryOffset }); + $bookBody.offset({ left: bookBodyOffset }); + // improved broken layout in windows chrome. + // "$(x).offset" automatically add to "position:relative". + // but it cause layout broken.. + $summary.css({ position: 'absolute' }); + $bookBody.css({ position: 'absolute' }); + } + }); +}); diff --git a/docs/_book/gitbook/gitbook-plugin-theme-api/theme-api.css b/docs/_book/gitbook/gitbook-plugin-theme-api/theme-api.css new file mode 100644 index 000000000..51f8b35a8 --- /dev/null +++ b/docs/_book/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/_book/gitbook/gitbook-plugin-theme-api/theme-api.js b/docs/_book/gitbook/gitbook-plugin-theme-api/theme-api.js new file mode 100644 index 000000000..07e6c21f7 --- /dev/null +++ b/docs/_book/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/_book/gitbook/gitbook.js b/docs/_book/gitbook/gitbook.js new file mode 100644 index 000000000..13077b45c --- /dev/null +++ b/docs/_book/gitbook/gitbook.js @@ -0,0 +1,4 @@ +!function e(t,n,r){function o(s,a){if(!n[s]){if(!t[s]){var u="function"==typeof require&&require;if(!a&&u)return u(s,!0);if(i)return i(s,!0);var c=new Error("Cannot find module '"+s+"'");throw c.code="MODULE_NOT_FOUND",c}var l=n[s]={exports:{}};t[s][0].call(l.exports,function(e){var n=t[s][1][e];return o(n?n:e)},l,l.exports,e,t,n,r)}return n[s].exports}for(var i="function"==typeof require&&require,s=0;s0&&t-1 in e)}function o(e,t,n){return de.isFunction(t)?de.grep(e,function(e,r){return!!t.call(e,r,e)!==n}):t.nodeType?de.grep(e,function(e){return e===t!==n}):"string"!=typeof t?de.grep(e,function(e){return se.call(t,e)>-1!==n}):je.test(t)?de.filter(t,e,n):(t=de.filter(t,e),de.grep(e,function(e){return se.call(t,e)>-1!==n&&1===e.nodeType}))}function i(e,t){for(;(e=e[t])&&1!==e.nodeType;);return e}function s(e){var t={};return de.each(e.match(qe)||[],function(e,n){t[n]=!0}),t}function a(e){return e}function u(e){throw e}function c(e,t,n){var r;try{e&&de.isFunction(r=e.promise)?r.call(e).done(t).fail(n):e&&de.isFunction(r=e.then)?r.call(e,t,n):t.call(void 0,e)}catch(e){n.call(void 0,e)}}function l(){te.removeEventListener("DOMContentLoaded",l),e.removeEventListener("load",l),de.ready()}function f(){this.expando=de.expando+f.uid++}function p(e){return"true"===e||"false"!==e&&("null"===e?null:e===+e+""?+e:Ie.test(e)?JSON.parse(e):e)}function h(e,t,n){var r;if(void 0===n&&1===e.nodeType)if(r="data-"+t.replace(Pe,"-$&").toLowerCase(),n=e.getAttribute(r),"string"==typeof n){try{n=p(n)}catch(e){}Re.set(e,t,n)}else n=void 0;return n}function d(e,t,n,r){var o,i=1,s=20,a=r?function(){return r.cur()}:function(){return de.css(e,t,"")},u=a(),c=n&&n[3]||(de.cssNumber[t]?"":"px"),l=(de.cssNumber[t]||"px"!==c&&+u)&&$e.exec(de.css(e,t));if(l&&l[3]!==c){c=c||l[3],n=n||[],l=+u||1;do i=i||".5",l/=i,de.style(e,t,l+c);while(i!==(i=a()/u)&&1!==i&&--s)}return n&&(l=+l||+u||0,o=n[1]?l+(n[1]+1)*n[2]:+n[2],r&&(r.unit=c,r.start=l,r.end=o)),o}function g(e){var t,n=e.ownerDocument,r=e.nodeName,o=Ue[r];return o?o:(t=n.body.appendChild(n.createElement(r)),o=de.css(t,"display"),t.parentNode.removeChild(t),"none"===o&&(o="block"),Ue[r]=o,o)}function m(e,t){for(var n,r,o=[],i=0,s=e.length;i-1)o&&o.push(i);else if(c=de.contains(i.ownerDocument,i),s=v(f.appendChild(i),"script"),c&&y(s),n)for(l=0;i=s[l++];)Ve.test(i.type||"")&&n.push(i);return f}function b(){return!0}function w(){return!1}function T(){try{return te.activeElement}catch(e){}}function C(e,t,n,r,o,i){var s,a;if("object"==typeof t){"string"!=typeof n&&(r=r||n,n=void 0);for(a in t)C(e,a,n,r,t[a],i);return e}if(null==r&&null==o?(o=n,r=n=void 0):null==o&&("string"==typeof n?(o=r,r=void 0):(o=r,r=n,n=void 0)),o===!1)o=w;else if(!o)return e;return 1===i&&(s=o,o=function(e){return de().off(e),s.apply(this,arguments)},o.guid=s.guid||(s.guid=de.guid++)),e.each(function(){de.event.add(this,t,o,r,n)})}function j(e,t){return de.nodeName(e,"table")&&de.nodeName(11!==t.nodeType?t:t.firstChild,"tr")?e.getElementsByTagName("tbody")[0]||e:e}function k(e){return e.type=(null!==e.getAttribute("type"))+"/"+e.type,e}function E(e){var t=rt.exec(e.type);return t?e.type=t[1]:e.removeAttribute("type"),e}function S(e,t){var n,r,o,i,s,a,u,c;if(1===t.nodeType){if(Fe.hasData(e)&&(i=Fe.access(e),s=Fe.set(t,i),c=i.events)){delete s.handle,s.events={};for(o in c)for(n=0,r=c[o].length;n1&&"string"==typeof d&&!pe.checkClone&&nt.test(d))return e.each(function(n){var i=e.eq(n);g&&(t[0]=d.call(this,n,i.html())),A(i,t,r,o)});if(p&&(i=x(t,e[0].ownerDocument,!1,e,o),s=i.firstChild,1===i.childNodes.length&&(i=s),s||o)){for(a=de.map(v(i,"script"),k),u=a.length;f=0&&nC.cacheLength&&delete e[t.shift()],e[n+" "]=r}var t=[];return e}function r(e){return e[$]=!0,e}function o(e){var t=L.createElement("fieldset");try{return!!e(t)}catch(e){return!1}finally{t.parentNode&&t.parentNode.removeChild(t),t=null}}function i(e,t){for(var n=e.split("|"),r=n.length;r--;)C.attrHandle[n[r]]=t}function s(e,t){var n=t&&e,r=n&&1===e.nodeType&&1===t.nodeType&&e.sourceIndex-t.sourceIndex;if(r)return r;if(n)for(;n=n.nextSibling;)if(n===t)return-1;return e?1:-1}function a(e){return function(t){var n=t.nodeName.toLowerCase();return"input"===n&&t.type===e}}function u(e){return function(t){var n=t.nodeName.toLowerCase();return("input"===n||"button"===n)&&t.type===e}}function c(e){return function(t){return"form"in t?t.parentNode&&t.disabled===!1?"label"in t?"label"in t.parentNode?t.parentNode.disabled===e:t.disabled===e:t.isDisabled===e||t.isDisabled!==!e&&je(t)===e:t.disabled===e:"label"in t&&t.disabled===e}}function l(e){return r(function(t){return t=+t,r(function(n,r){for(var o,i=e([],n.length,t),s=i.length;s--;)n[o=i[s]]&&(n[o]=!(r[o]=n[o]))})})}function f(e){return e&&"undefined"!=typeof e.getElementsByTagName&&e}function p(){}function h(e){for(var t=0,n=e.length,r="";t1?function(t,n,r){for(var o=e.length;o--;)if(!e[o](t,n,r))return!1;return!0}:e[0]}function m(e,n,r){for(var o=0,i=n.length;o-1&&(r[c]=!(s[c]=f))}}else x=v(x===s?x.splice(d,x.length):x),i?i(null,s,x,u):K.apply(s,x)})}function x(e){for(var t,n,r,o=e.length,i=C.relative[e[0].type],s=i||C.relative[" "],a=i?1:0,u=d(function(e){return e===t},s,!0),c=d(function(e){return ee(t,e)>-1},s,!0),l=[function(e,n,r){var o=!i&&(r||n!==A)||((t=n).nodeType?u(e,n,r):c(e,n,r));return t=null,o}];a1&&g(l),a>1&&h(e.slice(0,a-1).concat({value:" "===e[a-2].type?"*":""})).replace(ae,"$1"),n,a0,i=e.length>0,s=function(r,s,a,u,c){var l,f,p,h=0,d="0",g=r&&[],m=[],y=A,x=r||i&&C.find.TAG("*",c),b=B+=null==y?1:Math.random()||.1,w=x.length;for(c&&(A=s===L||s||c);d!==w&&null!=(l=x[d]);d++){if(i&&l){for(f=0,s||l.ownerDocument===L||(O(l),a=!F);p=e[f++];)if(p(l,s||L,a)){u.push(l);break}c&&(B=b)}o&&((l=!p&&l)&&h--,r&&g.push(l))}if(h+=d,o&&d!==h){for(f=0;p=n[f++];)p(g,m,s,a);if(r){if(h>0)for(;d--;)g[d]||m[d]||(m[d]=Q.call(u));m=v(m)}K.apply(u,m),c&&!r&&m.length>0&&h+n.length>1&&t.uniqueSort(u)}return c&&(B=b,A=y),g};return o?r(s):s}var w,T,C,j,k,E,S,N,A,q,D,O,L,H,F,R,I,P,M,$="sizzle"+1*new Date,W=e.document,B=0,_=0,U=n(),z=n(),X=n(),V=function(e,t){return e===t&&(D=!0),0},G={}.hasOwnProperty,Y=[],Q=Y.pop,J=Y.push,K=Y.push,Z=Y.slice,ee=function(e,t){for(var n=0,r=e.length;n+~]|"+ne+")"+ne+"*"),le=new RegExp("="+ne+"*([^\\]'\"]*?)"+ne+"*\\]","g"),fe=new RegExp(ie),pe=new RegExp("^"+re+"$"),he={ID:new RegExp("^#("+re+")"),CLASS:new RegExp("^\\.("+re+")"),TAG:new RegExp("^("+re+"|[*])"),ATTR:new RegExp("^"+oe),PSEUDO:new RegExp("^"+ie),CHILD:new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+ne+"*(even|odd|(([+-]|)(\\d*)n|)"+ne+"*(?:([+-]|)"+ne+"*(\\d+)|))"+ne+"*\\)|)","i"),bool:new RegExp("^(?:"+te+")$","i"),needsContext:new RegExp("^"+ne+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+ne+"*((?:-\\d)?\\d*)"+ne+"*\\)|)(?=[^-]|$)","i")},de=/^(?:input|select|textarea|button)$/i,ge=/^h\d$/i,me=/^[^{]+\{\s*\[native \w/,ve=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,ye=/[+~]/,xe=new RegExp("\\\\([\\da-f]{1,6}"+ne+"?|("+ne+")|.)","ig"),be=function(e,t,n){var r="0x"+t-65536;return r!==r||n?t:r<0?String.fromCharCode(r+65536):String.fromCharCode(r>>10|55296,1023&r|56320)},we=/([\0-\x1f\x7f]|^-?\d)|^-$|[^\0-\x1f\x7f-\uFFFF\w-]/g,Te=function(e,t){return t?"\0"===e?"�":e.slice(0,-1)+"\\"+e.charCodeAt(e.length-1).toString(16)+" ":"\\"+e},Ce=function(){O()},je=d(function(e){return e.disabled===!0&&("form"in e||"label"in e)},{dir:"parentNode",next:"legend"});try{K.apply(Y=Z.call(W.childNodes),W.childNodes),Y[W.childNodes.length].nodeType}catch(e){K={apply:Y.length?function(e,t){J.apply(e,Z.call(t))}:function(e,t){for(var n=e.length,r=0;e[n++]=t[r++];);e.length=n-1}}}T=t.support={},k=t.isXML=function(e){var t=e&&(e.ownerDocument||e).documentElement;return!!t&&"HTML"!==t.nodeName},O=t.setDocument=function(e){var t,n,r=e?e.ownerDocument||e:W;return r!==L&&9===r.nodeType&&r.documentElement?(L=r,H=L.documentElement,F=!k(L),W!==L&&(n=L.defaultView)&&n.top!==n&&(n.addEventListener?n.addEventListener("unload",Ce,!1):n.attachEvent&&n.attachEvent("onunload",Ce)),T.attributes=o(function(e){return e.className="i",!e.getAttribute("className")}),T.getElementsByTagName=o(function(e){return e.appendChild(L.createComment("")),!e.getElementsByTagName("*").length}),T.getElementsByClassName=me.test(L.getElementsByClassName),T.getById=o(function(e){return H.appendChild(e).id=$,!L.getElementsByName||!L.getElementsByName($).length}),T.getById?(C.filter.ID=function(e){var t=e.replace(xe,be);return function(e){return e.getAttribute("id")===t}},C.find.ID=function(e,t){if("undefined"!=typeof t.getElementById&&F){var n=t.getElementById(e);return n?[n]:[]}}):(C.filter.ID=function(e){var t=e.replace(xe,be);return function(e){var n="undefined"!=typeof e.getAttributeNode&&e.getAttributeNode("id");return n&&n.value===t}},C.find.ID=function(e,t){if("undefined"!=typeof t.getElementById&&F){var n,r,o,i=t.getElementById(e);if(i){if(n=i.getAttributeNode("id"),n&&n.value===e)return[i];for(o=t.getElementsByName(e),r=0;i=o[r++];)if(n=i.getAttributeNode("id"),n&&n.value===e)return[i]}return[]}}),C.find.TAG=T.getElementsByTagName?function(e,t){return"undefined"!=typeof t.getElementsByTagName?t.getElementsByTagName(e):T.qsa?t.querySelectorAll(e):void 0}:function(e,t){var n,r=[],o=0,i=t.getElementsByTagName(e);if("*"===e){for(;n=i[o++];)1===n.nodeType&&r.push(n);return r}return i},C.find.CLASS=T.getElementsByClassName&&function(e,t){if("undefined"!=typeof t.getElementsByClassName&&F)return t.getElementsByClassName(e)},I=[],R=[],(T.qsa=me.test(L.querySelectorAll))&&(o(function(e){H.appendChild(e).innerHTML="
                                                                                                                                                                                                                                                                                      ",e.querySelectorAll("[msallowcapture^='']").length&&R.push("[*^$]="+ne+"*(?:''|\"\")"),e.querySelectorAll("[selected]").length||R.push("\\["+ne+"*(?:value|"+te+")"),e.querySelectorAll("[id~="+$+"-]").length||R.push("~="),e.querySelectorAll(":checked").length||R.push(":checked"),e.querySelectorAll("a#"+$+"+*").length||R.push(".#.+[+~]")}),o(function(e){e.innerHTML="";var t=L.createElement("input");t.setAttribute("type","hidden"),e.appendChild(t).setAttribute("name","D"),e.querySelectorAll("[name=d]").length&&R.push("name"+ne+"*[*^$|!~]?="),2!==e.querySelectorAll(":enabled").length&&R.push(":enabled",":disabled"),H.appendChild(e).disabled=!0,2!==e.querySelectorAll(":disabled").length&&R.push(":enabled",":disabled"),e.querySelectorAll("*,:x"),R.push(",.*:")})),(T.matchesSelector=me.test(P=H.matches||H.webkitMatchesSelector||H.mozMatchesSelector||H.oMatchesSelector||H.msMatchesSelector))&&o(function(e){T.disconnectedMatch=P.call(e,"*"),P.call(e,"[s!='']:x"),I.push("!=",ie)}),R=R.length&&new RegExp(R.join("|")),I=I.length&&new RegExp(I.join("|")),t=me.test(H.compareDocumentPosition),M=t||me.test(H.contains)?function(e,t){var n=9===e.nodeType?e.documentElement:e,r=t&&t.parentNode;return e===r||!(!r||1!==r.nodeType||!(n.contains?n.contains(r):e.compareDocumentPosition&&16&e.compareDocumentPosition(r)))}:function(e,t){if(t)for(;t=t.parentNode;)if(t===e)return!0;return!1},V=t?function(e,t){if(e===t)return D=!0,0;var n=!e.compareDocumentPosition-!t.compareDocumentPosition;return n?n:(n=(e.ownerDocument||e)===(t.ownerDocument||t)?e.compareDocumentPosition(t):1,1&n||!T.sortDetached&&t.compareDocumentPosition(e)===n?e===L||e.ownerDocument===W&&M(W,e)?-1:t===L||t.ownerDocument===W&&M(W,t)?1:q?ee(q,e)-ee(q,t):0:4&n?-1:1)}:function(e,t){if(e===t)return D=!0,0;var n,r=0,o=e.parentNode,i=t.parentNode,a=[e],u=[t];if(!o||!i)return e===L?-1:t===L?1:o?-1:i?1:q?ee(q,e)-ee(q,t):0;if(o===i)return s(e,t);for(n=e;n=n.parentNode;)a.unshift(n);for(n=t;n=n.parentNode;)u.unshift(n);for(;a[r]===u[r];)r++;return r?s(a[r],u[r]):a[r]===W?-1:u[r]===W?1:0},L):L},t.matches=function(e,n){return t(e,null,null,n)},t.matchesSelector=function(e,n){if((e.ownerDocument||e)!==L&&O(e),n=n.replace(le,"='$1']"),T.matchesSelector&&F&&!X[n+" "]&&(!I||!I.test(n))&&(!R||!R.test(n)))try{var r=P.call(e,n);if(r||T.disconnectedMatch||e.document&&11!==e.document.nodeType)return r}catch(e){}return t(n,L,null,[e]).length>0},t.contains=function(e,t){return(e.ownerDocument||e)!==L&&O(e),M(e,t)},t.attr=function(e,t){(e.ownerDocument||e)!==L&&O(e);var n=C.attrHandle[t.toLowerCase()],r=n&&G.call(C.attrHandle,t.toLowerCase())?n(e,t,!F):void 0;return void 0!==r?r:T.attributes||!F?e.getAttribute(t):(r=e.getAttributeNode(t))&&r.specified?r.value:null},t.escape=function(e){return(e+"").replace(we,Te)},t.error=function(e){throw new Error("Syntax error, unrecognized expression: "+e)},t.uniqueSort=function(e){var t,n=[],r=0,o=0;if(D=!T.detectDuplicates,q=!T.sortStable&&e.slice(0),e.sort(V),D){for(;t=e[o++];)t===e[o]&&(r=n.push(o));for(;r--;)e.splice(n[r],1)}return q=null,e},j=t.getText=function(e){var t,n="",r=0,o=e.nodeType;if(o){if(1===o||9===o||11===o){if("string"==typeof e.textContent)return e.textContent;for(e=e.firstChild;e;e=e.nextSibling)n+=j(e)}else if(3===o||4===o)return e.nodeValue}else for(;t=e[r++];)n+=j(t);return n},C=t.selectors={cacheLength:50,createPseudo:r,match:he,attrHandle:{},find:{},relative:{">":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(e){return e[1]=e[1].replace(xe,be),e[3]=(e[3]||e[4]||e[5]||"").replace(xe,be),"~="===e[2]&&(e[3]=" "+e[3]+" "),e.slice(0,4)},CHILD:function(e){return e[1]=e[1].toLowerCase(),"nth"===e[1].slice(0,3)?(e[3]||t.error(e[0]),e[4]=+(e[4]?e[5]+(e[6]||1):2*("even"===e[3]||"odd"===e[3])),e[5]=+(e[7]+e[8]||"odd"===e[3])):e[3]&&t.error(e[0]),e},PSEUDO:function(e){var t,n=!e[6]&&e[2];return he.CHILD.test(e[0])?null:(e[3]?e[2]=e[4]||e[5]||"":n&&fe.test(n)&&(t=E(n,!0))&&(t=n.indexOf(")",n.length-t)-n.length)&&(e[0]=e[0].slice(0,t),e[2]=n.slice(0,t)),e.slice(0,3))}},filter:{TAG:function(e){var t=e.replace(xe,be).toLowerCase();return"*"===e?function(){return!0}:function(e){return e.nodeName&&e.nodeName.toLowerCase()===t}},CLASS:function(e){var t=U[e+" "];return t||(t=new RegExp("(^|"+ne+")"+e+"("+ne+"|$)"))&&U(e,function(e){return t.test("string"==typeof e.className&&e.className||"undefined"!=typeof e.getAttribute&&e.getAttribute("class")||"")})},ATTR:function(e,n,r){return function(o){var i=t.attr(o,e);return null==i?"!="===n:!n||(i+="","="===n?i===r:"!="===n?i!==r:"^="===n?r&&0===i.indexOf(r):"*="===n?r&&i.indexOf(r)>-1:"$="===n?r&&i.slice(-r.length)===r:"~="===n?(" "+i.replace(se," ")+" ").indexOf(r)>-1:"|="===n&&(i===r||i.slice(0,r.length+1)===r+"-"))}},CHILD:function(e,t,n,r,o){var i="nth"!==e.slice(0,3),s="last"!==e.slice(-4),a="of-type"===t;return 1===r&&0===o?function(e){return!!e.parentNode}:function(t,n,u){var c,l,f,p,h,d,g=i!==s?"nextSibling":"previousSibling",m=t.parentNode,v=a&&t.nodeName.toLowerCase(),y=!u&&!a,x=!1;if(m){if(i){for(;g;){for(p=t;p=p[g];)if(a?p.nodeName.toLowerCase()===v:1===p.nodeType)return!1;d=g="only"===e&&!d&&"nextSibling"}return!0}if(d=[s?m.firstChild:m.lastChild],s&&y){for(p=m,f=p[$]||(p[$]={}),l=f[p.uniqueID]||(f[p.uniqueID]={}),c=l[e]||[],h=c[0]===B&&c[1],x=h&&c[2],p=h&&m.childNodes[h];p=++h&&p&&p[g]||(x=h=0)||d.pop();)if(1===p.nodeType&&++x&&p===t){l[e]=[B,h,x];break}}else if(y&&(p=t,f=p[$]||(p[$]={}),l=f[p.uniqueID]||(f[p.uniqueID]={}),c=l[e]||[],h=c[0]===B&&c[1],x=h),x===!1)for(;(p=++h&&p&&p[g]||(x=h=0)||d.pop())&&((a?p.nodeName.toLowerCase()!==v:1!==p.nodeType)||!++x||(y&&(f=p[$]||(p[$]={}),l=f[p.uniqueID]||(f[p.uniqueID]={}),l[e]=[B,x]),p!==t)););return x-=o,x===r||x%r===0&&x/r>=0}}},PSEUDO:function(e,n){var o,i=C.pseudos[e]||C.setFilters[e.toLowerCase()]||t.error("unsupported pseudo: "+e);return i[$]?i(n):i.length>1?(o=[e,e,"",n],C.setFilters.hasOwnProperty(e.toLowerCase())?r(function(e,t){for(var r,o=i(e,n),s=o.length;s--;)r=ee(e,o[s]),e[r]=!(t[r]=o[s])}):function(e){return i(e,0,o)}):i}},pseudos:{not:r(function(e){var t=[],n=[],o=S(e.replace(ae,"$1"));return o[$]?r(function(e,t,n,r){for(var i,s=o(e,null,r,[]),a=e.length;a--;)(i=s[a])&&(e[a]=!(t[a]=i))}):function(e,r,i){return t[0]=e,o(t,null,i,n),t[0]=null,!n.pop()}}),has:r(function(e){return function(n){ +return t(e,n).length>0}}),contains:r(function(e){return e=e.replace(xe,be),function(t){return(t.textContent||t.innerText||j(t)).indexOf(e)>-1}}),lang:r(function(e){return pe.test(e||"")||t.error("unsupported lang: "+e),e=e.replace(xe,be).toLowerCase(),function(t){var n;do if(n=F?t.lang:t.getAttribute("xml:lang")||t.getAttribute("lang"))return n=n.toLowerCase(),n===e||0===n.indexOf(e+"-");while((t=t.parentNode)&&1===t.nodeType);return!1}}),target:function(t){var n=e.location&&e.location.hash;return n&&n.slice(1)===t.id},root:function(e){return e===H},focus:function(e){return e===L.activeElement&&(!L.hasFocus||L.hasFocus())&&!!(e.type||e.href||~e.tabIndex)},enabled:c(!1),disabled:c(!0),checked:function(e){var t=e.nodeName.toLowerCase();return"input"===t&&!!e.checked||"option"===t&&!!e.selected},selected:function(e){return e.parentNode&&e.parentNode.selectedIndex,e.selected===!0},empty:function(e){for(e=e.firstChild;e;e=e.nextSibling)if(e.nodeType<6)return!1;return!0},parent:function(e){return!C.pseudos.empty(e)},header:function(e){return ge.test(e.nodeName)},input:function(e){return de.test(e.nodeName)},button:function(e){var t=e.nodeName.toLowerCase();return"input"===t&&"button"===e.type||"button"===t},text:function(e){var t;return"input"===e.nodeName.toLowerCase()&&"text"===e.type&&(null==(t=e.getAttribute("type"))||"text"===t.toLowerCase())},first:l(function(){return[0]}),last:l(function(e,t){return[t-1]}),eq:l(function(e,t,n){return[n<0?n+t:n]}),even:l(function(e,t){for(var n=0;n=0;)e.push(r);return e}),gt:l(function(e,t,n){for(var r=n<0?n+t:n;++r2&&"ID"===(s=i[0]).type&&9===t.nodeType&&F&&C.relative[i[1].type]){if(t=(C.find.ID(s.matches[0].replace(xe,be),t)||[])[0],!t)return n;c&&(t=t.parentNode),e=e.slice(i.shift().value.length)}for(o=he.needsContext.test(e)?0:i.length;o--&&(s=i[o],!C.relative[a=s.type]);)if((u=C.find[a])&&(r=u(s.matches[0].replace(xe,be),ye.test(i[0].type)&&f(t.parentNode)||t))){if(i.splice(o,1),e=r.length&&h(i),!e)return K.apply(n,r),n;break}}return(c||S(e,l))(r,t,!F,n,!t||ye.test(e)&&f(t.parentNode)||t),n},T.sortStable=$.split("").sort(V).join("")===$,T.detectDuplicates=!!D,O(),T.sortDetached=o(function(e){return 1&e.compareDocumentPosition(L.createElement("fieldset"))}),o(function(e){return e.innerHTML="","#"===e.firstChild.getAttribute("href")})||i("type|href|height|width",function(e,t,n){if(!n)return e.getAttribute(t,"type"===t.toLowerCase()?1:2)}),T.attributes&&o(function(e){return e.innerHTML="",e.firstChild.setAttribute("value",""),""===e.firstChild.getAttribute("value")})||i("value",function(e,t,n){if(!n&&"input"===e.nodeName.toLowerCase())return e.defaultValue}),o(function(e){return null==e.getAttribute("disabled")})||i(te,function(e,t,n){var r;if(!n)return e[t]===!0?t.toLowerCase():(r=e.getAttributeNode(t))&&r.specified?r.value:null}),t}(e);de.find=xe,de.expr=xe.selectors,de.expr[":"]=de.expr.pseudos,de.uniqueSort=de.unique=xe.uniqueSort,de.text=xe.getText,de.isXMLDoc=xe.isXML,de.contains=xe.contains,de.escapeSelector=xe.escape;var be=function(e,t,n){for(var r=[],o=void 0!==n;(e=e[t])&&9!==e.nodeType;)if(1===e.nodeType){if(o&&de(e).is(n))break;r.push(e)}return r},we=function(e,t){for(var n=[];e;e=e.nextSibling)1===e.nodeType&&e!==t&&n.push(e);return n},Te=de.expr.match.needsContext,Ce=/^<([a-z][^\/\0>:\x20\t\r\n\f]*)[\x20\t\r\n\f]*\/?>(?:<\/\1>|)$/i,je=/^.[^:#\[\.,]*$/;de.filter=function(e,t,n){var r=t[0];return n&&(e=":not("+e+")"),1===t.length&&1===r.nodeType?de.find.matchesSelector(r,e)?[r]:[]:de.find.matches(e,de.grep(t,function(e){return 1===e.nodeType}))},de.fn.extend({find:function(e){var t,n,r=this.length,o=this;if("string"!=typeof e)return this.pushStack(de(e).filter(function(){for(t=0;t1?de.uniqueSort(n):n},filter:function(e){return this.pushStack(o(this,e||[],!1))},not:function(e){return this.pushStack(o(this,e||[],!0))},is:function(e){return!!o(this,"string"==typeof e&&Te.test(e)?de(e):e||[],!1).length}});var ke,Ee=/^(?:\s*(<[\w\W]+>)[^>]*|#([\w-]+))$/,Se=de.fn.init=function(e,t,n){var r,o;if(!e)return this;if(n=n||ke,"string"==typeof e){if(r="<"===e[0]&&">"===e[e.length-1]&&e.length>=3?[null,e,null]:Ee.exec(e),!r||!r[1]&&t)return!t||t.jquery?(t||n).find(e):this.constructor(t).find(e);if(r[1]){if(t=t instanceof de?t[0]:t,de.merge(this,de.parseHTML(r[1],t&&t.nodeType?t.ownerDocument||t:te,!0)),Ce.test(r[1])&&de.isPlainObject(t))for(r in t)de.isFunction(this[r])?this[r](t[r]):this.attr(r,t[r]);return this}return o=te.getElementById(r[2]),o&&(this[0]=o,this.length=1),this}return e.nodeType?(this[0]=e,this.length=1,this):de.isFunction(e)?void 0!==n.ready?n.ready(e):e(de):de.makeArray(e,this)};Se.prototype=de.fn,ke=de(te);var Ne=/^(?:parents|prev(?:Until|All))/,Ae={children:!0,contents:!0,next:!0,prev:!0};de.fn.extend({has:function(e){var t=de(e,this),n=t.length;return this.filter(function(){for(var e=0;e-1:1===n.nodeType&&de.find.matchesSelector(n,e))){i.push(n);break}return this.pushStack(i.length>1?de.uniqueSort(i):i)},index:function(e){return e?"string"==typeof e?se.call(de(e),this[0]):se.call(this,e.jquery?e[0]:e):this[0]&&this[0].parentNode?this.first().prevAll().length:-1},add:function(e,t){return this.pushStack(de.uniqueSort(de.merge(this.get(),de(e,t))))},addBack:function(e){return this.add(null==e?this.prevObject:this.prevObject.filter(e))}}),de.each({parent:function(e){var t=e.parentNode;return t&&11!==t.nodeType?t:null},parents:function(e){return be(e,"parentNode")},parentsUntil:function(e,t,n){return be(e,"parentNode",n)},next:function(e){return i(e,"nextSibling")},prev:function(e){return i(e,"previousSibling")},nextAll:function(e){return be(e,"nextSibling")},prevAll:function(e){return be(e,"previousSibling")},nextUntil:function(e,t,n){return be(e,"nextSibling",n)},prevUntil:function(e,t,n){return be(e,"previousSibling",n)},siblings:function(e){return we((e.parentNode||{}).firstChild,e)},children:function(e){return we(e.firstChild)},contents:function(e){return e.contentDocument||de.merge([],e.childNodes)}},function(e,t){de.fn[e]=function(n,r){var o=de.map(this,t,n);return"Until"!==e.slice(-5)&&(r=n),r&&"string"==typeof r&&(o=de.filter(r,o)),this.length>1&&(Ae[e]||de.uniqueSort(o),Ne.test(e)&&o.reverse()),this.pushStack(o)}});var qe=/[^\x20\t\r\n\f]+/g;de.Callbacks=function(e){e="string"==typeof e?s(e):de.extend({},e);var t,n,r,o,i=[],a=[],u=-1,c=function(){for(o=e.once,r=t=!0;a.length;u=-1)for(n=a.shift();++u-1;)i.splice(n,1),n<=u&&u--}),this},has:function(e){return e?de.inArray(e,i)>-1:i.length>0},empty:function(){return i&&(i=[]),this},disable:function(){return o=a=[],i=n="",this},disabled:function(){return!i},lock:function(){return o=a=[],n||t||(i=n=""),this},locked:function(){return!!o},fireWith:function(e,n){return o||(n=n||[],n=[e,n.slice?n.slice():n],a.push(n),t||c()),this},fire:function(){return l.fireWith(this,arguments),this},fired:function(){return!!r}};return l},de.extend({Deferred:function(t){var n=[["notify","progress",de.Callbacks("memory"),de.Callbacks("memory"),2],["resolve","done",de.Callbacks("once memory"),de.Callbacks("once memory"),0,"resolved"],["reject","fail",de.Callbacks("once memory"),de.Callbacks("once memory"),1,"rejected"]],r="pending",o={state:function(){return r},always:function(){return i.done(arguments).fail(arguments),this},catch:function(e){return o.then(null,e)},pipe:function(){var e=arguments;return de.Deferred(function(t){de.each(n,function(n,r){var o=de.isFunction(e[r[4]])&&e[r[4]];i[r[1]](function(){var e=o&&o.apply(this,arguments);e&&de.isFunction(e.promise)?e.promise().progress(t.notify).done(t.resolve).fail(t.reject):t[r[0]+"With"](this,o?[e]:arguments)})}),e=null}).promise()},then:function(t,r,o){function i(t,n,r,o){return function(){var c=this,l=arguments,f=function(){var e,f;if(!(t=s&&(r!==u&&(c=void 0,l=[e]),n.rejectWith(c,l))}};t?p():(de.Deferred.getStackHook&&(p.stackTrace=de.Deferred.getStackHook()),e.setTimeout(p))}}var s=0;return de.Deferred(function(e){n[0][3].add(i(0,e,de.isFunction(o)?o:a,e.notifyWith)),n[1][3].add(i(0,e,de.isFunction(t)?t:a)),n[2][3].add(i(0,e,de.isFunction(r)?r:u))}).promise()},promise:function(e){return null!=e?de.extend(e,o):o}},i={};return de.each(n,function(e,t){var s=t[2],a=t[5];o[t[1]]=s.add,a&&s.add(function(){r=a},n[3-e][2].disable,n[0][2].lock),s.add(t[3].fire),i[t[0]]=function(){return i[t[0]+"With"](this===i?void 0:this,arguments),this},i[t[0]+"With"]=s.fireWith}),o.promise(i),t&&t.call(i,i),i},when:function(e){var t=arguments.length,n=t,r=Array(n),o=re.call(arguments),i=de.Deferred(),s=function(e){return function(n){r[e]=this,o[e]=arguments.length>1?re.call(arguments):n,--t||i.resolveWith(r,o)}};if(t<=1&&(c(e,i.done(s(n)).resolve,i.reject),"pending"===i.state()||de.isFunction(o[n]&&o[n].then)))return i.then();for(;n--;)c(o[n],s(n),i.reject);return i.promise()}});var De=/^(Eval|Internal|Range|Reference|Syntax|Type|URI)Error$/;de.Deferred.exceptionHook=function(t,n){e.console&&e.console.warn&&t&&De.test(t.name)&&e.console.warn("jQuery.Deferred exception: "+t.message,t.stack,n)},de.readyException=function(t){e.setTimeout(function(){throw t})};var Oe=de.Deferred();de.fn.ready=function(e){return Oe.then(e).catch(function(e){de.readyException(e)}),this},de.extend({isReady:!1,readyWait:1,holdReady:function(e){e?de.readyWait++:de.ready(!0)},ready:function(e){(e===!0?--de.readyWait:de.isReady)||(de.isReady=!0,e!==!0&&--de.readyWait>0||Oe.resolveWith(te,[de]))}}),de.ready.then=Oe.then,"complete"===te.readyState||"loading"!==te.readyState&&!te.documentElement.doScroll?e.setTimeout(de.ready):(te.addEventListener("DOMContentLoaded",l),e.addEventListener("load",l));var Le=function(e,t,n,r,o,i,s){var a=0,u=e.length,c=null==n;if("object"===de.type(n)){o=!0;for(a in n)Le(e,t,a,n[a],!0,i,s)}else if(void 0!==r&&(o=!0,de.isFunction(r)||(s=!0),c&&(s?(t.call(e,r),t=null):(c=t,t=function(e,t,n){return c.call(de(e),n)})),t))for(;a1,null,!0)},removeData:function(e){return this.each(function(){Re.remove(this,e)})}}),de.extend({queue:function(e,t,n){var r;if(e)return t=(t||"fx")+"queue",r=Fe.get(e,t),n&&(!r||de.isArray(n)?r=Fe.access(e,t,de.makeArray(n)):r.push(n)),r||[]},dequeue:function(e,t){t=t||"fx";var n=de.queue(e,t),r=n.length,o=n.shift(),i=de._queueHooks(e,t),s=function(){de.dequeue(e,t)};"inprogress"===o&&(o=n.shift(),r--),o&&("fx"===t&&n.unshift("inprogress"),delete i.stop,o.call(e,s,i)),!r&&i&&i.empty.fire()},_queueHooks:function(e,t){var n=t+"queueHooks";return Fe.get(e,n)||Fe.access(e,n,{empty:de.Callbacks("once memory").add(function(){Fe.remove(e,[t+"queue",n])})})}}),de.fn.extend({queue:function(e,t){var n=2;return"string"!=typeof e&&(t=e,e="fx",n--),arguments.length\x20\t\r\n\f]+)/i,Ve=/^$|\/(?:java|ecma)script/i,Ge={option:[1,""],thead:[1,"","
                                                                                                                                                                                                                                                                                      "],col:[2,"","
                                                                                                                                                                                                                                                                                      "],tr:[2,"","
                                                                                                                                                                                                                                                                                      "],td:[3,"","
                                                                                                                                                                                                                                                                                      "],_default:[0,"",""]};Ge.optgroup=Ge.option,Ge.tbody=Ge.tfoot=Ge.colgroup=Ge.caption=Ge.thead,Ge.th=Ge.td;var Ye=/<|&#?\w+;/;!function(){var e=te.createDocumentFragment(),t=e.appendChild(te.createElement("div")),n=te.createElement("input");n.setAttribute("type","radio"),n.setAttribute("checked","checked"),n.setAttribute("name","t"),t.appendChild(n),pe.checkClone=t.cloneNode(!0).cloneNode(!0).lastChild.checked,t.innerHTML="",pe.noCloneChecked=!!t.cloneNode(!0).lastChild.defaultValue}();var Qe=te.documentElement,Je=/^key/,Ke=/^(?:mouse|pointer|contextmenu|drag|drop)|click/,Ze=/^([^.]*)(?:\.(.+)|)/;de.event={global:{},add:function(e,t,n,r,o){var i,s,a,u,c,l,f,p,h,d,g,m=Fe.get(e);if(m)for(n.handler&&(i=n,n=i.handler,o=i.selector),o&&de.find.matchesSelector(Qe,o),n.guid||(n.guid=de.guid++),(u=m.events)||(u=m.events={}),(s=m.handle)||(s=m.handle=function(t){return"undefined"!=typeof de&&de.event.triggered!==t.type?de.event.dispatch.apply(e,arguments):void 0}),t=(t||"").match(qe)||[""],c=t.length;c--;)a=Ze.exec(t[c])||[],h=g=a[1],d=(a[2]||"").split(".").sort(),h&&(f=de.event.special[h]||{},h=(o?f.delegateType:f.bindType)||h,f=de.event.special[h]||{},l=de.extend({type:h,origType:g,data:r,handler:n,guid:n.guid,selector:o,needsContext:o&&de.expr.match.needsContext.test(o),namespace:d.join(".")},i),(p=u[h])||(p=u[h]=[],p.delegateCount=0,f.setup&&f.setup.call(e,r,d,s)!==!1||e.addEventListener&&e.addEventListener(h,s)),f.add&&(f.add.call(e,l),l.handler.guid||(l.handler.guid=n.guid)),o?p.splice(p.delegateCount++,0,l):p.push(l),de.event.global[h]=!0)},remove:function(e,t,n,r,o){var i,s,a,u,c,l,f,p,h,d,g,m=Fe.hasData(e)&&Fe.get(e);if(m&&(u=m.events)){for(t=(t||"").match(qe)||[""],c=t.length;c--;)if(a=Ze.exec(t[c])||[],h=g=a[1],d=(a[2]||"").split(".").sort(),h){for(f=de.event.special[h]||{},h=(r?f.delegateType:f.bindType)||h,p=u[h]||[],a=a[2]&&new RegExp("(^|\\.)"+d.join("\\.(?:.*\\.|)")+"(\\.|$)"),s=i=p.length;i--;)l=p[i],!o&&g!==l.origType||n&&n.guid!==l.guid||a&&!a.test(l.namespace)||r&&r!==l.selector&&("**"!==r||!l.selector)||(p.splice(i,1),l.selector&&p.delegateCount--,f.remove&&f.remove.call(e,l));s&&!p.length&&(f.teardown&&f.teardown.call(e,d,m.handle)!==!1||de.removeEvent(e,h,m.handle),delete u[h])}else for(h in u)de.event.remove(e,h+t[c],n,r,!0);de.isEmptyObject(u)&&Fe.remove(e,"handle events")}},dispatch:function(e){var t,n,r,o,i,s,a=de.event.fix(e),u=new Array(arguments.length),c=(Fe.get(this,"events")||{})[a.type]||[],l=de.event.special[a.type]||{};for(u[0]=a,t=1;t=1))for(;c!==this;c=c.parentNode||this)if(1===c.nodeType&&("click"!==e.type||c.disabled!==!0)){for(i=[],s={},n=0;n-1:de.find(o,this,null,[c]).length),s[o]&&i.push(r);i.length&&a.push({elem:c,handlers:i})}return c=this,u\x20\t\r\n\f]*)[^>]*)\/>/gi,tt=/\s*$/g;de.extend({htmlPrefilter:function(e){return e.replace(et,"<$1>")},clone:function(e,t,n){var r,o,i,s,a=e.cloneNode(!0),u=de.contains(e.ownerDocument,e);if(!(pe.noCloneChecked||1!==e.nodeType&&11!==e.nodeType||de.isXMLDoc(e)))for(s=v(a),i=v(e),r=0,o=i.length;r0&&y(s,!u&&v(e,"script")),a},cleanData:function(e){for(var t,n,r,o=de.event.special,i=0;void 0!==(n=e[i]);i++)if(He(n)){if(t=n[Fe.expando]){if(t.events)for(r in t.events)o[r]?de.event.remove(n,r):de.removeEvent(n,r,t.handle);n[Fe.expando]=void 0}n[Re.expando]&&(n[Re.expando]=void 0)}}}),de.fn.extend({detach:function(e){return q(this,e,!0)},remove:function(e){return q(this,e)},text:function(e){return Le(this,function(e){return void 0===e?de.text(this):this.empty().each(function(){1!==this.nodeType&&11!==this.nodeType&&9!==this.nodeType||(this.textContent=e)})},null,e,arguments.length)},append:function(){return A(this,arguments,function(e){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var t=j(this,e);t.appendChild(e)}})},prepend:function(){return A(this,arguments,function(e){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var t=j(this,e);t.insertBefore(e,t.firstChild)}})},before:function(){return A(this,arguments,function(e){this.parentNode&&this.parentNode.insertBefore(e,this)})},after:function(){return A(this,arguments,function(e){this.parentNode&&this.parentNode.insertBefore(e,this.nextSibling)})},empty:function(){for(var e,t=0;null!=(e=this[t]);t++)1===e.nodeType&&(de.cleanData(v(e,!1)),e.textContent="");return this},clone:function(e,t){return e=null!=e&&e,t=null==t?e:t,this.map(function(){return de.clone(this,e,t)})},html:function(e){return Le(this,function(e){var t=this[0]||{},n=0,r=this.length;if(void 0===e&&1===t.nodeType)return t.innerHTML;if("string"==typeof e&&!tt.test(e)&&!Ge[(Xe.exec(e)||["",""])[1].toLowerCase()]){e=de.htmlPrefilter(e);try{for(;n1)}}),de.Tween=I,I.prototype={constructor:I,init:function(e,t,n,r,o,i){this.elem=e,this.prop=n,this.easing=o||de.easing._default,this.options=t,this.start=this.now=this.cur(),this.end=r,this.unit=i||(de.cssNumber[n]?"":"px")},cur:function(){var e=I.propHooks[this.prop];return e&&e.get?e.get(this):I.propHooks._default.get(this)},run:function(e){var t,n=I.propHooks[this.prop];return this.options.duration?this.pos=t=de.easing[this.easing](e,this.options.duration*e,0,1,this.options.duration):this.pos=t=e,this.now=(this.end-this.start)*t+this.start,this.options.step&&this.options.step.call(this.elem,this.now,this),n&&n.set?n.set(this):I.propHooks._default.set(this),this}},I.prototype.init.prototype=I.prototype,I.propHooks={_default:{get:function(e){var t;return 1!==e.elem.nodeType||null!=e.elem[e.prop]&&null==e.elem.style[e.prop]?e.elem[e.prop]:(t=de.css(e.elem,e.prop,""),t&&"auto"!==t?t:0)},set:function(e){de.fx.step[e.prop]?de.fx.step[e.prop](e):1!==e.elem.nodeType||null==e.elem.style[de.cssProps[e.prop]]&&!de.cssHooks[e.prop]?e.elem[e.prop]=e.now:de.style(e.elem,e.prop,e.now+e.unit)}}},I.propHooks.scrollTop=I.propHooks.scrollLeft={set:function(e){e.elem.nodeType&&e.elem.parentNode&&(e.elem[e.prop]=e.now)}},de.easing={linear:function(e){return e},swing:function(e){return.5-Math.cos(e*Math.PI)/2},_default:"swing"},de.fx=I.prototype.init,de.fx.step={};var ht,dt,gt=/^(?:toggle|show|hide)$/,mt=/queueHooks$/;de.Animation=de.extend(U,{tweeners:{"*":[function(e,t){var n=this.createTween(e,t);return d(n.elem,e,$e.exec(t),n),n}]},tweener:function(e,t){de.isFunction(e)?(t=e,e=["*"]):e=e.match(qe);for(var n,r=0,o=e.length;r1)},removeAttr:function(e){return this.each(function(){de.removeAttr(this,e)})}}),de.extend({attr:function(e,t,n){var r,o,i=e.nodeType;if(3!==i&&8!==i&&2!==i)return"undefined"==typeof e.getAttribute?de.prop(e,t,n):(1===i&&de.isXMLDoc(e)||(o=de.attrHooks[t.toLowerCase()]||(de.expr.match.bool.test(t)?vt:void 0)),void 0!==n?null===n?void de.removeAttr(e,t):o&&"set"in o&&void 0!==(r=o.set(e,n,t))?r:(e.setAttribute(t,n+""),n):o&&"get"in o&&null!==(r=o.get(e,t))?r:(r=de.find.attr(e,t),null==r?void 0:r))},attrHooks:{type:{set:function(e,t){if(!pe.radioValue&&"radio"===t&&de.nodeName(e,"input")){var n=e.value;return e.setAttribute("type",t),n&&(e.value=n),t}}}},removeAttr:function(e,t){var n,r=0,o=t&&t.match(qe);if(o&&1===e.nodeType)for(;n=o[r++];)e.removeAttribute(n)}}),vt={set:function(e,t,n){return t===!1?de.removeAttr(e,n):e.setAttribute(n,n),n}},de.each(de.expr.match.bool.source.match(/\w+/g),function(e,t){var n=yt[t]||de.find.attr;yt[t]=function(e,t,r){var o,i,s=t.toLowerCase();return r||(i=yt[s],yt[s]=o,o=null!=n(e,t,r)?s:null,yt[s]=i),o}});var xt=/^(?:input|select|textarea|button)$/i,bt=/^(?:a|area)$/i;de.fn.extend({prop:function(e,t){return Le(this,de.prop,e,t,arguments.length>1)},removeProp:function(e){return this.each(function(){delete this[de.propFix[e]||e]})}}),de.extend({prop:function(e,t,n){var r,o,i=e.nodeType;if(3!==i&&8!==i&&2!==i)return 1===i&&de.isXMLDoc(e)||(t=de.propFix[t]||t,o=de.propHooks[t]),void 0!==n?o&&"set"in o&&void 0!==(r=o.set(e,n,t))?r:e[t]=n:o&&"get"in o&&null!==(r=o.get(e,t))?r:e[t]},propHooks:{tabIndex:{get:function(e){var t=de.find.attr(e,"tabindex");return t?parseInt(t,10):xt.test(e.nodeName)||bt.test(e.nodeName)&&e.href?0:-1}}},propFix:{for:"htmlFor",class:"className"}}),pe.optSelected||(de.propHooks.selected={get:function(e){var t=e.parentNode;return t&&t.parentNode&&t.parentNode.selectedIndex,null},set:function(e){var t=e.parentNode;t&&(t.selectedIndex,t.parentNode&&t.parentNode.selectedIndex)}}),de.each(["tabIndex","readOnly","maxLength","cellSpacing","cellPadding","rowSpan","colSpan","useMap","frameBorder","contentEditable"],function(){de.propFix[this.toLowerCase()]=this}),de.fn.extend({addClass:function(e){var t,n,r,o,i,s,a,u=0;if(de.isFunction(e))return this.each(function(t){de(this).addClass(e.call(this,t,X(this)))});if("string"==typeof e&&e)for(t=e.match(qe)||[];n=this[u++];)if(o=X(n),r=1===n.nodeType&&" "+z(o)+" "){for(s=0;i=t[s++];)r.indexOf(" "+i+" ")<0&&(r+=i+" ");a=z(r),o!==a&&n.setAttribute("class",a)}return this},removeClass:function(e){var t,n,r,o,i,s,a,u=0;if(de.isFunction(e))return this.each(function(t){de(this).removeClass(e.call(this,t,X(this)))});if(!arguments.length)return this.attr("class","");if("string"==typeof e&&e)for(t=e.match(qe)||[];n=this[u++];)if(o=X(n),r=1===n.nodeType&&" "+z(o)+" "){for(s=0;i=t[s++];)for(;r.indexOf(" "+i+" ")>-1;)r=r.replace(" "+i+" "," ");a=z(r),o!==a&&n.setAttribute("class",a)}return this},toggleClass:function(e,t){var n=typeof e;return"boolean"==typeof t&&"string"===n?t?this.addClass(e):this.removeClass(e):de.isFunction(e)?this.each(function(n){de(this).toggleClass(e.call(this,n,X(this),t),t)}):this.each(function(){var t,r,o,i;if("string"===n)for(r=0,o=de(this),i=e.match(qe)||[];t=i[r++];)o.hasClass(t)?o.removeClass(t):o.addClass(t);else void 0!==e&&"boolean"!==n||(t=X(this),t&&Fe.set(this,"__className__",t),this.setAttribute&&this.setAttribute("class",t||e===!1?"":Fe.get(this,"__className__")||""))})},hasClass:function(e){var t,n,r=0;for(t=" "+e+" ";n=this[r++];)if(1===n.nodeType&&(" "+z(X(n))+" ").indexOf(t)>-1)return!0;return!1}});var wt=/\r/g;de.fn.extend({val:function(e){var t,n,r,o=this[0];{if(arguments.length)return r=de.isFunction(e),this.each(function(n){var o;1===this.nodeType&&(o=r?e.call(this,n,de(this).val()):e,null==o?o="":"number"==typeof o?o+="":de.isArray(o)&&(o=de.map(o,function(e){return null==e?"":e+""})),t=de.valHooks[this.type]||de.valHooks[this.nodeName.toLowerCase()],t&&"set"in t&&void 0!==t.set(this,o,"value")||(this.value=o))});if(o)return t=de.valHooks[o.type]||de.valHooks[o.nodeName.toLowerCase()],t&&"get"in t&&void 0!==(n=t.get(o,"value"))?n:(n=o.value,"string"==typeof n?n.replace(wt,""):null==n?"":n)}}}),de.extend({valHooks:{option:{get:function(e){var t=de.find.attr(e,"value");return null!=t?t:z(de.text(e))}},select:{get:function(e){var t,n,r,o=e.options,i=e.selectedIndex,s="select-one"===e.type,a=s?null:[],u=s?i+1:o.length;for(r=i<0?u:s?i:0;r-1)&&(n=!0);return n||(e.selectedIndex=-1),i}}}}),de.each(["radio","checkbox"],function(){de.valHooks[this]={set:function(e,t){if(de.isArray(t))return e.checked=de.inArray(de(e).val(),t)>-1}},pe.checkOn||(de.valHooks[this].get=function(e){return null===e.getAttribute("value")?"on":e.value})});var Tt=/^(?:focusinfocus|focusoutblur)$/;de.extend(de.event,{trigger:function(t,n,r,o){var i,s,a,u,c,l,f,p=[r||te],h=ce.call(t,"type")?t.type:t,d=ce.call(t,"namespace")?t.namespace.split("."):[];if(s=a=r=r||te,3!==r.nodeType&&8!==r.nodeType&&!Tt.test(h+de.event.triggered)&&(h.indexOf(".")>-1&&(d=h.split("."),h=d.shift(),d.sort()),c=h.indexOf(":")<0&&"on"+h,t=t[de.expando]?t:new de.Event(h,"object"==typeof t&&t),t.isTrigger=o?2:3,t.namespace=d.join("."),t.rnamespace=t.namespace?new RegExp("(^|\\.)"+d.join("\\.(?:.*\\.|)")+"(\\.|$)"):null,t.result=void 0,t.target||(t.target=r),n=null==n?[t]:de.makeArray(n,[t]),f=de.event.special[h]||{},o||!f.trigger||f.trigger.apply(r,n)!==!1)){if(!o&&!f.noBubble&&!de.isWindow(r)){for(u=f.delegateType||h,Tt.test(u+h)||(s=s.parentNode);s;s=s.parentNode)p.push(s),a=s;a===(r.ownerDocument||te)&&p.push(a.defaultView||a.parentWindow||e)}for(i=0;(s=p[i++])&&!t.isPropagationStopped();)t.type=i>1?u:f.bindType||h,l=(Fe.get(s,"events")||{})[t.type]&&Fe.get(s,"handle"),l&&l.apply(s,n),l=c&&s[c],l&&l.apply&&He(s)&&(t.result=l.apply(s,n),t.result===!1&&t.preventDefault());return t.type=h,o||t.isDefaultPrevented()||f._default&&f._default.apply(p.pop(),n)!==!1||!He(r)||c&&de.isFunction(r[h])&&!de.isWindow(r)&&(a=r[c],a&&(r[c]=null),de.event.triggered=h,r[h](),de.event.triggered=void 0,a&&(r[c]=a)),t.result}},simulate:function(e,t,n){var r=de.extend(new de.Event,n,{type:e,isSimulated:!0});de.event.trigger(r,null,t)}}),de.fn.extend({trigger:function(e,t){return this.each(function(){de.event.trigger(e,t,this)})},triggerHandler:function(e,t){var n=this[0];if(n)return de.event.trigger(e,t,n,!0)}}),de.each("blur focus focusin focusout resize scroll click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup contextmenu".split(" "),function(e,t){de.fn[t]=function(e,n){return arguments.length>0?this.on(t,null,e,n):this.trigger(t)}}),de.fn.extend({hover:function(e,t){return this.mouseenter(e).mouseleave(t||e)}}),pe.focusin="onfocusin"in e,pe.focusin||de.each({focus:"focusin",blur:"focusout"},function(e,t){var n=function(e){de.event.simulate(t,e.target,de.event.fix(e))};de.event.special[t]={setup:function(){var r=this.ownerDocument||this,o=Fe.access(r,t);o||r.addEventListener(e,n,!0),Fe.access(r,t,(o||0)+1)},teardown:function(){var r=this.ownerDocument||this,o=Fe.access(r,t)-1;o?Fe.access(r,t,o):(r.removeEventListener(e,n,!0),Fe.remove(r,t))}}});var Ct=e.location,jt=de.now(),kt=/\?/;de.parseXML=function(t){var n;if(!t||"string"!=typeof t)return null;try{n=(new e.DOMParser).parseFromString(t,"text/xml")}catch(e){n=void 0}return n&&!n.getElementsByTagName("parsererror").length||de.error("Invalid XML: "+t),n};var Et=/\[\]$/,St=/\r?\n/g,Nt=/^(?:submit|button|image|reset|file)$/i,At=/^(?:input|select|textarea|keygen)/i;de.param=function(e,t){var n,r=[],o=function(e,t){var n=de.isFunction(t)?t():t;r[r.length]=encodeURIComponent(e)+"="+encodeURIComponent(null==n?"":n)};if(de.isArray(e)||e.jquery&&!de.isPlainObject(e))de.each(e,function(){o(this.name,this.value)});else for(n in e)V(n,e[n],t,o);return r.join("&")},de.fn.extend({serialize:function(){return de.param(this.serializeArray())},serializeArray:function(){return this.map(function(){var e=de.prop(this,"elements");return e?de.makeArray(e):this}).filter(function(){var e=this.type;return this.name&&!de(this).is(":disabled")&&At.test(this.nodeName)&&!Nt.test(e)&&(this.checked||!ze.test(e))}).map(function(e,t){var n=de(this).val();return null==n?null:de.isArray(n)?de.map(n,function(e){return{name:t.name,value:e.replace(St,"\r\n")}}):{name:t.name,value:n.replace(St,"\r\n")}}).get()}});var qt=/%20/g,Dt=/#.*$/,Ot=/([?&])_=[^&]*/,Lt=/^(.*?):[ \t]*([^\r\n]*)$/gm,Ht=/^(?:about|app|app-storage|.+-extension|file|res|widget):$/,Ft=/^(?:GET|HEAD)$/,Rt=/^\/\//,It={},Pt={},Mt="*/".concat("*"),$t=te.createElement("a");$t.href=Ct.href,de.extend({active:0,lastModified:{},etag:{},ajaxSettings:{url:Ct.href,type:"GET",isLocal:Ht.test(Ct.protocol),global:!0,processData:!0,async:!0,contentType:"application/x-www-form-urlencoded; charset=UTF-8",accepts:{"*":Mt,text:"text/plain",html:"text/html",xml:"application/xml, text/xml",json:"application/json, text/javascript"},contents:{xml:/\bxml\b/,html:/\bhtml/,json:/\bjson\b/},responseFields:{xml:"responseXML",text:"responseText",json:"responseJSON"},converters:{"* text":String,"text html":!0,"text json":JSON.parse,"text xml":de.parseXML},flatOptions:{url:!0,context:!0}},ajaxSetup:function(e,t){return t?Q(Q(e,de.ajaxSettings),t):Q(de.ajaxSettings,e)},ajaxPrefilter:G(It),ajaxTransport:G(Pt),ajax:function(t,n){function r(t,n,r,a){var c,p,h,b,w,T=n;l||(l=!0,u&&e.clearTimeout(u),o=void 0,s=a||"",C.readyState=t>0?4:0,c=t>=200&&t<300||304===t,r&&(b=J(d,C,r)),b=K(d,b,C,c),c?(d.ifModified&&(w=C.getResponseHeader("Last-Modified"),w&&(de.lastModified[i]=w),w=C.getResponseHeader("etag"),w&&(de.etag[i]=w)),204===t||"HEAD"===d.type?T="nocontent":304===t?T="notmodified":(T=b.state,p=b.data,h=b.error,c=!h)):(h=T,!t&&T||(T="error",t<0&&(t=0))),C.status=t,C.statusText=(n||T)+"",c?v.resolveWith(g,[p,T,C]):v.rejectWith(g,[C,T,h]),C.statusCode(x),x=void 0,f&&m.trigger(c?"ajaxSuccess":"ajaxError",[C,d,c?p:h]),y.fireWith(g,[C,T]),f&&(m.trigger("ajaxComplete",[C,d]),--de.active||de.event.trigger("ajaxStop")))}"object"==typeof t&&(n=t,t=void 0),n=n||{};var o,i,s,a,u,c,l,f,p,h,d=de.ajaxSetup({},n),g=d.context||d,m=d.context&&(g.nodeType||g.jquery)?de(g):de.event,v=de.Deferred(),y=de.Callbacks("once memory"),x=d.statusCode||{},b={},w={},T="canceled",C={readyState:0,getResponseHeader:function(e){var t;if(l){if(!a)for(a={};t=Lt.exec(s);)a[t[1].toLowerCase()]=t[2];t=a[e.toLowerCase()]}return null==t?null:t},getAllResponseHeaders:function(){return l?s:null},setRequestHeader:function(e,t){return null==l&&(e=w[e.toLowerCase()]=w[e.toLowerCase()]||e,b[e]=t),this},overrideMimeType:function(e){return null==l&&(d.mimeType=e),this},statusCode:function(e){var t;if(e)if(l)C.always(e[C.status]);else for(t in e)x[t]=[x[t],e[t]];return this},abort:function(e){var t=e||T;return o&&o.abort(t),r(0,t),this}};if(v.promise(C),d.url=((t||d.url||Ct.href)+"").replace(Rt,Ct.protocol+"//"),d.type=n.method||n.type||d.method||d.type,d.dataTypes=(d.dataType||"*").toLowerCase().match(qe)||[""],null==d.crossDomain){c=te.createElement("a");try{c.href=d.url,c.href=c.href,d.crossDomain=$t.protocol+"//"+$t.host!=c.protocol+"//"+c.host}catch(e){d.crossDomain=!0}}if(d.data&&d.processData&&"string"!=typeof d.data&&(d.data=de.param(d.data,d.traditional)),Y(It,d,n,C),l)return C;f=de.event&&d.global,f&&0===de.active++&&de.event.trigger("ajaxStart"),d.type=d.type.toUpperCase(),d.hasContent=!Ft.test(d.type),i=d.url.replace(Dt,""),d.hasContent?d.data&&d.processData&&0===(d.contentType||"").indexOf("application/x-www-form-urlencoded")&&(d.data=d.data.replace(qt,"+")):(h=d.url.slice(i.length),d.data&&(i+=(kt.test(i)?"&":"?")+d.data,delete d.data),d.cache===!1&&(i=i.replace(Ot,"$1"),h=(kt.test(i)?"&":"?")+"_="+jt++ +h),d.url=i+h),d.ifModified&&(de.lastModified[i]&&C.setRequestHeader("If-Modified-Since",de.lastModified[i]),de.etag[i]&&C.setRequestHeader("If-None-Match",de.etag[i])),(d.data&&d.hasContent&&d.contentType!==!1||n.contentType)&&C.setRequestHeader("Content-Type",d.contentType),C.setRequestHeader("Accept",d.dataTypes[0]&&d.accepts[d.dataTypes[0]]?d.accepts[d.dataTypes[0]]+("*"!==d.dataTypes[0]?", "+Mt+"; q=0.01":""):d.accepts["*"]);for(p in d.headers)C.setRequestHeader(p,d.headers[p]);if(d.beforeSend&&(d.beforeSend.call(g,C,d)===!1||l))return C.abort();if(T="abort",y.add(d.complete),C.done(d.success),C.fail(d.error),o=Y(Pt,d,n,C)){if(C.readyState=1,f&&m.trigger("ajaxSend",[C,d]),l)return C;d.async&&d.timeout>0&&(u=e.setTimeout(function(){C.abort("timeout")},d.timeout));try{l=!1,o.send(b,r)}catch(e){if(l)throw e;r(-1,e)}}else r(-1,"No Transport");return C},getJSON:function(e,t,n){return de.get(e,t,n,"json")},getScript:function(e,t){return de.get(e,void 0,t,"script")}}),de.each(["get","post"],function(e,t){de[t]=function(e,n,r,o){return de.isFunction(n)&&(o=o||r,r=n,n=void 0),de.ajax(de.extend({url:e,type:t,dataType:o,data:n,success:r},de.isPlainObject(e)&&e))}}),de._evalUrl=function(e){return de.ajax({url:e,type:"GET",dataType:"script",cache:!0,async:!1,global:!1,throws:!0})},de.fn.extend({wrapAll:function(e){var t;return this[0]&&(de.isFunction(e)&&(e=e.call(this[0])),t=de(e,this[0].ownerDocument).eq(0).clone(!0),this[0].parentNode&&t.insertBefore(this[0]),t.map(function(){for(var e=this;e.firstElementChild;)e=e.firstElementChild;return e}).append(this)),this},wrapInner:function(e){return de.isFunction(e)?this.each(function(t){de(this).wrapInner(e.call(this,t))}):this.each(function(){var t=de(this),n=t.contents();n.length?n.wrapAll(e):t.append(e)})},wrap:function(e){var t=de.isFunction(e);return this.each(function(n){de(this).wrapAll(t?e.call(this,n):e)})},unwrap:function(e){return this.parent(e).not("body").each(function(){de(this).replaceWith(this.childNodes)}),this}}),de.expr.pseudos.hidden=function(e){return!de.expr.pseudos.visible(e)},de.expr.pseudos.visible=function(e){return!!(e.offsetWidth||e.offsetHeight||e.getClientRects().length)},de.ajaxSettings.xhr=function(){try{return new e.XMLHttpRequest}catch(e){}};var Wt={0:200,1223:204},Bt=de.ajaxSettings.xhr();pe.cors=!!Bt&&"withCredentials"in Bt,pe.ajax=Bt=!!Bt,de.ajaxTransport(function(t){var n,r;if(pe.cors||Bt&&!t.crossDomain)return{send:function(o,i){var s,a=t.xhr();if(a.open(t.type,t.url,t.async,t.username,t.password),t.xhrFields)for(s in t.xhrFields)a[s]=t.xhrFields[s];t.mimeType&&a.overrideMimeType&&a.overrideMimeType(t.mimeType),t.crossDomain||o["X-Requested-With"]||(o["X-Requested-With"]="XMLHttpRequest");for(s in o)a.setRequestHeader(s,o[s]);n=function(e){return function(){n&&(n=r=a.onload=a.onerror=a.onabort=a.onreadystatechange=null,"abort"===e?a.abort():"error"===e?"number"!=typeof a.status?i(0,"error"):i(a.status,a.statusText):i(Wt[a.status]||a.status,a.statusText,"text"!==(a.responseType||"text")||"string"!=typeof a.responseText?{binary:a.response}:{text:a.responseText},a.getAllResponseHeaders()))}},a.onload=n(),r=a.onerror=n("error"),void 0!==a.onabort?a.onabort=r:a.onreadystatechange=function(){4===a.readyState&&e.setTimeout(function(){n&&r()})},n=n("abort");try{a.send(t.hasContent&&t.data||null)}catch(e){if(n)throw e}},abort:function(){n&&n()}}}),de.ajaxPrefilter(function(e){e.crossDomain&&(e.contents.script=!1)}),de.ajaxSetup({accepts:{script:"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript"},contents:{script:/\b(?:java|ecma)script\b/},converters:{"text script":function(e){return de.globalEval(e),e}}}),de.ajaxPrefilter("script",function(e){void 0===e.cache&&(e.cache=!1),e.crossDomain&&(e.type="GET")}),de.ajaxTransport("script",function(e){if(e.crossDomain){var t,n;return{send:function(r,o){t=de(" + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/_book/package-lock.json b/docs/_book/package-lock.json new file mode 100644 index 000000000..f8139f244 --- /dev/null +++ b/docs/_book/package-lock.json @@ -0,0 +1,5850 @@ +{ + "name": "fineuidocs", + "version": "1.0.0", + "lockfileVersion": 1, + "dependencies": { + "abab": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/abab/-/abab-1.0.3.tgz", + "integrity": "sha1-uB3l9ydOxOdW15fNg08wNkJyTl0=", + "dev": true, + "optional": true + }, + "acorn": { + "version": "2.7.0", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-2.7.0.tgz", + "integrity": "sha1-q259nYhqrKiwhbwzEreaGYQz8Oc=", + "dev": true + }, + "acorn-globals": { + "version": "1.0.9", + "resolved": "https://registry.npmjs.org/acorn-globals/-/acorn-globals-1.0.9.tgz", + "integrity": "sha1-VbtemGkVB7dFedBRNBMhfDgMVM8=", + "dev": true, + "optional": true, + "requires": { + "acorn": "2.7.0" + } + }, + "ajv": { + "version": "4.11.8", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-4.11.8.tgz", + "integrity": "sha1-gv+wKynmYq5TvcIK8VlHcGc5xTY=", + "dev": true, + "optional": true, + "requires": { + "co": "4.6.0", + "json-stable-stringify": "1.0.1" + } + }, + "amdefine": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/amdefine/-/amdefine-1.0.1.tgz", + "integrity": "sha1-SlKCrBZHKek2Gbz9OtFR+BfOkfU=", + "dev": true, + "optional": true + }, + "array-union": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/array-union/-/array-union-1.0.2.tgz", + "integrity": "sha1-mjRBDk9OPaI96jdb5b5w8kd47Dk=", + "dev": true, + "requires": { + "array-uniq": "1.0.3" + } + }, + "array-uniq": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/array-uniq/-/array-uniq-1.0.3.tgz", + "integrity": "sha1-r2rId6Jcx/dOBYiUdThY39sk/bY=", + "dev": true + }, + "asn1": { + "version": "0.2.3", + "resolved": "https://registry.npmjs.org/asn1/-/asn1-0.2.3.tgz", + "integrity": "sha1-2sh4dxPJlmhJ/IGAd36+nB3fO4Y=", + "dev": true, + "optional": true + }, + "assert-plus": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-0.2.0.tgz", + "integrity": "sha1-104bh+ev/A24qttwIfP+SBAasjQ=", + "dev": true, + "optional": true + }, + "async": { + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/async/-/async-2.1.4.tgz", + "integrity": "sha1-LSFgx3iAMuTdbL4lAvH5osj2zeQ=", + "dev": true, + "requires": { + "lodash": "4.17.4" + } + }, + "asynckit": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", + "integrity": "sha1-x57Zf380y48robyXkLzDZkdLS3k=", + "dev": true, + "optional": true + }, + "aws-sign2": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.6.0.tgz", + "integrity": "sha1-FDQt0428yU0OW4fXY81jYSwOeU8=", + "dev": true, + "optional": true + }, + "aws4": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/aws4/-/aws4-1.6.0.tgz", + "integrity": "sha1-g+9cqGCysy5KDe7e6MdxudtXRx4=", + "dev": true, + "optional": true + }, + "balanced-match": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz", + "integrity": "sha1-ibTRmasr7kneFk6gK4nORi1xt2c=", + "dev": true + }, + "base64url": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/base64url/-/base64url-2.0.0.tgz", + "integrity": "sha1-6sFuA+oUOO/5Qj1puqNiYu0fcLs=", + "dev": true + }, + "bash-color": { + "version": "0.0.4", + "resolved": "https://registry.npmjs.org/bash-color/-/bash-color-0.0.4.tgz", + "integrity": "sha1-6b6M4zVAytpIgXaMWb1jhlc26RM=", + "dev": true + }, + "bcrypt-pbkdf": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.1.tgz", + "integrity": "sha1-Y7xdy2EzG5K8Bf1SiVPDNGKgb40=", + "dev": true, + "optional": true, + "requires": { + "tweetnacl": "0.14.5" + } + }, + "boolbase": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz", + "integrity": "sha1-aN/1++YMUes3cl6p4+0xDcwed24=", + "dev": true + }, + "boom": { + "version": "2.10.1", + "resolved": "https://registry.npmjs.org/boom/-/boom-2.10.1.tgz", + "integrity": "sha1-OciRjO/1eZ+D+UkqhI9iWt0Mdm8=", + "dev": true, + "requires": { + "hoek": "2.16.3" + } + }, + "brace-expansion": { + "version": "1.1.8", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.8.tgz", + "integrity": "sha1-wHshHHyVLsH479Uad+8NHTmQopI=", + "dev": true, + "requires": { + "balanced-match": "1.0.0", + "concat-map": "0.0.1" + } + }, + "caseless": { + "version": "0.12.0", + "resolved": "https://registry.npmjs.org/caseless/-/caseless-0.12.0.tgz", + "integrity": "sha1-G2gcIf+EAzyCZUMJBolCDRhxUdw=", + "dev": true, + "optional": true + }, + "cheerio": { + "version": "0.20.0", + "resolved": "https://registry.npmjs.org/cheerio/-/cheerio-0.20.0.tgz", + "integrity": "sha1-XHEPK6uVZTJyhCugHG6mGzVF7DU=", + "dev": true, + "requires": { + "css-select": "1.2.0", + "dom-serializer": "0.1.0", + "entities": "1.1.1", + "htmlparser2": "3.8.3", + "jsdom": "7.2.2", + "lodash": "4.17.4" + } + }, + "co": { + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/co/-/co-4.6.0.tgz", + "integrity": "sha1-bqa989hTrlTMuOR7+gvz+QMfsYQ=", + "dev": true, + "optional": true + }, + "combined-stream": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.5.tgz", + "integrity": "sha1-k4NwpXtKUd6ix3wV1cX9+JUWQAk=", + "dev": true, + "requires": { + "delayed-stream": "1.0.0" + } + }, + "commander": { + "version": "2.9.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.9.0.tgz", + "integrity": "sha1-nJkJQXbhIkDLItbFFGCYQA/g99Q=", + "dev": true, + "requires": { + "graceful-readlink": "1.0.1" + } + }, + "concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=", + "dev": true + }, + "core-util-is": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", + "integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=", + "dev": true + }, + "cryptiles": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/cryptiles/-/cryptiles-2.0.5.tgz", + "integrity": "sha1-O9/s3GCBR8HGcgL6KR59ylnqo7g=", + "dev": true, + "optional": true, + "requires": { + "boom": "2.10.1" + } + }, + "css-select": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/css-select/-/css-select-1.2.0.tgz", + "integrity": "sha1-KzoRBTnFNV8c2NMUYj6HCxIeyFg=", + "dev": true, + "requires": { + "boolbase": "1.0.0", + "css-what": "2.1.0", + "domutils": "1.5.1", + "nth-check": "1.0.1" + } + }, + "css-what": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/css-what/-/css-what-2.1.0.tgz", + "integrity": "sha1-lGfQMsOM+u+58teVASUwYvh/ob0=", + "dev": true + }, + "cssom": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/cssom/-/cssom-0.3.2.tgz", + "integrity": "sha1-uANhcMefB6kP8vFuIihAJ6JDhIs=", + "dev": true + }, + "cssstyle": { + "version": "0.2.37", + "resolved": "https://registry.npmjs.org/cssstyle/-/cssstyle-0.2.37.tgz", + "integrity": "sha1-VBCXI0yyUTyDzu06zdwn/yeYfVQ=", + "dev": true, + "optional": true, + "requires": { + "cssom": "0.3.2" + } + }, + "dashdash": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/dashdash/-/dashdash-1.14.1.tgz", + "integrity": "sha1-hTz6D3y+L+1d4gMmuN1YEDX24vA=", + "dev": true, + "optional": true, + "requires": { + "assert-plus": "1.0.0" + }, + "dependencies": { + "assert-plus": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz", + "integrity": "sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU=", + "dev": true, + "optional": true + } + } + }, + "deep-is": { + "version": "0.1.3", + "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.3.tgz", + "integrity": "sha1-s2nW+128E+7PUk+RsHD+7cNXzzQ=", + "dev": true, + "optional": true + }, + "delayed-stream": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", + "integrity": "sha1-3zrhmayt+31ECqrgsp4icrJOxhk=", + "dev": true + }, + "dom-serializer": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-0.1.0.tgz", + "integrity": "sha1-BzxpdUbOB4DOI75KKOKT5AvDDII=", + "dev": true, + "requires": { + "domelementtype": "1.1.3", + "entities": "1.1.1" + }, + "dependencies": { + "domelementtype": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-1.1.3.tgz", + "integrity": "sha1-vSh3PiZCiBrsUVRJJCmcXNgiGFs=", + "dev": true + } + } + }, + "domelementtype": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-1.3.0.tgz", + "integrity": "sha1-sXrtguirWeUt2cGbF1bg/BhyBMI=", + "dev": true + }, + "domhandler": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-2.3.0.tgz", + "integrity": "sha1-LeWaCCLVAn+r/28DLCsloqir5zg=", + "dev": true, + "requires": { + "domelementtype": "1.3.0" + } + }, + "domutils": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/domutils/-/domutils-1.5.1.tgz", + "integrity": "sha1-3NhIiib1Y9YQeeSMn3t+Mjc2gs8=", + "dev": true, + "requires": { + "dom-serializer": "0.1.0", + "domelementtype": "1.3.0" + } + }, + "ecc-jsbn": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz", + "integrity": "sha1-D8c6ntXw1Tw4GTOYUj735UN3dQU=", + "dev": true, + "optional": true, + "requires": { + "jsbn": "0.1.1" + } + }, + "entities": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/entities/-/entities-1.1.1.tgz", + "integrity": "sha1-blwtClYhtdra7O+AuQ7ftc13cvA=", + "dev": true + }, + "escodegen": { + "version": "1.8.1", + "resolved": "https://registry.npmjs.org/escodegen/-/escodegen-1.8.1.tgz", + "integrity": "sha1-WltTr0aTEQvrsIZ6o0MN07cKEBg=", + "dev": true, + "optional": true, + "requires": { + "esprima": "2.7.3", + "estraverse": "1.9.3", + "esutils": "2.0.2", + "optionator": "0.8.2", + "source-map": "0.2.0" + } + }, + "esprima": { + "version": "2.7.3", + "resolved": "https://registry.npmjs.org/esprima/-/esprima-2.7.3.tgz", + "integrity": "sha1-luO3DVd59q1JzQMmc9HDEnZ7pYE=", + "dev": true, + "optional": true + }, + "estraverse": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-1.9.3.tgz", + "integrity": "sha1-r2fy3JIlgkFZUJJgkaQAXSnJu0Q=", + "dev": true, + "optional": true + }, + "esutils": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.2.tgz", + "integrity": "sha1-Cr9PHKpbyx96nYrMbepPqqBLrJs=", + "dev": true, + "optional": true + }, + "extend": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.1.tgz", + "integrity": "sha1-p1Xqe8Gt/MWjHOfnYtuq3F5jZEQ=", + "dev": true, + "optional": true + }, + "extsprintf": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/extsprintf/-/extsprintf-1.3.0.tgz", + "integrity": "sha1-lpGEQOMEGnpBT4xS48V06zw+HgU=", + "dev": true + }, + "fast-levenshtein": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", + "integrity": "sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc=", + "dev": true, + "optional": true + }, + "forever-agent": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz", + "integrity": "sha1-+8cfDEGt6zf5bFd60e1C2P2sypE=", + "dev": true, + "optional": true + }, + "form-data": { + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-2.1.4.tgz", + "integrity": "sha1-M8GDrPGTJ27KqYFDpp6Uv+4XUNE=", + "dev": true, + "optional": true, + "requires": { + "asynckit": "0.4.0", + "combined-stream": "1.0.5", + "mime-types": "2.1.17" + } + }, + "fs-extra": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-3.0.1.tgz", + "integrity": "sha1-N5TzeMWLNC6n27sjCVEJxLO2IpE=", + "dev": true, + "requires": { + "graceful-fs": "4.1.11", + "jsonfile": "3.0.1", + "universalify": "0.1.1" + } + }, + "fs.realpath": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", + "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=", + "dev": true + }, + "getpass": { + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/getpass/-/getpass-0.1.7.tgz", + "integrity": "sha1-Xv+OPmhNVprkyysSgmBOi6YhSfo=", + "dev": true, + "optional": true, + "requires": { + "assert-plus": "1.0.0" + }, + "dependencies": { + "assert-plus": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz", + "integrity": "sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU=", + "dev": true, + "optional": true + } + } + }, + "gh-pages": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/gh-pages/-/gh-pages-1.0.0.tgz", + "integrity": "sha1-Skb0wlQ596K35oNVBNSknpSfBMo=", + "dev": true, + "requires": { + "async": "2.1.4", + "base64url": "2.0.0", + "commander": "2.9.0", + "fs-extra": "3.0.1", + "globby": "6.1.0", + "graceful-fs": "4.1.11", + "rimraf": "2.6.1" + } + }, + "gitbook-cli": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/gitbook-cli/-/gitbook-cli-2.3.2.tgz", + "integrity": "sha512-eyGtkY7jKHhmgpfuvgAP5fZcUob/FBz4Ld0aLRdEmiTrS1RklimN9epzPp75dd4MWpGhYvSbiwxnpyLiv1wh6A==", + "dev": true, + "requires": { + "bash-color": "0.0.4", + "commander": "2.11.0", + "fs-extra": "3.0.1", + "lodash": "4.17.4", + "npm": "5.1.0", + "npmi": "1.0.1", + "optimist": "0.6.1", + "q": "1.5.0", + "semver": "5.3.0", + "tmp": "0.0.31", + "user-home": "2.0.0" + }, + "dependencies": { + "commander": { + "version": "2.11.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.11.0.tgz", + "integrity": "sha512-b0553uYA5YAEGgyYIGYROzKQ7X5RAqedkfjiZxwi0kL1g3bOaBNNZfYkzt/CL0umgD5wc9Jec2FbB98CjkMRvQ==", + "dev": true + } + } + }, + "gitbook-plugin-expandable-chapters": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/gitbook-plugin-expandable-chapters/-/gitbook-plugin-expandable-chapters-0.2.0.tgz", + "integrity": "sha1-RdcIeuaQekH0gSjFT+ViJKnBraI=", + "dev": true + }, + "gitbook-plugin-jsfiddle": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/gitbook-plugin-jsfiddle/-/gitbook-plugin-jsfiddle-1.0.0.tgz", + "integrity": "sha1-deNd6EbvYrvS0Gb7YSzJniUgoq4=", + "dev": true + }, + "gitbook-plugin-search": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/gitbook-plugin-search/-/gitbook-plugin-search-2.2.1.tgz", + "integrity": "sha1-bSW1p3aZD6mP39+jfeMx944PaxM=", + "dev": true + }, + "gitbook-plugin-splitter": { + "version": "0.0.8", + "resolved": "https://registry.npmjs.org/gitbook-plugin-splitter/-/gitbook-plugin-splitter-0.0.8.tgz", + "integrity": "sha1-8rBRMGD8kma0awQYLk7KHUtx+vw=", + "dev": true + }, + "gitbook-plugin-theme-api": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/gitbook-plugin-theme-api/-/gitbook-plugin-theme-api-1.1.2.tgz", + "integrity": "sha1-jBRaS61JoSE8AlApC5vZtyrqiPw=", + "dev": true, + "requires": { + "cheerio": "0.20.0", + "gitbook-plugin-search": "2.2.1", + "lodash": "4.12.0", + "q": "1.4.1", + "q-plus": "0.0.8" + }, + "dependencies": { + "lodash": { + "version": "4.12.0", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.12.0.tgz", + "integrity": "sha1-K9bcRqBA9Z5obJcu0h2T3FkFMlg=", + "dev": true + }, + "q": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/q/-/q-1.4.1.tgz", + "integrity": "sha1-VXBbzZPF82c1MMLCy8DCs63cKG4=", + "dev": true + } + } + }, + "gitbook-plugin-toggle-chapters": { + "version": "0.0.3", + "resolved": "https://registry.npmjs.org/gitbook-plugin-toggle-chapters/-/gitbook-plugin-toggle-chapters-0.0.3.tgz", + "integrity": "sha1-bl9aphubLiIcOAzfbpKDIAFez7k=", + "dev": true + }, + "glob": { + "version": "7.1.2", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.2.tgz", + "integrity": "sha512-MJTUg1kjuLeQCJ+ccE4Vpa6kKVXkPYJ2mOCQyUuKLcLQsdrMCpBPUi8qVE6+YuaJkozeA9NusTAw3hLr8Xe5EQ==", + "dev": true, + "requires": { + "fs.realpath": "1.0.0", + "inflight": "1.0.6", + "inherits": "2.0.3", + "minimatch": "3.0.4", + "once": "1.4.0", + "path-is-absolute": "1.0.1" + } + }, + "globby": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/globby/-/globby-6.1.0.tgz", + "integrity": "sha1-9abXDoOV4hyFj7BInWTfAkJNUGw=", + "dev": true, + "requires": { + "array-union": "1.0.2", + "glob": "7.1.2", + "object-assign": "4.1.1", + "pify": "2.3.0", + "pinkie-promise": "2.0.1" + } + }, + "graceful-fs": { + "version": "4.1.11", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.1.11.tgz", + "integrity": "sha1-Dovf5NHduIVNZOBOp8AOKgJuVlg=", + "dev": true + }, + "graceful-readlink": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/graceful-readlink/-/graceful-readlink-1.0.1.tgz", + "integrity": "sha1-TK+tdrxi8C+gObL5Tpo906ORpyU=", + "dev": true + }, + "har-schema": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/har-schema/-/har-schema-1.0.5.tgz", + "integrity": "sha1-0mMTX0MwfALGAq/I/pWXDAFRNp4=", + "dev": true, + "optional": true + }, + "har-validator": { + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/har-validator/-/har-validator-4.2.1.tgz", + "integrity": "sha1-M0gdDxu/9gDdID11gSpqX7oALio=", + "dev": true, + "optional": true, + "requires": { + "ajv": "4.11.8", + "har-schema": "1.0.5" + } + }, + "hawk": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/hawk/-/hawk-3.1.3.tgz", + "integrity": "sha1-B4REvXwWQLD+VA0sm3PVlnjo4cQ=", + "dev": true, + "optional": true, + "requires": { + "boom": "2.10.1", + "cryptiles": "2.0.5", + "hoek": "2.16.3", + "sntp": "1.0.9" + } + }, + "hoek": { + "version": "2.16.3", + "resolved": "https://registry.npmjs.org/hoek/-/hoek-2.16.3.tgz", + "integrity": "sha1-ILt0A9POo5jpHcRxCo/xuCdKJe0=", + "dev": true + }, + "htmlparser2": { + "version": "3.8.3", + "resolved": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-3.8.3.tgz", + "integrity": "sha1-mWwosZFRaovoZQGn15dX5ccMEGg=", + "dev": true, + "requires": { + "domelementtype": "1.3.0", + "domhandler": "2.3.0", + "domutils": "1.5.1", + "entities": "1.0.0", + "readable-stream": "1.1.14" + }, + "dependencies": { + "entities": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/entities/-/entities-1.0.0.tgz", + "integrity": "sha1-sph6o4ITR/zeZCsk/fyeT7cSvyY=", + "dev": true + } + } + }, + "http-signature": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/http-signature/-/http-signature-1.1.1.tgz", + "integrity": "sha1-33LiZwZs0Kxn+3at+OE0qPvPkb8=", + "dev": true, + "optional": true, + "requires": { + "assert-plus": "0.2.0", + "jsprim": "1.4.1", + "sshpk": "1.13.1" + } + }, + "inflight": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", + "integrity": "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=", + "dev": true, + "requires": { + "once": "1.4.0", + "wrappy": "1.0.2" + } + }, + "inherits": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", + "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=", + "dev": true + }, + "is-typedarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz", + "integrity": "sha1-5HnICFjfDBsR3dppQPlgEfzaSpo=", + "dev": true, + "optional": true + }, + "isarray": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz", + "integrity": "sha1-ihis/Kmo9Bd+Cav8YDiTmwXR7t8=", + "dev": true + }, + "isstream": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz", + "integrity": "sha1-R+Y/evVa+m+S4VAOaQ64uFKcCZo=", + "dev": true, + "optional": true + }, + "jsbn": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz", + "integrity": "sha1-peZUwuWi3rXyAdls77yoDA7y9RM=", + "dev": true, + "optional": true + }, + "jsdom": { + "version": "7.2.2", + "resolved": "https://registry.npmjs.org/jsdom/-/jsdom-7.2.2.tgz", + "integrity": "sha1-QLQCdwwr2iNGkJa+6Rq2deOx/G4=", + "dev": true, + "optional": true, + "requires": { + "abab": "1.0.3", + "acorn": "2.7.0", + "acorn-globals": "1.0.9", + "cssom": "0.3.2", + "cssstyle": "0.2.37", + "escodegen": "1.8.1", + "nwmatcher": "1.4.1", + "parse5": "1.5.1", + "request": "2.81.0", + "sax": "1.2.4", + "symbol-tree": "3.2.2", + "tough-cookie": "2.3.2", + "webidl-conversions": "2.0.1", + "whatwg-url-compat": "0.6.5", + "xml-name-validator": "2.0.1" + } + }, + "json-schema": { + "version": "0.2.3", + "resolved": "https://registry.npmjs.org/json-schema/-/json-schema-0.2.3.tgz", + "integrity": "sha1-tIDIkuWaLwWVTOcnvT8qTogvnhM=", + "dev": true, + "optional": true + }, + "json-stable-stringify": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz", + "integrity": "sha1-mnWdOcXy/1A/1TAGRu1EX4jE+a8=", + "dev": true, + "optional": true, + "requires": { + "jsonify": "0.0.0" + } + }, + "json-stringify-safe": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz", + "integrity": "sha1-Epai1Y/UXxmg9s4B1lcB4sc1tus=", + "dev": true, + "optional": true + }, + "jsonfile": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-3.0.1.tgz", + "integrity": "sha1-pezG9l9T9mLEQVx2daAzHQmS7GY=", + "dev": true, + "requires": { + "graceful-fs": "4.1.11" + } + }, + "jsonify": { + "version": "0.0.0", + "resolved": "https://registry.npmjs.org/jsonify/-/jsonify-0.0.0.tgz", + "integrity": "sha1-LHS27kHZPKUbe1qu6PUDYx0lKnM=", + "dev": true, + "optional": true + }, + "jsprim": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/jsprim/-/jsprim-1.4.1.tgz", + "integrity": "sha1-MT5mvB5cwG5Di8G3SZwuXFastqI=", + "dev": true, + "optional": true, + "requires": { + "assert-plus": "1.0.0", + "extsprintf": "1.3.0", + "json-schema": "0.2.3", + "verror": "1.10.0" + }, + "dependencies": { + "assert-plus": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz", + "integrity": "sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU=", + "dev": true, + "optional": true + } + } + }, + "levn": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/levn/-/levn-0.3.0.tgz", + "integrity": "sha1-OwmSTt+fCDwEkP3UwLxEIeBHZO4=", + "dev": true, + "optional": true, + "requires": { + "prelude-ls": "1.1.2", + "type-check": "0.3.2" + } + }, + "lodash": { + "version": "4.17.4", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.4.tgz", + "integrity": "sha1-eCA6TRwyiuHYbcpkYONptX9AVa4=", + "dev": true + }, + "mime-db": { + "version": "1.30.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.30.0.tgz", + "integrity": "sha1-dMZD2i3Z1qRTmZY0ZbJtXKfXHwE=", + "dev": true + }, + "mime-types": { + "version": "2.1.17", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.17.tgz", + "integrity": "sha1-Cdejk/A+mVp5+K+Fe3Cp4KsWVXo=", + "dev": true, + "requires": { + "mime-db": "1.30.0" + } + }, + "minimatch": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz", + "integrity": "sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==", + "dev": true, + "requires": { + "brace-expansion": "1.1.8" + } + }, + "minimist": { + "version": "0.0.10", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-0.0.10.tgz", + "integrity": "sha1-3j+YVD2/lggr5IrRoMfNqDYwHc8=", + "dev": true + }, + "npm": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/npm/-/npm-5.1.0.tgz", + "integrity": "sha512-pt5ClxEmY/dLpb60SmGQQBKi3nB6Ljx1FXmpoCUdAULlGqGVn2uCyXxPCWFbcuHGthT7qGiaGa1wOfs/UjGYMw==", + "dev": true, + "requires": { + "abbrev": "1.1.0", + "ansi-regex": "3.0.0", + "ansicolors": "0.3.2", + "ansistyles": "0.1.3", + "aproba": "1.1.2", + "archy": "1.0.0", + "bluebird": "3.5.0", + "cacache": "9.2.9", + "call-limit": "1.1.0", + "chownr": "1.0.1", + "cmd-shim": "2.0.2", + "columnify": "1.5.4", + "config-chain": "1.1.11", + "debuglog": "1.0.1", + "detect-indent": "5.0.0", + "dezalgo": "1.0.3", + "editor": "1.0.0", + "fs-vacuum": "1.2.10", + "fs-write-stream-atomic": "1.0.10", + "fstream": "1.0.11", + "fstream-npm": "1.2.1", + "glob": "7.1.2", + "graceful-fs": "4.1.11", + "has-unicode": "2.0.1", + "hosted-git-info": "2.5.0", + "iferr": "0.1.5", + "imurmurhash": "0.1.4", + "inflight": "1.0.6", + "inherits": "2.0.3", + "ini": "1.3.4", + "init-package-json": "1.10.1", + "JSONStream": "1.3.1", + "lazy-property": "1.0.0", + "lockfile": "1.0.3", + "lodash._baseindexof": "3.1.0", + "lodash._baseuniq": "4.6.0", + "lodash._bindcallback": "3.0.1", + "lodash._cacheindexof": "3.0.2", + "lodash._createcache": "3.1.2", + "lodash._getnative": "3.9.1", + "lodash.clonedeep": "4.5.0", + "lodash.restparam": "3.6.1", + "lodash.union": "4.6.0", + "lodash.uniq": "4.5.0", + "lodash.without": "4.4.0", + "lru-cache": "4.1.1", + "mississippi": "1.3.0", + "mkdirp": "0.5.1", + "move-concurrently": "1.0.1", + "node-gyp": "3.6.2", + "nopt": "4.0.1", + "normalize-package-data": "2.4.0", + "npm-cache-filename": "1.0.2", + "npm-install-checks": "3.0.0", + "npm-package-arg": "5.1.2", + "npm-registry-client": "8.4.0", + "npm-user-validate": "1.0.0", + "npmlog": "4.1.2", + "once": "1.4.0", + "opener": "1.4.3", + "osenv": "0.1.4", + "pacote": "2.7.38", + "path-is-inside": "1.0.2", + "promise-inflight": "1.0.1", + "read": "1.0.7", + "read-cmd-shim": "1.0.1", + "read-installed": "4.0.3", + "read-package-json": "2.0.9", + "read-package-tree": "5.1.6", + "readable-stream": "2.3.2", + "readdir-scoped-modules": "1.0.2", + "request": "2.81.0", + "retry": "0.10.1", + "rimraf": "2.6.1", + "safe-buffer": "5.1.1", + "semver": "5.3.0", + "sha": "2.0.1", + "slide": "1.1.6", + "sorted-object": "2.0.1", + "sorted-union-stream": "2.1.3", + "ssri": "4.1.6", + "strip-ansi": "4.0.0", + "tar": "2.2.1", + "text-table": "0.2.0", + "uid-number": "0.0.6", + "umask": "1.1.0", + "unique-filename": "1.1.0", + "unpipe": "1.0.0", + "update-notifier": "2.2.0", + "uuid": "3.1.0", + "validate-npm-package-license": "3.0.1", + "validate-npm-package-name": "3.0.0", + "which": "1.2.14", + "worker-farm": "1.3.1", + "wrappy": "1.0.2", + "write-file-atomic": "2.1.0" + }, + "dependencies": { + "abbrev": { + "version": "1.1.0", + "bundled": true, + "dev": true + }, + "ansi-regex": { + "version": "3.0.0", + "bundled": true, + "dev": true + }, + "ansicolors": { + "version": "0.3.2", + "bundled": true, + "dev": true + }, + "ansistyles": { + "version": "0.1.3", + "bundled": true, + "dev": true + }, + "aproba": { + "version": "1.1.2", + "bundled": true, + "dev": true + }, + "archy": { + "version": "1.0.0", + "bundled": true, + "dev": true + }, + "bluebird": { + "version": "3.5.0", + "bundled": true, + "dev": true + }, + "cacache": { + "version": "9.2.9", + "bundled": true, + "dev": true, + "requires": { + "bluebird": "3.5.0", + "chownr": "1.0.1", + "glob": "7.1.2", + "graceful-fs": "4.1.11", + "lru-cache": "4.1.1", + "mississippi": "1.3.0", + "mkdirp": "0.5.1", + "move-concurrently": "1.0.1", + "promise-inflight": "1.0.1", + "rimraf": "2.6.1", + "ssri": "4.1.6", + "unique-filename": "1.1.0", + "y18n": "3.2.1" + }, + "dependencies": { + "lru-cache": { + "version": "4.1.1", + "bundled": true, + "dev": true, + "requires": { + "pseudomap": "1.0.2", + "yallist": "2.1.2" + }, + "dependencies": { + "pseudomap": { + "version": "1.0.2", + "bundled": true, + "dev": true + }, + "yallist": { + "version": "2.1.2", + "bundled": true, + "dev": true + } + } + }, + "y18n": { + "version": "3.2.1", + "bundled": true, + "dev": true + } + } + }, + "call-limit": { + "version": "1.1.0", + "bundled": true, + "dev": true + }, + "chownr": { + "version": "1.0.1", + "bundled": true, + "dev": true + }, + "cmd-shim": { + "version": "2.0.2", + "bundled": true, + "dev": true, + "requires": { + "graceful-fs": "4.1.11", + "mkdirp": "0.5.1" + } + }, + "columnify": { + "version": "1.5.4", + "bundled": true, + "dev": true, + "requires": { + "strip-ansi": "3.0.1", + "wcwidth": "1.0.1" + }, + "dependencies": { + "strip-ansi": { + "version": "3.0.1", + "bundled": true, + "dev": true, + "requires": { + "ansi-regex": "2.1.1" + }, + "dependencies": { + "ansi-regex": { + "version": "2.1.1", + "bundled": true, + "dev": true + } + } + }, + "wcwidth": { + "version": "1.0.1", + "bundled": true, + "dev": true, + "requires": { + "defaults": "1.0.3" + }, + "dependencies": { + "defaults": { + "version": "1.0.3", + "bundled": true, + "dev": true, + "requires": { + "clone": "1.0.2" + }, + "dependencies": { + "clone": { + "version": "1.0.2", + "bundled": true, + "dev": true + } + } + } + } + } + } + }, + "config-chain": { + "version": "1.1.11", + "bundled": true, + "dev": true, + "requires": { + "ini": "1.3.4", + "proto-list": "1.2.4" + }, + "dependencies": { + "proto-list": { + "version": "1.2.4", + "bundled": true, + "dev": true + } + } + }, + "debuglog": { + "version": "1.0.1", + "bundled": true, + "dev": true + }, + "detect-indent": { + "version": "5.0.0", + "bundled": true, + "dev": true + }, + "dezalgo": { + "version": "1.0.3", + "bundled": true, + "dev": true, + "requires": { + "asap": "2.0.5", + "wrappy": "1.0.2" + }, + "dependencies": { + "asap": { + "version": "2.0.5", + "bundled": true, + "dev": true + } + } + }, + "editor": { + "version": "1.0.0", + "bundled": true, + "dev": true + }, + "fs-vacuum": { + "version": "1.2.10", + "bundled": true, + "dev": true, + "requires": { + "graceful-fs": "4.1.11", + "path-is-inside": "1.0.2", + "rimraf": "2.6.1" + } + }, + "fs-write-stream-atomic": { + "version": "1.0.10", + "bundled": true, + "dev": true, + "requires": { + "graceful-fs": "4.1.11", + "iferr": "0.1.5", + "imurmurhash": "0.1.4", + "readable-stream": "2.3.2" + } + }, + "fstream": { + "version": "1.0.11", + "bundled": true, + "dev": true, + "requires": { + "graceful-fs": "4.1.11", + "inherits": "2.0.3", + "mkdirp": "0.5.1", + "rimraf": "2.6.1" + } + }, + "fstream-npm": { + "version": "1.2.1", + "bundled": true, + "dev": true, + "requires": { + "fstream-ignore": "1.0.5", + "inherits": "2.0.3" + }, + "dependencies": { + "fstream-ignore": { + "version": "1.0.5", + "bundled": true, + "dev": true, + "requires": { + "fstream": "1.0.11", + "inherits": "2.0.3", + "minimatch": "3.0.4" + }, + "dependencies": { + "minimatch": { + "version": "3.0.4", + "bundled": true, + "dev": true, + "requires": { + "brace-expansion": "1.1.8" + }, + "dependencies": { + "brace-expansion": { + "version": "1.1.8", + "bundled": true, + "dev": true, + "requires": { + "balanced-match": "1.0.0", + "concat-map": "0.0.1" + }, + "dependencies": { + "balanced-match": { + "version": "1.0.0", + "bundled": true, + "dev": true + }, + "concat-map": { + "version": "0.0.1", + "bundled": true, + "dev": true + } + } + } + } + } + } + } + } + }, + "glob": { + "version": "7.1.2", + "bundled": true, + "dev": true, + "requires": { + "fs.realpath": "1.0.0", + "inflight": "1.0.6", + "inherits": "2.0.3", + "minimatch": "3.0.4", + "once": "1.4.0", + "path-is-absolute": "1.0.1" + }, + "dependencies": { + "fs.realpath": { + "version": "1.0.0", + "bundled": true, + "dev": true + }, + "minimatch": { + "version": "3.0.4", + "bundled": true, + "dev": true, + "requires": { + "brace-expansion": "1.1.8" + }, + "dependencies": { + "brace-expansion": { + "version": "1.1.8", + "bundled": true, + "dev": true, + "requires": { + "balanced-match": "1.0.0", + "concat-map": "0.0.1" + }, + "dependencies": { + "balanced-match": { + "version": "1.0.0", + "bundled": true, + "dev": true + }, + "concat-map": { + "version": "0.0.1", + "bundled": true, + "dev": true + } + } + } + } + }, + "path-is-absolute": { + "version": "1.0.1", + "bundled": true, + "dev": true + } + } + }, + "graceful-fs": { + "version": "4.1.11", + "bundled": true, + "dev": true + }, + "has-unicode": { + "version": "2.0.1", + "bundled": true, + "dev": true + }, + "hosted-git-info": { + "version": "2.5.0", + "bundled": true, + "dev": true + }, + "iferr": { + "version": "0.1.5", + "bundled": true, + "dev": true + }, + "imurmurhash": { + "version": "0.1.4", + "bundled": true, + "dev": true + }, + "inflight": { + "version": "1.0.6", + "bundled": true, + "dev": true, + "requires": { + "once": "1.4.0", + "wrappy": "1.0.2" + } + }, + "inherits": { + "version": "2.0.3", + "bundled": true, + "dev": true + }, + "ini": { + "version": "1.3.4", + "bundled": true, + "dev": true + }, + "init-package-json": { + "version": "1.10.1", + "bundled": true, + "dev": true, + "requires": { + "glob": "7.1.2", + "npm-package-arg": "5.1.2", + "promzard": "0.3.0", + "read": "1.0.7", + "read-package-json": "2.0.9", + "semver": "5.3.0", + "validate-npm-package-license": "3.0.1", + "validate-npm-package-name": "3.0.0" + }, + "dependencies": { + "promzard": { + "version": "0.3.0", + "bundled": true, + "dev": true, + "requires": { + "read": "1.0.7" + } + } + } + }, + "JSONStream": { + "version": "1.3.1", + "bundled": true, + "dev": true, + "requires": { + "jsonparse": "1.3.1", + "through": "2.3.8" + }, + "dependencies": { + "jsonparse": { + "version": "1.3.1", + "bundled": true, + "dev": true + }, + "through": { + "version": "2.3.8", + "bundled": true, + "dev": true + } + } + }, + "lazy-property": { + "version": "1.0.0", + "bundled": true, + "dev": true + }, + "lockfile": { + "version": "1.0.3", + "bundled": true, + "dev": true + }, + "lodash._baseindexof": { + "version": "3.1.0", + "bundled": true, + "dev": true + }, + "lodash._baseuniq": { + "version": "4.6.0", + "bundled": true, + "dev": true, + "requires": { + "lodash._createset": "4.0.3", + "lodash._root": "3.0.1" + }, + "dependencies": { + "lodash._createset": { + "version": "4.0.3", + "bundled": true, + "dev": true + }, + "lodash._root": { + "version": "3.0.1", + "bundled": true, + "dev": true + } + } + }, + "lodash._bindcallback": { + "version": "3.0.1", + "bundled": true, + "dev": true + }, + "lodash._cacheindexof": { + "version": "3.0.2", + "bundled": true, + "dev": true + }, + "lodash._createcache": { + "version": "3.1.2", + "bundled": true, + "dev": true, + "requires": { + "lodash._getnative": "3.9.1" + } + }, + "lodash._getnative": { + "version": "3.9.1", + "bundled": true, + "dev": true + }, + "lodash.clonedeep": { + "version": "4.5.0", + "bundled": true, + "dev": true + }, + "lodash.restparam": { + "version": "3.6.1", + "bundled": true, + "dev": true + }, + "lodash.union": { + "version": "4.6.0", + "bundled": true, + "dev": true + }, + "lodash.uniq": { + "version": "4.5.0", + "bundled": true, + "dev": true + }, + "lodash.without": { + "version": "4.4.0", + "bundled": true, + "dev": true + }, + "lru-cache": { + "version": "4.1.1", + "bundled": true, + "dev": true, + "requires": { + "pseudomap": "1.0.2", + "yallist": "2.1.2" + }, + "dependencies": { + "pseudomap": { + "version": "1.0.2", + "bundled": true, + "dev": true + }, + "yallist": { + "version": "2.1.2", + "bundled": true, + "dev": true + } + } + }, + "mississippi": { + "version": "1.3.0", + "bundled": true, + "dev": true, + "requires": { + "concat-stream": "1.6.0", + "duplexify": "3.5.0", + "end-of-stream": "1.4.0", + "flush-write-stream": "1.0.2", + "from2": "2.3.0", + "parallel-transform": "1.1.0", + "pump": "1.0.2", + "pumpify": "1.3.5", + "stream-each": "1.2.0", + "through2": "2.0.3" + }, + "dependencies": { + "concat-stream": { + "version": "1.6.0", + "bundled": true, + "dev": true, + "requires": { + "inherits": "2.0.3", + "readable-stream": "2.3.2", + "typedarray": "0.0.6" + }, + "dependencies": { + "typedarray": { + "version": "0.0.6", + "bundled": true, + "dev": true + } + } + }, + "duplexify": { + "version": "3.5.0", + "bundled": true, + "dev": true, + "requires": { + "end-of-stream": "1.0.0", + "inherits": "2.0.3", + "readable-stream": "2.3.2", + "stream-shift": "1.0.0" + }, + "dependencies": { + "end-of-stream": { + "version": "1.0.0", + "bundled": true, + "dev": true, + "requires": { + "once": "1.3.3" + }, + "dependencies": { + "once": { + "version": "1.3.3", + "bundled": true, + "dev": true, + "requires": { + "wrappy": "1.0.2" + } + } + } + }, + "stream-shift": { + "version": "1.0.0", + "bundled": true, + "dev": true + } + } + }, + "end-of-stream": { + "version": "1.4.0", + "bundled": true, + "dev": true, + "requires": { + "once": "1.4.0" + } + }, + "flush-write-stream": { + "version": "1.0.2", + "bundled": true, + "dev": true, + "requires": { + "inherits": "2.0.3", + "readable-stream": "2.3.2" + } + }, + "from2": { + "version": "2.3.0", + "bundled": true, + "dev": true, + "requires": { + "inherits": "2.0.3", + "readable-stream": "2.3.2" + } + }, + "parallel-transform": { + "version": "1.1.0", + "bundled": true, + "dev": true, + "requires": { + "cyclist": "0.2.2", + "inherits": "2.0.3", + "readable-stream": "2.3.2" + }, + "dependencies": { + "cyclist": { + "version": "0.2.2", + "bundled": true, + "dev": true + } + } + }, + "pump": { + "version": "1.0.2", + "bundled": true, + "dev": true, + "requires": { + "end-of-stream": "1.4.0", + "once": "1.4.0" + } + }, + "pumpify": { + "version": "1.3.5", + "bundled": true, + "dev": true, + "requires": { + "duplexify": "3.5.0", + "inherits": "2.0.3", + "pump": "1.0.2" + } + }, + "stream-each": { + "version": "1.2.0", + "bundled": true, + "dev": true, + "requires": { + "end-of-stream": "1.4.0", + "stream-shift": "1.0.0" + }, + "dependencies": { + "stream-shift": { + "version": "1.0.0", + "bundled": true, + "dev": true + } + } + }, + "through2": { + "version": "2.0.3", + "bundled": true, + "dev": true, + "requires": { + "readable-stream": "2.3.2", + "xtend": "4.0.1" + }, + "dependencies": { + "xtend": { + "version": "4.0.1", + "bundled": true, + "dev": true + } + } + } + } + }, + "mkdirp": { + "version": "0.5.1", + "bundled": true, + "dev": true, + "requires": { + "minimist": "0.0.8" + }, + "dependencies": { + "minimist": { + "version": "0.0.8", + "bundled": true, + "dev": true + } + } + }, + "move-concurrently": { + "version": "1.0.1", + "bundled": true, + "dev": true, + "requires": { + "aproba": "1.1.2", + "copy-concurrently": "1.0.3", + "fs-write-stream-atomic": "1.0.10", + "mkdirp": "0.5.1", + "rimraf": "2.6.1", + "run-queue": "1.0.3" + }, + "dependencies": { + "copy-concurrently": { + "version": "1.0.3", + "bundled": true, + "dev": true, + "requires": { + "aproba": "1.1.2", + "fs-write-stream-atomic": "1.0.10", + "iferr": "0.1.5", + "mkdirp": "0.5.1", + "rimraf": "2.6.1", + "run-queue": "1.0.3" + } + }, + "run-queue": { + "version": "1.0.3", + "bundled": true, + "dev": true, + "requires": { + "aproba": "1.1.2" + } + } + } + }, + "node-gyp": { + "version": "3.6.2", + "bundled": true, + "dev": true, + "requires": { + "fstream": "1.0.11", + "glob": "7.1.2", + "graceful-fs": "4.1.11", + "minimatch": "3.0.4", + "mkdirp": "0.5.1", + "nopt": "3.0.6", + "npmlog": "4.1.2", + "osenv": "0.1.4", + "request": "2.81.0", + "rimraf": "2.6.1", + "semver": "5.3.0", + "tar": "2.2.1", + "which": "1.2.14" + }, + "dependencies": { + "minimatch": { + "version": "3.0.4", + "bundled": true, + "dev": true, + "requires": { + "brace-expansion": "1.1.8" + }, + "dependencies": { + "brace-expansion": { + "version": "1.1.8", + "bundled": true, + "dev": true, + "requires": { + "balanced-match": "1.0.0", + "concat-map": "0.0.1" + }, + "dependencies": { + "balanced-match": { + "version": "1.0.0", + "bundled": true, + "dev": true + }, + "concat-map": { + "version": "0.0.1", + "bundled": true, + "dev": true + } + } + } + } + }, + "nopt": { + "version": "3.0.6", + "bundled": true, + "dev": true, + "requires": { + "abbrev": "1.1.0" + } + } + } + }, + "nopt": { + "version": "4.0.1", + "bundled": true, + "dev": true, + "requires": { + "abbrev": "1.1.0", + "osenv": "0.1.4" + } + }, + "normalize-package-data": { + "version": "2.4.0", + "bundled": true, + "dev": true, + "requires": { + "hosted-git-info": "2.5.0", + "is-builtin-module": "1.0.0", + "semver": "5.3.0", + "validate-npm-package-license": "3.0.1" + }, + "dependencies": { + "is-builtin-module": { + "version": "1.0.0", + "bundled": true, + "dev": true, + "requires": { + "builtin-modules": "1.1.1" + }, + "dependencies": { + "builtin-modules": { + "version": "1.1.1", + "bundled": true, + "dev": true + } + } + } + } + }, + "npm-cache-filename": { + "version": "1.0.2", + "bundled": true, + "dev": true + }, + "npm-install-checks": { + "version": "3.0.0", + "bundled": true, + "dev": true, + "requires": { + "semver": "5.3.0" + } + }, + "npm-package-arg": { + "version": "5.1.2", + "bundled": true, + "dev": true, + "requires": { + "hosted-git-info": "2.5.0", + "osenv": "0.1.4", + "semver": "5.3.0", + "validate-npm-package-name": "3.0.0" + } + }, + "npm-registry-client": { + "version": "8.4.0", + "bundled": true, + "dev": true, + "requires": { + "concat-stream": "1.6.0", + "graceful-fs": "4.1.11", + "normalize-package-data": "2.4.0", + "npm-package-arg": "5.1.2", + "npmlog": "4.1.2", + "once": "1.4.0", + "request": "2.81.0", + "retry": "0.10.1", + "semver": "5.3.0", + "slide": "1.1.6", + "ssri": "4.1.6" + }, + "dependencies": { + "concat-stream": { + "version": "1.6.0", + "bundled": true, + "dev": true, + "requires": { + "inherits": "2.0.3", + "readable-stream": "2.3.2", + "typedarray": "0.0.6" + }, + "dependencies": { + "typedarray": { + "version": "0.0.6", + "bundled": true, + "dev": true + } + } + } + } + }, + "npm-user-validate": { + "version": "1.0.0", + "bundled": true, + "dev": true + }, + "npmlog": { + "version": "4.1.2", + "bundled": true, + "dev": true, + "requires": { + "are-we-there-yet": "1.1.4", + "console-control-strings": "1.1.0", + "gauge": "2.7.4", + "set-blocking": "2.0.0" + }, + "dependencies": { + "are-we-there-yet": { + "version": "1.1.4", + "bundled": true, + "dev": true, + "requires": { + "delegates": "1.0.0", + "readable-stream": "2.3.2" + }, + "dependencies": { + "delegates": { + "version": "1.0.0", + "bundled": true, + "dev": true + } + } + }, + "console-control-strings": { + "version": "1.1.0", + "bundled": true, + "dev": true + }, + "gauge": { + "version": "2.7.4", + "bundled": true, + "dev": true, + "requires": { + "aproba": "1.1.2", + "console-control-strings": "1.1.0", + "has-unicode": "2.0.1", + "object-assign": "4.1.1", + "signal-exit": "3.0.2", + "string-width": "1.0.2", + "strip-ansi": "3.0.1", + "wide-align": "1.1.2" + }, + "dependencies": { + "object-assign": { + "version": "4.1.1", + "bundled": true, + "dev": true + }, + "signal-exit": { + "version": "3.0.2", + "bundled": true, + "dev": true + }, + "string-width": { + "version": "1.0.2", + "bundled": true, + "dev": true, + "requires": { + "code-point-at": "1.1.0", + "is-fullwidth-code-point": "1.0.0", + "strip-ansi": "3.0.1" + }, + "dependencies": { + "code-point-at": { + "version": "1.1.0", + "bundled": true, + "dev": true + }, + "is-fullwidth-code-point": { + "version": "1.0.0", + "bundled": true, + "dev": true, + "requires": { + "number-is-nan": "1.0.1" + }, + "dependencies": { + "number-is-nan": { + "version": "1.0.1", + "bundled": true, + "dev": true + } + } + } + } + }, + "strip-ansi": { + "version": "3.0.1", + "bundled": true, + "dev": true, + "requires": { + "ansi-regex": "2.1.1" + }, + "dependencies": { + "ansi-regex": { + "version": "2.1.1", + "bundled": true, + "dev": true + } + } + }, + "wide-align": { + "version": "1.1.2", + "bundled": true, + "dev": true, + "requires": { + "string-width": "1.0.2" + } + } + } + }, + "set-blocking": { + "version": "2.0.0", + "bundled": true, + "dev": true + } + } + }, + "once": { + "version": "1.4.0", + "bundled": true, + "dev": true, + "requires": { + "wrappy": "1.0.2" + } + }, + "opener": { + "version": "1.4.3", + "bundled": true, + "dev": true + }, + "osenv": { + "version": "0.1.4", + "bundled": true, + "dev": true, + "requires": { + "os-homedir": "1.0.2", + "os-tmpdir": "1.0.2" + }, + "dependencies": { + "os-homedir": { + "version": "1.0.2", + "bundled": true, + "dev": true + }, + "os-tmpdir": { + "version": "1.0.2", + "bundled": true, + "dev": true + } + } + }, + "pacote": { + "version": "2.7.38", + "bundled": true, + "dev": true, + "requires": { + "bluebird": "3.5.0", + "cacache": "9.2.9", + "glob": "7.1.2", + "lru-cache": "4.1.1", + "make-fetch-happen": "2.4.13", + "minimatch": "3.0.4", + "mississippi": "1.3.0", + "normalize-package-data": "2.4.0", + "npm-package-arg": "5.1.2", + "npm-pick-manifest": "1.0.4", + "osenv": "0.1.4", + "promise-inflight": "1.0.1", + "promise-retry": "1.1.1", + "protoduck": "4.0.0", + "safe-buffer": "5.1.1", + "semver": "5.3.0", + "ssri": "4.1.6", + "tar-fs": "1.15.3", + "tar-stream": "1.5.4", + "unique-filename": "1.1.0", + "which": "1.2.14" + }, + "dependencies": { + "make-fetch-happen": { + "version": "2.4.13", + "bundled": true, + "dev": true, + "requires": { + "agentkeepalive": "3.3.0", + "cacache": "9.2.9", + "http-cache-semantics": "3.7.3", + "http-proxy-agent": "2.0.0", + "https-proxy-agent": "2.0.0", + "lru-cache": "4.1.1", + "mississippi": "1.3.0", + "node-fetch-npm": "2.0.1", + "promise-retry": "1.1.1", + "socks-proxy-agent": "3.0.0", + "ssri": "4.1.6" + }, + "dependencies": { + "agentkeepalive": { + "version": "3.3.0", + "bundled": true, + "dev": true, + "requires": { + "humanize-ms": "1.2.1" + }, + "dependencies": { + "humanize-ms": { + "version": "1.2.1", + "bundled": true, + "dev": true, + "requires": { + "ms": "2.0.0" + }, + "dependencies": { + "ms": { + "version": "2.0.0", + "bundled": true, + "dev": true + } + } + } + } + }, + "http-cache-semantics": { + "version": "3.7.3", + "bundled": true, + "dev": true + }, + "http-proxy-agent": { + "version": "2.0.0", + "bundled": true, + "dev": true, + "requires": { + "agent-base": "4.1.0", + "debug": "2.6.8" + }, + "dependencies": { + "agent-base": { + "version": "4.1.0", + "bundled": true, + "dev": true, + "requires": { + "es6-promisify": "5.0.0" + }, + "dependencies": { + "es6-promisify": { + "version": "5.0.0", + "bundled": true, + "dev": true, + "requires": { + "es6-promise": "4.1.1" + }, + "dependencies": { + "es6-promise": { + "version": "4.1.1", + "bundled": true, + "dev": true + } + } + } + } + }, + "debug": { + "version": "2.6.8", + "bundled": true, + "dev": true, + "requires": { + "ms": "2.0.0" + }, + "dependencies": { + "ms": { + "version": "2.0.0", + "bundled": true, + "dev": true + } + } + } + } + }, + "https-proxy-agent": { + "version": "2.0.0", + "bundled": true, + "dev": true, + "requires": { + "agent-base": "4.1.0", + "debug": "2.6.8" + }, + "dependencies": { + "agent-base": { + "version": "4.1.0", + "bundled": true, + "dev": true, + "requires": { + "es6-promisify": "5.0.0" + }, + "dependencies": { + "es6-promisify": { + "version": "5.0.0", + "bundled": true, + "dev": true, + "requires": { + "es6-promise": "4.1.1" + }, + "dependencies": { + "es6-promise": { + "version": "4.1.1", + "bundled": true, + "dev": true + } + } + } + } + }, + "debug": { + "version": "2.6.8", + "bundled": true, + "dev": true, + "requires": { + "ms": "2.0.0" + }, + "dependencies": { + "ms": { + "version": "2.0.0", + "bundled": true, + "dev": true + } + } + } + } + }, + "node-fetch-npm": { + "version": "2.0.1", + "bundled": true, + "dev": true, + "requires": { + "encoding": "0.1.12", + "json-parse-helpfulerror": "1.0.3", + "safe-buffer": "5.1.1" + }, + "dependencies": { + "encoding": { + "version": "0.1.12", + "bundled": true, + "dev": true, + "requires": { + "iconv-lite": "0.4.18" + }, + "dependencies": { + "iconv-lite": { + "version": "0.4.18", + "bundled": true, + "dev": true + } + } + }, + "json-parse-helpfulerror": { + "version": "1.0.3", + "bundled": true, + "dev": true, + "requires": { + "jju": "1.3.0" + }, + "dependencies": { + "jju": { + "version": "1.3.0", + "bundled": true, + "dev": true + } + } + } + } + }, + "socks-proxy-agent": { + "version": "3.0.0", + "bundled": true, + "dev": true, + "requires": { + "agent-base": "4.1.0", + "socks": "1.1.10" + }, + "dependencies": { + "agent-base": { + "version": "4.1.0", + "bundled": true, + "dev": true, + "requires": { + "es6-promisify": "5.0.0" + }, + "dependencies": { + "es6-promisify": { + "version": "5.0.0", + "bundled": true, + "dev": true, + "requires": { + "es6-promise": "4.1.1" + }, + "dependencies": { + "es6-promise": { + "version": "4.1.1", + "bundled": true, + "dev": true + } + } + } + } + }, + "socks": { + "version": "1.1.10", + "bundled": true, + "dev": true, + "requires": { + "ip": "1.1.5", + "smart-buffer": "1.1.15" + }, + "dependencies": { + "ip": { + "version": "1.1.5", + "bundled": true, + "dev": true + }, + "smart-buffer": { + "version": "1.1.15", + "bundled": true, + "dev": true + } + } + } + } + } + } + }, + "minimatch": { + "version": "3.0.4", + "bundled": true, + "dev": true, + "requires": { + "brace-expansion": "1.1.8" + }, + "dependencies": { + "brace-expansion": { + "version": "1.1.8", + "bundled": true, + "dev": true, + "requires": { + "balanced-match": "1.0.0", + "concat-map": "0.0.1" + }, + "dependencies": { + "balanced-match": { + "version": "1.0.0", + "bundled": true, + "dev": true + }, + "concat-map": { + "version": "0.0.1", + "bundled": true, + "dev": true + } + } + } + } + }, + "npm-pick-manifest": { + "version": "1.0.4", + "bundled": true, + "dev": true, + "requires": { + "npm-package-arg": "5.1.2", + "semver": "5.3.0" + } + }, + "promise-retry": { + "version": "1.1.1", + "bundled": true, + "dev": true, + "requires": { + "err-code": "1.1.2", + "retry": "0.10.1" + }, + "dependencies": { + "err-code": { + "version": "1.1.2", + "bundled": true, + "dev": true + } + } + }, + "protoduck": { + "version": "4.0.0", + "bundled": true, + "dev": true, + "requires": { + "genfun": "4.0.1" + }, + "dependencies": { + "genfun": { + "version": "4.0.1", + "bundled": true, + "dev": true + } + } + }, + "tar-fs": { + "version": "1.15.3", + "bundled": true, + "dev": true, + "requires": { + "chownr": "1.0.1", + "mkdirp": "0.5.1", + "pump": "1.0.2", + "tar-stream": "1.5.4" + }, + "dependencies": { + "pump": { + "version": "1.0.2", + "bundled": true, + "dev": true, + "requires": { + "end-of-stream": "1.4.0", + "once": "1.4.0" + }, + "dependencies": { + "end-of-stream": { + "version": "1.4.0", + "bundled": true, + "dev": true, + "requires": { + "once": "1.4.0" + } + } + } + } + } + }, + "tar-stream": { + "version": "1.5.4", + "bundled": true, + "dev": true, + "requires": { + "bl": "1.2.1", + "end-of-stream": "1.4.0", + "readable-stream": "2.3.2", + "xtend": "4.0.1" + }, + "dependencies": { + "bl": { + "version": "1.2.1", + "bundled": true, + "dev": true, + "requires": { + "readable-stream": "2.3.2" + } + }, + "end-of-stream": { + "version": "1.4.0", + "bundled": true, + "dev": true, + "requires": { + "once": "1.4.0" + } + }, + "xtend": { + "version": "4.0.1", + "bundled": true, + "dev": true + } + } + } + } + }, + "path-is-inside": { + "version": "1.0.2", + "bundled": true, + "dev": true + }, + "promise-inflight": { + "version": "1.0.1", + "bundled": true, + "dev": true + }, + "read": { + "version": "1.0.7", + "bundled": true, + "dev": true, + "requires": { + "mute-stream": "0.0.7" + }, + "dependencies": { + "mute-stream": { + "version": "0.0.7", + "bundled": true, + "dev": true + } + } + }, + "read-cmd-shim": { + "version": "1.0.1", + "bundled": true, + "dev": true, + "requires": { + "graceful-fs": "4.1.11" + } + }, + "read-installed": { + "version": "4.0.3", + "bundled": true, + "dev": true, + "requires": { + "debuglog": "1.0.1", + "graceful-fs": "4.1.11", + "read-package-json": "2.0.9", + "readdir-scoped-modules": "1.0.2", + "semver": "5.3.0", + "slide": "1.1.6", + "util-extend": "1.0.3" + }, + "dependencies": { + "util-extend": { + "version": "1.0.3", + "bundled": true, + "dev": true + } + } + }, + "read-package-json": { + "version": "2.0.9", + "bundled": true, + "dev": true, + "requires": { + "glob": "7.1.2", + "graceful-fs": "4.1.11", + "json-parse-helpfulerror": "1.0.3", + "normalize-package-data": "2.4.0" + }, + "dependencies": { + "json-parse-helpfulerror": { + "version": "1.0.3", + "bundled": true, + "dev": true, + "requires": { + "jju": "1.3.0" + }, + "dependencies": { + "jju": { + "version": "1.3.0", + "bundled": true, + "dev": true + } + } + } + } + }, + "read-package-tree": { + "version": "5.1.6", + "bundled": true, + "dev": true, + "requires": { + "debuglog": "1.0.1", + "dezalgo": "1.0.3", + "once": "1.4.0", + "read-package-json": "2.0.9", + "readdir-scoped-modules": "1.0.2" + } + }, + "readable-stream": { + "version": "2.3.2", + "bundled": true, + "dev": true, + "requires": { + "core-util-is": "1.0.2", + "inherits": "2.0.3", + "isarray": "1.0.0", + "process-nextick-args": "1.0.7", + "safe-buffer": "5.1.1", + "string_decoder": "1.0.3", + "util-deprecate": "1.0.2" + }, + "dependencies": { + "core-util-is": { + "version": "1.0.2", + "bundled": true, + "dev": true + }, + "isarray": { + "version": "1.0.0", + "bundled": true, + "dev": true + }, + "process-nextick-args": { + "version": "1.0.7", + "bundled": true, + "dev": true + }, + "string_decoder": { + "version": "1.0.3", + "bundled": true, + "dev": true, + "requires": { + "safe-buffer": "5.1.1" + } + }, + "util-deprecate": { + "version": "1.0.2", + "bundled": true, + "dev": true + } + } + }, + "readdir-scoped-modules": { + "version": "1.0.2", + "bundled": true, + "dev": true, + "requires": { + "debuglog": "1.0.1", + "dezalgo": "1.0.3", + "graceful-fs": "4.1.11", + "once": "1.4.0" + } + }, + "request": { + "version": "2.81.0", + "bundled": true, + "dev": true, + "requires": { + "aws-sign2": "0.6.0", + "aws4": "1.6.0", + "caseless": "0.12.0", + "combined-stream": "1.0.5", + "extend": "3.0.1", + "forever-agent": "0.6.1", + "form-data": "2.1.4", + "har-validator": "4.2.1", + "hawk": "3.1.3", + "http-signature": "1.1.1", + "is-typedarray": "1.0.0", + "isstream": "0.1.2", + "json-stringify-safe": "5.0.1", + "mime-types": "2.1.15", + "oauth-sign": "0.8.2", + "performance-now": "0.2.0", + "qs": "6.4.0", + "safe-buffer": "5.1.1", + "stringstream": "0.0.5", + "tough-cookie": "2.3.2", + "tunnel-agent": "0.6.0", + "uuid": "3.1.0" + }, + "dependencies": { + "aws-sign2": { + "version": "0.6.0", + "bundled": true, + "dev": true + }, + "aws4": { + "version": "1.6.0", + "bundled": true, + "dev": true + }, + "caseless": { + "version": "0.12.0", + "bundled": true, + "dev": true + }, + "combined-stream": { + "version": "1.0.5", + "bundled": true, + "dev": true, + "requires": { + "delayed-stream": "1.0.0" + }, + "dependencies": { + "delayed-stream": { + "version": "1.0.0", + "bundled": true, + "dev": true + } + } + }, + "extend": { + "version": "3.0.1", + "bundled": true, + "dev": true + }, + "forever-agent": { + "version": "0.6.1", + "bundled": true, + "dev": true + }, + "form-data": { + "version": "2.1.4", + "bundled": true, + "dev": true, + "requires": { + "asynckit": "0.4.0", + "combined-stream": "1.0.5", + "mime-types": "2.1.15" + }, + "dependencies": { + "asynckit": { + "version": "0.4.0", + "bundled": true, + "dev": true + } + } + }, + "har-validator": { + "version": "4.2.1", + "bundled": true, + "dev": true, + "requires": { + "ajv": "4.11.8", + "har-schema": "1.0.5" + }, + "dependencies": { + "ajv": { + "version": "4.11.8", + "bundled": true, + "dev": true, + "requires": { + "co": "4.6.0", + "json-stable-stringify": "1.0.1" + }, + "dependencies": { + "co": { + "version": "4.6.0", + "bundled": true, + "dev": true + }, + "json-stable-stringify": { + "version": "1.0.1", + "bundled": true, + "dev": true, + "requires": { + "jsonify": "0.0.0" + }, + "dependencies": { + "jsonify": { + "version": "0.0.0", + "bundled": true, + "dev": true + } + } + } + } + }, + "har-schema": { + "version": "1.0.5", + "bundled": true, + "dev": true + } + } + }, + "hawk": { + "version": "3.1.3", + "bundled": true, + "dev": true, + "requires": { + "boom": "2.10.1", + "cryptiles": "2.0.5", + "hoek": "2.16.3", + "sntp": "1.0.9" + }, + "dependencies": { + "boom": { + "version": "2.10.1", + "bundled": true, + "dev": true, + "requires": { + "hoek": "2.16.3" + } + }, + "cryptiles": { + "version": "2.0.5", + "bundled": true, + "dev": true, + "requires": { + "boom": "2.10.1" + } + }, + "hoek": { + "version": "2.16.3", + "bundled": true, + "dev": true + }, + "sntp": { + "version": "1.0.9", + "bundled": true, + "dev": true, + "requires": { + "hoek": "2.16.3" + } + } + } + }, + "http-signature": { + "version": "1.1.1", + "bundled": true, + "dev": true, + "requires": { + "assert-plus": "0.2.0", + "jsprim": "1.4.0", + "sshpk": "1.13.1" + }, + "dependencies": { + "assert-plus": { + "version": "0.2.0", + "bundled": true, + "dev": true + }, + "jsprim": { + "version": "1.4.0", + "bundled": true, + "dev": true, + "requires": { + "assert-plus": "1.0.0", + "extsprintf": "1.0.2", + "json-schema": "0.2.3", + "verror": "1.3.6" + }, + "dependencies": { + "assert-plus": { + "version": "1.0.0", + "bundled": true, + "dev": true + }, + "extsprintf": { + "version": "1.0.2", + "bundled": true, + "dev": true + }, + "json-schema": { + "version": "0.2.3", + "bundled": true, + "dev": true + }, + "verror": { + "version": "1.3.6", + "bundled": true, + "dev": true, + "requires": { + "extsprintf": "1.0.2" + } + } + } + }, + "sshpk": { + "version": "1.13.1", + "bundled": true, + "dev": true, + "requires": { + "asn1": "0.2.3", + "assert-plus": "1.0.0", + "bcrypt-pbkdf": "1.0.1", + "dashdash": "1.14.1", + "ecc-jsbn": "0.1.1", + "getpass": "0.1.7", + "jsbn": "0.1.1", + "tweetnacl": "0.14.5" + }, + "dependencies": { + "asn1": { + "version": "0.2.3", + "bundled": true, + "dev": true + }, + "assert-plus": { + "version": "1.0.0", + "bundled": true, + "dev": true + }, + "bcrypt-pbkdf": { + "version": "1.0.1", + "bundled": true, + "dev": true, + "optional": true, + "requires": { + "tweetnacl": "0.14.5" + } + }, + "dashdash": { + "version": "1.14.1", + "bundled": true, + "dev": true, + "requires": { + "assert-plus": "1.0.0" + } + }, + "ecc-jsbn": { + "version": "0.1.1", + "bundled": true, + "dev": true, + "optional": true, + "requires": { + "jsbn": "0.1.1" + } + }, + "getpass": { + "version": "0.1.7", + "bundled": true, + "dev": true, + "requires": { + "assert-plus": "1.0.0" + } + }, + "jsbn": { + "version": "0.1.1", + "bundled": true, + "dev": true, + "optional": true + }, + "tweetnacl": { + "version": "0.14.5", + "bundled": true, + "dev": true, + "optional": true + } + } + } + } + }, + "is-typedarray": { + "version": "1.0.0", + "bundled": true, + "dev": true + }, + "isstream": { + "version": "0.1.2", + "bundled": true, + "dev": true + }, + "json-stringify-safe": { + "version": "5.0.1", + "bundled": true, + "dev": true + }, + "mime-types": { + "version": "2.1.15", + "bundled": true, + "dev": true, + "requires": { + "mime-db": "1.27.0" + }, + "dependencies": { + "mime-db": { + "version": "1.27.0", + "bundled": true, + "dev": true + } + } + }, + "oauth-sign": { + "version": "0.8.2", + "bundled": true, + "dev": true + }, + "performance-now": { + "version": "0.2.0", + "bundled": true, + "dev": true + }, + "qs": { + "version": "6.4.0", + "bundled": true, + "dev": true + }, + "stringstream": { + "version": "0.0.5", + "bundled": true, + "dev": true + }, + "tough-cookie": { + "version": "2.3.2", + "bundled": true, + "dev": true, + "requires": { + "punycode": "1.4.1" + }, + "dependencies": { + "punycode": { + "version": "1.4.1", + "bundled": true, + "dev": true + } + } + }, + "tunnel-agent": { + "version": "0.6.0", + "bundled": true, + "dev": true, + "requires": { + "safe-buffer": "5.1.1" + } + } + } + }, + "retry": { + "version": "0.10.1", + "bundled": true, + "dev": true + }, + "rimraf": { + "version": "2.6.1", + "bundled": true, + "dev": true, + "requires": { + "glob": "7.1.2" + } + }, + "safe-buffer": { + "version": "5.1.1", + "bundled": true, + "dev": true + }, + "semver": { + "version": "5.3.0", + "bundled": true, + "dev": true + }, + "sha": { + "version": "2.0.1", + "bundled": true, + "dev": true, + "requires": { + "graceful-fs": "4.1.11", + "readable-stream": "2.3.2" + } + }, + "slide": { + "version": "1.1.6", + "bundled": true, + "dev": true + }, + "sorted-object": { + "version": "2.0.1", + "bundled": true, + "dev": true + }, + "sorted-union-stream": { + "version": "2.1.3", + "bundled": true, + "dev": true, + "requires": { + "from2": "1.3.0", + "stream-iterate": "1.2.0" + }, + "dependencies": { + "from2": { + "version": "1.3.0", + "bundled": true, + "dev": true, + "requires": { + "inherits": "2.0.3", + "readable-stream": "1.1.14" + }, + "dependencies": { + "readable-stream": { + "version": "1.1.14", + "bundled": true, + "dev": true, + "requires": { + "core-util-is": "1.0.2", + "inherits": "2.0.3", + "isarray": "0.0.1", + "string_decoder": "0.10.31" + }, + "dependencies": { + "core-util-is": { + "version": "1.0.2", + "bundled": true, + "dev": true + }, + "isarray": { + "version": "0.0.1", + "bundled": true, + "dev": true + }, + "string_decoder": { + "version": "0.10.31", + "bundled": true, + "dev": true + } + } + } + } + }, + "stream-iterate": { + "version": "1.2.0", + "bundled": true, + "dev": true, + "requires": { + "readable-stream": "2.3.2", + "stream-shift": "1.0.0" + }, + "dependencies": { + "stream-shift": { + "version": "1.0.0", + "bundled": true, + "dev": true + } + } + } + } + }, + "ssri": { + "version": "4.1.6", + "bundled": true, + "dev": true, + "requires": { + "safe-buffer": "5.1.1" + } + }, + "strip-ansi": { + "version": "4.0.0", + "bundled": true, + "dev": true, + "requires": { + "ansi-regex": "3.0.0" + }, + "dependencies": { + "ansi-regex": { + "version": "3.0.0", + "bundled": true, + "dev": true + } + } + }, + "tar": { + "version": "2.2.1", + "bundled": true, + "dev": true, + "requires": { + "block-stream": "0.0.9", + "fstream": "1.0.11", + "inherits": "2.0.3" + }, + "dependencies": { + "block-stream": { + "version": "0.0.9", + "bundled": true, + "dev": true, + "requires": { + "inherits": "2.0.3" + } + } + } + }, + "text-table": { + "version": "0.2.0", + "bundled": true, + "dev": true + }, + "uid-number": { + "version": "0.0.6", + "bundled": true, + "dev": true + }, + "umask": { + "version": "1.1.0", + "bundled": true, + "dev": true + }, + "unique-filename": { + "version": "1.1.0", + "bundled": true, + "dev": true, + "requires": { + "unique-slug": "2.0.0" + }, + "dependencies": { + "unique-slug": { + "version": "2.0.0", + "bundled": true, + "dev": true, + "requires": { + "imurmurhash": "0.1.4" + } + } + } + }, + "unpipe": { + "version": "1.0.0", + "bundled": true, + "dev": true + }, + "update-notifier": { + "version": "2.2.0", + "bundled": true, + "dev": true, + "requires": { + "boxen": "1.1.0", + "chalk": "1.1.3", + "configstore": "3.1.0", + "import-lazy": "2.1.0", + "is-npm": "1.0.0", + "latest-version": "3.1.0", + "semver-diff": "2.1.0", + "xdg-basedir": "3.0.0" + }, + "dependencies": { + "boxen": { + "version": "1.1.0", + "bundled": true, + "dev": true, + "requires": { + "ansi-align": "2.0.0", + "camelcase": "4.1.0", + "chalk": "1.1.3", + "cli-boxes": "1.0.0", + "string-width": "2.1.0", + "term-size": "0.1.1", + "widest-line": "1.0.0" + }, + "dependencies": { + "ansi-align": { + "version": "2.0.0", + "bundled": true, + "dev": true, + "requires": { + "string-width": "2.1.0" + } + }, + "camelcase": { + "version": "4.1.0", + "bundled": true, + "dev": true + }, + "cli-boxes": { + "version": "1.0.0", + "bundled": true, + "dev": true + }, + "string-width": { + "version": "2.1.0", + "bundled": true, + "dev": true, + "requires": { + "is-fullwidth-code-point": "2.0.0", + "strip-ansi": "4.0.0" + }, + "dependencies": { + "is-fullwidth-code-point": { + "version": "2.0.0", + "bundled": true, + "dev": true + }, + "strip-ansi": { + "version": "4.0.0", + "bundled": true, + "dev": true, + "requires": { + "ansi-regex": "3.0.0" + } + } + } + }, + "term-size": { + "version": "0.1.1", + "bundled": true, + "dev": true, + "requires": { + "execa": "0.4.0" + }, + "dependencies": { + "execa": { + "version": "0.4.0", + "bundled": true, + "dev": true, + "requires": { + "cross-spawn-async": "2.2.5", + "is-stream": "1.1.0", + "npm-run-path": "1.0.0", + "object-assign": "4.1.1", + "path-key": "1.0.0", + "strip-eof": "1.0.0" + }, + "dependencies": { + "cross-spawn-async": { + "version": "2.2.5", + "bundled": true, + "dev": true, + "requires": { + "lru-cache": "4.1.1", + "which": "1.2.14" + } + }, + "is-stream": { + "version": "1.1.0", + "bundled": true, + "dev": true + }, + "npm-run-path": { + "version": "1.0.0", + "bundled": true, + "dev": true, + "requires": { + "path-key": "1.0.0" + } + }, + "object-assign": { + "version": "4.1.1", + "bundled": true, + "dev": true + }, + "path-key": { + "version": "1.0.0", + "bundled": true, + "dev": true + }, + "strip-eof": { + "version": "1.0.0", + "bundled": true, + "dev": true + } + } + } + } + }, + "widest-line": { + "version": "1.0.0", + "bundled": true, + "dev": true, + "requires": { + "string-width": "1.0.2" + }, + "dependencies": { + "string-width": { + "version": "1.0.2", + "bundled": true, + "dev": true, + "requires": { + "code-point-at": "1.1.0", + "is-fullwidth-code-point": "1.0.0", + "strip-ansi": "3.0.1" + }, + "dependencies": { + "code-point-at": { + "version": "1.1.0", + "bundled": true, + "dev": true + }, + "is-fullwidth-code-point": { + "version": "1.0.0", + "bundled": true, + "dev": true, + "requires": { + "number-is-nan": "1.0.1" + }, + "dependencies": { + "number-is-nan": { + "version": "1.0.1", + "bundled": true, + "dev": true + } + } + }, + "strip-ansi": { + "version": "3.0.1", + "bundled": true, + "dev": true, + "requires": { + "ansi-regex": "2.1.1" + }, + "dependencies": { + "ansi-regex": { + "version": "2.1.1", + "bundled": true, + "dev": true + } + } + } + } + } + } + } + } + }, + "chalk": { + "version": "1.1.3", + "bundled": true, + "dev": true, + "requires": { + "ansi-styles": "2.2.1", + "escape-string-regexp": "1.0.5", + "has-ansi": "2.0.0", + "strip-ansi": "3.0.1", + "supports-color": "2.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "2.2.1", + "bundled": true, + "dev": true + }, + "escape-string-regexp": { + "version": "1.0.5", + "bundled": true, + "dev": true + }, + "has-ansi": { + "version": "2.0.0", + "bundled": true, + "dev": true, + "requires": { + "ansi-regex": "2.1.1" + }, + "dependencies": { + "ansi-regex": { + "version": "2.1.1", + "bundled": true, + "dev": true + } + } + }, + "strip-ansi": { + "version": "3.0.1", + "bundled": true, + "dev": true, + "requires": { + "ansi-regex": "2.1.1" + }, + "dependencies": { + "ansi-regex": { + "version": "2.1.1", + "bundled": true, + "dev": true + } + } + }, + "supports-color": { + "version": "2.0.0", + "bundled": true, + "dev": true + } + } + }, + "configstore": { + "version": "3.1.0", + "bundled": true, + "dev": true, + "requires": { + "dot-prop": "4.1.1", + "graceful-fs": "4.1.11", + "make-dir": "1.0.0", + "unique-string": "1.0.0", + "write-file-atomic": "2.1.0", + "xdg-basedir": "3.0.0" + }, + "dependencies": { + "dot-prop": { + "version": "4.1.1", + "bundled": true, + "dev": true, + "requires": { + "is-obj": "1.0.1" + }, + "dependencies": { + "is-obj": { + "version": "1.0.1", + "bundled": true, + "dev": true + } + } + }, + "make-dir": { + "version": "1.0.0", + "bundled": true, + "dev": true, + "requires": { + "pify": "2.3.0" + }, + "dependencies": { + "pify": { + "version": "2.3.0", + "bundled": true, + "dev": true + } + } + }, + "unique-string": { + "version": "1.0.0", + "bundled": true, + "dev": true, + "requires": { + "crypto-random-string": "1.0.0" + }, + "dependencies": { + "crypto-random-string": { + "version": "1.0.0", + "bundled": true, + "dev": true + } + } + } + } + }, + "import-lazy": { + "version": "2.1.0", + "bundled": true, + "dev": true + }, + "is-npm": { + "version": "1.0.0", + "bundled": true, + "dev": true + }, + "latest-version": { + "version": "3.1.0", + "bundled": true, + "dev": true, + "requires": { + "package-json": "4.0.1" + }, + "dependencies": { + "package-json": { + "version": "4.0.1", + "bundled": true, + "dev": true, + "requires": { + "got": "6.7.1", + "registry-auth-token": "3.3.1", + "registry-url": "3.1.0", + "semver": "5.3.0" + }, + "dependencies": { + "got": { + "version": "6.7.1", + "bundled": true, + "dev": true, + "requires": { + "create-error-class": "3.0.2", + "duplexer3": "0.1.4", + "get-stream": "3.0.0", + "is-redirect": "1.0.0", + "is-retry-allowed": "1.1.0", + "is-stream": "1.1.0", + "lowercase-keys": "1.0.0", + "safe-buffer": "5.1.1", + "timed-out": "4.0.1", + "unzip-response": "2.0.1", + "url-parse-lax": "1.0.0" + }, + "dependencies": { + "create-error-class": { + "version": "3.0.2", + "bundled": true, + "dev": true, + "requires": { + "capture-stack-trace": "1.0.0" + }, + "dependencies": { + "capture-stack-trace": { + "version": "1.0.0", + "bundled": true, + "dev": true + } + } + }, + "duplexer3": { + "version": "0.1.4", + "bundled": true, + "dev": true + }, + "get-stream": { + "version": "3.0.0", + "bundled": true, + "dev": true + }, + "is-redirect": { + "version": "1.0.0", + "bundled": true, + "dev": true + }, + "is-retry-allowed": { + "version": "1.1.0", + "bundled": true, + "dev": true + }, + "is-stream": { + "version": "1.1.0", + "bundled": true, + "dev": true + }, + "lowercase-keys": { + "version": "1.0.0", + "bundled": true, + "dev": true + }, + "timed-out": { + "version": "4.0.1", + "bundled": true, + "dev": true + }, + "unzip-response": { + "version": "2.0.1", + "bundled": true, + "dev": true + }, + "url-parse-lax": { + "version": "1.0.0", + "bundled": true, + "dev": true, + "requires": { + "prepend-http": "1.0.4" + }, + "dependencies": { + "prepend-http": { + "version": "1.0.4", + "bundled": true, + "dev": true + } + } + } + } + }, + "registry-auth-token": { + "version": "3.3.1", + "bundled": true, + "dev": true, + "requires": { + "rc": "1.2.1", + "safe-buffer": "5.1.1" + }, + "dependencies": { + "rc": { + "version": "1.2.1", + "bundled": true, + "dev": true, + "requires": { + "deep-extend": "0.4.2", + "ini": "1.3.4", + "minimist": "1.2.0", + "strip-json-comments": "2.0.1" + }, + "dependencies": { + "deep-extend": { + "version": "0.4.2", + "bundled": true, + "dev": true + }, + "minimist": { + "version": "1.2.0", + "bundled": true, + "dev": true + }, + "strip-json-comments": { + "version": "2.0.1", + "bundled": true, + "dev": true + } + } + } + } + }, + "registry-url": { + "version": "3.1.0", + "bundled": true, + "dev": true, + "requires": { + "rc": "1.2.1" + }, + "dependencies": { + "rc": { + "version": "1.2.1", + "bundled": true, + "dev": true, + "requires": { + "deep-extend": "0.4.2", + "ini": "1.3.4", + "minimist": "1.2.0", + "strip-json-comments": "2.0.1" + }, + "dependencies": { + "deep-extend": { + "version": "0.4.2", + "bundled": true, + "dev": true + }, + "minimist": { + "version": "1.2.0", + "bundled": true, + "dev": true + }, + "strip-json-comments": { + "version": "2.0.1", + "bundled": true, + "dev": true + } + } + } + } + } + } + } + } + }, + "semver-diff": { + "version": "2.1.0", + "bundled": true, + "dev": true, + "requires": { + "semver": "5.3.0" + } + }, + "xdg-basedir": { + "version": "3.0.0", + "bundled": true, + "dev": true + } + } + }, + "uuid": { + "version": "3.1.0", + "bundled": true, + "dev": true + }, + "validate-npm-package-license": { + "version": "3.0.1", + "bundled": true, + "dev": true, + "requires": { + "spdx-correct": "1.0.2", + "spdx-expression-parse": "1.0.4" + }, + "dependencies": { + "spdx-correct": { + "version": "1.0.2", + "bundled": true, + "dev": true, + "requires": { + "spdx-license-ids": "1.2.2" + }, + "dependencies": { + "spdx-license-ids": { + "version": "1.2.2", + "bundled": true, + "dev": true + } + } + }, + "spdx-expression-parse": { + "version": "1.0.4", + "bundled": true, + "dev": true + } + } + }, + "validate-npm-package-name": { + "version": "3.0.0", + "bundled": true, + "dev": true, + "requires": { + "builtins": "1.0.3" + }, + "dependencies": { + "builtins": { + "version": "1.0.3", + "bundled": true, + "dev": true + } + } + }, + "which": { + "version": "1.2.14", + "bundled": true, + "dev": true, + "requires": { + "isexe": "2.0.0" + }, + "dependencies": { + "isexe": { + "version": "2.0.0", + "bundled": true, + "dev": true + } + } + }, + "worker-farm": { + "version": "1.3.1", + "bundled": true, + "dev": true, + "requires": { + "errno": "0.1.4", + "xtend": "4.0.1" + }, + "dependencies": { + "errno": { + "version": "0.1.4", + "bundled": true, + "dev": true, + "requires": { + "prr": "0.0.0" + }, + "dependencies": { + "prr": { + "version": "0.0.0", + "bundled": true, + "dev": true + } + } + }, + "xtend": { + "version": "4.0.1", + "bundled": true, + "dev": true + } + } + }, + "wrappy": { + "version": "1.0.2", + "bundled": true, + "dev": true + }, + "write-file-atomic": { + "version": "2.1.0", + "bundled": true, + "dev": true, + "requires": { + "graceful-fs": "4.1.11", + "imurmurhash": "0.1.4", + "slide": "1.1.6" + } + } + } + }, + "npmi": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/npmi/-/npmi-1.0.1.tgz", + "integrity": "sha1-FddpJzVHVF5oCdzwzhiu1IsCkOI=", + "dev": true, + "requires": { + "npm": "2.15.12", + "semver": "4.3.6" + }, + "dependencies": { + "npm": { + "version": "2.15.12", + "resolved": "https://registry.npmjs.org/npm/-/npm-2.15.12.tgz", + "integrity": "sha1-33w+1aJ3w/nUtdgZsFMR0QogCuY=", + "dev": true, + "requires": { + "abbrev": "1.0.9", + "ansi": "0.3.1", + "ansi-regex": "2.0.0", + "ansicolors": "0.3.2", + "ansistyles": "0.1.3", + "archy": "1.0.0", + "async-some": "1.0.2", + "block-stream": "0.0.9", + "char-spinner": "1.0.1", + "chmodr": "1.0.2", + "chownr": "1.0.1", + "cmd-shim": "2.0.2", + "columnify": "1.5.4", + "config-chain": "1.1.10", + "dezalgo": "1.0.3", + "editor": "1.0.0", + "fs-vacuum": "1.2.9", + "fs-write-stream-atomic": "1.0.8", + "fstream": "1.0.10", + "fstream-npm": "1.1.1", + "github-url-from-git": "1.4.0", + "github-url-from-username-repo": "1.0.2", + "glob": "7.0.6", + "graceful-fs": "4.1.6", + "hosted-git-info": "2.1.5", + "imurmurhash": "0.1.4", + "inflight": "1.0.5", + "inherits": "2.0.3", + "ini": "1.3.4", + "init-package-json": "1.9.4", + "lockfile": "1.0.1", + "lru-cache": "4.0.1", + "minimatch": "3.0.3", + "mkdirp": "0.5.1", + "node-gyp": "3.6.0", + "nopt": "3.0.6", + "normalize-git-url": "3.0.2", + "normalize-package-data": "2.3.5", + "npm-cache-filename": "1.0.2", + "npm-install-checks": "1.0.7", + "npm-package-arg": "4.1.0", + "npm-registry-client": "7.2.1", + "npm-user-validate": "0.1.5", + "npmlog": "2.0.4", + "once": "1.4.0", + "opener": "1.4.1", + "osenv": "0.1.3", + "path-is-inside": "1.0.1", + "read": "1.0.7", + "read-installed": "4.0.3", + "read-package-json": "2.0.4", + "readable-stream": "2.1.5", + "realize-package-specifier": "3.0.1", + "request": "2.74.0", + "retry": "0.10.0", + "rimraf": "2.5.4", + "semver": "5.1.0", + "sha": "2.0.1", + "slide": "1.1.6", + "sorted-object": "2.0.0", + "spdx-license-ids": "1.2.2", + "strip-ansi": "3.0.1", + "tar": "2.2.1", + "text-table": "0.2.0", + "uid-number": "0.0.6", + "umask": "1.1.0", + "validate-npm-package-license": "3.0.1", + "validate-npm-package-name": "2.2.2", + "which": "1.2.11", + "wrappy": "1.0.2", + "write-file-atomic": "1.1.4" + }, + "dependencies": { + "abbrev": { + "version": "1.0.9", + "bundled": true, + "dev": true + }, + "ansi": { + "version": "0.3.1", + "bundled": true, + "dev": true + }, + "ansi-regex": { + "version": "2.0.0", + "bundled": true, + "dev": true + }, + "ansicolors": { + "version": "0.3.2", + "bundled": true, + "dev": true + }, + "ansistyles": { + "version": "0.1.3", + "bundled": true, + "dev": true + }, + "archy": { + "version": "1.0.0", + "bundled": true, + "dev": true + }, + "async-some": { + "version": "1.0.2", + "bundled": true, + "dev": true, + "requires": { + "dezalgo": "1.0.3" + } + }, + "block-stream": { + "version": "0.0.9", + "bundled": true, + "dev": true, + "requires": { + "inherits": "2.0.3" + } + }, + "char-spinner": { + "version": "1.0.1", + "bundled": true, + "dev": true + }, + "chmodr": { + "version": "1.0.2", + "bundled": true, + "dev": true + }, + "chownr": { + "version": "1.0.1", + "bundled": true, + "dev": true + }, + "cmd-shim": { + "version": "2.0.2", + "bundled": true, + "dev": true, + "requires": { + "graceful-fs": "4.1.6", + "mkdirp": "0.5.1" + } + }, + "columnify": { + "version": "1.5.4", + "bundled": true, + "dev": true, + "requires": { + "strip-ansi": "3.0.1", + "wcwidth": "1.0.0" + }, + "dependencies": { + "wcwidth": { + "version": "1.0.0", + "bundled": true, + "dev": true, + "requires": { + "defaults": "1.0.3" + }, + "dependencies": { + "defaults": { + "version": "1.0.3", + "bundled": true, + "dev": true, + "requires": { + "clone": "1.0.2" + }, + "dependencies": { + "clone": { + "version": "1.0.2", + "bundled": true, + "dev": true + } + } + } + } + } + } + }, + "config-chain": { + "version": "1.1.10", + "bundled": true, + "dev": true, + "requires": { + "ini": "1.3.4", + "proto-list": "1.2.4" + }, + "dependencies": { + "proto-list": { + "version": "1.2.4", + "bundled": true, + "dev": true + } + } + }, + "dezalgo": { + "version": "1.0.3", + "bundled": true, + "dev": true, + "requires": { + "asap": "2.0.3", + "wrappy": "1.0.2" + }, + "dependencies": { + "asap": { + "version": "2.0.3", + "bundled": true, + "dev": true + } + } + }, + "editor": { + "version": "1.0.0", + "bundled": true, + "dev": true + }, + "fs-vacuum": { + "version": "1.2.9", + "bundled": true, + "dev": true, + "requires": { + "graceful-fs": "4.1.6", + "path-is-inside": "1.0.1", + "rimraf": "2.5.4" + } + }, + "fs-write-stream-atomic": { + "version": "1.0.8", + "bundled": true, + "dev": true, + "requires": { + "graceful-fs": "4.1.6", + "iferr": "0.1.5", + "imurmurhash": "0.1.4", + "readable-stream": "2.1.5" + }, + "dependencies": { + "iferr": { + "version": "0.1.5", + "bundled": true, + "dev": true + } + } + }, + "fstream": { + "version": "1.0.10", + "bundled": true, + "dev": true, + "requires": { + "graceful-fs": "4.1.6", + "inherits": "2.0.3", + "mkdirp": "0.5.1", + "rimraf": "2.5.4" + } + }, + "fstream-npm": { + "version": "1.1.1", + "bundled": true, + "dev": true, + "requires": { + "fstream-ignore": "1.0.5", + "inherits": "2.0.3" + }, + "dependencies": { + "fstream-ignore": { + "version": "1.0.5", + "bundled": true, + "dev": true, + "requires": { + "fstream": "1.0.10", + "inherits": "2.0.3", + "minimatch": "3.0.3" + } + } + } + }, + "github-url-from-git": { + "version": "1.4.0", + "bundled": true, + "dev": true + }, + "github-url-from-username-repo": { + "version": "1.0.2", + "bundled": true, + "dev": true + }, + "glob": { + "version": "7.0.6", + "bundled": true, + "dev": true, + "requires": { + "fs.realpath": "1.0.0", + "inflight": "1.0.5", + "inherits": "2.0.3", + "minimatch": "3.0.3", + "once": "1.4.0", + "path-is-absolute": "1.0.0" + }, + "dependencies": { + "fs.realpath": { + "version": "1.0.0", + "bundled": true, + "dev": true + }, + "path-is-absolute": { + "version": "1.0.0", + "bundled": true, + "dev": true + } + } + }, + "graceful-fs": { + "version": "4.1.6", + "bundled": true, + "dev": true + }, + "hosted-git-info": { + "version": "2.1.5", + "bundled": true, + "dev": true + }, + "imurmurhash": { + "version": "0.1.4", + "bundled": true, + "dev": true + }, + "inflight": { + "version": "1.0.5", + "bundled": true, + "dev": true, + "requires": { + "once": "1.4.0", + "wrappy": "1.0.2" + } + }, + "inherits": { + "version": "2.0.3", + "bundled": true, + "dev": true + }, + "ini": { + "version": "1.3.4", + "bundled": true, + "dev": true + }, + "init-package-json": { + "version": "1.9.4", + "bundled": true, + "dev": true, + "requires": { + "glob": "6.0.4", + "npm-package-arg": "4.1.0", + "promzard": "0.3.0", + "read": "1.0.7", + "read-package-json": "2.0.4", + "semver": "5.1.0", + "validate-npm-package-license": "3.0.1", + "validate-npm-package-name": "2.2.2" + }, + "dependencies": { + "glob": { + "version": "6.0.4", + "bundled": true, + "dev": true, + "requires": { + "inflight": "1.0.5", + "inherits": "2.0.3", + "minimatch": "3.0.3", + "once": "1.4.0", + "path-is-absolute": "1.0.0" + }, + "dependencies": { + "path-is-absolute": { + "version": "1.0.0", + "bundled": true, + "dev": true + } + } + }, + "promzard": { + "version": "0.3.0", + "bundled": true, + "dev": true, + "requires": { + "read": "1.0.7" + } + } + } + }, + "lockfile": { + "version": "1.0.1", + "bundled": true, + "dev": true + }, + "lru-cache": { + "version": "4.0.1", + "bundled": true, + "dev": true, + "requires": { + "pseudomap": "1.0.2", + "yallist": "2.0.0" + }, + "dependencies": { + "pseudomap": { + "version": "1.0.2", + "bundled": true, + "dev": true + }, + "yallist": { + "version": "2.0.0", + "bundled": true, + "dev": true + } + } + }, + "minimatch": { + "version": "3.0.3", + "bundled": true, + "dev": true, + "requires": { + "brace-expansion": "1.1.6" + }, + "dependencies": { + "brace-expansion": { + "version": "1.1.6", + "bundled": true, + "dev": true, + "requires": { + "balanced-match": "0.4.2", + "concat-map": "0.0.1" + }, + "dependencies": { + "balanced-match": { + "version": "0.4.2", + "bundled": true, + "dev": true + }, + "concat-map": { + "version": "0.0.1", + "bundled": true, + "dev": true + } + } + } + } + }, + "mkdirp": { + "version": "0.5.1", + "bundled": true, + "dev": true, + "requires": { + "minimist": "0.0.8" + }, + "dependencies": { + "minimist": { + "version": "0.0.8", + "bundled": true, + "dev": true + } + } + }, + "node-gyp": { + "version": "3.6.0", + "bundled": true, + "dev": true, + "requires": { + "fstream": "1.0.10", + "glob": "7.0.6", + "graceful-fs": "4.1.6", + "minimatch": "3.0.3", + "mkdirp": "0.5.1", + "nopt": "3.0.6", + "npmlog": "2.0.4", + "osenv": "0.1.3", + "request": "2.74.0", + "rimraf": "2.5.4", + "semver": "5.3.0", + "tar": "2.2.1", + "which": "1.2.11" + }, + "dependencies": { + "semver": { + "version": "5.3.0", + "bundled": true, + "dev": true + } + } + }, + "nopt": { + "version": "3.0.6", + "bundled": true, + "dev": true, + "requires": { + "abbrev": "1.0.9" + } + }, + "normalize-git-url": { + "version": "3.0.2", + "bundled": true, + "dev": true + }, + "normalize-package-data": { + "version": "2.3.5", + "bundled": true, + "dev": true, + "requires": { + "hosted-git-info": "2.1.5", + "is-builtin-module": "1.0.0", + "semver": "5.1.0", + "validate-npm-package-license": "3.0.1" + }, + "dependencies": { + "is-builtin-module": { + "version": "1.0.0", + "bundled": true, + "dev": true, + "requires": { + "builtin-modules": "1.1.0" + }, + "dependencies": { + "builtin-modules": { + "version": "1.1.0", + "bundled": true, + "dev": true + } + } + } + } + }, + "npm-cache-filename": { + "version": "1.0.2", + "bundled": true, + "dev": true + }, + "npm-install-checks": { + "version": "1.0.7", + "bundled": true, + "dev": true, + "requires": { + "npmlog": "2.0.4", + "semver": "5.1.0" + } + }, + "npm-package-arg": { + "version": "4.1.0", + "bundled": true, + "dev": true, + "requires": { + "hosted-git-info": "2.1.5", + "semver": "5.1.0" + } + }, + "npm-registry-client": { + "version": "7.2.1", + "bundled": true, + "dev": true, + "requires": { + "concat-stream": "1.5.2", + "graceful-fs": "4.1.6", + "normalize-package-data": "2.3.5", + "npm-package-arg": "4.1.0", + "npmlog": "2.0.4", + "once": "1.4.0", + "request": "2.74.0", + "retry": "0.10.0", + "semver": "5.1.0", + "slide": "1.1.6" + }, + "dependencies": { + "concat-stream": { + "version": "1.5.2", + "bundled": true, + "dev": true, + "requires": { + "inherits": "2.0.3", + "readable-stream": "2.0.6", + "typedarray": "0.0.6" + }, + "dependencies": { + "readable-stream": { + "version": "2.0.6", + "bundled": true, + "dev": true, + "requires": { + "core-util-is": "1.0.2", + "inherits": "2.0.3", + "isarray": "1.0.0", + "process-nextick-args": "1.0.7", + "string_decoder": "0.10.31", + "util-deprecate": "1.0.2" + }, + "dependencies": { + "core-util-is": { + "version": "1.0.2", + "bundled": true, + "dev": true + }, + "isarray": { + "version": "1.0.0", + "bundled": true, + "dev": true + }, + "process-nextick-args": { + "version": "1.0.7", + "bundled": true, + "dev": true + }, + "string_decoder": { + "version": "0.10.31", + "bundled": true, + "dev": true + }, + "util-deprecate": { + "version": "1.0.2", + "bundled": true, + "dev": true + } + } + }, + "typedarray": { + "version": "0.0.6", + "bundled": true, + "dev": true + } + } + }, + "retry": { + "version": "0.10.0", + "bundled": true, + "dev": true + } + } + }, + "npm-user-validate": { + "version": "0.1.5", + "bundled": true, + "dev": true + }, + "npmlog": { + "version": "2.0.4", + "bundled": true, + "dev": true, + "requires": { + "ansi": "0.3.1", + "are-we-there-yet": "1.1.2", + "gauge": "1.2.7" + }, + "dependencies": { + "are-we-there-yet": { + "version": "1.1.2", + "bundled": true, + "dev": true, + "requires": { + "delegates": "1.0.0", + "readable-stream": "2.1.5" + }, + "dependencies": { + "delegates": { + "version": "1.0.0", + "bundled": true, + "dev": true + } + } + }, + "gauge": { + "version": "1.2.7", + "bundled": true, + "dev": true, + "requires": { + "ansi": "0.3.1", + "has-unicode": "2.0.0", + "lodash.pad": "4.4.0", + "lodash.padend": "4.5.0", + "lodash.padstart": "4.5.0" + }, + "dependencies": { + "has-unicode": { + "version": "2.0.0", + "bundled": true, + "dev": true + }, + "lodash._baseslice": { + "version": "4.0.0", + "bundled": true, + "dev": true + }, + "lodash._basetostring": { + "version": "4.12.0", + "bundled": true, + "dev": true + }, + "lodash.pad": { + "version": "4.4.0", + "bundled": true, + "dev": true, + "requires": { + "lodash._baseslice": "4.0.0", + "lodash._basetostring": "4.12.0", + "lodash.tostring": "4.1.4" + } + }, + "lodash.padend": { + "version": "4.5.0", + "bundled": true, + "dev": true, + "requires": { + "lodash._baseslice": "4.0.0", + "lodash._basetostring": "4.12.0", + "lodash.tostring": "4.1.4" + } + }, + "lodash.padstart": { + "version": "4.5.0", + "bundled": true, + "dev": true, + "requires": { + "lodash._baseslice": "4.0.0", + "lodash._basetostring": "4.12.0", + "lodash.tostring": "4.1.4" + } + }, + "lodash.tostring": { + "version": "4.1.4", + "bundled": true, + "dev": true + } + } + } + } + }, + "once": { + "version": "1.4.0", + "bundled": true, + "dev": true, + "requires": { + "wrappy": "1.0.2" + } + }, + "opener": { + "version": "1.4.1", + "bundled": true, + "dev": true + }, + "osenv": { + "version": "0.1.3", + "bundled": true, + "dev": true, + "requires": { + "os-homedir": "1.0.0", + "os-tmpdir": "1.0.1" + }, + "dependencies": { + "os-homedir": { + "version": "1.0.0", + "bundled": true, + "dev": true + }, + "os-tmpdir": { + "version": "1.0.1", + "bundled": true, + "dev": true + } + } + }, + "path-is-inside": { + "version": "1.0.1", + "bundled": true, + "dev": true + }, + "read": { + "version": "1.0.7", + "bundled": true, + "dev": true, + "requires": { + "mute-stream": "0.0.5" + }, + "dependencies": { + "mute-stream": { + "version": "0.0.5", + "bundled": true, + "dev": true + } + } + }, + "read-installed": { + "version": "4.0.3", + "bundled": true, + "dev": true, + "requires": { + "debuglog": "1.0.1", + "graceful-fs": "4.1.6", + "read-package-json": "2.0.4", + "readdir-scoped-modules": "1.0.2", + "semver": "5.1.0", + "slide": "1.1.6", + "util-extend": "1.0.1" + }, + "dependencies": { + "debuglog": { + "version": "1.0.1", + "bundled": true, + "dev": true + }, + "readdir-scoped-modules": { + "version": "1.0.2", + "bundled": true, + "dev": true, + "requires": { + "debuglog": "1.0.1", + "dezalgo": "1.0.3", + "graceful-fs": "4.1.6", + "once": "1.4.0" + } + }, + "util-extend": { + "version": "1.0.1", + "bundled": true, + "dev": true + } + } + }, + "read-package-json": { + "version": "2.0.4", + "bundled": true, + "dev": true, + "requires": { + "glob": "6.0.4", + "graceful-fs": "4.1.6", + "json-parse-helpfulerror": "1.0.3", + "normalize-package-data": "2.3.5" + }, + "dependencies": { + "glob": { + "version": "6.0.4", + "bundled": true, + "dev": true, + "requires": { + "inflight": "1.0.5", + "inherits": "2.0.3", + "minimatch": "3.0.3", + "once": "1.4.0", + "path-is-absolute": "1.0.0" + }, + "dependencies": { + "path-is-absolute": { + "version": "1.0.0", + "bundled": true, + "dev": true + } + } + }, + "json-parse-helpfulerror": { + "version": "1.0.3", + "bundled": true, + "dev": true, + "requires": { + "jju": "1.3.0" + }, + "dependencies": { + "jju": { + "version": "1.3.0", + "bundled": true, + "dev": true + } + } + } + } + }, + "readable-stream": { + "version": "2.1.5", + "bundled": true, + "dev": true, + "requires": { + "buffer-shims": "1.0.0", + "core-util-is": "1.0.2", + "inherits": "2.0.3", + "isarray": "1.0.0", + "process-nextick-args": "1.0.7", + "string_decoder": "0.10.31", + "util-deprecate": "1.0.2" + }, + "dependencies": { + "buffer-shims": { + "version": "1.0.0", + "bundled": true, + "dev": true + }, + "core-util-is": { + "version": "1.0.2", + "bundled": true, + "dev": true + }, + "isarray": { + "version": "1.0.0", + "bundled": true, + "dev": true + }, + "process-nextick-args": { + "version": "1.0.7", + "bundled": true, + "dev": true + }, + "string_decoder": { + "version": "0.10.31", + "bundled": true, + "dev": true + }, + "util-deprecate": { + "version": "1.0.2", + "bundled": true, + "dev": true + } + } + }, + "realize-package-specifier": { + "version": "3.0.1", + "bundled": true, + "dev": true, + "requires": { + "dezalgo": "1.0.3", + "npm-package-arg": "4.1.0" + } + }, + "request": { + "version": "2.74.0", + "bundled": true, + "dev": true, + "requires": { + "aws-sign2": "0.6.0", + "aws4": "1.4.1", + "bl": "1.1.2", + "caseless": "0.11.0", + "combined-stream": "1.0.5", + "extend": "3.0.0", + "forever-agent": "0.6.1", + "form-data": "1.0.0-rc4", + "har-validator": "2.0.6", + "hawk": "3.1.3", + "http-signature": "1.1.1", + "is-typedarray": "1.0.0", + "isstream": "0.1.2", + "json-stringify-safe": "5.0.1", + "mime-types": "2.1.11", + "node-uuid": "1.4.7", + "oauth-sign": "0.8.2", + "qs": "6.2.1", + "stringstream": "0.0.5", + "tough-cookie": "2.3.1", + "tunnel-agent": "0.4.3" + }, + "dependencies": { + "aws-sign2": { + "version": "0.6.0", + "bundled": true, + "dev": true + }, + "aws4": { + "version": "1.4.1", + "bundled": true, + "dev": true + }, + "bl": { + "version": "1.1.2", + "bundled": true, + "dev": true, + "requires": { + "readable-stream": "2.0.6" + }, + "dependencies": { + "readable-stream": { + "version": "2.0.6", + "bundled": true, + "dev": true, + "requires": { + "core-util-is": "1.0.2", + "inherits": "2.0.3", + "isarray": "1.0.0", + "process-nextick-args": "1.0.7", + "string_decoder": "0.10.31", + "util-deprecate": "1.0.2" + }, + "dependencies": { + "core-util-is": { + "version": "1.0.2", + "bundled": true, + "dev": true + }, + "isarray": { + "version": "1.0.0", + "bundled": true, + "dev": true + }, + "process-nextick-args": { + "version": "1.0.7", + "bundled": true, + "dev": true + }, + "string_decoder": { + "version": "0.10.31", + "bundled": true, + "dev": true + }, + "util-deprecate": { + "version": "1.0.2", + "bundled": true, + "dev": true + } + } + } + } + }, + "caseless": { + "version": "0.11.0", + "bundled": true, + "dev": true + }, + "combined-stream": { + "version": "1.0.5", + "bundled": true, + "dev": true, + "requires": { + "delayed-stream": "1.0.0" + }, + "dependencies": { + "delayed-stream": { + "version": "1.0.0", + "bundled": true, + "dev": true + } + } + }, + "extend": { + "version": "3.0.0", + "bundled": true, + "dev": true + }, + "forever-agent": { + "version": "0.6.1", + "bundled": true, + "dev": true + }, + "form-data": { + "version": "1.0.0-rc4", + "bundled": true, + "dev": true, + "requires": { + "async": "1.5.2", + "combined-stream": "1.0.5", + "mime-types": "2.1.11" + }, + "dependencies": { + "async": { + "version": "1.5.2", + "bundled": true, + "dev": true + } + } + }, + "har-validator": { + "version": "2.0.6", + "bundled": true, + "dev": true, + "requires": { + "chalk": "1.1.3", + "commander": "2.9.0", + "is-my-json-valid": "2.13.1", + "pinkie-promise": "2.0.1" + }, + "dependencies": { + "chalk": { + "version": "1.1.3", + "bundled": true, + "dev": true, + "requires": { + "ansi-styles": "2.2.1", + "escape-string-regexp": "1.0.5", + "has-ansi": "2.0.0", + "strip-ansi": "3.0.1", + "supports-color": "2.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "2.2.1", + "bundled": true, + "dev": true + }, + "escape-string-regexp": { + "version": "1.0.5", + "bundled": true, + "dev": true + }, + "has-ansi": { + "version": "2.0.0", + "bundled": true, + "dev": true, + "requires": { + "ansi-regex": "2.0.0" + } + }, + "supports-color": { + "version": "2.0.0", + "bundled": true, + "dev": true + } + } + }, + "commander": { + "version": "2.9.0", + "bundled": true, + "dev": true, + "requires": { + "graceful-readlink": "1.0.1" + }, + "dependencies": { + "graceful-readlink": { + "version": "1.0.1", + "bundled": true, + "dev": true + } + } + }, + "is-my-json-valid": { + "version": "2.13.1", + "bundled": true, + "dev": true, + "requires": { + "generate-function": "2.0.0", + "generate-object-property": "1.2.0", + "jsonpointer": "2.0.0", + "xtend": "4.0.1" + }, + "dependencies": { + "generate-function": { + "version": "2.0.0", + "bundled": true, + "dev": true + }, + "generate-object-property": { + "version": "1.2.0", + "bundled": true, + "dev": true, + "requires": { + "is-property": "1.0.2" + }, + "dependencies": { + "is-property": { + "version": "1.0.2", + "bundled": true, + "dev": true + } + } + }, + "jsonpointer": { + "version": "2.0.0", + "bundled": true, + "dev": true + }, + "xtend": { + "version": "4.0.1", + "bundled": true, + "dev": true + } + } + }, + "pinkie-promise": { + "version": "2.0.1", + "bundled": true, + "dev": true, + "requires": { + "pinkie": "2.0.4" + }, + "dependencies": { + "pinkie": { + "version": "2.0.4", + "bundled": true, + "dev": true + } + } + } + } + }, + "hawk": { + "version": "3.1.3", + "bundled": true, + "dev": true, + "requires": { + "boom": "2.10.1", + "cryptiles": "2.0.5", + "hoek": "2.16.3", + "sntp": "1.0.9" + }, + "dependencies": { + "boom": { + "version": "2.10.1", + "bundled": true, + "dev": true, + "requires": { + "hoek": "2.16.3" + } + }, + "cryptiles": { + "version": "2.0.5", + "bundled": true, + "dev": true, + "requires": { + "boom": "2.10.1" + } + }, + "hoek": { + "version": "2.16.3", + "bundled": true, + "dev": true + }, + "sntp": { + "version": "1.0.9", + "bundled": true, + "dev": true, + "requires": { + "hoek": "2.16.3" + } + } + } + }, + "http-signature": { + "version": "1.1.1", + "bundled": true, + "dev": true, + "requires": { + "assert-plus": "0.2.0", + "jsprim": "1.3.0", + "sshpk": "1.9.2" + }, + "dependencies": { + "assert-plus": { + "version": "0.2.0", + "bundled": true, + "dev": true + }, + "jsprim": { + "version": "1.3.0", + "bundled": true, + "dev": true, + "requires": { + "extsprintf": "1.0.2", + "json-schema": "0.2.2", + "verror": "1.3.6" + }, + "dependencies": { + "extsprintf": { + "version": "1.0.2", + "bundled": true, + "dev": true + }, + "json-schema": { + "version": "0.2.2", + "bundled": true, + "dev": true + }, + "verror": { + "version": "1.3.6", + "bundled": true, + "dev": true, + "requires": { + "extsprintf": "1.0.2" + } + } + } + }, + "sshpk": { + "version": "1.9.2", + "bundled": true, + "dev": true, + "requires": { + "asn1": "0.2.3", + "assert-plus": "1.0.0", + "dashdash": "1.14.0", + "ecc-jsbn": "0.1.1", + "getpass": "0.1.6", + "jodid25519": "1.0.2", + "jsbn": "0.1.0", + "tweetnacl": "0.13.3" + }, + "dependencies": { + "asn1": { + "version": "0.2.3", + "bundled": true, + "dev": true + }, + "assert-plus": { + "version": "1.0.0", + "bundled": true, + "dev": true + }, + "dashdash": { + "version": "1.14.0", + "bundled": true, + "dev": true, + "requires": { + "assert-plus": "1.0.0" + } + }, + "ecc-jsbn": { + "version": "0.1.1", + "bundled": true, + "dev": true, + "optional": true, + "requires": { + "jsbn": "0.1.0" + } + }, + "getpass": { + "version": "0.1.6", + "bundled": true, + "dev": true, + "requires": { + "assert-plus": "1.0.0" + } + }, + "jodid25519": { + "version": "1.0.2", + "bundled": true, + "dev": true, + "optional": true, + "requires": { + "jsbn": "0.1.0" + } + }, + "jsbn": { + "version": "0.1.0", + "bundled": true, + "dev": true, + "optional": true + }, + "tweetnacl": { + "version": "0.13.3", + "bundled": true, + "dev": true, + "optional": true + } + } + } + } + }, + "is-typedarray": { + "version": "1.0.0", + "bundled": true, + "dev": true + }, + "isstream": { + "version": "0.1.2", + "bundled": true, + "dev": true + }, + "json-stringify-safe": { + "version": "5.0.1", + "bundled": true, + "dev": true + }, + "mime-types": { + "version": "2.1.11", + "bundled": true, + "dev": true, + "requires": { + "mime-db": "1.23.0" + }, + "dependencies": { + "mime-db": { + "version": "1.23.0", + "bundled": true, + "dev": true + } + } + }, + "node-uuid": { + "version": "1.4.7", + "bundled": true, + "dev": true + }, + "oauth-sign": { + "version": "0.8.2", + "bundled": true, + "dev": true + }, + "qs": { + "version": "6.2.1", + "bundled": true, + "dev": true + }, + "stringstream": { + "version": "0.0.5", + "bundled": true, + "dev": true + }, + "tough-cookie": { + "version": "2.3.1", + "bundled": true, + "dev": true + }, + "tunnel-agent": { + "version": "0.4.3", + "bundled": true, + "dev": true + } + } + }, + "retry": { + "version": "0.10.0", + "bundled": true, + "dev": true + }, + "rimraf": { + "version": "2.5.4", + "bundled": true, + "dev": true, + "requires": { + "glob": "7.0.6" + } + }, + "semver": { + "version": "5.1.0", + "bundled": true, + "dev": true + }, + "sha": { + "version": "2.0.1", + "bundled": true, + "dev": true, + "requires": { + "graceful-fs": "4.1.6", + "readable-stream": "2.0.2" + }, + "dependencies": { + "readable-stream": { + "version": "2.0.2", + "bundled": true, + "dev": true, + "requires": { + "core-util-is": "1.0.1", + "inherits": "2.0.3", + "isarray": "0.0.1", + "process-nextick-args": "1.0.3", + "string_decoder": "0.10.31", + "util-deprecate": "1.0.1" + }, + "dependencies": { + "core-util-is": { + "version": "1.0.1", + "bundled": true, + "dev": true + }, + "isarray": { + "version": "0.0.1", + "bundled": true, + "dev": true + }, + "process-nextick-args": { + "version": "1.0.3", + "bundled": true, + "dev": true + }, + "string_decoder": { + "version": "0.10.31", + "bundled": true, + "dev": true + }, + "util-deprecate": { + "version": "1.0.1", + "bundled": true, + "dev": true + } + } + } + } + }, + "slide": { + "version": "1.1.6", + "bundled": true, + "dev": true + }, + "sorted-object": { + "version": "2.0.0", + "bundled": true, + "dev": true + }, + "spdx-license-ids": { + "version": "1.2.2", + "bundled": true, + "dev": true + }, + "strip-ansi": { + "version": "3.0.1", + "bundled": true, + "dev": true, + "requires": { + "ansi-regex": "2.0.0" + } + }, + "tar": { + "version": "2.2.1", + "bundled": true, + "dev": true, + "requires": { + "block-stream": "0.0.9", + "fstream": "1.0.10", + "inherits": "2.0.3" + } + }, + "text-table": { + "version": "0.2.0", + "bundled": true, + "dev": true + }, + "uid-number": { + "version": "0.0.6", + "bundled": true, + "dev": true + }, + "umask": { + "version": "1.1.0", + "bundled": true, + "dev": true + }, + "validate-npm-package-license": { + "version": "3.0.1", + "bundled": true, + "dev": true, + "requires": { + "spdx-correct": "1.0.2", + "spdx-expression-parse": "1.0.2" + }, + "dependencies": { + "spdx-correct": { + "version": "1.0.2", + "bundled": true, + "dev": true, + "requires": { + "spdx-license-ids": "1.2.2" + } + }, + "spdx-expression-parse": { + "version": "1.0.2", + "bundled": true, + "dev": true, + "requires": { + "spdx-exceptions": "1.0.4", + "spdx-license-ids": "1.2.2" + }, + "dependencies": { + "spdx-exceptions": { + "version": "1.0.4", + "bundled": true, + "dev": true + } + } + } + } + }, + "validate-npm-package-name": { + "version": "2.2.2", + "bundled": true, + "dev": true, + "requires": { + "builtins": "0.0.7" + }, + "dependencies": { + "builtins": { + "version": "0.0.7", + "bundled": true, + "dev": true + } + } + }, + "which": { + "version": "1.2.11", + "bundled": true, + "dev": true, + "requires": { + "isexe": "1.1.2" + }, + "dependencies": { + "isexe": { + "version": "1.1.2", + "bundled": true, + "dev": true + } + } + }, + "wrappy": { + "version": "1.0.2", + "bundled": true, + "dev": true + }, + "write-file-atomic": { + "version": "1.1.4", + "bundled": true, + "dev": true, + "requires": { + "graceful-fs": "4.1.6", + "imurmurhash": "0.1.4", + "slide": "1.1.6" + } + } + } + }, + "semver": { + "version": "4.3.6", + "resolved": "https://registry.npmjs.org/semver/-/semver-4.3.6.tgz", + "integrity": "sha1-MAvG4OhjdPe6YQaLWx7NV/xlMto=", + "dev": true + } + } + }, + "nth-check": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/nth-check/-/nth-check-1.0.1.tgz", + "integrity": "sha1-mSms32KPwsQQmN6rgqxYDPFJquQ=", + "dev": true, + "requires": { + "boolbase": "1.0.0" + } + }, + "nwmatcher": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/nwmatcher/-/nwmatcher-1.4.1.tgz", + "integrity": "sha1-eumwew6oBNt+JfBctf5Al9TklJ8=", + "dev": true, + "optional": true + }, + "oauth-sign": { + "version": "0.8.2", + "resolved": "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.8.2.tgz", + "integrity": "sha1-Rqarfwrq2N6unsBWV4C31O/rnUM=", + "dev": true, + "optional": true + }, + "object-assign": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", + "integrity": "sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=", + "dev": true + }, + "once": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", + "integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=", + "dev": true, + "requires": { + "wrappy": "1.0.2" + } + }, + "optimist": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/optimist/-/optimist-0.6.1.tgz", + "integrity": "sha1-2j6nRob6IaGaERwybpDrFaAZZoY=", + "dev": true, + "requires": { + "minimist": "0.0.10", + "wordwrap": "0.0.3" + } + }, + "optionator": { + "version": "0.8.2", + "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.8.2.tgz", + "integrity": "sha1-NkxeQJ0/TWMB1sC0wFu6UBgK62Q=", + "dev": true, + "optional": true, + "requires": { + "deep-is": "0.1.3", + "fast-levenshtein": "2.0.6", + "levn": "0.3.0", + "prelude-ls": "1.1.2", + "type-check": "0.3.2", + "wordwrap": "1.0.0" + }, + "dependencies": { + "wordwrap": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/wordwrap/-/wordwrap-1.0.0.tgz", + "integrity": "sha1-J1hIEIkUVqQXHI0CJkQa3pDLyus=", + "dev": true, + "optional": true + } + } + }, + "os-homedir": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/os-homedir/-/os-homedir-1.0.2.tgz", + "integrity": "sha1-/7xJiDNuDoM94MFox+8VISGqf7M=", + "dev": true + }, + "os-tmpdir": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz", + "integrity": "sha1-u+Z0BseaqFxc/sdm/lc0VV36EnQ=", + "dev": true + }, + "parse5": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/parse5/-/parse5-1.5.1.tgz", + "integrity": "sha1-m387DeMr543CQBsXVzzK8Pb1nZQ=", + "dev": true, + "optional": true + }, + "path-is-absolute": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", + "integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=", + "dev": true + }, + "performance-now": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/performance-now/-/performance-now-0.2.0.tgz", + "integrity": "sha1-M+8wxcd9TqIcWlOGnZG1bY8lVeU=", + "dev": true, + "optional": true + }, + "pify": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", + "integrity": "sha1-7RQaasBDqEnqWISY59yosVMw6Qw=", + "dev": true + }, + "pinkie": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/pinkie/-/pinkie-2.0.4.tgz", + "integrity": "sha1-clVrgM+g1IqXToDnckjoDtT3+HA=", + "dev": true + }, + "pinkie-promise": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/pinkie-promise/-/pinkie-promise-2.0.1.tgz", + "integrity": "sha1-ITXW36ejWMBprJsXh3YogihFD/o=", + "dev": true, + "requires": { + "pinkie": "2.0.4" + } + }, + "prelude-ls": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.1.2.tgz", + "integrity": "sha1-IZMqVJ9eUv/ZqCf1cOBL5iqX2lQ=", + "dev": true + }, + "punycode": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.4.1.tgz", + "integrity": "sha1-wNWmOycYgArY4esPpSachN1BhF4=", + "dev": true + }, + "q": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/q/-/q-1.5.0.tgz", + "integrity": "sha1-3QG6ydBtMObyGa7LglPunr3DCPE=", + "dev": true + }, + "q-plus": { + "version": "0.0.8", + "resolved": "https://registry.npmjs.org/q-plus/-/q-plus-0.0.8.tgz", + "integrity": "sha1-TMZssZvRRbQ+nhtUAjYUI3e2Hqs=", + "dev": true, + "requires": { + "q": "1.5.0" + } + }, + "qs": { + "version": "6.4.0", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.4.0.tgz", + "integrity": "sha1-E+JtKK1rD/qpExLNO/cI7TUecjM=", + "dev": true, + "optional": true + }, + "readable-stream": { + "version": "1.1.14", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.1.14.tgz", + "integrity": "sha1-fPTFTvZI44EwhMY23SB54WbAgdk=", + "dev": true, + "requires": { + "core-util-is": "1.0.2", + "inherits": "2.0.3", + "isarray": "0.0.1", + "string_decoder": "0.10.31" + } + }, + "request": { + "version": "2.81.0", + "resolved": "https://registry.npmjs.org/request/-/request-2.81.0.tgz", + "integrity": "sha1-xpKJRqDgbF+Nb4qTM0af/aRimKA=", + "dev": true, + "optional": true, + "requires": { + "aws-sign2": "0.6.0", + "aws4": "1.6.0", + "caseless": "0.12.0", + "combined-stream": "1.0.5", + "extend": "3.0.1", + "forever-agent": "0.6.1", + "form-data": "2.1.4", + "har-validator": "4.2.1", + "hawk": "3.1.3", + "http-signature": "1.1.1", + "is-typedarray": "1.0.0", + "isstream": "0.1.2", + "json-stringify-safe": "5.0.1", + "mime-types": "2.1.17", + "oauth-sign": "0.8.2", + "performance-now": "0.2.0", + "qs": "6.4.0", + "safe-buffer": "5.1.1", + "stringstream": "0.0.5", + "tough-cookie": "2.3.2", + "tunnel-agent": "0.6.0", + "uuid": "3.1.0" + } + }, + "rimraf": { + "version": "2.6.1", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.6.1.tgz", + "integrity": "sha1-wjOOxkPfeht/5cVPqG9XQopV8z0=", + "dev": true, + "requires": { + "glob": "7.1.2" + } + }, + "safe-buffer": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.1.tgz", + "integrity": "sha512-kKvNJn6Mm93gAczWVJg7wH+wGYWNrDHdWvpUmHyEsgCtIwwo3bqPtV4tR5tuPaUhTOo/kvhVwd8XwwOllGYkbg==", + "dev": true + }, + "sax": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/sax/-/sax-1.2.4.tgz", + "integrity": "sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==", + "dev": true, + "optional": true + }, + "semver": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.3.0.tgz", + "integrity": "sha1-myzl094C0XxgEq0yaqa00M9U+U8=", + "dev": true + }, + "sntp": { + "version": "1.0.9", + "resolved": "https://registry.npmjs.org/sntp/-/sntp-1.0.9.tgz", + "integrity": "sha1-ZUEYTMkK7qbG57NeJlkIJEPGYZg=", + "dev": true, + "optional": true, + "requires": { + "hoek": "2.16.3" + } + }, + "source-map": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.2.0.tgz", + "integrity": "sha1-2rc/vPwrqBm03gO9b26qSBZLP50=", + "dev": true, + "optional": true, + "requires": { + "amdefine": "1.0.1" + } + }, + "sshpk": { + "version": "1.13.1", + "resolved": "https://registry.npmjs.org/sshpk/-/sshpk-1.13.1.tgz", + "integrity": "sha1-US322mKHFEMW3EwY/hzx2UBzm+M=", + "dev": true, + "optional": true, + "requires": { + "asn1": "0.2.3", + "assert-plus": "1.0.0", + "bcrypt-pbkdf": "1.0.1", + "dashdash": "1.14.1", + "ecc-jsbn": "0.1.1", + "getpass": "0.1.7", + "jsbn": "0.1.1", + "tweetnacl": "0.14.5" + }, + "dependencies": { + "assert-plus": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz", + "integrity": "sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU=", + "dev": true, + "optional": true + } + } + }, + "string_decoder": { + "version": "0.10.31", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz", + "integrity": "sha1-YuIDvEF2bGwoyfyEMB2rHFMQ+pQ=", + "dev": true + }, + "stringstream": { + "version": "0.0.5", + "resolved": "https://registry.npmjs.org/stringstream/-/stringstream-0.0.5.tgz", + "integrity": "sha1-TkhM1N5aC7vuGORjB3EKioFiGHg=", + "dev": true, + "optional": true + }, + "symbol-tree": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/symbol-tree/-/symbol-tree-3.2.2.tgz", + "integrity": "sha1-rifbOPZgp64uHDt9G8KQgZuFGeY=", + "dev": true, + "optional": true + }, + "tmp": { + "version": "0.0.31", + "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.0.31.tgz", + "integrity": "sha1-jzirlDjhcxXl29izZX6L+yd65Kc=", + "dev": true, + "requires": { + "os-tmpdir": "1.0.2" + } + }, + "tough-cookie": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.3.2.tgz", + "integrity": "sha1-8IH3bkyFcg5sN6X6ztc3FQ2EByo=", + "dev": true, + "requires": { + "punycode": "1.4.1" + } + }, + "tr46": { + "version": "0.0.3", + "resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz", + "integrity": "sha1-gYT9NH2snNwYWZLzpmIuFLnZq2o=", + "dev": true, + "optional": true + }, + "tunnel-agent": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz", + "integrity": "sha1-J6XeoGs2sEoKmWZ3SykIaPD8QP0=", + "dev": true, + "optional": true, + "requires": { + "safe-buffer": "5.1.1" + } + }, + "tweetnacl": { + "version": "0.14.5", + "resolved": "https://registry.npmjs.org/tweetnacl/-/tweetnacl-0.14.5.tgz", + "integrity": "sha1-WuaBd/GS1EViadEIr6k/+HQ/T2Q=", + "dev": true, + "optional": true + }, + "type-check": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.3.2.tgz", + "integrity": "sha1-WITKtRLPHTVeP7eE8wgEsrUg23I=", + "dev": true, + "requires": { + "prelude-ls": "1.1.2" + } + }, + "universalify": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.1.1.tgz", + "integrity": "sha1-+nG63UQ3r0wUiEHjs7Fl+enlkLc=", + "dev": true + }, + "user-home": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/user-home/-/user-home-2.0.0.tgz", + "integrity": "sha1-nHC/2Babwdy/SGBODwS4tJzenp8=", + "dev": true, + "requires": { + "os-homedir": "1.0.2" + } + }, + "uuid": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-3.1.0.tgz", + "integrity": "sha512-DIWtzUkw04M4k3bf1IcpS2tngXEL26YUD2M0tMDUpnUrz2hgzUBlD55a4FjdLGPvfHxS6uluGWvaVEqgBcVa+g==", + "dev": true, + "optional": true + }, + "verror": { + "version": "1.10.0", + "resolved": "https://registry.npmjs.org/verror/-/verror-1.10.0.tgz", + "integrity": "sha1-OhBcoXBTr1XW4nDB+CiGguGNpAA=", + "dev": true, + "optional": true, + "requires": { + "assert-plus": "1.0.0", + "core-util-is": "1.0.2", + "extsprintf": "1.3.0" + }, + "dependencies": { + "assert-plus": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz", + "integrity": "sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU=", + "dev": true, + "optional": true + } + } + }, + "webidl-conversions": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-2.0.1.tgz", + "integrity": "sha1-O/glj30xjHRDw28uFpQCoaZwNQY=", + "dev": true, + "optional": true + }, + "whatwg-url-compat": { + "version": "0.6.5", + "resolved": "https://registry.npmjs.org/whatwg-url-compat/-/whatwg-url-compat-0.6.5.tgz", + "integrity": "sha1-AImBEa9om7CXVBzVpFymyHmERb8=", + "dev": true, + "optional": true, + "requires": { + "tr46": "0.0.3" + } + }, + "wordwrap": { + "version": "0.0.3", + "resolved": "https://registry.npmjs.org/wordwrap/-/wordwrap-0.0.3.tgz", + "integrity": "sha1-o9XabNXAvAAI03I0u68b7WMFkQc=", + "dev": true + }, + "wrappy": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", + "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=", + "dev": true + }, + "xml-name-validator": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/xml-name-validator/-/xml-name-validator-2.0.1.tgz", + "integrity": "sha1-TYuPHszTQZqjYgYb7O9RXh5VljU=", + "dev": true, + "optional": true + } + } +} diff --git a/docs/_book/package.json b/docs/_book/package.json new file mode 100644 index 000000000..0e5f42b6c --- /dev/null +++ b/docs/_book/package.json @@ -0,0 +1,29 @@ +{ + "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": { + "gitbook-cli": "^2.3.2", + "gitbook-plugin-expandable-chapters": "^0.2.0", + "gitbook-plugin-jsfiddle": "^1.0.0", + "gitbook-plugin-splitter": "0.0.8", + "gitbook-plugin-theme-api": "^1.1.2" + } +} diff --git a/docs/_book/search_index.json b/docs/_book/search_index.json new file mode 100644 index 000000000..c28f3a17c --- /dev/null +++ b/docs/_book/search_index.json @@ -0,0 +1 @@ +{"index":{"version":"0.5.12","fields":[{"name":"title","boost":10},{"name":"keywords","boost":15},{"name":"body","boost":1}],"ref":"url","documentStore":{"store":{"./":["codingpages:","demo","fineuidoc","fineui文档","githubpages:","http://fanruan.coding.me/fineui","http://fanruan.coding.me/fineui/dist/index.html","http://www.finedevelop.com/display/dr/fineui","https://fanruan.github.io/fineui","kms:","代码设计文档","文档地址","概览"],"START.html":["http://www.finedevelop.com/pages/viewpage.action?pageid=15330077","kms:","开发教程","起步"],"OVERVIEW.html":["getvalue,","populate这几个方法来设置值,获取值(展示类控件除外)和刷新控件","setvalid这几个方法来设置使能,是否可见,是否有效状态,并且在fineui2.0之后,会自动给子组件设置同样的状态,不要重写这些方法,一些需要在设置状态时的额外操作可以通过重写_setxxx来实现","setvisible,","使用populate来清空或者重置布局,不要使用empty,","慎用resiz","控件都会提供setenable,","控件都会提供setvalue,","谨慎监听和触发bi.controller.event_change事件,一般来说,控件都会有一个bi.classname.event_change事件,一些特殊的事件会在对应控件文档中列出","通用规范"],"core/layout/vertical.html":["\"#wrapper\",","\"bi.label\",","\"layout","\"这里设置了hgap(水平间距),vgap(垂直间距)\",","'demo.vertical',","0","30","[{","api","bg1\",","bg2\",","bgap","bi.createwidget({","bi.vert","boolean","cls:","element:","height:","hgap","items:","lgap","number","padding值","rgap","scrolli","sourc","text:","tgap","true","true,fals","type:","vertic","vgap","{","});","},","}]","—","参数","可选值","垂直流式布局","基础属性","效果相当于容器bottom","效果相当于容器left","效果相当于容器right","效果相当于容器top","效果相当于容器上下padding值","效果相当于容器左右padding值","类型","设置垂直方向是否有滚动条","说明","默认值"],"core/layout/horizontal.html":["\"#wrapper\",","\"bi.text_button\",","\"layout","\"middle\"","\"这里设置了lgap,rgap,tgap,bgap\",","'bi.horizontal',","0","200","30,","[","[{","]","api","array","bg1\",","bg2\",","bgap","bi.createwidget({","bi.horizont","boolean","cls:","columns","element:","height:","hgap","horizont","items:","lgap","number","padding值","rgap","scrollx","sourc","string","text:","tgap","true","true,fals","type:","verticalalign","vgap","width:","{","});","},","}]","—","元素的垂直对齐方式","参数","参考相关css属性","可选值","基础属性","效果相当于容器bottom","效果相当于容器left","效果相当于容器right","效果相当于容器top","效果相当于容器上下padding值","效果相当于容器左右padding值","每列宽度所组成的数组","水平流式布局","类型","设置水平方向是否有滚动条","说明","默认值"],"core/layout/htape.html":["\"#wrapper\",","\"bi.htape\",","\"layout","'1',","'2',","'3',","'bi.button',","'bi.label',","'button1'}},{width:","'button2'}},{width:","'button3'}}]","'fill',","'fill',el:","0","100,","100,el:","200,","200,el:",":","[","[{width:","]","api","array","bg1\"","bg2\"","bg3\"","bgap","bi.createwidget({","bi.htap","cls:","el","element:","hgap","htape","item","lgap","number","padding值","rgap","sourc","text","text:","tgap","type","type:","vgap","width:","{","{type:","}","});","},","—","参数","可选值","基础属性","子控件数组","效果相当于容器bottom","效果相当于容器left","效果相当于容器right","效果相当于容器top","效果相当于容器上下padding值","效果相当于容器左右padding值","水平tape布局,两列定宽,一列自适应","类型","说明","默认值"],"core/layout/vtape.html":["\"#wrapper\",","\"bi.vtape\",","\"layout","'1',","'2',","'3',","'bi.button',","'bi.label',","'button1'}},{height:","'button2'}},{height:","'button3'}}","'fill',","'fill',el:","0","100,","100,el:","200,","200,el:",":","[","]","api","array","bg1\"","bg2\"","bg3\"","bgap","bi.createwidget({","bi.vtap","cls:","el","element:","height:","hgap","item","lgap","number","padding值","rgap","sourc","text","text:","tgap","type","type:","vgap","vtape","{","{height:","{type:","}","});","},","—","参数","可选值","垂直tape布局,两列定高,一列自适应","基础属性","子控件数组","效果相当于容器bottom","效果相当于容器left","效果相当于容器right","效果相当于容器top","效果相当于容器上下padding值","效果相当于容器左右padding值","类型","说明","默认值"],"core/layout/center_adapt.html":["\"#wrapper\",","\"bi.center_adapt\",","\"bi.label\",","\"center","\"layout","0","1\",","10,","2\",","30","[","[{","]","adapt","api","array","bg1\",","bg2\",","bgap","bi.center_adapt","bi.createwidget({","center_adapt","cls:","columns","element:","height:","hgap","hgap:","items:","lgap","number","padding值","rgap","sourc","text:","tgap","type:","vgap","{","})","},","}]","—","参数","可选值","基础属性","效果相当于容器bottom","效果相当于容器left","效果相当于容器right","效果相当于容器top","效果相当于容器上下padding值","效果相当于容器左右padding值","每列宽度所组成的数组","类型","自适应左右垂直居中布局","说明","默认值"],"core/layout/vertical_adapt.html":["\"#wrapper\",","\"bi.label\",","\"bi.vertical_adapt\",","\"layout","\"vertic","0","10,","30","300,","[","[{","]","adapt上下自适应\",","api","array","bg1\",","bg2\",","bgap","bi.createwidget({","bi.vertical_adapt","cls:","columns","element:","height:","hgap","items:","lgap","number","padding值","rgap","sourc","text:","tgap","type:","vertical_adapt","vgap","vgap:","width:","{","})","},","}]","—","参数","可选值","基础属性","效果相当于容器bottom","效果相当于容器left","效果相当于容器right","效果相当于容器top","效果相当于容器上下padding值","效果相当于容器左右padding值","每列宽度所组成的数组","类型","自适应垂直居中布局","说明","默认值"],"core/layout/left_right_vertical_adapt.html":["\"#wrapper\",","\"bi.label\",","\"layout","\"右边的垂直居中\",","\"左边的垂直居中\",","'bi.left_right_vertical_adapt',","0","10,","100,","30","[","[{","]","api","array","bg1\",","bi.createwidget({","bi.left_right_vertical_adapt","cls:","element:","height:","item","items:","left:","left_right_vertical_adapt","lhgap","lhgap:","llgap","lrgap","number","padding值","rhgap","rhgap:","right:","rrgap","sourc","text:","type:","width:","{","}","});","}]","}],","—","参数","可选值","右边容器left","右边容器right","右边容器左右padding值","基础属性","子控件数组","左右分离,垂直方向居中容器","左边容器left","左边容器right","左边容器左右padding值","类型","说明","默认值"],"core/layout/flow.html":["\"#wrapper\",","\"bi.center_adapt\",","\"bi.label\",","\"bi.left\",","\"bi.right\",","\"layout","\"left","\"right","0","1\",","2\",","20","20,","30,","[{","api","array","bg1\",","bg2\",","bg3\",","bg4\",","bgap","bi.createwidget({","bi.flow","cls:","element:","flow","height:","hgap","hgap:","item","items:","lgap","number","padding值","rgap","sourc","text:","tgap","type:","vgap","vgap:","{","});","},","}]","}],","—","参数","可选值","基础属性","子控件数组","效果相当于容器bottom","效果相当于容器left","效果相当于容器right","效果相当于容器top","效果相当于容器上下padding值","效果相当于容器左右padding值","类型","说明","靠左/右对齐的自由浮动布局","默认值"],"core/layout/center.html":["\"#wrapper\",","\"bi.center\",","\"bi.label\",","\"center","\"layout","\"normal\"","0","1,这里虽然设置label的高度30,但是最终影响高度的是center布局\",","20","20,","2,为了演示label是占满整个的,用了一个whitespace:normal\",","[{","api","bg1\",","bg2\",","bgap","bi.cent","bi.createwidget({","center","cls:","element:","hgap","hgap:","items:","lgap","number","padding值","rgap","sourc","text:","tgap","type:","vgap","vgap:","whitespace:","});","},{","}],","—","参数","可选值","基础属性","效果相当于容器bottom","效果相当于容器left","效果相当于容器right","效果相当于容器top","效果相当于容器上下padding值","效果相当于容器左右padding值","水平和垂直方向都居中容器,","类型","说明","非自适应,用于宽度高度固定的面板","默认值"],"core/layout/horizontal_adapt.html":["\"#wrapper\",","\"bi.horizontal_adapt\",","\"bi.label\",","\"horizont","\"layout","//width:","0","10,","30","300,","[","[{","]","adapt左右自适应\",","api","array","bg1\",","bg2\",","bgap","bi.createwidget({","bi.horizontal_adapt","bi.verticalalign.middl","cls:","columns","const","element:","height:","hgap","horizontal_adapt","items:","lgap","number","padding值","rgap","sourc","text:","tgap","type:","verticalalign","vgap","vgap:","width:","{","})","},","}]","—","元素的垂直对齐方式","参数","参考相关css属性","可选值","基础属性","效果相当于容器bottom","效果相当于容器left","效果相当于容器right","效果相当于容器top","效果相当于容器上下padding值","效果相当于容器左右padding值","每列宽度所组成的数组","类型","自适应左右居中布局","说明","默认值"],"core/layout/horizontal_auto.html":["\"#wrapper\",","\"bi.horizontal_auto\",","\"bi.label\",","\"horizont","\"layout","0","10,","30","300,","[{","api","auto左右自适应\",","bg1\",","bg2\",","bgap","bi.createwidget({","bi.horizontal_auto","cls:","element:","height:","hgap","horizontal_auto","items:","lgap","number","padding值","rgap","sourc","text:","tgap","type:","vgap","vgap:","width:","{","})","},","}]","—","参数","可选值","基础属性","效果相当于容器bottom","效果相当于容器left","效果相当于容器right","效果相当于容器top","效果相当于容器上下padding值","效果相当于容器左右padding值","水平方向居中自适应容器","类型","说明","默认值"],"core/layout/horizontal_float.html":["\"#wrapper\",","\"bi.horizontal_float\",","\"bi.label\",","\"horizont","\"layout","0","10,","200,","[","[{","]","api","array","bg1\",","bgap","bi.createwidget({","bi.horizontal_float","cls:","element:","float左右自适应\",","height:30","hgap","horizontal_float","item","items:","lgap","number","padding值","rgap","sourc","text:","tgap","type:","vgap","vgap:","width:","})","}]","—","参数","可选值","基础属性","子控件数组","效果相当于容器bottom","效果相当于容器left","效果相当于容器right","效果相当于容器top","效果相当于容器上下padding值","效果相当于容器左右padding值","浮动的水平居中布局","类型","说明","默认值"],"core/layout/float_center.html":["\"#wrapper\",","\"bi.label\",","\"floatcenter与center的不同在于,它可以控制最小宽度和最大宽度\",","\"layout","\"normal\"","'bi.float_center',","0","20","20,","300,","[{","api","bg1\",","bg2\",","bgap","bi.createwidget({","bi.float_cent","cls:","element:","float_cent","height:","hgap","hgap:","items:","lgap","number","padding值","rgap","sourc","text:","tgap","type:","vgap","vgap:","whitespace:","{","});","},","}],","—","参数","可选值","基础属性","效果相当于容器bottom","效果相当于容器left","效果相当于容器right","效果相当于容器top","效果相当于容器上下padding值","效果相当于容器左右padding值","浮动布局实现的居中容器","类型","说明","默认值"],"core/layout/border.html":["\"#wrapper\",","\"bi.label\"},","\"bi.label\"}}","'bi.border',","20","20,","200,","30,","300,","50,","[","]","api","bi.bord","bi.createwidget({","border","bottom:","center:","east:","el:","element:","height:","item","items:","left:","north,east,west,south,cent","north:","object","right:","sourc","south:","top:","type:","west:","width:","{","{el:","{type:","}","});","},","上下的高度固定/左右的宽度固定,中间的高度/宽度自适应","参数","可选值","基础属性","子控件对象","类型","说明","默认值"],"core/layout/grid.html":["\"#wrapper\",","\"bi.label\",","\"column","\"layout","'bi.grid',","0\",","0,","1\",","1,","2,","[]","[{","api","array","bg1\"","bg2\"","bg5\"","bg6\"","bi.createwidget({","bi.grid","cls:","column","column:","columns:","el:","element:","grid","item","items:","null","number","row","row:","rows:","sourc","text:","type:","{","}","});","},","}]","—","列数","参数","可选值","基础属性","子控件数组","类型","网格布局","行数","说明","默认值"],"core/layout/table.html":["\"bi.table\",","\"body\",","\"fill\",","'bi.button',","'button1'}},{width:","'button2'}},{width:","'button3'}}]","'fill',el:","'fill']","0","10","100,el:","110,","130],","20,","200,","200,el:","200],","30","30,","50,","70,","90,","[10,","[100,","[200,","[],","[{width:","additem","additem(arr)","array","array/numb","bi.createwidget({","bi.tabl","boolean","columns","columnsize:","element:","hgap","hgap:","item","items:","number","poplulate(items)","popul","rowsiz","rowsize:","scrolli","sourc","tabl","table作为一个列表集合存在,继承bi.widget","text:","true","type:","vgap","vgap:","{type:","});","内部元素间横向距离","内部元素间纵向距离","列项宽度","参数","参数设置","增加内容","子项","方法","方法名","是否出现滚动条","更换新的内容","用法","类型","行高","说明","默认值"],"core/layout/td.html":["\"bi.td\",","'body',","'fill'],","'label1'}},{","'label2'},{","'label3'}","0","20,","200,","200]","[20,","[200,","[[{el:","[]","additem","additem(arr)","array","bi.createwidget({","bi.td","columns","columnsize:","el:","element:","hgap","item","items:","number","poplulate(items)","popul","sourc","td","type:","vgap","{text:","});","内容项","列宽","单元格控件,继承bi.layout","参数","增加内容","方法","方法名","更换新的内容","横向间隙","用法","类型","纵向间隙","说明","默认值"],"core/abstract/button_group.html":["\"#wrapper\",","\"bi.button_group\",","\"bi.center\",hgap:","\"bi.label\",","\"bi.vertical\"","\"button_group\"","0,vgap:","0}]","50,","[","[{","[{type:","]","additem","api","array","behavior","bi.button_group","bi.buttongroup.choose_type_singl","bi.buttongroup.choose_type_single,","bi.createwidget({","button_group","choose_type_single,choose_type_multi,choose_type_all,choose_type_none,choose_type_default","choosetyp","choosetype:","choosetype可选值为","const","destroy","dobehavior","el:","element:","empti","getallbutton","getallleav","getindexbyvalu","getnodebyid","getnodebyvalu","getnotselectedbutton","getnotselectedvalu","getselectedbutton","getvalu","height:","id","index","item","items:","layout","layouts:","object","popul","prependitem","removeitem","removeitemat","setenabledvalu","setnotselectedvalu","setvalu","sourc","text:","type:","valu","value,可以是单个值也可以是个数组","{","}","})","},","}]","}],","—","一组具有相同属性的元素集合,基类bi.widget","内部前插入","内部后插入","刷新列表","参数","可选值","名称","回调参数","基础属性","子组件数组","对外方法","布局","根据id获取节点","根据value值获取value在数组中的索引","根据value值获取节点","清空组件","移除制定元素","移除指定索引处的item","类型","自定义列表中item项的行为,如高亮,标红等","获取所有button","获取所有未被选中的元素","获取所有的叶子节点","获取所有被选中的元素","获取没有被选中的值","获取被选中的值","见上","设置value值","设置value值可用","设置未被选中的值","说明","选择类型","销毁组件","默认值"],"core/abstract/button_tree.html":["\"#wrapper\",","\"0\",","\"bi.button_tree\",","\"bi.label\",","\"bi.vertical\"","\"label1\",","[{","bi.button_tre","bi.buttongroup.choose_type_multi,","bi.createwidget({","button_tre","choosetype:","element:","getallbutton","getallleav","getindexbyvalu","getnodebyid","getnodebyvalu","getnotselectedbutton","getnotselectedvalu","getselectedbutton","getvalu","height:50,","id","items:","layouts:","setenabledvalu","setnotselectedvalu","setvalu","sourc","text:","type:","valu","value,可以是单个值也可以是个数组","value:","vgap:10","})","}]","}],","—","一组具有相同属性的元素集合,基类bi.buttongroup","名称","回调参数","对外方法","根据id获取节点","根据value值获取value在数组中的索引","根据value值获取节点","获取所有button","获取所有未被选中的元素","获取所有的叶子节点","获取所有被选中的元素","获取没有被选中的值","获取被选中的值","设置value值","设置value值可用","设置未被选中的值","说明"],"core/abstract/virtual_group.html":["\"#wrapper\",","\"bi.center\",hgap:","\"bi.center_adapt\",","\"bi.vertical\"","\"bi.virtual_group\",","0,vgap:","0}]","300,","500,","[","[{","[{type:","]","additem","api","array","bi.buttongroup.choose_type_multi,","bi.createwidget({","bi.virtual_group","choosetype:","element:","getvalu","height:","item","items:[]","layout","layouts:","popul","prependitem","render","setvalu","sourc","type:","value,可以是单个值也可以是个数组","virtual_group","width:","{","})","},","}],","—","优化过的buttongroup,删除看不见的元素","内部前插入","内部后插入","刷新列表","参数","可选值","名称","回调参数","基础属性","基类bi.widget","子组件数组","对外方法","布局","渲染列表","类型","获取被选中的值","设置value值","说明","默认值"],"core/abstract/custom_tree.html":["\"bi.button_tree\",","\"bi.button_tree\",choosetype:","\"bi.custom_tree\",","\"bi.custom_tree\"}}","\"bi.plus_group_node\",","\"bi.single_select_item\",","\"bi.vertical\",","\"bi.vertical\"}]}","\"根目录\",","\"第一级目录1\",","\"第二级文件1\",","0,","0,layouts:","1,","11,","2,","25","30","[","[{","[{type:","]","additem","api","array","bi.createwidget({","bi.custom_tre","choosetype:","custom_tre","el","el:","empti","expand","getallbutton","getallleav","getnodebyid","getnodebyvalu","getvalu","height:","hgap:","id","id:","inittre","item","items:","itemscr","layouts:","node","object","open:","pid:","popul","popup组件","prependitem","render","setvalu","sourc","stroke","true,","type:","valu","value,可以是单个值也可以是个数组","value:","{","{el:","{type:","{},popup:","}","});","},","}]","—","内部前插入","内部后插入","刷新列表","参数","可选值","名称","回调参数","基础属性","子组件数组","子组件构造器","对外方法","开启popup元素","构造树结构","根据id获取节点","根据value值获取节点","清空组件","渲染列表","生成树方法","类型","自定义树,基类bi.widget","获取所有button","获取所有的叶子节点","获取被选中的值","设置value值","说明","默认值"],"core/abstract/grid_view.html":["\"bi.grid_view\",","()","0","100,","100;","30,","300,","30;","400,","[","[],","]","api","array","b","bi.createwidget({","bi.grid_view","bi.gridview.event_scrol","boolean","columnwidthgett","columnwidthgetter:","estimatedcolumns","estimatedcolumnsize:","estimatedrows","estimatedrowsize:","function","getmaxscrollleft","getmaxscrolltop","getscrollleft","getscrolltop","grid_view","height","height:","item","items:","number","number,funct","overflowi","overflowx","overscancolumncount","overscanrowcount","popul","restor","return","rowheightgett","rowheightgetter:","scrollleft","scrollleft,","scrolltop","scrolltop:","scrolltop}","setestimatedcolumns","setestimatedrows","setoverflowi","setoverflowx","setscrollleft","setscrolltop","sourc","true","true,fals","type:","width","width:","{","{scrollleft:","}","});","},","—","事件","列宽,必设","刷新列表","参数","可以合并单元格,指定行列可以删除看不见的元素,基类bi.widget","可选值","名称","回调参数","基础属性","子组件数组","对外方法","是否显示横向滚动条","是否显示纵向滚动条","每格列宽","每格行宽","滚动时触发的事件","滚动条相对于左边的偏移","滚动条相对于顶部的偏移","类型","获取滚动条相对于左边的偏移","获取滚动条相对于左边的最大偏移","获取滚动条相对于顶部的偏移","获取滚动条相对于顶部的最大偏移","行宽,必设","设置列宽","设置是否显示横向滚动条","设置滚动条相对于左边的偏移","设置滚动条相对于顶部的偏移","设置行宽","说明","超出可视范围区域预加载多少列","超出可视范围区域预加载多少行","还原列表设置","预估列宽,rowheightgetter为function时必设","预估行宽,columnwidthgetter为function时必设","默认值"],"core/abstract/collection_view.html":["\"bi.collection_view\",","%","(index)","*","/","0","10","10)","300,","400,","50","50,","[","[],","]","api","array","b","bi.collection_view","bi.collectionview.event_scrol","bi.createwidget({","boolean","cellsizeandpositiongett","cellsizeandpositiongetter:","collection_view","collectionview,指定行列可以删除看不见的元素","element:\"#wrapper\",","function","getmaxscrollleft","getmaxscrolltop","getscrollleft","getscrolltop","height","height:","horizontaloverscans","index","item","items:","math.floor(index","number","overflowi","overflowx","popul","restor","return","scrollleft","scrollleft,","scrolltop","scrolltop:","scrolltop}","setoverflowi","setoverflowx","setscrollleft","setscrolltop","sourc","true","true,fals","type:","verticaloverscans","width","width:","x:","y:","{","{scrollleft:","}","});","—","事件","列宽,必设","刷新列表","参数","可选值","名称","回调参数","基础属性","基类bi.widget","子组件数组","对外方法","是否显示横向滚动条","是否显示纵向滚动条","横向超出可视范围区域预加载的数量","滚动时触发的事件","滚动条相对于左边的偏移","滚动条相对于顶部的偏移","类型","纵向超出可视范围区域预加载的数量","获取滚动条相对于左边的偏移","获取滚动条相对于左边的最大偏移","获取滚动条相对于顶部的偏移","获取滚动条相对于顶部的最大偏移","行宽,必设","设置是否显示横向滚动条","设置每个单元格的位置坐标和宽高","设置滚动条相对于左边的偏移","设置滚动条相对于顶部的偏移","说明","还原列表设置","默认值"],"core/abstract/virtual_list.html":["\".\"","\"bi.label\",","\"bi.virtual_list\",","\"xxxx\"}],","(i","(i,","+","0","1)","10","100","30,","[","]","api","array","bi.createwidget({","bi.extend({},","bi.map([{value:","bi.virtual_list","blocksiz","destroy","element:\"body\",","function","height:","item","item)","item,","item.text,","items:","mount","number","overscanheight","popul","render","restor","return","scrolltop","sourc","text:","type:","virtual_list","{","})","});","—","刷新列表","参数","可选值","名称","回调参数","基础属性","子组件数组","对外方法","渲染列表","滚动加载的个数","滚动条相对于顶部的偏移","看不见的元素全部删除的list,基类bi.widget","类型","组件挂载","说明","超出可视范围区域的高度","还原列表设置","销毁组件","默认值"],"core/combination/bi.combo.html":["\"bi","\"bi.button\",","\"bi.combo\",","\"body\",","\"bottom\"","\"click\"","\"left,right,center\"","\"测试\",","0","2,","25","adjustheight","adjustlength","adjustlength:","adjustwidth","adjustxoffset","adjustyoffset","api","bi.combo","bi.combo.event_after_hideview","bi.combo.event_after_init","bi.combo.event_after_popupview","bi.combo.event_before_hideview","bi.combo.event_before_popupview","bi.combo.event_chang","bi.combo.event_collaps","bi.combo.event_expand","bi.combo.event_trigger_chang","bi.createwidget({","boolean","bottom","bottom,left","bottom,right","click,hov","combo","combo,基类bi.widget","comboclass","combo类","destroy","destroywhenhid","direct","el","el:","element:","fals","function","getpopupposit","getvalu","getview","height","height:","hidecheck","hideview","hover\"","hoverclass","hover类","isdefaultinit","isneedadjustheight","isneedadjustwidth","isviewvis","item","left","left,right,cent","number","object","offsetstyl","popul","popup","popup\"","popup:","resetlistheight","resetlistwidth","right","setvalu","showview","sourc","stopev","stoppropag","string","text:","toggl","top","top,left","top,right","trigger","trigger发生改变触发","true","true,fals","type:","v","value值","width","{","{}","|","}","});","},","—","下拉列表弹出前触发","下拉列表弹出后触发","下拉列表收起前触发","下拉列表收起后触发","下拉列表的弹出方式","下拉框初始化后触发","下拉框展开触发","下拉框收起触发","事件","切换状态","刷新列表","参数","可选值","名称","回调参数","基础属性","对外方法","开启或者隐藏弹出层","弹出列表和trigger的位置关系","弹出列表和trigger的距离","弹出层","弹出层显示位置","弹出层点击触发","弹窗层是否可见","是否阻止事件","是否隐藏弹出层检测","是否需要宽度调整","是否需要高度调整","是否默认初始化子节点","显示弹出层","类型","自定义下拉框trigger","获取combo","获取弹出层","获取弹出层的位置","设置combo","说明","调整宽度","调整横向偏移","调整纵向偏移","调整高度","重置列表宽度","重置列表高度","销毁组件","阻止事件冒泡","隐藏弹出层","隐藏弹窗层是否销毁","默认值"],"core/combination/bi.expander.html":["\"#wrapper\",","\"bi","\"bi.expander\",","\"bi.icon_text_node\",","\"bi.single_select_item\",","\"bottom\"","\"click\"","\"expander\"","\"pull","\"项目1\",","\"项目2\",","0","1","2","25,","[{","adjustlength","api","bi.createwidget({","bi.expand","bi.expander.event_after_hideview","bi.expander.event_after_init","bi.expander.event_after_popupview","bi.expander.event_before_hideview","bi.expander.event_before_popupview","bi.expander.event_chang","bi.expander.event_collaps","bi.expander.event_expand","bi.expander.event_trigger_chang","boolean","bottom","bottom,left","bottom,right","click,hov","cls:","destroy","direct","el","el:","element:","expand","expanderclass","expander初始化后触发","expander展开触发","expander收起触发","fals","font\",","getallleav","getnodebyid","getnodebyvalu","getvalu","getview","ha","height:","hideview","hover\"","hoverclass","hover类","id","isdefaultinit","isexpand","isviewvis","item","items:","left","number","object","popul","popup","popup\"","popup:","right","setvalu","showview","sourc","string","text:","toggl","top","top,left","top,right","trigger","trigger发生改变触发","true","true,fals","type:","v","valu","value:","value值","{","|","}","});","},","}]","—","下拉列表弹出前触发","下拉列表弹出后触发","下拉列表收起前触发","下拉列表收起后触发","下拉列表的弹出方式","事件","切换状态","刷新列表","参数","可选值","名称","回调参数","基础属性","对外方法","展开类","弹出列表和trigger的位置关系","弹出列表和trigger的距离","弹出层","弹出层点击触发","弹窗层是否可见","是否默认初始化子节点","显示弹出层","某个可以展开的节点,基类bi.widget","根据id获取节点","根据value值获取节点","类型","自定义下拉框trigger","节点是否展开","获取combo","获取弹出层","获取所有的叶子节点","设置combo","说明","销毁组件","隐藏弹出层","默认值"],"core/combination/group_combo.html":["\"\",","\"\"}","\"#wrapper\",","\"2010年\",","\"bi.button_tree\",choosetype:","\"bi.combo_group\",","\"bi.icon_text_icon_item\",","\"bi.single_select_item\",","\"bi.text_button\",","\"bi.vertical\"}]}}","\"bottom\"","\"click\"","\"close","\"一月\",","0","0,layouts:","11","2010,","25,","[","[{","[{type:","]","adjustlength","api","array","bi.combo_group","bi.createwidget({","boolean","bottom","bottom,left","bottom,right","childern","children:","click,hov","direct","el","el:","element:","fals","font\"","getvalu","group_combo","ha","height:","iconcls:","isdefaultinit","isneedadjustheight","isneedadjustwidth","item","left","number","object","popul","popup","right","setvalu","sourc","string","text:","top","top,left","top,right","trigger","true,fals","type:","v","value:","value值","{","{el:","{type:","|","});","},","}]","—","下拉列表的弹出方式","刷新列表","参数","可选值","名称","回调参数","基础属性","基类bi.widget","子组件","对外方法","弹出列表和trigger的位置关系","弹出列表和trigger的距离","弹出层","是否需要宽度调整","是否需要高度调整","是否默认初始化子节点","类型","自定义下拉框trigger","获取combo","设置combo","说明","默认值"],"core/combination/loader.html":["\"#wrapper\",","\"bi.loader\",","\"bi.single_select_item\",","\"top\"","25","[]","additem","api","array","bi.createwidget({","bi.extend(v,","bi.load","bi.uuid()","boolean","combo弹出层位置","count","destroy","direct","element:","empti","faker.name.findname(),","function","function(i,","function(idx,","function(option)","function(options,","getallbutton","getallleav","getindexbyvalu","getnodebyid","getnodebyvalu","getnotselectedbutton","getnotselectedvalu","getselectedbutton","getvalu","hasnext","hasnext:","hasprev","height:","id","isdefaultinit","item","itemscr","itemscreator:","loader","logic","next","null),","object","onload","option.count","popul","populate(bi.map(bi.map(bi.makearray(3,","populate)","prependitem","prev","return","setnotselectedvalu","setvalu","sourc","string","text:","top,bottom,left,right,(top,left),(top,right),(bottom,left),(bottom,right)","true","true,fals","type:","v)","valu","value){","value,可以是单个值也可以是个数组","value:","{","{dynamic:true,scrolly:true}","})","}))","}),","},","};","—","上一页","下一页","内部前插入","内部后插入","判断是否有上一页","判断是否有下一页","刷新列表","加载中","加载控件,bi.widget","参数","可选值","名称","回调参数","基础属性","子组件","子组件构造器","对外方法","布局逻辑","是否显示总页数","是否默认初始化子数据","根据id获取节点","根据value值获取value在数组中的索引","根据value值获取节点","清空组件","类型","获取所有button","获取所有未被选中的元素","获取所有的叶子节点","获取所有被选中的元素","获取没有被选中的值","获取被选中的值","设置value值","设置未被选中的值","说明","销毁组件","默认值"],"core/combination/navigation.html":["\"#wrapper\",","\"bi.label\",","\"bi.navigation\",","\"bottom\"","\"layout","\"前进\",","\"后退\",","\"第\"","\"页\"","+","1","30,","8),","[{","aftercardcr","aftercardshow","api","bg\"","bi.createwidget({","bi.navig","bi.random(1,","boolean","cardcreat","cardcreator:","cls:","defaultshowindex","destroy","direct","element:","empti","false,","function","function(v)","getselect","getselectedcard","getvalu","height:","item","items:","logic","mount","navig","object","once:","popul","render","return","setselect","setvalu","singl","sourc","string","tab","tab:","tab页元素","text:","top,bottom,left,right,custom","true","true,fals","type:","v","valu","value:","{","{dynamic:true}","}","})","},","}]","—","创建卡导航页页之后","刷新列表","参数","可选值","名称","回调参数","基础属性","对外方法","导航栏控件,bi.widget","导航页展示之后","布局逻辑","挂载组件","控件位置","是否为单页","是否默认显示","清空组件","渲染组件","类型","获取被选中的值","获取选中的index","获取选中的导航页","设置value值","设置选中的index","说明","销毁组件","面板显示之后","面板构造之后","面板构造器","默认值"],"core/combination/searcher.html":["\"bi","\"bi.button_group\",","\"bi.label\",","\"bi.search_editor\"}","\"bi.searcher\",","\"bi.searcher_view\"}","\"bi.vertical\"","\"张三\"","()","0","[{","adapt","adapter:","adjustheight","adjustview","api","bgap","bi.createwidget({","bi.search","bi.searcher.event_after_init","bi.searcher.event_chang","bi.searcher.event_paus","bi.searcher.event_search","bi.searcher.event_start","bi.searcher.event_stop","boolean","border\",","choose_type_singl","choosetyp","cls:","const","destroy","dosearch","el","element:\"#wrapper\",","empti","event_after_init","event_paus","event_search","event_start","event_stop","fals","function","function(op.callback)","getitems:","getkeyword","getvalu","getview","hasmatch","hgap","isautosearch","isautosearch为false时启用","isautosync","isdefaultinit","issearch","isviewvis","items,","items:","keyword","layouts:","lgap","masker","masker:","masker层","null","number","object","onsearch","padding值","popul","popup","popup:","result,","return","rgap","searcher","searchresult,","setvalu","sourc","stopsearch","tgap","true","true,fals","type:","valu","value:","vgap","{","{offset:","{type:","{}}","}","})","},","}]","}],","—","事件","事件名称","事件方法","停止搜索","停止搜索触发(搜索框为空)","初始化之后","刷新列表","即是否保持搜索面板和adapter面板状态值的统一","参数","可选值","名称","回调参数","基础属性","对外方法","开启弹出层的元素","开始搜索","开始搜索触发","弹出层","弹出层显示的位置元素","搜索中","搜索列表位置","搜索暂停触发(搜索文本以空白字符结尾)","搜索结果面板初始化完成后触发","搜索结果面板发生改变触发","搜索逻辑控件,bi.widget","效果相当于容器bottom","效果相当于容器left","效果相当于容器right","效果相当于容器top","效果相当于容器上下padding值","效果相当于容器左右padding值","是否匹配","是否正在搜索","是否自动同步数据,","是否自动搜索","是否默认初始化子节点","暂停搜索","正在搜索时触发","清空组件","类型","组件是否可见","获取搜索关键词","获取搜索关键词数组","获取搜索列表栏","获取被选中的值","设置value值","说明","调整搜索列表栏","调整高度","选择类型","销毁组件","默认值"],"core/combination/switcher.html":["\"#wrapper\",","\"bi","\"bi.button\",","\"bi.switcher\",","\"click\"","\"switcher\"","25,","adapt","adapter:","adjustview","api","bi.createwidget({","bi.direction.top","bi.switch","boolean","click,hov","destroy","direct","el","el:","element:","empti","event_after_hideview","event_after_init","event_after_popupview","event_before_hideview","event_before_popupview","event_collaps","event_expand","event_trigger_chang","getallleav","getnodebyid","getnodebyvalu","getvalu","getview","height:","hideview","hover\"","hoverclass","hover类","id","isexpand","isviewvis","item","masker","masker层","null","obejct","object","popul","popup","popup\"","popup:","setadapt","setvalu","showview","sourc","string","switcher","switcherclass","text:","toggl","trigger","true","true,fals","type:","valu","{","}","})","},","—","下拉列表的弹出方式","事件名称","事件方法","切换显示或隐藏面板,bi.widget","切换状态","切换类","初始化之后","刷新列表","参数","可选值","名称","回调参数","基础属性","对外方法","弹出层","弹出层的位置","弹窗层是否可见","显示弹出层","根据id获取节点","根据value值获取节点","清空组件","类型","自定义下拉框trigger","节点是否展开","获取弹出层","获取所有的叶子节点","获取被选中的值","设置value值","设置弹出层显示的位置元素","说明","调整弹出层显示的位置元素","销毁组件","隐藏弹出层","面板切换","面板展开","面板收起","面板显示之前","面板显示之后","面板显示的位置","面板隐藏之前","面板隐藏之后","默认值"],"core/combination/tab.html":["\"#wrapper\",","\"bi","\"bi.button_group\",","\"bi.label\",","\"bi.tab\",","\"bottom\"","\"tab1\",","\"tab2\",","\"面板1\"","\"面板2\"","(v)","1,","1:","2,","2:","30,","50","[{","api","bi.createwidget();}","bi.createwidget({","bi.switch","boolean","card\",","cardcreat","cardcreator:","cardnam","case","cls:","defaultshowindex","destroy","direct","element:","empti","fals","function","function(v)","getselect","getselectedtab","gettab","getvalu","height:","item","items:","logic","mount","object","popul","removetab","render","return","setselect","setvalu","singl","sourc","string","switch","tab","tab:","tab标签页","text:","top,bottom,left,right,custom","true,fals","type:","v","valu","value:","width:","{","{dynamic:false}","{return","}","})","},","}]","—","切换显示或隐藏面板,bi.widget","刷新列表","参数","可选值","名称","回调参数","基础属性","对外方法","布局逻辑","挂载组件","控件位置","是否为单页","是否默认显示tab页","清空组件","渲染组件","移除tab面板页","类型","获取tab面板页","获取被选中的值","获取选中的index","获取选中的tab面板页","设置value值","设置选中的index","说明","销毁组件","面板构造器","默认值"],"core/layer/layer_float_box.html":["\"#wrapper\",","\"bi.text_button\",","\"点击弹出floatbox\",","200,","500","600","80,","=","api","bi.barpopoversection()).open(id);","bi.createwidget({","bi.float_box","bi.popovers.create(id,","bi.popovers.remove(id);","bi.uuid();","close","destroy","element:","event_float_box_clos","float_box","floatbox弹出层,bi.widget","function()","handler:","height","height:","hide","id","index","new","number","open","popul","sectionprovid","setzindex","show","sourc","text:","type:","var","width","width:","z","{","}","})","—","事件名称","事件方法","关闭弹出层","刷新列表","参数","可选值","名称","回调参数","基础属性","对外方法","弹出层宽度","弹出层高度","打开弹出层","显示","类型","设置z","说明","销毁组件","隐藏","默认值"],"core/layer/layer_popup.html":["\"#wrapper\",","\"aaa\"","\"aaa\",","\"auto\"","\"bbb\"","\"bbb\",","\"bi.button_group\",","\"bi.button_group\",items:","\"bi.popup_view\",","\"bi.vertical\"","\"bi.vertical\"}]}","0","0,behaviors:","100","25","[]","[],","[{","[{type:","api","array","bgap","bi.createwidget({","bi.direction.top","bi.popup_view","boolean","button","choosetype:","const","direct","el","el:","element:","fals","getvalu","getview","height","hgap","index","item","items:","layouts:","lgap","logic","maxheight","maxwidth","minheight","minwidth","number","number/str","object","padding值","popul","popup","resetheight","resetwidth","rgap","setvalu","setzindex","sourc","stopev","stoppropag","tab","text:","tgap","tool","toolbar栏","true,fals","type:","valu","value:","vgap","width","z","zindex在1000w,bi.widget","{","{dynamic:true}","{},layouts:","}","})","},","}]","}],","—","下拉框弹出层,","值","刷新列表","参数","参考button_group","可选值","名称","回调参数","基础属性","子组件","对外方法","导航栏","工具栏的方向","布局逻辑","弹出层最大宽度","弹出层最大高度","弹出层最小宽度","弹出层最小高度","效果相当于容器bottom","效果相当于容器left","效果相当于容器right","效果相当于容器top","效果相当于容器上下padding值","效果相当于容器左右padding值","是否停止mousedown、mouseup事件","是否停止mousedown、mouseup向上冒泡","类型","自定义工具栏","获取value值","获取弹出层","设置valu","设置z","说明","重置宽度","重置高度","默认值"],"core/layer/layer_searcher.html":["\"#wrapper\",","\"a\"","\"a\");","\"a\",","\"aba\"","\"aba\",","\"acc\"","\"acc\",","\"bi.button_group\",behaviors:","\"bi.searcher_view\",","\"bi.vertical\"","\"bi.vertical\"}]}","()","=","[],","[{","api","bi.createwidget({","bi.i18ntext(\"bi","bi.searcher_view","bi.selection.singl","choosetyp","const","element:","empti","function","getvalu","hasmatch","items:","keyword","layouts:","matcher","matchresult,","no_select\")","object","popul","redmark:","return","searcher","searcher.populate([{","searchresult,","setvalu","sourc","string","text:","tiptext","title文本","true;}","true;}},","type:","valu","value:","var","{","{redmark:","{return","{type:","});","},items:","},{","}],","}]}","—","值","刷新列表","参数","参考button_group","可选值","名称","回调参数","基础属性","基类bi.widget","完全匹配的构造器","对外方法","搜索到的元素","搜索面板,","是否有匹配的元素","清空组件","类型","获取value值","设置valu","说明","选择类型","默认值"],"core/widget.html":["\"","\"div\"","(注:",",一些需要在设置状态后做的额外工作可以通过重写_setxxx来实现)","addwidget","api","attr","attribut","basecl","beforecr","beforedestroy","beforemount","bi.widget","boolean","cl","class类名","creat","data","destroy","disabl","dobehavior","empti","enabl","extracl","fals","fineui2.0引入生命周期后,widget的实现类不需要重写setenable,setvalid等方法,会自动调用子组件的对应方法","getheight","getnam","gettag","gettext","getvalu","getwidgetbynam","getwidth","haswidget","height","html标签","invalid","invis","isen","ismount","isol","isvalid","isvis","key,valu","mount","name","name,widget","nameorwidget","null","object","removewidget","render","root","seten","setheight","settag","settext","setvalid","setvalu","setvis","setwidth","string","tag","tagnam","text","true,fals","updat","valid","valu","visibl","widget","width","—","判断是否有效","判断是否有该组件","判断组件是否挂载","参数","可选值","名称","回调参数","基础class类","基础属性","对外方法","属性","所有控件的超类","扩展class类","数据","是否可用","是否可见","是否有效","根据组件名称获取组件","根组件","添加组件","清空组件","渲染组件","生命周期函数","移除组件","类型","组件不在页面展示,组件事件和内容都在","组件实例刚被创建","组件实例创建完成","组件挂载","组件挂载之前","组件更新","组件销毁前调用","组件销毁后调用","自定义下拉列表中item项的行为,如高亮,标红等","获取tag","获取text值","获取value值","获取组件名称","获取组件宽度","获取组件高度","设置tag","设置text值","设置value值","设置组件不可用","设置组件不可见","设置组件可用","设置组件可见","设置组件宽度","设置组件属性","设置组件无效","设置组件是否可用","设置组件是否可见","设置组件是否有效","设置组件有效","设置组件高度","说明","销毁组件","默认值"],"core/single.html":["api","bi.singl","boolean","disabledhov","enablehov","fals","gettiptyp","gettitl","getvalu","getwarningtitl","isreadonli","item","null","opt","popul","readonli","settitl","setvalu","setwarningtitl","singl","string","success,warn","tiptyp","titl","title,opt","title类型","true,fals","valu","warningtitl","—","刷新或者清空列表","参数","取消hover事件","可选值","名称","回调参数","基础属性","对外方法","恢复hover可用","所有简单控件的基类,类的控制,title的控制,文字超过边界显示3个点,cursor默认pointor,基类bi.widget","是否只读","类型","组件value值","获取tiptyp","获取titl","获取value值","获取warningtitl","设置titl","设置value值","设置错误titl","说明","这仅仅只是一个超类,","错误titl","默认值"],"core/basic_button.html":["api","b","basic_button","beforeclick","bi.basic_button","bi.emptyfn","bindev","boolean","button的选中状态","click,","dblclick,","destroy","disableselect","dishov","doclick","empti","fals","forcenotselect","forceselect","function","gettext","handl","handler","hover","hover事件","isdisableselect","isforcenotselect","isforceselect","isonc","isselect","isshadowshowingonselect","lclick","mousedown,","mouseup,","null","onc","select","setselect","settext","shadow","stopev","stoppropag","string","trigger","true,fals","valu","—","一般的button父级,基类bi.singl","使能选中","判断是否怎么点击都不会被选中","判断是否点击即选中","判断是否让选中","参数","取消hover事件","可选值","名称","回调参数","基础属性","对外方法","无论怎么点击都不会被选中","是否只允许点击一次","是否显示阴影","是否被选中","清空组件","点击一次选中有效,再点无效","点击事件","点击事件之前","点击事件回调","点击即选中,","类型","组件value值","绑定事件","获取文本值","被选元素要触发的事件","设置文本值","设置选中的文本","说明","返回该对象","选中了就不会被取消,与once的区别是forceselected不影响事件的触发","选中状态下是否显示阴影","销毁组件","阻止事件","阻止冒泡","默认值"],"core/node_button.html":["api","b","bi.basicbutton","bi.nodebutton","boolean","doclick","fals","isonc","isopen","node_button","open","setopen","triggercollaps","triggerexpand","true,fals","—","不仅有选中状态而且有展开状态,","判断节点是否展开","参数","可选值","名称","回调参数","基础属性","对外方法","点击一次后失效","点击展开","类型","节点展开","节点收起","节点是否展开","表示一个可以展开的节点,","设置节点展开状态","说明","默认值"],"core/pane.html":["api","bi.i18ntext(\"bi","bi.pan","bi.widget","boolean","check","empti","function","hasmatch","item","load","no_selected_item\")","onload","overlap","pane","popul","settipvis","string","tiptext","title文本","true","true,fals","—","刷新列表","加载中","加载完毕","参数","可选值","名称","回调参数","基础属性","对外方法","已经加载","当没有元素时有提示信息的view,","是否含有遮罩层","是否有匹配的元素","检查是否为空","清空组件","类型","设tip可见","说明","默认值"],"base/label.html":["\"","\"bi.label\",","\"基本标签\"","0","100,","30,","api","bgap","bi.createwidget({","bi.label","boolean","center","disabl","dohighlight","doredmark","forcecent","gettext","hgap","keyword","label","left,center,right","lgap","normal,nowrap","nowrap","null","number","padding值","popul","py","rgap","setstyl","settext","setvalu","sourc","string","text","text:","textalign","textheight","textheight:","textwidth","textwidth:","tgap","titl","true","true,fals","type:","unhighlight","unredmark","vgap","warningtitl","whitespac","});","—","不考虑超出边界的情况,","元素内空白处理方式","参数","取消文本标红","取消文本高亮","可选值","名称","回调参数","在未知宽度和高度时有效","基础属性","对外方法","拼音","提示titl","效果相当于容器bottom","效果相当于容器left","效果相当于容器right","效果相当于容器top","效果相当于容器上下padding值","效果相当于容器左右padding值","文本内容","文本对齐方式","文本标签","文本标签宽度","文本标红","文本高亮","无","是否无论如何都要居中,","清空label","灰化","空","类型","获取文本值","设置文本值","设置文本样式","设置标红的关键词","说明","错误提示titl","需要设置的文本值text","需要设置的文本标签样式,例{\"color\":\"#000\"}","高级属性","默认值"],"base/bubble.html":["\"","\"#wrapper\",","\"top\"","\"测试\"","'bi.bubble',","30,","35","api","bi.bubbl","bi.createwidget({","bubbl","direct","element:","height","height:","number","settext","sourc","string","text","text:","type:","})","—","参数","可选值","名称","回调参数","基础属性","对外方法","气泡提示","气泡显示位置","气泡显示内容","气泡高度","类型","设置文本值","说明","需要设置的文本值text","默认值"],"base/toast.html":["\"","\"#wrapper\",","\"success\"","\"toast测试\"","\"warning\",","'bi.toast',","30","30,","api","bi.createwidget({","bi.toast","element:","height","height:","level","level:","number","setheight","settext","sourc","string","success,warn","text","text:","toast","toast提示","type:","})","—","参数","可选值","名称","回调参数","基础属性","对外方法","提示类型","显示内容","类型","设置文本值","设置高度","说明","需要设置的文本值text","需要设置的高度值height","高度","默认值"],"base/message.html":["\"#wrapper\",","\"bi.button\",","'点击我弹出一个消息框',","30,",":","alert","bi.createwidget({","bi.msg","bi.msg.confirm('测试消息框',\"我是测试消息框的内容\");","callback","callback,","confirm","context","element:","function()","handler","height","level,","messag","message,","min_width","prompt","sourc","text","title,","toast","toast提示","type:","value,","{","}","});","名称","回调参数","对外方法","提示消息框","消息提示","确认消息框","警告消息框","说明"],"base/button/button.html":["!==","\"","\"#wrapper\",","'bi.button',","'common',","'一般按钮',","0","10","30","90","[","]","api","array","bgap","bi.button","bi.createwidget({","block","boolean","button","clear","cneter","common","common,success,warning,ignor","destroy","doclick","dohighlight","doredmark","element:","fals","forcecent","height","height:","hgap","iconclass","isshadowshowingonselect","item","left,center,right","level","level:","lgap","minwidth","normal,nowrap","nowrap","null","number","padding值","props.clear","readonli","rgap","settext","setvalu","shadow","sourc","string","text:","textalign","textheight","textwidth","tgap","true","true,fals","type:","unhighlight","unredmark","vgap","whitespac","width","});","—","不考虑超出边界的情况,","元素内的空白处理方式","参数","取消文本标红","取消文本高亮","可选值","名称","回调参数","图标类型","在未知宽度和高度时有效","基础属性","子控件数组","宽度","对外方法","按钮文本宽度","按钮文本高度","按钮类型","效果相当于文本框bottom","效果相当于文本框left","效果相当于文本框right","效果相当于文本框top","效果相当于文本框上下padding值","效果相当于文本框左右padding值,如果clear属性为true,该属性值置0","文字布局","文字类型的按钮,基类bi.basicbutton","文本标红","文本高亮","是否去掉边框和背景","是否只读","是否块状显示,即不显示边框,没有最小宽度的限制","是否无论如何都要居中,","是否显示阴影","最小宽度,如果block/clear中某一项为true,此项值为0,否则为90","点击事件","类型","设置文本值","说明","选中状态下是否显示阴影","销毁事件","需要设置的文本值text","高度","高级属性","默认值"],"base/button/text_button.html":["\"","'bi.text_button',","'文字按钮',","0","10","30","api","bi.createwidget({","bi.text_button","boolean","cneter","doclick","dohighlight","doredmark","fals","forcecent","height:","hgap","left,center,right","lgap","normal,nowrap","nowrap","null","number","padding值","py","rgap","setstyl","settext","setvalu","sourc","string","text","text:","text_button","textalign","textheight","textwidth","true,fals","type:","unhighlight","unredmark","whitespac","});","—","不考虑超出边界的情况,","元素内的空白处理方式","参数","取消文本标红","取消文本高亮","可以点击的一行文字,基类bi.basicbutton","可选值","名称","回调参数","在未知宽度和高度时有效","基础属性","对外方法","拼音","按钮文本内容","按钮文本宽度","按钮文本高度","效果相当于文本框left","效果相当于文本框right","效果相当于文本框左右padding值,如果clear属性为true,该属性值置0","文字布局","文本标红","文本高亮","是否无论如何都要居中,","点击事件","类型","设置文本值","设置文本样式","说明","需要设置的文本值text","需要设置的文本标签样式,例{\"color\":\"#000\"}","高级属性","默认值"],"base/button/icon_button.html":["\"close","'bi.icon_button',","20","20,","api","bi.createwidget({","bi.icon_button","cls:","doclick","font\",","ha","height:","icon_button","iconheight","iconwidth","null","number","sourc","type:","width:","});","—","参数","可选值","名称","回调参数","图标button,基类bi.basicbutton","图标宽度","图标高度","基础属性","对外方法","点击事件","类型","说明","默认值"],"base/button/image_button.html":["\"","\"100%\"","\"http://www.easyicon.net/api/resizeapi.php?id=1206741&size=128\",","'bi.image_button',","100","100,","api","bi.createwidget({","bi.image_button","doclick","getimageheight","getimagewidth","getsrc","height:","iconheight","iconwidth","image_button","number/str","setheight","setimageheight","setimagewidth","setsrc","setwidth","sourc","src","src:","string","type:","width:","});","—","参数","可选值","名称","回调参数","图标宽度","图标高度","图片的button,基类bi.basicbutton","图片路径","基础属性","宽度width","对外方法","点击事件","类型","获取图片宽度","获取图片路径","获取图片高度","设置图片宽度","设置图片路径","设置图片高度","设置按钮宽度","设置按钮高度","说明","高度height","默认值"],"base/editor/editor.html":["\"","\"#wrapper\",","\"bi.editor\",","\"text\"","\"warning\"","\"字段不可重名!\",","0","2","200,","30","4","allowblank","api","b","bgap","bi.createwidget({","bi.editor","bi.editor.event_backspac","bi.editor.event_blur","bi.editor.event_chang","bi.editor.event_click","bi.editor.event_confirm","bi.editor.event_empti","bi.editor.event_ent","bi.editor.event_error","bi.editor.event_focu","bi.editor.event_key_down","bi.editor.event_paus","bi.editor.event_remov","bi.editor.event_restrict","bi.editor.event_spac","bi.editor.event_start","bi.editor.event_stop","bi.editor.event_valid","blur","blur事件","boolean","disableerror","disablewatermark","editor","editor的value发生改变触发","element:","enableerror","enablewatermark","errortext","errortext:","fals","focu","focus事件","function","geterrortext","getlastvalidvalu","getvalu","height:","hgap","inputtyp","isedit","isvalid","key","keydown时触发","lgap","number","onkeydown","padding值","quitcheck","resetlastvalidvalu","rgap","selectal","seterrortext","seterrorvis","setvalu","sourc","string","string/funct","success,warn","text","tgap","tiptyp","true,fals","type:","validationcheck","valu","vgap","watermark","width:","});","—","事件","停止输入触发","参数","参考input输入框类型","可选值","名称","回调参数","回车事件","回车但是值不合法","基础属性","对外方法","开始输入触发","恢复文本框placeholder可用","按下backspace触发","按下空格触发","按键事件","提示类型","效果相当于文本框bottom","效果相当于文本框left","效果相当于文本框right","效果相当于文本框top","效果相当于文本框上下padding值","效果相当于文本框左右padding值","文本框,基类bi.singl","文本框placehold","文本框值是否有效","文本框失焦","文本框是否处于编辑状态","文本框获取焦点","是否允许空值","是否允许退出编辑函数","暂停输入触发(输入空白字符)","点击编辑框触发(不在编辑状态时)","确定输入触发(blur时且输入值有效)","类型","获取文本框值","获取文本框最后一次输入的有效值","获取错误文本","设置error不可用","设置error可用","设置文本框placeholder不可用","设置文本框值","设置错误文本","设置错误文本可见","说明","输入为空时按下backspac","输入值无效的状态事件","输入值有效的状态事件","输入框为空时触发","输入框类型","输入较验函数","选中文本框文本","重置文本框最后一次输入的有效值","错误提示","默认值"],"base/editor/code_editor.html":["\"","\"bi.code_editor\",","\"mvc","2","400","600,","api","bi.code_editor","bi.createwidget({","blur","boolean","border\",","cls:","code_editor","fals","focu","function","getstyl","getvalu","height:","insertparam","insertstr","lineheight","number","param","paramformatt","readonli","refresh","setstyl","setvalu","sourc","str","string","true,fals","type:","valu","watermark","width:","});","—","代码文本框,基类bi.singl","刷新文本框","参数","参数显示值构造函数","可选值","名称","回调参数","基础属性","对外方法","插入参数","插入字符串","文本框placehold","文本框值","文本框失焦","文本框获取焦点","是否只读","类型","获取文本样式","获取文本框值","行高","设置文本样式","设置文本框值","说明","需要设置的文本标签样式style,例{\"color\":\"#000\"}","默认值"],"base/editor/multifile_editor.html":["\"","\"bi.multifile_editor\",","1","300","400,","accept","api","bi.createwidget({","bi.multifile_editor","bi.multifileeditor.event_progress","bi.multifileeditor.event_upload","bi.multifileeditor.event_uploadstart","boolean","fals","getvalu","height:","maxsiz","multifile_editor","multipl","number","reset","select","sourc","string","true,fals","type:","upload","url","width:","});","—","上传结束后触发","上传过程中触发","事件","允许上传的文件类型","参数","可选值","名称","回调参数","基础属性","多文件,基类bi.singl","对外方法","开始上传时触发","文件上传","文件路径","是否支持多选","最大可选数量","类型","获取文件名称","说明","选择文件","重置","默认值"],"base/editor/textarea_editor.html":["\"","\"bi.textarea_editor\",","300","400,","api","bi.createwidget({","bi.textarea_editor","blur","focu","getstyl","getvalu","height:","setstyl","setvalu","sourc","string","textarea_editor","type:","valu","width:","});","—","参数","可选值","名称","回调参数","基础属性","对外方法","文本域,基类bi.singl","文本域失焦","文本域的值","文本域获取焦点","类型","获取文本域值","获取文本域样式","设置文本域值","设置文本域样式","说明","需要设置的文本域样式style,例{\"color\":\"#000\"}","默认值"],"base/editor/formula_editor.html":["\"","\"100%\"","\"100%\",","\"bi","\"bi.formula_editor\",","'sum(c5,","16,","2","26)',","api","bi.createwidget({","bi.formula_editor","boolean","border\",","cls:","disablewatermark","field","fieldtextvaluemap","fn","focu","formula_editor","getcheckstr","getformulastr","getusedfield","getvalu","height:","insertfield","insertfunct","insertoper","insertstr","lineheight","number","onject","op","refresh","setfieldtextvaluemap","setfunct","setvalu","showhint","sourc","str","string","true","true,fals","type:","v","valu","value:","watermark","watermark:'请输入公式',","width:","{}","});","—","公式编辑控件,基类bi.singl","刷新文本框","参数","可选值","名称","回调参数","基础属性","字段集合","对外方法","插入函数","插入字符串","插入操作符","文本域的值","文本框placehold","文本框获取焦点","是否显示提示信息","添加字段","类型","获取公式框内容","获取可用字段","获取文本框值","获取校验内容","行高","设置函数","设置字段集合","设置文本框placeholder不可用","设置文本框值","说明","默认值"],"base/table/table_view.html":["\"bi.table_view\",","'body',","1],","200,","25","300,","400,","500],","=","[0,","[100,","[]","[],","array","bi.createwidget({","bi.table.event_table_after_init","bi.table.event_table_res","bi.table.event_table_scrol","bi.table_view","boolean","columns","columnsize:","element:","fals","footer","footerrows","freezecols:","function(row1,","getcalculatecolumns","getcalculateregioncolumns","getcalculateregionrows","getclientregioncolumns","getcolumn","getcolumns","getlefthorizontalscrol","getregioncolumns","getrighthorizontalscrol","getscrollregioncolumns","getscrollregionrows","getverticalscrol","hasverticalscrol","header","header:","headerrows","isneedfreeze:","isneedmerg","isneedmerge:","item","items:","mergecol","mergecols:","mergerul","number","popul","regioncolumns","resiz","row","row2","row2)","rowsiz","scrollleft","scrolltop","setcolumns","setheadercolumns","setlefthorizontalscrol","setregioncolumns","setrighthorizontalscrol","setverticalscrol","sourc","table_view","table初始化完成后触发","table大小调整时触发(窗口变化等)","true,","type:","});","—","事件","列项间的","刷新内容","单元格宽度集合","参数","参数设置","合并的单元格列号","合并规则,","子组件","得到列宽","方法","方法名","时合并","是否含有数值滚动条","是否需要合并单元格","普通单元格高度","滚动事件","类型","能处理静态宽度以及动态宽度的表","获取列项","获取右往左横向滚动距离","获取左到右横向滚动距离","获取横向滚动条宽度","获取浏览器中显示的列项之间的间隙","获取纵向滚动条宽度","获取纵向滚动距离","获取计算后的列项上下之间的间隙","获取计算后的列项之间的间隙","获得列项之间的间隙","获得计算后的列宽","表头","表头高度","表尾","表尾高度","设置列宽","设置列项之间的间隙","设置右往左横向滚动距离","设置左到右横向滚动距离","设置纵向滚动距离","设置表头的列宽","说明","调整表格","默认row1","默认值","默认相等时合并"],"base/table/grid_table.html":["\"bi.grid_table\",","'body',","1],","25","500,","600,","[0,","[50,50,200,250,400],","[]","array","bi.createwidget({","bi.grid_t","boolean","columns","columnsize:","element:","fals","freezecol","freezecols:","getcolumns","getlefthorizontalscrol","getregioncolumns","getregions","getrighthorizontalscrol","getverticalscrol","grid_tabl","header","header:","headerrows","height","height:","isneedfreez","isneedfreeze:","isneedresize:","isresizeadapt:","item","items,","items:","number","popul","regioncolumns","restor","row","rowsiz","scrollleft","scrolltop","setcolumns","setheight","setlefthorizontalscrol","setregioncolumns","setrighthorizontalscrol","setverticalscrol","setwidth","sourc","true,","type:","width","width:","});","—","储存","冻结列","列表展示的table,继承bi.widget","列项间的","刷新内容","单元格宽度集合","参数","参数设置","子组件","得到列宽","方法","方法名","是否需要冻结","普通单元格高度","类型","获取右往左横向滚动距离","获取左到右横向滚动距离","获取纵向滚动距离","获取间隙大小","获得列项之间的间隙","表头","表头高度","设置列宽","设置列项之间的间隙","设置右往左横向滚动距离","设置宽度","设置左到右横向滚动距离","设置纵向滚动距离","设置高度","说明","默认值"],"base/table/collection_table.html":["\"bi.collection_table\",","\"bi.label\",","\"body\",","\"layout","\"第一行第一列\"","\"第一行第二列\"","\"第二行第一列\"","\"第二行第二列\"","25","=","[","[200,200],","[]","[{","]","array","bg1\",","bg2\",","bg3\",","bg4\",","bi.collection_t","bi.createwidget({","boolean","cls:","collection_t","columns","columnsize:","element:","fals","freezecol","function(row1,","getcolumn","getcolumns","getlefthorizontalscrol","getregioncolumns","getrighthorizontalscrol","getscrollregioncolumns","getverticalscrol","headerrows","height","isneedfreez","isneedmerg","item","items:","mergecol","mergerul","number","popul","regioncolumns","restor","row","row2","row2)","rowsiz","scrollleft","scrolltop","setcolumns","setheight","setlefthorizontalscrol","setregioncolumns","setrighthorizontalscrol","setverticalscrol","setwidth","sourc","text:","type:","width","{","});","},","}]","}],","—","冻结的列","列项间的","单元格宽度集合","参数","参数设置","合并的单元格列号","合并规则,","基本的表格","增加行","子组件","存储数据","得到列宽","方法","方法名","时合并","是否冻结列","是否需要合并单元格","普通单元格高度","类型","继承bi.widget","获取列项","获取右往左横向滚动距离","获取左到右横向滚动距离","获取横向滚动条宽度","获取纵向滚动距离","获得列项之间的间隙","表头高度","设置列宽","设置列项之间的间隙","设置右往左横向滚动距离","设置宽度","设置左到右横向滚动距离","设置纵向滚动距离","设置高度","说明","默认row1","默认值","默认相等时合并"],"base/table/resizable_table.html":["\"bi.label\",","\"bi.resizable_table\",","\"body\",","\"layout","\"第一行第一列\"","\"第一行第二列\"","\"第二行第一列\"","\"第二行第二列\"","25","[","[200,200],","[]","[{","]","array","attr","bg1\",","bg2\",","bg3\",","bg4\",","bi.createwidget({","bi.resizable_t","boolean","cls:","columns","columnsize:","element:","fals","freezecol","getcolumns","getlefthorizontalscrol","getregioncolumns","getrighthorizontalscrol","getverticalscrol","header","headerrows","isneedfreez","isneedmerg","isneedres","isresizeadapt","item","items:","key:键,value:值","maxcolumns","mergecol","mincolumns","number","popul","regioncolumns","resizable_t","restor","row","rowsiz","scrollleft","scrolltop","setcolumns","setheight","setlefthorizontalscrol","setregioncolumns","setrighthorizontalscrol","setverticalscrol","setwidth","sourc","text:","true","type:","{","});","},","}]","}],","—","保存表","冻结的列","列项间的","刷新内容","单元格宽度集合","参数","参数设置","可调整列宽的grid表格,继承bi.widget","合并的单元格列号","子组件","得到列宽","方法","方法名","是否调整时自适应","是否需要冻结列","是否需要合并单元格","是否需要调整大小","普通单元格高度","最大列宽","最小列宽","类型","获取右往左横向滚动距离","获取左到右横向滚动距离","获取纵向滚动距离","获得列项之间的间隙","表头","表头高度","设置列宽","设置列项之间的间隙","设置右往左横向滚动距离","设置宽度","设置属性","设置左到右横向滚动距离","设置纵向滚动距离","设置高度","说明","默认值"],"base/pager.html":["\"bi.pager\",","\"上一页\"","\"下一页\"","\"尾页\"","\"首页\",","0","1","18,","1;}","5,","50,","6,","api","array","attr","behavior","bi.createwidget({","bi.pag","bi.pager.event_after_popul","boolean","curr","curr:","dynamicshow","dynamicshowfirstlast","dynamicshowprevnext","fals","first","first:","firstpag","function","function(){","function(){return","getcurrentpag","getvalu","group","groups:","hasnext","hasprev","height:","jump","key,valu","last","last:","lastpag","layout","next","number","object","page","pager","pager刷新完成事件","pages:","popul","prev","return","setallpag","setvalu","sourc","sting,object","string,object","true","true,fals","type:","v","{type:\"bi.horizontal\",hgap:10,vgap:0}","{}","});","—","上一页","下一页","主要作用于setvalue方法","事件","分页控件,基类bi.widget","初始化当前页","判断是否有上一页","判断是否有上一页,pages不可用时有效","判断是否有下一页","判断是否有下一页,pages不可用时有效","刷新或者清空列表","参数","可选值","名称","回调参数","基础属性","对外方法","布局","是否动态显示上一页、下一页,dynamicshow为false时生效","是否动态显示上一页、下一页、首页、尾页,","是否动态显示首页、尾页,dynamicshow为false时生效","是否显示尾页","是否显示总页数","是否显示首页","最后一页,在万不得已时才会调用这个函数获取最后一页的页码,","第一页","类型","自定义列表中item项的行为,如高亮,标红等","若为false,则指对其设置使能状态","获取当前页码","设置属性","设置当前页码","设置总页数","说明","连续显示分页数","页数跳转","默认值"],"base/svg.html":["\"bi.svg\",","\"red\"});","(family,","(src,x,y,w,h)分别表示图片路径,绘制的原点横、纵坐标,宽、高","(width,height)分别表示画布宽高","(x,","(x,y)","(x,y,r)分别表示原点的横坐标,纵坐标,以及半径","(x,y,rx,ry)分别表示原点的横、纵坐标,以及水平半径和垂直半径","(x,y,text)分别表示绘制的原点横、纵坐标以及要绘制的文本内容","(x,y,w,h,r)分别表示左上角的横坐标、纵坐标,矩形宽、高、以及矩形的圆角bord","(x,y,width,height,fit)分别表示可视区域原点坐标以及可视区域宽高,以及是否根据可视区域进行调整",".attr({stroke:","500,","600","=","add","bi.createwidget({","bi.svg","circl","clear","ellips","font,","getbyid","getelementbypoint","getelementsbypoint","getfont","height:","id","imag","json","letter_spacing,","line_spacing)","origin,","page","path","pathstr","print","radius大小","rect","remov","set","setfinish","setsiz","setstart","setviewbox","size,","sourc","stretch)","string,","style,","svg","svg.path(\"m10,10l50,50m50,10l10,50\")","svg绘图,基类bi.widget","text","type:","v","var","weight,","width:","y,","});","—","判断是否有上一页","名称","回调参数","对外方法","开始绘制","根据id返回元素","根据制定参数打印出路径","添加对象到json数组","结束绘制","绘制图片","绘制圆形","绘制形状的集合","绘制文本","绘制椭圆","绘制矩形","绘制路径","获根据给定的点坐标返回元素","设置总页数","设置画布可视区域","设置画布尺寸","说明","通过给定的参数在已注册的字体中找到字体对象"],"base/canvas.html":["\"#wrapper\",","\"bi.canvas\",","\"green\");","(x,","(x,y,w,h,color)分别表示左上角的横坐标、纵坐标,矩形宽、高、以及绘制的颜色","(x0,","20,","50,","500,","600","=","bi.canva","bi.createwidget({","callback","canva","canvas.circle(150,","canvas.stroke();","canvas绘图,基类bi.widget","circl","color)分别表示原点的横坐标,纵坐标,半径以及颜色","element:","end)","gradient","height:","hollow","line","radius,","rect","reset","solid","sourc","start,","stroke","type:","var","width:","x1,","y,","y0,","y1)","y1,","});","—","名称","回调参数","填充中空的路径","填充实心的路径","对外方法","绘制","绘制圆形","绘制渐变色","绘制矩形","绘制线段","说明","重置画布"],"case/button/multi_select_item.html":["\"#wrapper\",","\"bi.label\",","\"bi.multi_select_item\",","\"复选item\"","\"复选项\"","'bi.vertical',","30","30,","[{","api","bi.createwidget({","bi.multi_select_item","doclick","doredmark","element:","height","height:","items:","logic","multi_select_item","number","object","setselect","sourc","text:","type:","unredmark","v","{","{dynamic:false}","});","},","}]","—","参数","取消标红","可选值","名称","回调参数","基础属性","复选框item,基类bi.basicbutton","对外方法","布局逻辑","标红","点击事件","类型","设置选中值","说明","高度","默认值"],"case/button/single_select_item.html":["\"#wrapper\",","\"bi.label\",","\"bi.single_select_item\",","\"left\"","\"复选item\"","\"复选项\"","'bi.vertical',","10","25","30,","[{","api","bi.createwidget({","bi.single_select_item","doclick","doredmark","element:","height","height:","hgap","items:","left,center,right","number","setselect","single_select_item","sourc","string","text:","textalign","type:","unredmark","v","{","});","},","}]","—","参数","取消标红","可以点击的label,基类bi.basicbutton","可选值","名称","回调参数","基础属性","对外方法","效果相当于文本框左右padding值","文本对齐方式","标红","点击事件","类型","设置选中值","说明","高度","默认值"],"case/button/single_select_radio_item.html":["\"#wrapper\",","\"bi.label\",","\"bi.single_select_radio_item\",","\"left\"","\"单选item\"","\"单选项\"","'bi.vertical',","10","25","30,","[{","api","bi.createwidget({","bi.single_select_radio_item","doclick","doredmark","element:","height","height:","hgap","items:","left,center,right","number","setselect","single_select_radio_item","sourc","string","text:","textalign","type:","unredmark","v","{","});","},","}]","—","单选框item,基类bi.basicbutton","参数","取消标红","可选值","名称","回调参数","基础属性","对外方法","效果相当于文本框左右padding值","文本对齐方式","标红","点击事件","类型","设置选中值","说明","高度","默认值"],"case/editor/shelter_editor.html":["\"","\"#wrapper\",","\"bi","\"bi.shelter_editor\",","\"left\"","\"这个是带标记的\"","0","2","30","300,","4","allowblank","api","bgap","bi.createwidget({","bi.editor.event_backspac","bi.editor.event_blur","bi.editor.event_chang","bi.editor.event_click","bi.editor.event_confirm","bi.editor.event_empti","bi.editor.event_ent","bi.editor.event_error","bi.editor.event_focu","bi.editor.event_key_down","bi.editor.event_paus","bi.editor.event_remov","bi.editor.event_restrict","bi.editor.event_spac","bi.editor.event_start","bi.editor.event_stop","bi.editor.event_valid","bi.shelter_editor","blur","blur事件","boolean","border\",","cls:","dohighlight","doredmark","editor的value发生改变触发","element:","errortext","focu","focus事件","function","geterrortext","getlastvalidvalu","getstat","getvalu","height","hgap","isedit","isvalid","key","keydown时触发","left,center,right","lgap","number","onkeydown","padding值","quitcheck","rgap","seterrortext","setstat","settextstyl","settitl","setvalu","setwarningtitl","shelter_editor","sourc","string","string/funct","style","text","textalign","tgap","titl","true","true,fals","type:","unhighlight","unredmark","validationcheck","valu","vgap","watermark","watermark:","width:","});","—","事件","停止输入触发","参数","取消文本标红","取消文本高亮","可选值","名称","回调参数","回车事件","回车但是值不合法","基础属性","基类bi.widget","对外方法","对齐方式","带标记的文本框,需手动控制进入编辑状态","开始输入触发","按下backspace触发","按下空格触发","按键事件","效果相当于文本框bottom","效果相当于文本框left","效果相当于文本框right","效果相当于文本框top","效果相当于文本框上下padding值","效果相当于文本框左右padding值","文本标红","文本框placehold","文本框值是否有效","文本框失焦","文本框是否处于编辑状态","文本框获取焦点","文本高亮","是否允许空值","是否允许退出编辑函数","暂停输入触发(输入空白字符)","点击编辑框触发(不在编辑状态时)","确定输入触发(blur时且输入值有效)","类型","获取文本框值","获取文本框最后一次输入的有效值","获取错误文本","设置titl","设置文本框值","设置文本框样式","设置错误titl","设置错误文本","说明","输入为空时按下backspac","输入值无效的状态事件","输入值有效的状态事件","输入框为空时触发","输入较验函数","错误提示","高度","默认值"],"case/editor/sign_editor.html":["\"","\"#wrapper\",","\"123\",","\"456\",","\"bi.sign_editor\",","0","2","30","300","4","allowblank","api","bg5\",","bgap","bi.createwidget({","bi.editor.event_backspac","bi.editor.event_blur","bi.editor.event_chang","bi.editor.event_click","bi.editor.event_confirm","bi.editor.event_empti","bi.editor.event_ent","bi.editor.event_error","bi.editor.event_focu","bi.editor.event_key_down","bi.editor.event_paus","bi.editor.event_remov","bi.editor.event_restrict","bi.editor.event_spac","bi.editor.event_start","bi.editor.event_stop","bi.editor.event_valid","bi.sign_editor","blur","blur事件","boolean","cls:\"layout","dohighlight","doredmark","editor的value发生改变触发","element:","errortext","focu","focus事件","function","geterrortext","getlastvalidvalu","getstat","getvalu","height","hgap","isedit","isvalid","keydown时触发","lgap","number","padding值","quitcheck","rgap","seterrortext","setstat","settitl","setvalu","setwarningtitl","sign_editor","sourc","string","string/funct","text","text:","tgap","titl","true","true,fals","type:","unhighlight","unredmark","validationcheck","valu","value:","vgap","watermark","width:","});","—","事件","停止输入触发","参数","取消文本标红","取消文本高亮","可选值","名称","回调参数","回车事件","回车但是值不合法","基础属性","对外方法","带标记的文本框,基类bi.widget","开始输入触发","按下backspace触发","按下空格触发","效果相当于文本框bottom","效果相当于文本框left","效果相当于文本框right","效果相当于文本框top","效果相当于文本框上下padding值","效果相当于文本框左右padding值","文本标红","文本框placehold","文本框值是否有效","文本框失焦","文本框是否处于编辑状态","文本框获取焦点","文本高亮","是否允许空值","是否允许退出编辑函数","暂停输入触发(输入空白字符)","点击编辑框触发(不在编辑状态时)","确定输入触发(blur时且输入值有效)","类型","获取文本框值","获取文本框最后一次输入的有效值","获取错误文本","设置titl","设置文本框值","设置错误titl","设置错误文本","说明","输入为空时按下backspac","输入值无效的状态事件","输入值有效的状态事件","输入框为空时触发","输入较验函数","错误提示","高度","默认值"],"case/editor/sign_initial_editor.html":["\"","\"#wrapper\",","\"bi.sign_initial_editor\",","\"layout","\"原始值\",","0","2","30","300","4","allowblank","api","bg5\",","bgap","bi.createwidget({","bi.editor.event_backspac","bi.editor.event_blur","bi.editor.event_chang","bi.editor.event_click","bi.editor.event_confirm","bi.editor.event_empti","bi.editor.event_ent","bi.editor.event_error","bi.editor.event_focu","bi.editor.event_key_down","bi.editor.event_paus","bi.editor.event_remov","bi.editor.event_restrict","bi.editor.event_spac","bi.editor.event_start","bi.editor.event_stop","bi.editor.event_valid","bi.sign_initial_editor","blur","blur事件","boolean","cls:","dohighlight","doredmark","editor的value发生改变触发","element:","errortext","focu","focus事件","function","geterrortext","getlastvalidvalu","getstat","getvalu","height","hgap","isedit","isvalid","keydown时触发","lgap","number","padding值","quitcheck","rgap","seterrortext","setstat","settitl","setvalu","setwarningtitl","sign_initial_editor","sourc","string","string/funct","text","text:","tgap","titl","true","true,fals","type:","unhighlight","unredmark","validationcheck","valu","vgap","watermark","width:","});","—","之后初始值会一直显示的editor","事件","停止输入触发","参数","取消文本标红","取消文本高亮","可选值","名称","回调参数","回车事件","回车但是值不合法","基础属性","基类bi.widget","对外方法","开始输入触发","指定初始值","按下backspace触发","按下空格触发","效果相当于文本框bottom","效果相当于文本框left","效果相当于文本框right","效果相当于文本框top","效果相当于文本框上下padding值","效果相当于文本框左右padding值","文本value值","文本内容","文本标红","文本框placehold","文本框值是否有效","文本框失焦","文本框是否处于编辑状态","文本框获取焦点","文本高亮","是否允许空值","是否允许退出编辑函数","暂停输入触发(输入空白字符)","点击编辑框触发(不在编辑状态时)","确定输入触发(blur时且输入值有效)","类型","获取文本框值","获取文本框最后一次输入的有效值","获取错误文本","设置titl","设置文本框值","设置错误titl","设置错误文本","说明","输入为空时按下backspac","输入值无效的状态事件","输入值有效的状态事件","输入框为空时触发","输入较验函数","错误提示","高度","默认值"],"case/editor/state_editor.html":["\"","\"#wrapper\",","\"123\",","\"456\",","\"bi.state_editor\",","0","2","30","300","4","allowblank","api","bgap","bi.createwidget({","bi.editor.event_backspac","bi.editor.event_blur","bi.editor.event_chang","bi.editor.event_click","bi.editor.event_confirm","bi.editor.event_empti","bi.editor.event_ent","bi.editor.event_error","bi.editor.event_focu","bi.editor.event_key_down","bi.editor.event_paus","bi.editor.event_remov","bi.editor.event_restrict","bi.editor.event_spac","bi.editor.event_start","bi.editor.event_stop","bi.editor.event_valid","bi.state_editor","blur","blur事件","boolean","dohighlight","doredmark","editor的value发生改变触发","element:","errortext","focu","focus事件","function","geterrortext","getlastvalidvalu","getstat","getvalu","height","hgap","isedit","isvalid","keydown时触发","lgap","number","padding值","quitcheck","rgap","seterrortext","setstat","setvalu","sourc","state_editor","string","string/funct","text","text:","tgap","true","true,fals","type:","unhighlight","unredmark","validationcheck","valu","value:","vgap","watermark","width:","});","—","事件","停止输入触发","参数","取消文本标红","取消文本高亮","可选值","名称","回调参数","回车事件","回车但是值不合法","基础属性","对外方法","开始输入触发","按下backspace触发","按下空格触发","效果相当于文本框bottom","效果相当于文本框left","效果相当于文本框right","效果相当于文本框top","效果相当于文本框上下padding值","效果相当于文本框左右padding值","文本标红","文本框placehold","文本框值是否有效","文本框失焦","文本框是否处于编辑状态","文本框获取焦点","文本高亮","是否允许空值","是否允许退出编辑函数","暂停输入触发(输入空白字符)","点击编辑框触发(不在编辑状态时)","确定输入触发(blur时且输入值有效)","类型","获取文本框值","获取文本框最后一次输入的有效值","获取错误文本","记录状态的输入框,基类bi.widget","设置文本框值","设置错误文本","说明","输入为空时按下backspac","输入值无效的状态事件","输入值有效的状态事件","输入框为空时触发","输入较验函数","错误提示","高度","默认值"],"case/layer/multi_popup_layer.html":["\"#wrapper\",","\"bi.multi_popup_view\",","300","api","array","basic_sure\")","bi.createwidget({","bi.i18ntext(\"bi","bi.multi_popup_view","button","element:","multi_popup_lay","sourc","type:","width:","zindex在1000w,基类bi.multipopupview","});","—","下拉框弹出层的多选版本,toolbar带有若干按钮,","参数","可选值","基础属性","按钮组","类型","说明","默认值"],"case/layer/layer_panel.html":["\"","\"#wrapper\",","\"bi.popup_panel\",","\"测试\",","300","additem","api","bi.createwidget({","bi.popup_panel","bi.popuppanel.event_chang","bi.popuppanel.event_click_toolbar_button","bi.popuppanel.event_clos","element:","empti","getallbutton","getallleav","getindexbyvalu","getnodebyid","getnodebyvalu","getnotselectedbutton","getnotselectedvalu","getselectedbutton","getvalu","hasnext","hasprev","id","index","item","layer_panel","panel的value发生改变触发","panel的关闭事件","popul","prependitem","removeitemat","setnotselectedvalu","setvalu","sourc","string","titl","title:","type:","valu","value,可以是单个值也可以是个数组","width:","});","—","事件","内部前插入","内部后插入","刷新列表","参数","可以理解为multipopupview和panel两个面板的结合体,基类bi.multipopupview","可选值","名称","回调参数","基础属性","对外方法","是否有上一页","是否有下一页","标题","根据id获取节点","根据value值获取value在数组中的索引","根据value值获取节点","清空组件","点击工具栏事件","移除指定索引处的item","类型","获取所有button","获取所有未被选中的元素","获取所有的叶子节点","获取所有被选中的元素","获取没有被选中的值","获取被选中的值","设置value值","设置未被选中的值","说明","默认值"],"case/layer/pane_list.html":["\"#wrapper\",","\"bi","\"bi.button_group\"","'bi.list_pane',","0","[","[]","]","additem","api","array","bgap","bi.createwidget({","bi.list_pan","border\",","cls:","dynamic:true}","el","element:","empti","function","getallbutton","getallleav","getindexbyvalu","getnodebyid","getnodebyvalu","getnotselectedbutton","getnotselectedvalu","getselectedbutton","getvalu","hasnext","hasprev","hgap","id","index","item","items:","itemscr","lgap","list面板,基类bi.widget","logic","number","object","onload","padding值","pane_list","popul","prependitem","removeitemat","rgap","setnotselectedvalu","setvalu","sourc","tgap","type:","valu","value,可以是单个值也可以是个数组","vgap","{","{type:","}","});","—","内部前插入","内部后插入","列表","列表创建器","刷新列表","参数","可选值","名称","回调参数","基础属性","对外方法","布局逻辑","开启panel的元素","效果相当于容器bottom","效果相当于容器left","效果相当于容器right","效果相当于容器top","效果相当于容器上下padding值","效果相当于容器左右padding值","是否有上一页","是否有下一页","根据id获取节点","根据value值获取value在数组中的索引","根据value值获取节点","正在加载","清空组件","移除指定索引处的item","类型","获取所有button","获取所有未被选中的元素","获取所有的叶子节点","获取所有被选中的元素","获取没有被选中的值","获取被选中的值","设置value值","设置未被选中的值","说明","默认值"],"case/layer/panel.html":["\"","\"#wrapper\",","\"+\"","\"bi.button\",","\"bi.panel\",","\"标题\",","[","[{","]","api","array","bi.createwidget({","bi.panel","dynamic:","dynamic:false}","el","el:","element:","logic","logic:","object","panel","settitl","sourc","string","text:","this.button_group,","titl","title:","titlebutton","titlebuttons:","true","type:","{","}","});","}],","—","参数","可选值","名称","回调参数","基础属性","对外方法","布局逻辑","带有标题栏的panel,基类bi.widget","开启panel的元素","标题","标题后的按钮组","类型","设置标题","说明","默认值"],"case/list/list.select.html":["\"bi.select_list\",","'1',","'2',","[]","[{","additem","array","b:","bi.createwidget({","bi.direction.top","bi.emptyfn","bi.select_list","boolean","data","direct","empti","function","getallbutton","getallleav","getindexbyvalu","getnodebyid","getnodebyvalu","getnotselectedbutton","getnotselectedvalu","getselectedbutton","getvlau","h","hasnext","hasprev","id","isallselect","item","items:","itemscr","onload","popul","prependitem","resetheight","select_list","setallselect","setnotselectedvalu","settoolbarvis","setvalu","sourc","string","text:","toolbar位置","type:","v:","valu","{","});","},","}]","—","元素创造器","列表最前添加元素","列表最后添加元素","加载完成的回调(测试了无效果)","参数","子项","方法","方法名","是否全选中","是否有上一页","是否有下一页","替换内容","根据id获取nod","根据值获取node","根据值获取索引","清空","类型","获取未选中植","获取未选中的根节点","获取选中的根节点","获得值","获得所以根节点","获得所有叶节点","设置toolbar是否可见","设置值","设置全选","设置未选中值","说明","选择列表","重新设置高度","默认值"],"case/loader/lazy_loader.html":["\"bi.lazy_loader\",","'body',","100,","additem","bi.createwidget({","bi.lazy_load","data","element:","empti","getallbutton","getallleav","getindexbyvalu","getnodebyid","getnodebyvalu","getnotselectedbutton","getnotselectedvalu","getselectedbutton","getvlau","id","item","items,","items:","lazy_load","popul","setnotselectedvalu","setvalu","sourc","type:","valu","width:","});","—","列表最后添加元素","参数","懒加载loader","方法","方法名","替换内容","根据id获取nod","根据值获取node","根据值获取索引","清空","获取未选中植","获取未选中的根节点","获取选中的根节点","获得值","获得所以根节点","获得所有叶节点","设置值","设置未选中值","说明"],"case/loader/list_loader.html":["\"bi.list_loader\",","'body',","100,","[]","additem","array","bi.createwidget({","bi.emptyfn","bi.list_load","count","data","element:","empti","fals","function","getallbutton","getallleav","getindexbyvalu","getnodebyid","getnodebyvalu","getnotselectedbutton","getnotselectedvalu","getselectedbutton","getvlau","h","hasnext","id","item","items,","items:","itemscr","list_load","next","number","object","onload","popul","resetheight","setnotselectedvalu","setvalu","sourc","type:","valu","width:","{}","});","—","为解决排序问题引入的控件","元素创造器","分页计数","列表最后添加元素","加载完成回调","参数","子项","方法","方法名","是否有下一页","替换内容","根据id获取nod","根据值获取node","根据值获取索引","清空","类型","获取未选中植","获取未选中的根节点","获取选中的根节点","获得值","获得所以根节点","获得所有叶节点","设置值","设置未选中值","说明","重新设置高度","默认值"],"case/loader/sort_list.html":["\"bi.sort_list\",","'body',","100,","[]","additem","array","bi.createwidget({","bi.emptyfn","bi.sort_list","count","data","element:","empti","fals","function","getallbutton","getallleav","getindexbyvalu","getnodebyid","getnodebyvalu","getnotselectedbutton","getnotselectedvalu","getselectedbutton","getvlau","h","hasnext","id","item","items,","items:","itemscr","next","number","object","onload","popul","resetheight","setnotselectedvalu","setvalu","sort_list","sourc","type:","valu","width:","{}","});","—","元素创造器","分页计数","列表最后添加元素","加载完成回调","参数","子项","排序列表","方法","方法名","是否有下一页","替换内容","根据id获取nod","根据值获取node","根据值获取索引","清空","类型","获取未选中植","获取未选中的根节点","获取选中的根节点","获得值","获得所以根节点","获得所有叶节点","设置值","设置未选中值","说明","重新设置高度","默认值"],"case/trigger/editor_trigger.html":["\"\"","\"bi.editor_trigger\",","\"body\",","30","allowblank","bi.createwidget({","bi.editor_trigg","bi.emptyfn","boolean","editor_trigg","element:","errortext","fals","function","getvlau","number","quitcheck","settext","setvalu","sourc","string","text","triggerwidth","type:","validationcheck","valu","watermark","});","—","参数","文本输入框trigger","方法","方法名","是否允许为空","水印","类型","获得值","触发器宽度","设置值","说明","退出时验证函数","错误信息","验证函数","默认值"],"case/trigger/icon_trigger.html":["\"bi.icon_trigger\",","\"body\",","bi.createwidget({","bi.icon_trigg","element:","icon_trigg","sourc","type:","});","图标按钮trigger"],"case/trigger/text_trigger.html":["\"bi.editor_trigger\",","\"body\",","bi.createwidget({","bi.text_trigg","element:","getvlau","setvalu","sourc","text_trigg","type:","valu","});","—","参数","文本输入框trigger","方法","方法名","获得值","设置值","说明"],"case/combo/bubble_combo.html":["\"\"","\"bi.bubble_combo\",","\"bi.button\",","\"bi.button_group\",","\"bi.text_item\",","\"bi.vertical\"","\"item\"","\"测试\",","200","25","25,","[{","api","b","beforeclick","bi.bubble_combo","bi.createwidget({","bi.emptyfn","bi.makearray(100,","bindev","boolean","bubble_combo","button的选中状态","click,","dblclick,","destroy","disableselect","dishov","doclick","el:","element:\"#wrapper\",","empti","fals","forcenotselect","forceselect","function","gettext","handl","handler","height:","hover","hover事件","isdisableselect","isforcenotselect","isforceselect","isonc","isselect","isshadowshowingonselect","items:","layouts:","lclick","maxheight:","mousedown,","mouseup,","null","onc","popup:","select","setselect","settext","shadow","sourc","stopev","stoppropag","string","text","text:","trigger","true,fals","type:","valu","{","}","})","}),","},","}]","—","不仅有选中状态而且有展开状态,","使能选中","判断是否怎么点击都不会被选中","判断是否点击即选中","判断是否让选中","参数","取消hover事件","可选值","名称","回调参数","基础属性","基类bi.widget","对外方法","无论怎么点击都不会被选中","是否只允许点击一次","是否显示阴影","是否被选中","清空组件","点击一次选中有效,再点无效","点击事件","点击事件之前","点击事件回调","点击即选中,","类型","组件text值","组件value值","绑定事件","获取文本值","表示一个可以展开的节点,","被选元素要触发的事件","设置文本值","设置选中的文本","说明","返回该对象","选中了就不会被取消,与once的区别是forceselected不影响事件的触发","选中状态下是否显示阴影","销毁组件","阻止事件","阻止冒泡","默认值"],"case/combo/icon_combo.html":["\"","\"#wrapper\",","\"auto\"","\"bi.icon_combo\",","\"delet","\"left,right,center\"","\"move","\"renam","\"第一项\",","\"第三项\",","\"第二项\",","0","100","24","300","[{","adjustlength","adjustxoffset","adjustyoffset","api","bi.buttongroup.choose_type_singl","bi.createwidget({","bi.icon_combo","choosetyp","const","el","element:","font\"","font\",","getvalu","height","hideview","icon_combo","iconclass","iconclass:","icon的类名","item","items:","left,right,cent","maxheight","maxwidth","minwidth","number","object","offsetstyl","popul","popup","setvalu","showview","sourc","string","string/numb","type:","value:","width","{","}","});","},","}]","—","切换trigger图标的combo","刷新列表","参数","参考button_group","可选值","名称","回调参数","基础属性","基类bi.widget","宽度","对外方法","弹出列表和trigger的距离","弹出层","弹出层显示位置","显示弹出层","最大宽度","最大高度","最小宽度","类型","自定义下拉框trigger","获取value值","设置value值","说明","调整横向偏移","调整纵向偏移","选择类型","隐藏弹出层","高度","默认值"],"case/combo/static_combo.html":["\"","\"#wrapper\",","\"1\",","\"2\",","\"3\",","\"bi.static_combo\",","\"valu","1","2","24","3","[","[{","]","api","array","bi.buttongroup.choose_type_singl","bi.createwidget({","bi.static_combo","choosetyp","const","el","element:","getvalu","height","item","items:","number","object","popul","setvalu","sourc","static_combo","string","text","text:","type:","value:","{","}","});","},","}]","—","不变\",","刷新列表","单选combo,trigger显示项不会改变","参数","参考button_group","可选值","名称","回调参数","基础属性","基类bi.widget","子组件","对外方法","文本内容","类型","自定义下拉框trigger","获取value值","设置value值","说明","选择类型","高度","默认值"],"case/combo/text_value_combo.html":["\"","\"#wrapper\",","\"1\",","\"2\",","\"3\",","\"bi.text_value_combo\",","\"value_combo\",","1","2","3","30","300,","[{","api","bi.buttongroup.choose_type_singl","bi.createwidget({","bi.text_value_combo","choosetyp","const","el","element:","getvalu","height","item","items:","number","object","popul","setvalu","sourc","string","text","text:","text_value_combo","type:","value:","width:","{","}","});","},","}]","—","刷新列表","参数","参考button_group","可选值","名称","回调参数","基础属性","基类bi.widget","对外方法","文本内容","类型","自定义下拉框trigger","获取value值","设置value值","说明","选择类型","高度","默认值"],"case/combo/text_value_downlist_combo.html":["\"","\"#wrapper\",","\"1\",","\"11\",","\"2\",","\"3\",","\"bi.text_value_down_list_combo\",","\"text\",","1","11","2","3","30","[","[{","]","api","bi.createwidget({","bi.text_value_down_list_combo","children:","el:","element:","getvalu","height","item","items:","number","popul","setvalu","sourc","string","text","text:","text_value_downlist_combo","type:","value:","{","});","},","}]","}],","—","刷新列表","参数","可选值","名称","回调参数","基础属性","基类bi.widget","对外方法","文本内容","有二级下拉菜单的combo","类型","获取value值","设置value值","说明","高度","默认值"],"case/tree/branch_tree.html":["\"bi.branch_tree\",","'body',","...","//","[]","[{","array","bi.branch_tre","bi.createwidget({","branch_expander组件配置项","branch_tre","children:","el","el:","element:","expand","getvalu","item","items:","object","popul","sourc","type:","{}","{},","});","}]","—","去掉所有内容","参数","参数设置","基础元素","子项","方法","方法名","横向分支的树","类型","获取所选项值","说明","默认值"],"case/tree/handstand_branch_tree.html":["\"bi.handstand_branch_tree\",","'body',","...","//","[]","[{","array","bi.createwidget({","bi.handstand_branch_tre","branch_expander组件配置项","children:","el","el:","element:","expand","getvalu","handstand_branch_tre","item","items:","object","popul","sourc","type:","{}","{},","});","}]","—","去掉所有内容","参数","参数设置","基础元素","子项","方法","方法名","类型","纵向分支的树","获取所选项值","说明","默认值"],"case/tree/display_tree.html":["\"bi.display_tree\",","'',","'body',","1,","=","bi.createwidget({","bi.display_tre","destroy","display_tre","element:","id:","inittre","node:","open:","settings:","sourc","text:","tree","tree.inittree({","true,","type:","var","});","—","加载tree结构","参数","摧毁元素","方法","方法名","树展示控件","节点数组","说明","配置项"],"case/tree/simple_tree.html":["\"bi.simple_tree\",","'body',","=","array","bi.createwidget({","bi.emptyfn","bi.simple_tre","element:","empti","function","getvalu","item","items:","itemscr","items构造器","keywords:","null","popul","setvalu","simple_tre","sourc","tree","tree.populate(items);","type:","v","var","});","—","元素","关键字标红字符串","去掉所有内容","参数","参数设置","子项数组","方法","方法名","清空树","简单的多选树","类型","获得值","设置值","说明","默认值"],"case/tree/level_tree.html":["\"bi.level_tree\",","'body',","=","[]","[],","array","bi.createwidget({","bi.level_tre","branch_expander配置","element:","expand","getallleav","getnodebyid","getnodebyvalu","getvalu","id","inittre","item","items:","level_tre","node","object","popul","setvalu","sourc","stroke","tree","type:","v","var","{}","});","—","二级树","元素","去掉所有内容","参数","参数设置","子项数组","方法","方法名","构造树结构","根据id获取节点","根据值获取节点","生成树方法","类型","获取所有叶节点","获得值","设置值","说明","默认值"],"case/tree/branch_relation.html":["\"bi.branch_relation\",","'body',","0","50","=","[],","align","align:","array","bi.branch_rel","bi.createwidget({","bi.direction.bottom","bi.direction.right,","bi.horizontalalign.right,","bi.verticalalign.top","branch_rel","centeroffset","centeroffset:","direct","direction:","element:","item","items:","null","number","popul","sourc","string","tree","type:","var","});","元素","去掉所有内容","参数","参数设置","子项数组","对齐方向","方法","方法名","根节点所在方向","类型","表关联树","说明","重心偏移量","默认值"],"case/table/adaptive_table.html":["\"bi.adaptive_table\",","'body',","1],","25","500,","600,","=","[0,","[50,50,200,250,400],","[]","[],","adaptive_t","array","attr","bi.adaptive_t","bi.createwidget({","boolean","columns","columnsize:","crosshead","crossitem","destroy","element:","fals","freezecol","freezecols:","function(row1,","getcolumns","getlefthorizontalscrol","getregioncolumns","getrighthorizontalscrol","getverticalscrol","header","header:","headerrows","height:","isneedfreez","isneedfreeze:","isneedmerg","isneedres","isneedresize:","isresizeadapt:","item","items:","key:","maxcolumns","mergecol","mergerul","mincolumns","number","popul","regioncolumns","restor","row2","row2)","rowsiz","scrollleft:","scrolltop:","setcolumns","setheight","setlefthorizontalscrol","setregioncolumns","setrighthorizontalscrol","setverticalscrol","setwidth","sourc","true","true,","type:","value:","width:","});","—","交叉表头","交叉项","值","冻结的列","列宽数组","列项间的","单元格宽度集合","参数","参数设置","合并的单元格列号","合并规则,","增加项","子组件","存储","宽度","得到列宽","摧毁表","方法","方法名","时合并","是否可改变列大小","是否需要冻结表头","是否需要合并单元格","普通单元格高度","最大列宽","最小列宽","横向滚动距离","类型","纵向滚动距离","自适应宽度的表格","获取右往左横向滚动距离","获取左到右横向滚动距离","获取纵向滚动距离","获得列项之间的间隙","表头","表头高度","设置列宽","设置列项之间的间隙","设置右往左横向滚动距离","设置宽度","设置属性","设置左到右横向滚动距离","设置纵向滚动距离","设置高度","说明","键","高度","默认row1","默认值","默认相等时合并"],"case/table/tree_table.html":["\"bi.tree_table\",","'body',","100,","100],","25","400,","600,","=","[100,","[]","array","attr","bi.createwidget({","bi.emptyfn","bi.tree_t","boolean","columns","columnsize:","crosshead","crossheader,","crossheader:","crossitem","crossitems,","crossitems:","destroy","element:","fals","freezecol","function","function(row1,","getcolumns","getlefthorizontalscrol","getregioncolumns","getrighthorizontalscrol","getverticalscrol","header","header,","header:","headercellstylegett","headerrows","height:","isneedfreez","isneedmerg","isneedres","isresizeadapt","item","items,","items:","key:","maxcolumns","mergecol","mergerul","mincolumns","mincolumnsize:","number","popul","regioncolumns","restor","row2","row2)","rowsiz","scrollleft:","scrolltop:","sequencecellstylegett","setcolumns","setheight","setlefthorizontalscrol","setregioncolumns","setrighthorizontalscrol","setverticalscrol","setwidth","sourc","summarycellstylegett","tabl","tree_tabl","true","type:","value:","var","width:","});","—","交叉表头","交叉项","值","冻结的列","列宽数组","列项间的","单元格宽度集合","参数","参数设置","合并的单元格列号","合并规则,","增加项","子组件","存储","宽度","得到列宽","摧毁表","方法","方法名","时合并","是否需要冻结表头","是否需要合并单元格","是否需要在调整列宽或区域宽度的时候它们自适应变化","是否需要调整列宽","普通单元格高度","最大列宽","最小列宽","树状结构的表格","横向滚动距离","类型","纵向滚动距离","获取右往左横向滚动距离","获取左到右横向滚动距离","获取纵向滚动距离","获得列项之间的间隙","表头","表头高度","设置列宽","设置列项之间的间隙","设置右往左横向滚动距离","设置宽度","设置属性","设置左到右横向滚动距离","设置纵向滚动距离","设置高度","说明","键","高度","默认row1","默认值","默认相等时合并"],"case/table/layer_tree_table.html":["\"bi.layer_tree_table\",","'body',","100,","100],","25","400,","600,","=","[100,","[]","array","attr","bi.createwidget({","bi.emptyfn","bi.layer_tree_t","boolean","columns","columnsize:","crosshead","crossheader,","crossheader:","crossitem","crossitems,","crossitems:","destroy","element:","fals","freezecol","function","function(row1,","getcolumns","getlefthorizontalscrol","getregioncolumns","getrighthorizontalscrol","getverticalscrol","header","header,","header:","headercellstylegett","headerrows","height:","isneedfreez","isneedmerg","isneedres","isresizeadapt","item","items,","items:","key:","layer_tree_t","maxcolumns","mergecol","mergerul","mincolumns","mincolumnsize:","number","popul","regioncolumns","restor","row2","row2)","rowsiz","scrollleft:","scrolltop:","sequencecellstylegett","setcolumns","setheight","setlefthorizontalscrol","setregioncolumns","setrighthorizontalscrol","setverticalscrol","setwidth","sourc","summarycellstylegett","tabl","true","type:","value:","var","width:","});","—","交叉表头","交叉项","值","冻结的列","列宽数组","列项间的","单元格宽度集合","参数","参数设置","合并的单元格列号","合并规则,","增加项","子组件","存储","宽度","层级树状结构的表格","得到列宽","摧毁表","方法","方法名","时合并","是否需要冻结表头","是否需要合并单元格","是否需要在调整列宽或区域宽度的时候它们自适应变化","是否需要调整列宽","普通单元格高度","最大列宽","最小列宽","横向滚动距离","类型","纵向滚动距离","获取右往左横向滚动距离","获取左到右横向滚动距离","获取纵向滚动距离","获得列项之间的间隙","表头","表头高度","设置列宽","设置列项之间的间隙","设置右往左横向滚动距离","设置宽度","设置属性","设置左到右横向滚动距离","设置纵向滚动距离","设置高度","说明","键","高度","默认row1","默认值","默认相等时合并"],"case/pager/all_count_pager.html":["'bi.all_count_pager',","//必选项","1","1,","10,","30","30,","all_count_pag","bi.all_count_pag","bi.createwidget({","count","count:","curr","curr:","getcurrentpag","hasnext","hasprev","height","height:","number","page","pages:","popul","setallpag","setcount","setpagervis","setvalu","setvpag","sourc","true/fals","type:","v","});","—","参数","当前页","总行数","总页数","控件高度","方法","方法名","是否有前一页","是否有后一页","有总页数和总行数的分页控件","清空内容","类型","获取当前页码","设置当前页码","设置总页数","设置计数","设置页码是否可见","说明","默认值"],"case/pager/direction_pager.html":["'bi.direction_pager',","'body',","//初始化当前页,","//必选项","1","1,","10,","30","30,","=","bi.createwidget({","bi.direction_pag","bi.emptyfn","curr","curr:","direction_pag","element:","fals","firstpag","firstpage:","function","gethpag","getvpag","hashnext","hashprev","hasnext","hasprev","hasvnext","hasvprev","height","height:","horizont","horizontal:","lastpag","lastpage:","number","number/boolean","number/funct","object","page","pager","pages:","pages为数字时可用","pages为数字时可用,","popul","sethpag","sethpagervis","setvpag","setvpagervis","sourc","type:","v","var","vertic","vertical:","{","});","},","—","二级参数","判断是否有前一页的方法","判断是否有后一页的方法","参数","当前页,","总页数","控件高度","方法","方法名","显示页码的分页控件","最后一页","横向坐标是否有上一页","横向坐标是否有下一页","横向翻页设置","清空内容","第一页","类型","纵向坐标是否有上一页","纵向坐标是否有下一页","纵向翻页设置,参数与horizontal相同","获取水平向页码","获取纵向页码","设置横向分页键可见","设置纵向分页键可见","说明","默认值"],"case/calendar.html":["'1900","'2099","'bi.calendar',","//7表示八月","//最大日期","//最小日期","01","01'","01',","12","2015","2015,","25","25,","31'","31',","7","7,","bi.calendar","bi.createwidget({","calendar","day","day:","day}","getvlau","isfinald","isfrontd","max","max:","min","min:","month","month,","month:","number","object:","setvalu","sourc","string","type:","year","year:","{year,","});","—","参数","方法","方法名","日历控件","是否为最大日期","是否为最小日期","最大日期","最小日期","类型","获得日期","设定的年份","设定的日期","设定的月份","设置日期","说明","默认值"],"case/clipboard.html":["'bi.clipboard',","()","100,","aftercopi","aftercopy:","bi.clipboard","bi.createwidget({","bi.emptyfn","clipboard","copi","copy:","function","height:","sourc","type:","width:","{}","{},","});","剪切板","参数","完成拷贝后执行的方法","类型","获取需要拷贝的值","说明","默认值"],"case/complex_canvas.html":["\"bi.complex_canvas\",","\"red\",","(x0,","10,","100,","2","20,","200,","500,","600","=","bi.createwidget({","branch","canva","canvas.branch(55,","canvas.stroke();","complex_canva","height:","linewidth:","offset:","sourc","stroke","strokestyle:","type:","var","width:","x1,","x2,","x2,y2...)","y0,","y0为根节点,分支到x1,y1,","y1,","y2)","{","});","名称","回调参数","复杂的canvas绘图","对外方法","绘制","绘制树枝节点","说明","(以x0,"],"case/color_chooser.html":["\"#wrapper\",","\"bi.color_chooser\",","30","30,","bi.color_choos","bi.createwidget({","color","color_choos","element:","getvalu","height:","isviewvis","setvalu","sourc","type:","width:","});","—","判断是否显示","参数","方法","方法名","获取颜色值","设置颜色值","说明","选色控件"],"case/color_chooser_popup.html":["\"bi.color_chooser_popup\",","145","bi.color_chooser_popup","bi.createwidget({","color","color_chooser_popup","event_value_chang","getvalu","height","number","setstorecolor","setvalu","sourc","type:","});","—","事件","参数","方法","方法名","类型","获取颜色值","设置储存的颜色值","设置颜色值","说明","选色控件弹窗","颜色值改变时触发","高度","默认值"],"case/segment.html":["\"#wrapper\",","\"bi.label\",","\"bi.segment\",","\"bi.vertical\",","\"tab1\",","\"tab2\",","\"tab3","\"默认风格\"","0","1,","10","2","20","3","30,","50,","[","[{","]","api","array","bgap","bi.createwidget({","bi.sgement","disabled\",","disabled:","element:","height","height:","hgap","hgap:","item","items:","lgap","number","padding值","rgap","segment","selected:","sourc","text:","tgap","true","true,","type:","value:","vgap","vgap:","width","{","});","},","}]","}],","—","参数","可选值","各种segment","基础属性","子控件数组","宽度","效果相当于文本框bottom","效果相当于文本框left","效果相当于文本框right","效果相当于文本框top","效果相当于文本框上下padding值","效果相当于文本框左右padding值","类型","说明","高度","默认值"],"detailed/bi.button/general.html":["bi.button","通用按钮","通用按钮,详情见bi.button"],"detailed/bi.button/tooltip.html":["\"#wrapper\",","\"bi.vertical\",","'bi.button',","'简单toast测试',","()","0","10","20","30,","=","[","[{","]","api","array","bgap","bi.createwidget({","bi.msg.toast(\"这是一条简单的数据\");","el:","element:","function","handler:","height","height:","hgap","item","items:","lgap","number","padding值","rgap","sourc","text:","tgap","toast","type:","var","vgap","vgap:","width","{","}","});","}],","—","参数","可选值","基础属性","子控件数组","宽度","提示性信息","效果相当于文本框bottom","效果相当于文本框left","效果相当于文本框right","效果相当于文本框top","效果相当于文本框上下padding值","效果相当于文本框左右padding值","类型","说明","高度","默认值"],"detailed/bi.button/items.html":["\"#wrapper\",","\"bi.label\",","\"bi.multi_select_item\",","\"bi.single_select_item\",","\"单选item\"","\"单选项\"","\"复选item\"","\"复选项\"","'bi.vertical',","0","10","30,","[","[{","]","api","array","bgap","bi.createwidget({","element:","height","height:","hgap","item","items:","lgap","number","padding值","rgap","sourc","text:","tgap","type:","vgap","width","{","});","},","}]","—","参数","可选值","各种item","基础属性","子控件数组","宽度","效果相当于文本框bottom","效果相当于文本框left","效果相当于文本框right","效果相当于文本框top","效果相当于文本框上下padding值","效果相当于文本框左右padding值,如果clear属性为true,该属性值置0","类型","说明","高度","默认值"],"detailed/bi.button/node.html":["\"#wrapper\",","\"bi.arrow_group_node\",","\"bi.label\",","\"bi.plus_group_node\",","\"bi.triangle_group_node\",","\"三角形的节点\"","\"十字形的节点\"","\"箭头节点\"","'bi.vertical',","0","10","30,","[","[{","]","api","array","bgap","bi.createwidget({","element:","height","height:","hgap","item","items:","lgap","number","padding值","rgap","sourc","text:","tgap","type:","vgap","width","{","});","},","}]","—","参数","可选值","各种节点node","基础属性","子控件数组","宽度","效果相当于文本框bottom","效果相当于文本框left","效果相当于文本框right","效果相当于文本框top","效果相当于文本框上下padding值","效果相当于文本框左右padding值,如果clear属性为true,该属性值置0","类型","说明","高度","默认值"],"detailed/bi.button/segment.html":["\"#wrapper\",","\"bi.label\",","\"bi.segment\",","\"bi.vertical\",","\"tab1\",","\"tab2\",","\"tab3","\"默认风格\"","0","1,","10","2","20","3","30,","50,","[","[{","]","api","array","bgap","bi.createwidget({","bi.sgement","disabled\",","disabled:","element:","height","height:","hgap","hgap:","item","items:","lgap","number","padding值","rgap","selected:","sourc","text:","tgap","true","true,","type:","value:","vgap","vgap:","width","{","});","},","}]","}],","—","参数","可选值","各种segment","基础属性","子控件数组","宽度","效果相当于文本框bottom","效果相当于文本框left","效果相当于文本框right","效果相当于文本框top","效果相当于文本框上下padding值","效果相当于文本框左右padding值","类型","说明","高度","默认值"],"detailed/tree/bi.multi_tree_combo.html":["\"bi.multi_tree_combo\",","\"根目录\"","\"根目录\",","\"第一级目录1\"","\"第一级目录1\",","\"第二级文件1\"","\"第二级文件1\",","(options,","1,","11,","2,","200","30","300","=","[{","array","bi.createwidget({","bi.multi_tree_combo","bi.multitreecombo.event_confirm","callback({","callback)","function","function()","getvalu","height","id:","item","items:","itemscr","itemscreator:","multi_tree_combo","null","number","pid:","popul","setvalu","sourc","text:","type:","v","value:","var","width","width:","{","{}","})","});","},","}];","—","事件","参数","参数设置","子项创建函数","子项,pid代表父节点id","宽度","方法","方法名","更改树结构内容","树下拉框,继承bi.widget","点击一级节点触发","类型","获取文本框值","设置文本框值","说明","高度","默认值"],"detailed/tree/bi.switch_tree.html":["\"bi.switch_tree\",","\"根目录\"","\"根目录\",","\"第一级目录1\"","\"第一级目录1\",","\"第二级文件1\"","\"第二级文件1\",","1,","11,","2,","=","[]","[{","array","bi.createwidget({","bi.switch_tre","getselect","getvalu","id:","item","items,","items:","pid:","popul","setselect","setvalu","sourc","switch_tre","switchselect","text:","tree","type:","v","value:","var","{","});","},","}];","—","切换树结构","参数","参数设置","可以单选多选切换的树,继承bi.widget","子项,pid代表父节点id","方法","方法名","更改树结构内容","类型","获取当前选中项内容","获取选中项","设置当前选中项内容","设置选中项","说明","默认值"],"detailed/table/bi.preview_table.html":["\"\",","\"bi.preview_table\",","\"第一行第一列\"","\"第一行第三列\"","\"第一行第二列\"","\"表头1\"","\"表头2\"","\"表头3\"","'body',","30","50],","[100,","[[{","[]","array","array/numb","attr","bi.createwidget({","bi.preview_t","boolean","columns","columnsize:","destroy","element:","fals","freezecol","getcalculatecolumns","getcalculateregioncolumns","getcalculateregionrows","getclientregioncolumns","getcolumn","getcolumns","getlefthorizontalscrol","getregioncolumns","getrighthorizontalscrol","getscrollregioncolumns","getscrollregionrows","getverticalscrol","hasverticalscrol","header","header:","headerrows","isneedfreez","item","items:","key:键,value:值","null","number","popul","preview_t","resiz","resizehead","row","rowsiz","scrollleft","scrolltop","setcolumns","setheadercolumns","setlefthorizontalscrol","setregioncolumns","setrighthorizontalscrol","setverticalscrol","sourc","text:","type:","{","});","},","}]]","}]],","—","冻结的列","列宽","参数","子组件","得到列宽","摧毁表","方法","方法名","是否冻结","是否含有数值滚动条","替换为新的内容","用于表格预览,继承bi.widget","类型","获取列项","获取右往左横向滚动距离","获取左到右横向滚动距离","获取横向滚动条宽度","获取浏览器中显示的列项之间的间隙","获取纵向滚动条宽度","获取纵向滚动距离","获取计算后的列项上下之间的间隙","获取计算后的列项之间的间隙","获得列项之间的间隙","获得计算后的列宽","行高","表头内容","表头行高","设置列宽","设置列项之间的间隙","设置右往左横向滚动距离","设置属性","设置左到右横向滚动距离","设置纵向滚动距离","设置表头的列宽","说明","调整表头","调整表格","默认值"],"detailed/table/bi.responsive_table.html":["\"\",","\"\"],","\"bi.responsive_table\",","\"第一行第一列\"","\"第一行第三列\"","\"第一行第二列\"","\"表头1\"","\"表头2\"","\"表头3\"","'body'","(row1,","1],","25","[\"\",","[0,","[[{","[]","array","attr","bi.createwidget({","bi.responsive_t","boolean","columns","columnsize:","crosshead","crossitem","destroy","element:","fals","footer","footerrows","freezecol","function","getcalculatecolumns","getcalculateregioncolumns","getcalculateregionrows","getclientregioncolumns","getcolumn","getcolumns","getlefthorizontalscrol","getregioncolumns","getrighthorizontalscrol","getscrollregioncolumns","getscrollregionrows","getverticalscrol","hasverticalscrol","header","header:","headerrows","isneedfreez","isneedfreeze:","isneedmerg","isneedmerge:","item","items:","key:键,value:值","mergecols:","mergerul","number","popul","regioncolumns","resiz","resizehead","responsive_t","row","row2)","rowsiz","scrollleft","scrolltop","setcolumns","setheadercolumns","setlefthorizontalscrol","setregioncolumns","setrighthorizontalscrol","setverticalscrol","sourc","text:","true,","type:","{","});","},","}]],","—","交叉表内容二维数组","交叉表头","冻结的列号,从0开始,isneedfreeze为true时生效","列宽","参数","合并规则,","子组件二维数组","得到列宽","摧毁表","方法","方法名","是否含有数值滚动条","是否需要冻结单元格","是否需要合并单元格","是否需要表尾","替换为新内容","类型","自适应宽度的表格,继承bi.widget","获取列项","获取右往左横向滚动距离","获取左到右横向滚动距离","获取横向滚动条宽度","获取浏览器中显示的列项之间的间隙","获取纵向滚动条宽度","获取纵向滚动距离","获取计算后的列项上下之间的间隙","获取计算后的列项之间的间隙","获得列项之间的间隙","获得计算后的列宽","行高","表头内容","表头行高","表尾行高","设置列宽","设置列项之间的间隙","设置右往左横向滚动距离","设置属性","设置左到右横向滚动距离","设置纵向滚动距离","设置表头的列宽","说明","调整表头","调整表格","默认值","默认相等时合并"],"detailed/table/bi.excel_table.html":["\"\"]","\"bi.excel_table\",","\"bi.label\",","\"body\",","\"layout","\"第一行第一列\"","\"第一行第二列\"","\"第二行第一列\"","\"第二行第二列\"","37","=","[","[200,200],","[82,","[]","[{","]","array","attr","bg1\",","bg2\",","bg3\",","bg4\",","bi.createwidget({","bi.excel_t","boolean","cls:","columns","columnsize:","destroy","element:","excel_t","fals","footerrows","function(row1,","getcalculatecolumns","getcalculateregioncolumns","getcalculateregionrows","getclientregioncolumns","getcolumn","getcolumns","getlefthorizontalscrol","getregioncolumns","getrighthorizontalscrol","getscrollregioncolumns","getscrollregionrows","getverticalscrol","hasverticalscrol","headerrows","isneedmerg","isneedres","isresizeadapt","item","items:","key:键,value:值","mergecol","mergerul","number","popul","regioncolumns","resiz","resizehead","row","row2","row2)","rowsiz","scrollleft","scrolltop","setcolumns","setheadercolumns","setlefthorizontalscrol","setregioncolumns","setrighthorizontalscrol","setverticalscrol","sourc","text:","true","type:","{","});","},","}]","}],","—","列项间的","单元格宽度集合","参数","参数设置","合并的单元格列号","合并规则,","增加行","子组件","得到列宽","摧毁表","方法","方法名","时合并","是否含有数值滚动条","是否调整时自适应","是否需要合并单元格","是否需要调整大小","普通单元格高度","类似excel式的表格,继承bi.widget","类型","获取列项","获取右往左横向滚动距离","获取左到右横向滚动距离","获取横向滚动条宽度","获取浏览器中显示的列项之间的间隙","获取纵向滚动条宽度","获取纵向滚动距离","获取计算后的列项上下之间的间隙","获取计算后的列项之间的间隙","获得列项之间的间隙","获得计算后的列宽","表头高度","表尾高度","设置列宽","设置列项之间的间隙","设置右往左横向滚动距离","设置属性","设置左到右横向滚动距离","设置纵向滚动距离","设置表头的列宽","说明","调整表头","调整表格","默认row1","默认值","默认相等时合并"],"detailed/table/bi.page_table.html":["\"bi.page_table\",","\"body\",","1","25",":","=","[200,200],","[]","[],","array","attr","bi.createwidget({","bi.emptyfn","bi.page_t","boolean","columns","columnsize:","crosshead","crossitem","curr","destroy","element:","fals","firstpag","freezecol","function","function(row1,","getcolumns","gethpag","getlefthorizontalscrol","getregioncolumns","getrighthorizontalscrol","getverticalscrol","getvpag","hasnext","hasprev","header","headercellstylegett","headerrows","height:","horizont","isneedfreez","isneedmerg","item","items:","itemscr","key:","lastpag","maxcolumns","mergecol","mergerul","mincolumns","number","number/funct","object","page","page_t","pager","pager:","popul","regioncolumns","row2","row2)","rowsiz","scrollleft:","scrolltop:","sequencecellstylegett","setcolumns","setheight","sethpag","setlefthorizontalscrol","setregioncolumns","setrighthorizontalscrol","setverticalscrol","setvpag","setwidth","sourc","summarycellstylegett","type:","v:","value:","vertic","vertical:","width:","{","{}","{},","}","});","—","三级参数","二级参数","交叉表头","交叉项","值","元素创造器","冻结的列","分页表格","分页选项","列宽数组","列项间的","判断是否有前一页的函数","单元格宽度集合","参数","参数设置","合并的单元格列号","合并规则,","增加","子组件","宽度","当前页","得到列宽","摧毁表","方法","方法名","时合并","是否有下一页","是否需要冻结表头","是否需要合并单元格","显示总页数","普通单元格高度","最后一页","最大列宽","最小列宽","横向滚动距离","水平分页选项","第一页","类型","纵向分页,参数与horizont","纵向滚动距离","获取右往左横向滚动距离","获取左到右横向滚动距离","获取纵向滚动距离","获得列项之间的间隙","获得垂直页数","获得水平页数","表头","表头高度","设置列宽","设置列项之间的间隙","设置右往左横向滚动距离","设置宽度","设置属性","设置左到右横向滚动距离","设置水平页数","设置纵向滚动距离","设置纵向页数","设置高度","说明","键","页码","高度","默认row1","默认值","默认相等时合并"],"detailed/text_input/bi.text_editor.html":["\"","\"#wrapper\",","\"bi.text_editor\",","0","2","200,","30","30,","4","allowblank","api","bgap","bi.createwidget({","bi.text_editor","boolean","element:","errortext","fals","function","height","height:","hgap","lgap","null","number","padding值","quitcheck","rgap","sourc","string","tgap","true,fals","type:","validationcheck","valu","vgap","watermark","watermark:\"请输入内容\"","width","width:","});","—","事件详见editor","参数","可选值","基础用法","效果相当于文本框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.searcheditor.event_clear","boolean","element:","errortext","fals","function","height","hgap","lgap","null","number","padding值","quitcheck","rgap","sourc","string","tgap","true,fals","type:","validationcheck","valu","vgap","watermark","watermark:\"搜索\",","width","width:","});","—","事件","其他事件详见editor","参数","可选值","搜索框","效果相当于文本框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.cleareditor.event_clear","bi.createwidget({","boolean","border\",","cls:","element:","errortext","fals","function","height","hgap","lgap","null","number","padding值","quitcheck","rgap","sourc","string","tgap","true,fals","type:","validationcheck","valu","vgap","watermark","watermark:\"带清除按钮的输入框\",","width","width:","});","—","事件","其他事件详见input","参数","可选值","带清除按钮的输入框","效果相当于文本框bottom","效果相当于文本框left","效果相当于文本框right","效果相当于文本框top","效果相当于文本框上下padding值","效果相当于文本框左右padding值","文本框placehold","文本框宽度","文本框高度","文本框默认值","是否允许空值","是否允许退出编辑函数","点击清空按钮触发","类型","说明","输入较验函数","错误提示","默认值"],"detailed/text_input/finetuning_number_editor.html":["'#wrapper',","'bi.fine_tuning_number_editor',","1","1表示自动","300","bi.createwidget({","bi.finetuningnumbereditor.event_confirm","element:","finetuning_number_editor","number","sourc","type:","valu","width:","});","事件","参数","可选值","数值微调器","点击增加/减少按钮或者编辑框确定时触发","类型","编辑框中的值,","说明","默认值"],"detailed/year_combo.html":["'#wrapper',","'1900","'2099","'bi.year_combo',","01","01'","12","300","31'","behavior","bi.createwidget({","bi.yearcombo.event_before_popupview","bi.yearcombo.event_confirm","element:","max","min","object","sourc","string","type:","width:","year_combo","{}","});","事件","参数","可选值","年份选择下拉框","类型","自定义下拉列表中item项的行为,如高亮,标红等(详见button_group)","说明","选中日期或者退出编辑状态触发","限定可选日期的上限","限定可选日期的下限","默认值"],"detailed/month_combo.html":["'#wrapper',","'bi.month_combo',","300","behavior","bi.createwidget({","bi.monthcombo.event_before_popupview","bi.monthcombo.event_confirm","element:","month_combo","object","sourc","type:","width:","{}","});","事件","参数","可选值","月份选择下拉框","类型","自定义下拉列表中item项的行为,如高亮,标红等(详见button_group)","说明","选中日期或者退出编辑状态触发","默认值"],"detailed/quarter_combo.html":["'#wrapper',","'bi.quarter_combo',","300","behavior","bi.createwidget({","bi.quartercombo.event_before_popupview","bi.quartercombo.event_confirm","element:","object","quarter_combo","sourc","type:","width:","{}","});","事件","参数","可选值","季度选择下拉框","类型","自定义下拉列表中item项的行为,如高亮,标红等(详见button_group)","说明","选中日期或者退出编辑状态触发","默认值"],"detailed/down_list_combo.html":["\"bi.icon_text_icon_item\",","\"bi.icon_text_item\",","\"chart","\"check","\"column","\"dot","'#wrapper',","'bi.down_list_combo',","0","1.1\",","1.222222222222222222222222222222222222\",","11","1111\",","12","12,","2\",","2.1\",","2.2\",","21,","22,","25,","300,","[","[{","]","adjustlength","bi.createwidget({","bi.downlistcombo.event_before_popupview","bi.downlistcombo.event_chang","bi.downlistcombo.event_son_value_chang","bottom","bottom,left","bottom,right","children:","click","click,","cls:","direct","disabled:","down_list_combo","e","el","el:","element:","font\"","font\",","height:","hover","iconcls1:","items:","left","mark","number","object","right","selected:","sourc","string","text:","top","top,left","top,right","trigger","true","true,","type","type:","value:","width:","{","|","});","},","}]","}],","下拉列表弹出前触发","下拉列表的弹出方式","事件","具体配置方法见combo","参数","可选值","多层下拉列表的下拉框","弹出列表和trigger的位置关系","弹出列表和trigger的距离","点击一级节点触发","点击二级节点触发","类型","自定义下拉框trigger","说明","默认值"],"detailed/numeric_interval.html":["\"bi.numerical_interval\",","'#wrapper',","500","bi.createwidget({","bi.numericalinterval.event_error","bi.numericalinterval.event_valid","boolean","closemax","closemin","element:","isstatevalid()","max","min","number","numeric_interv","setclosemaxenable(boolean)","setcloseminenable(boolean)","setmaxenable(boolean)","setminenable(boolean)","setnumtip(string)","sourc","true","type:","width:","});","—","事件","区间不合法的状态事件","区间合法的状态事件","区间是否成立)","参数","可选值","右区间初始状态","左区间初始状态","当前状态是否有效(输入是否合法,","数值区间控件","方法","无","最大值初始值","最小值初始值","用法","类型","设置右区间开闭combo的disable状态","设置右区间输入框disable状态","设置左区间开闭combo的disable状态","设置左区间输入框disable状态","设置数值区间的tip提示","说明","默认值"],"detailed/multi_select_combo.html":["\"bi.multi_select_combo\",","'#wrapper',","500,","[],","bi.createwidget({","bi.multiselectcombo.event_confirm","element:","fals","function(){","hasnext:","items:","itemscreator:","multi_select_combo","return","sourc","type:","width:","{","}","});","事件","带确定的复选下拉框","点击确定触发","说明"],"detailed/date/date_combo.html":["\"#wrapper\",","\"bi.date_combo\",","300","bi.createwidget({","date_combo","element:","sourc","type:","width:","});","参数","可选值","日期选择下拉框(弹出的年月选择可以进一步选择日期)","类型","说明","默认值"],"detailed/date/date_pane_widget.html":["\"#wrapper\",","\"bi.date_pane_widget\",","'1900","'2099","01","01'","12","300","31'","bi.createwidget({","date_pane_widget","element:","max","min","month:","m})","obj({year:","selectedtim","sourc","string","type:","width:","y,","});","—","参数","可选值","日期选择下拉框的弹出面板","类型","说明","选中的初始年月","限定可选日期的上限","限定可选日期的下限","默认值"],"detailed/date/year_month_combo.html":["\"bi.year_month_combo\",","300","bi.createwidget({","bi.yearmonthcombo.event_before_popupview","bi.yearmonthcombo.event_confirm","monthbehavior","object","sourc","type:","width:","year_month_combo","yearbehavior","{","}","});","—","事件","参数","可选值","年月选择下拉框","弹出框弹出前触发","点击确认触发","类型","自定义年份选择的行为(详见button_group)","说明","默认值"],"detailed/date/year_quarter_combo.html":["\"bi.year_quarter_combo\",","300","bi.createwidget({","bi.yearquartercombo.event_before_popupview","bi.yearquartercombo.event_confirm","monthbehavior","object","sourc","type:","width:","year_quarter_combo","yearbehavior","{","}","});","—","事件","参数","可选值","年季度选择下拉框","弹出框弹出前触发","点击确认触发","类型","自定义年份选择的行为(详见button_group)","说明","默认值"],"detailed/date/custom_date_time.html":["\"#wrapper\",","\"bi.custom_date_time_combo\",","bi.createwidget({","bi.customdatetimecombo.event_cancel","bi.customdatetimecombo.event_confirm","custom_date_tim","element:","sourc","type:","});","事件","参数","可选值","日期选择下拉框(可以选择时分秒)","点击取消触发","点击确认触发","类型","说明","默认值"],"detailed/combo/single_tree_combo.html":["\"bi.single_tree_combo\",","\"默认值\",","''","'body',","30","300,","=","[],","array","bi.createwidget({","bi.single_tree_combo","bi.singletreecombo.event_before_popupview","element:","getvalu","height","item","items:","null","number","object","popul","setvalu","single_tree_combo","sourc","string","text","text:","tree","trigger","type:","var","width:","{}","});","下拉列表的弹出方式","下拉框弹出前触发","事件","二级树下拉框","元素","其他事件详见input","刷新内容","参数","参数设置","子项数组","文本框值","方法","方法名","类型","获取值","设置值","说明","高度","默认值"],"detailed/combo/multilayer_single_tree_combo.html":["\"bi.multilayer_single_tree_combo\",","\"默认值\",","''","'body',","30","300,","=","[],","array","bi.createwidget({","bi.emptyfn","bi.multilayer_single_tree_combo","element:","function","getvalu","height","item","items:","itemscr","multilayer_single_tree_combo","null","number","popul","setvalu","sourc","string","text","text:","tree","type:","var","width:","});","元素","元素创造器","刷新内容","参数","参数设置","回调参数","多层级下拉单选树","子项数组","文本框值","方法","方法名","类型","获取值","设置值","说明","高度","默认值"],"detailed/combo/select_tree_combo.html":["\"bi.select_tree_combo\",","\"默认值\",","''","'body',","30","300,","=","[],","array","bi.createwidget({","bi.select_tree_combo","element:","getvalu","height","item","items:","null","number","popul","select_tree_combo","setvalu","sourc","string","text","text:","tree","type:","var","width:","});","二级可选节点下拉框树","元素","刷新内容","参数","参数设置","回调参数","子项数组","文本框值","方法","方法名","类型","获取值","设置值","说明","高度","默认值"],"detailed/combo/multilayer_select_tree_combo.html":["\"bi.multilayer_select_tree_combo\",","\"默认值\",","''","'body',","30","300,","=","[],","array","bi.createwidget({","bi.multilayer_select_tree_combo","element:","getvalu","height","item","items:","multilayer_select_tree_combo","null","number","popul","setvalu","sourc","string","text","text:","tree","type:","var","width:","});","元素","刷新内容","参数","参数设置","回调参数","多层级下拉可选节点树","子项数组","文本框值","方法","方法名","类型","获取值","设置值","说明","高度","默认值"],"detailed/path/path_chooser.html":["\"#wrapper\",","\"0fbd0dc648f41e97\",","\"1\"","\"3\"","\"5\"","\"8c4460bc3605685e\",","\"bi.path_chooser\",","\"c6d72d6c7e19a667\",","\"id\",","\"region\":","\"regiontext\":","\"text\":","\"value\":","\"供应商基本信息\",","\"学号\",","\"采购订单\",","\"采购订单xxx\",","[","[[{","]","array","bi.createwidget({","element:","item","items:","path_choos","sourc","type:","{","});","},","}]]","—","二维数组,每个元素代表一条路径","参数","可选值","类型","说明","路径选择","默认值"],"detailed/path/direction_path_chooser.html":["\"#wrapper\",","\"1f4711c201ef1842\",","\"bi.direction_path_chooser\",","\"defa1f7ba8b2684a客户id\"","\"direction\":","\"e351e9f1d8147947合同id\",","\"region\":","\"text\":","\"value\":","\"主键\",","\"合同id\",","\"合同信息\",","\"合同的回款信息\",","\"客户id\",","\"客户信息\",","1","[","[[{","]","array","bi.createwidget({","direction_path_choos","element:","item","items:","sourc","type:","{","});","},","}]]","—","二维数组,每个元素代表一条路径,相较于path_chooser多一个属性direction来指定方向","参数","可选值","带方向的路径选择","类型","说明","默认值"],"detailed/relation_view.html":["\"a\",","\"a1\",","\"a1字段\"},","\"b\",","\"b2\",","\"b2...\",","\"b2字段\"","\"bi.relation_view\",","\"c\",","\"c1\",","\"c1字段\"}","\"c2\",","\"c2字段\"}","\"比\",","[{","bi.createwidget({","foreign:","items:","primary:","region:","regiontext:","relation_view","sourc","text:","title:","type:","value:","{","{region:","});","},","}]","关联视图","参数","可选值","类型","说明","默认值"],"detailed/dialog.html":["\"","bi.msg.alert(title,","content","content)","dialog","sourc","string","titl","—","参数","可选值","对话框","对话框内容","对话框标题","类型","说明","默认值"],"detailed/file_manager.html":["\"1\",","\"11\",","\"12\",","\"bi.file_manager\",","\"根目录\"","\"第一级子目录1\"","\"第一级子目录2\"","[{","bi.createwidget({","file_manag","getselectedid","getselectedvalue()","id:","items:","pid:","sourc","text:","type:","value:","{","})","},","}]","文件管理器","方法","获取当前选中项的id属性","获取当前选中项的value值","说明"],"detailed/slider.html":["\"bi.slider\",","10","16,","50","50,","bi.createwidget({","bi.slid","getvalu","max","max:","min","min:","number","setvalu","slider","slider插件","sourc","type:","valu","});","—","参数","方法","方法名","最大值","最小值","类型","获得当前值","设置当前值","说明","默认值"]},"length":139},"tokenStore":{"root":{"0":{"1":{"docs":{"case/calendar.html":{"ref":"case/calendar.html","tf":0.027777777777777776},"detailed/year_combo.html":{"ref":"detailed/year_combo.html","tf":0.025},"detailed/date/date_pane_widget.html":{"ref":"detailed/date/date_pane_widget.html","tf":0.02702702702702703}},"'":{"docs":{"case/calendar.html":{"ref":"case/calendar.html","tf":0.013888888888888888},"detailed/year_combo.html":{"ref":"detailed/year_combo.html","tf":0.025},"detailed/date/date_pane_widget.html":{"ref":"detailed/date/date_pane_widget.html","tf":0.02702702702702703}},",":{"docs":{"case/calendar.html":{"ref":"case/calendar.html","tf":0.013888888888888888}}}}},"docs":{"core/layout/vertical.html":{"ref":"core/layout/vertical.html","tf":0.07692307692307693},"core/layout/horizontal.html":{"ref":"core/layout/horizontal.html","tf":0.06451612903225806},"core/layout/htape.html":{"ref":"core/layout/htape.html","tf":0.048},"core/layout/vtape.html":{"ref":"core/layout/vtape.html","tf":0.048},"core/layout/center_adapt.html":{"ref":"core/layout/center_adapt.html","tf":0.07058823529411765},"core/layout/vertical_adapt.html":{"ref":"core/layout/vertical_adapt.html","tf":0.06896551724137931},"core/layout/left_right_vertical_adapt.html":{"ref":"core/layout/left_right_vertical_adapt.html","tf":0.06593406593406594},"core/layout/flow.html":{"ref":"core/layout/flow.html","tf":0.046153846153846156},"core/layout/center.html":{"ref":"core/layout/center.html","tf":0.0759493670886076},"core/layout/horizontal_adapt.html":{"ref":"core/layout/horizontal_adapt.html","tf":0.06521739130434782},"core/layout/horizontal_auto.html":{"ref":"core/layout/horizontal_auto.html","tf":0.07407407407407407},"core/layout/horizontal_float.html":{"ref":"core/layout/horizontal_float.html","tf":0.08333333333333333},"core/layout/float_center.html":{"ref":"core/layout/float_center.html","tf":0.0759493670886076},"core/layout/table.html":{"ref":"core/layout/table.html","tf":0.024096385542168676},"core/layout/td.html":{"ref":"core/layout/td.html","tf":0.03571428571428571},"core/abstract/grid_view.html":{"ref":"core/abstract/grid_view.html","tf":0.02564102564102564},"core/abstract/collection_view.html":{"ref":"core/abstract/collection_view.html","tf":0.028368794326241134},"core/abstract/virtual_list.html":{"ref":"core/abstract/virtual_list.html","tf":0.0125},"core/combination/bi.combo.html":{"ref":"core/combination/bi.combo.html","tf":0.014423076923076924},"core/combination/bi.expander.html":{"ref":"core/combination/bi.expander.html","tf":0.005494505494505495},"core/combination/group_combo.html":{"ref":"core/combination/group_combo.html","tf":0.007874015748031496},"core/combination/searcher.html":{"ref":"core/combination/searcher.html","tf":0.027649769585253458},"core/layer/layer_popup.html":{"ref":"core/layer/layer_popup.html","tf":0.03529411764705882},"base/label.html":{"ref":"base/label.html","tf":0.040268456375838924},"base/button/button.html":{"ref":"base/button/button.html","tf":0.028409090909090908},"base/button/text_button.html":{"ref":"base/button/text_button.html","tf":0.018867924528301886},"base/editor/editor.html":{"ref":"base/editor/editor.html","tf":0.021621621621621623},"base/pager.html":{"ref":"base/pager.html","tf":0.006666666666666667},"case/editor/shelter_editor.html":{"ref":"case/editor/shelter_editor.html","tf":0.02072538860103627},"case/editor/sign_editor.html":{"ref":"case/editor/sign_editor.html","tf":0.02197802197802198},"case/editor/sign_initial_editor.html":{"ref":"case/editor/sign_initial_editor.html","tf":0.020618556701030927},"case/editor/state_editor.html":{"ref":"case/editor/state_editor.html","tf":0.022988505747126436},"case/layer/pane_list.html":{"ref":"case/layer/pane_list.html","tf":0.04081632653061224},"case/combo/icon_combo.html":{"ref":"case/combo/icon_combo.html","tf":0.023255813953488372},"case/tree/branch_relation.html":{"ref":"case/tree/branch_relation.html","tf":0.02040816326530612},"case/segment.html":{"ref":"case/segment.html","tf":0.04672897196261682},"detailed/bi.button/tooltip.html":{"ref":"detailed/bi.button/tooltip.html","tf":0.056818181818181816},"detailed/bi.button/items.html":{"ref":"detailed/bi.button/items.html","tf":0.05319148936170213},"detailed/bi.button/node.html":{"ref":"detailed/bi.button/node.html","tf":0.046296296296296294},"detailed/bi.button/segment.html":{"ref":"detailed/bi.button/segment.html","tf":0.04672897196261682},"detailed/text_input/bi.text_editor.html":{"ref":"detailed/text_input/bi.text_editor.html","tf":0.041237113402061855},"detailed/text_input/bi.search_editor.html":{"ref":"detailed/text_input/bi.search_editor.html","tf":0.04040404040404041},"detailed/text_input/bi.clear_editor.html":{"ref":"detailed/text_input/bi.clear_editor.html","tf":0.0392156862745098},"detailed/down_list_combo.html":{"ref":"detailed/down_list_combo.html","tf":0.006578947368421052}},"\"":{"docs":{},",":{"docs":{"core/layout/grid.html":{"ref":"core/layout/grid.html","tf":0.017857142857142856}}}},",":{"docs":{"core/layout/grid.html":{"ref":"core/layout/grid.html","tf":0.05357142857142857},"core/abstract/custom_tree.html":{"ref":"core/abstract/custom_tree.html","tf":0.007194244604316547}},"v":{"docs":{},"g":{"docs":{},"a":{"docs":{},"p":{"docs":{},":":{"docs":{"core/abstract/button_group.html":{"ref":"core/abstract/button_group.html","tf":0.007936507936507936},"core/abstract/virtual_group.html":{"ref":"core/abstract/virtual_group.html","tf":0.014492753623188406}}}}}}},"l":{"docs":{},"a":{"docs":{},"y":{"docs":{},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{},"s":{"docs":{},":":{"docs":{"core/abstract/custom_tree.html":{"ref":"core/abstract/custom_tree.html","tf":0.007194244604316547},"core/combination/group_combo.html":{"ref":"core/combination/group_combo.html","tf":0.007874015748031496}}}}}}}}}},"b":{"docs":{},"e":{"docs":{},"h":{"docs":{},"a":{"docs":{},"v":{"docs":{},"i":{"docs":{},"o":{"docs":{},"r":{"docs":{},"s":{"docs":{},":":{"docs":{"core/layer/layer_popup.html":{"ref":"core/layer/layer_popup.html","tf":0.0058823529411764705}}}}}}}}}}}}},"}":{"docs":{},"]":{"docs":{"core/abstract/button_group.html":{"ref":"core/abstract/button_group.html","tf":0.007936507936507936},"core/abstract/virtual_group.html":{"ref":"core/abstract/virtual_group.html","tf":0.014492753623188406}}}}},"1":{"0":{"0":{"docs":{"core/abstract/virtual_list.html":{"ref":"core/abstract/virtual_list.html","tf":0.0125},"core/layer/layer_popup.html":{"ref":"core/layer/layer_popup.html","tf":0.0058823529411764705},"base/button/image_button.html":{"ref":"base/button/image_button.html","tf":0.014925373134328358},"case/combo/icon_combo.html":{"ref":"case/combo/icon_combo.html","tf":0.007751937984496124}},",":{"docs":{"core/layout/htape.html":{"ref":"core/layout/htape.html","tf":0.008},"core/layout/vtape.html":{"ref":"core/layout/vtape.html","tf":0.008},"core/layout/left_right_vertical_adapt.html":{"ref":"core/layout/left_right_vertical_adapt.html","tf":0.02197802197802198},"core/abstract/grid_view.html":{"ref":"core/abstract/grid_view.html","tf":0.01282051282051282},"base/label.html":{"ref":"base/label.html","tf":0.006711409395973154},"base/button/image_button.html":{"ref":"base/button/image_button.html","tf":0.014925373134328358},"case/loader/lazy_loader.html":{"ref":"case/loader/lazy_loader.html","tf":0.01694915254237288},"case/loader/list_loader.html":{"ref":"case/loader/list_loader.html","tf":0.010752688172043012},"case/loader/sort_list.html":{"ref":"case/loader/sort_list.html","tf":0.010752688172043012},"case/table/tree_table.html":{"ref":"case/table/tree_table.html","tf":0.08163265306122448},"case/table/layer_tree_table.html":{"ref":"case/table/layer_tree_table.html","tf":0.08163265306122448},"case/clipboard.html":{"ref":"case/clipboard.html","tf":0.0625},"case/complex_canvas.html":{"ref":"case/complex_canvas.html","tf":0.041666666666666664}},"e":{"docs":{},"l":{"docs":{},":":{"docs":{"core/layout/htape.html":{"ref":"core/layout/htape.html","tf":0.008},"core/layout/vtape.html":{"ref":"core/layout/vtape.html","tf":0.008},"core/layout/table.html":{"ref":"core/layout/table.html","tf":0.012048192771084338}}}}}},";":{"docs":{"core/abstract/grid_view.html":{"ref":"core/abstract/grid_view.html","tf":0.00641025641025641}}},"]":{"docs":{},",":{"docs":{"case/table/tree_table.html":{"ref":"case/table/tree_table.html","tf":0.01020408163265306},"case/table/layer_tree_table.html":{"ref":"case/table/layer_tree_table.html","tf":0.01020408163265306}}}}},"docs":{"core/layout/table.html":{"ref":"core/layout/table.html","tf":0.012048192771084338},"core/abstract/collection_view.html":{"ref":"core/abstract/collection_view.html","tf":0.0070921985815602835},"core/abstract/virtual_list.html":{"ref":"core/abstract/virtual_list.html","tf":0.0125},"base/button/button.html":{"ref":"base/button/button.html","tf":0.005681818181818182},"base/button/text_button.html":{"ref":"base/button/text_button.html","tf":0.009433962264150943},"case/button/single_select_item.html":{"ref":"case/button/single_select_item.html","tf":0.016129032258064516},"case/button/single_select_radio_item.html":{"ref":"case/button/single_select_radio_item.html","tf":0.016129032258064516},"case/segment.html":{"ref":"case/segment.html","tf":0.009345794392523364},"detailed/bi.button/tooltip.html":{"ref":"detailed/bi.button/tooltip.html","tf":0.011363636363636364},"detailed/bi.button/items.html":{"ref":"detailed/bi.button/items.html","tf":0.010638297872340425},"detailed/bi.button/node.html":{"ref":"detailed/bi.button/node.html","tf":0.009259259259259259},"detailed/bi.button/segment.html":{"ref":"detailed/bi.button/segment.html","tf":0.009345794392523364},"detailed/slider.html":{"ref":"detailed/slider.html","tf":0.029411764705882353}},",":{"docs":{"core/layout/center_adapt.html":{"ref":"core/layout/center_adapt.html","tf":0.011764705882352941},"core/layout/vertical_adapt.html":{"ref":"core/layout/vertical_adapt.html","tf":0.011494252873563218},"core/layout/left_right_vertical_adapt.html":{"ref":"core/layout/left_right_vertical_adapt.html","tf":0.02197802197802198},"core/layout/horizontal_adapt.html":{"ref":"core/layout/horizontal_adapt.html","tf":0.010869565217391304},"core/layout/horizontal_auto.html":{"ref":"core/layout/horizontal_auto.html","tf":0.012345679012345678},"core/layout/horizontal_float.html":{"ref":"core/layout/horizontal_float.html","tf":0.013888888888888888},"case/pager/all_count_pager.html":{"ref":"case/pager/all_count_pager.html","tf":0.014705882352941176},"case/pager/direction_pager.html":{"ref":"case/pager/direction_pager.html","tf":0.03278688524590164},"case/complex_canvas.html":{"ref":"case/complex_canvas.html","tf":0.08333333333333333}}},")":{"docs":{"core/abstract/collection_view.html":{"ref":"core/abstract/collection_view.html","tf":0.0070921985815602835}}}},"1":{"0":{"docs":{},",":{"docs":{"core/layout/table.html":{"ref":"core/layout/table.html","tf":0.012048192771084338}}}},"1":{"1":{"docs":{},"\"":{"docs":{},",":{"docs":{"detailed/down_list_combo.html":{"ref":"detailed/down_list_combo.html","tf":0.006578947368421052}}}}},"docs":{}},"docs":{"core/combination/group_combo.html":{"ref":"core/combination/group_combo.html","tf":0.007874015748031496},"case/combo/text_value_downlist_combo.html":{"ref":"case/combo/text_value_downlist_combo.html","tf":0.013513513513513514},"detailed/down_list_combo.html":{"ref":"detailed/down_list_combo.html","tf":0.013157894736842105}},",":{"docs":{"core/abstract/custom_tree.html":{"ref":"core/abstract/custom_tree.html","tf":0.007194244604316547},"detailed/tree/bi.multi_tree_combo.html":{"ref":"detailed/tree/bi.multi_tree_combo.html","tf":0.010869565217391304},"detailed/tree/bi.switch_tree.html":{"ref":"detailed/tree/bi.switch_tree.html","tf":0.013157894736842105}}}},"2":{"docs":{"case/calendar.html":{"ref":"case/calendar.html","tf":0.027777777777777776},"detailed/year_combo.html":{"ref":"detailed/year_combo.html","tf":0.025},"detailed/down_list_combo.html":{"ref":"detailed/down_list_combo.html","tf":0.006578947368421052},"detailed/date/date_pane_widget.html":{"ref":"detailed/date/date_pane_widget.html","tf":0.02702702702702703}},",":{"docs":{"detailed/down_list_combo.html":{"ref":"detailed/down_list_combo.html","tf":0.006578947368421052}}}},"3":{"0":{"docs":{},"]":{"docs":{},",":{"docs":{"core/layout/table.html":{"ref":"core/layout/table.html","tf":0.012048192771084338}}}}},"docs":{}},"4":{"5":{"docs":{"case/color_chooser_popup.html":{"ref":"case/color_chooser_popup.html","tf":0.029411764705882353}}},"docs":{}},"6":{"docs":{},",":{"docs":{"base/editor/formula_editor.html":{"ref":"base/editor/formula_editor.html","tf":0.010101010101010102},"detailed/slider.html":{"ref":"detailed/slider.html","tf":0.029411764705882353}}}},"8":{"docs":{},",":{"docs":{"base/pager.html":{"ref":"base/pager.html","tf":0.006666666666666667}}}},"docs":{"core/combination/bi.expander.html":{"ref":"core/combination/bi.expander.html","tf":0.005494505494505495},"core/combination/navigation.html":{"ref":"core/combination/navigation.html","tf":0.014388489208633094},"base/editor/multifile_editor.html":{"ref":"base/editor/multifile_editor.html","tf":0.015384615384615385},"base/pager.html":{"ref":"base/pager.html","tf":0.006666666666666667},"case/combo/static_combo.html":{"ref":"case/combo/static_combo.html","tf":0.0125},"case/combo/text_value_combo.html":{"ref":"case/combo/text_value_combo.html","tf":0.013513513513513514},"case/combo/text_value_downlist_combo.html":{"ref":"case/combo/text_value_downlist_combo.html","tf":0.013513513513513514},"case/pager/all_count_pager.html":{"ref":"case/pager/all_count_pager.html","tf":0.04411764705882353},"case/pager/direction_pager.html":{"ref":"case/pager/direction_pager.html","tf":0.01639344262295082},"detailed/table/bi.page_table.html":{"ref":"detailed/table/bi.page_table.html","tf":0.009302325581395349},"detailed/text_input/finetuning_number_editor.html":{"ref":"detailed/text_input/finetuning_number_editor.html","tf":0.037037037037037035},"detailed/path/direction_path_chooser.html":{"ref":"detailed/path/direction_path_chooser.html","tf":0.04}},"\"":{"docs":{},",":{"docs":{"core/layout/center_adapt.html":{"ref":"core/layout/center_adapt.html","tf":0.011764705882352941},"core/layout/flow.html":{"ref":"core/layout/flow.html","tf":0.015384615384615385},"core/layout/grid.html":{"ref":"core/layout/grid.html","tf":0.017857142857142856}}}},",":{"docs":{},"这":{"docs":{},"里":{"docs":{},"虽":{"docs":{},"然":{"docs":{},"设":{"docs":{},"置":{"docs":{},"l":{"docs":{},"a":{"docs":{},"b":{"docs":{},"e":{"docs":{},"l":{"docs":{},"的":{"docs":{},"高":{"docs":{},"度":{"3":{"0":{"docs":{},",":{"docs":{},"但":{"docs":{},"是":{"docs":{},"最":{"docs":{},"终":{"docs":{},"影":{"docs":{},"响":{"docs":{},"高":{"docs":{},"度":{"docs":{},"的":{"docs":{},"是":{"docs":{},"c":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"布":{"docs":{},"局":{"docs":{},"\"":{"docs":{},",":{"docs":{"core/layout/center.html":{"ref":"core/layout/center.html","tf":0.012658227848101266}}}}}}}}}}}}}}}}}}}}}}}},"docs":{}},"docs":{}}}}}}}}}}}}}}}},",":{"docs":{"core/layout/grid.html":{"ref":"core/layout/grid.html","tf":0.05357142857142857},"core/abstract/custom_tree.html":{"ref":"core/abstract/custom_tree.html","tf":0.02877697841726619},"core/combination/tab.html":{"ref":"core/combination/tab.html","tf":0.00684931506849315},"case/tree/display_tree.html":{"ref":"case/tree/display_tree.html","tf":0.030303030303030304},"case/pager/all_count_pager.html":{"ref":"case/pager/all_count_pager.html","tf":0.029411764705882353},"case/pager/direction_pager.html":{"ref":"case/pager/direction_pager.html","tf":0.03278688524590164},"case/segment.html":{"ref":"case/segment.html","tf":0.009345794392523364},"detailed/bi.button/segment.html":{"ref":"detailed/bi.button/segment.html","tf":0.009345794392523364},"detailed/tree/bi.multi_tree_combo.html":{"ref":"detailed/tree/bi.multi_tree_combo.html","tf":0.043478260869565216},"detailed/tree/bi.switch_tree.html":{"ref":"detailed/tree/bi.switch_tree.html","tf":0.05263157894736842}}},")":{"docs":{"core/abstract/virtual_list.html":{"ref":"core/abstract/virtual_list.html","tf":0.0125}}},":":{"docs":{"core/combination/tab.html":{"ref":"core/combination/tab.html","tf":0.00684931506849315}}},"]":{"docs":{},",":{"docs":{"base/table/table_view.html":{"ref":"base/table/table_view.html","tf":0.012578616352201259},"base/table/grid_table.html":{"ref":"base/table/grid_table.html","tf":0.008771929824561403},"case/table/adaptive_table.html":{"ref":"case/table/adaptive_table.html","tf":0.006060606060606061},"detailed/table/bi.responsive_table.html":{"ref":"detailed/table/bi.responsive_table.html","tf":0.005263157894736842}}}},";":{"docs":{},"}":{"docs":{"base/pager.html":{"ref":"base/pager.html","tf":0.013333333333333334}}}},"表":{"docs":{},"示":{"docs":{},"自":{"docs":{},"动":{"docs":{"detailed/text_input/finetuning_number_editor.html":{"ref":"detailed/text_input/finetuning_number_editor.html","tf":0.037037037037037035}}}}}},".":{"1":{"docs":{},"\"":{"docs":{},",":{"docs":{"detailed/down_list_combo.html":{"ref":"detailed/down_list_combo.html","tf":0.006578947368421052}}}}},"2":{"2":{"2":{"2":{"2":{"2":{"2":{"2":{"2":{"2":{"2":{"2":{"2":{"2":{"2":{"2":{"2":{"2":{"2":{"2":{"2":{"2":{"2":{"2":{"2":{"2":{"2":{"2":{"2":{"2":{"2":{"2":{"2":{"2":{"2":{"2":{"docs":{},"\"":{"docs":{},",":{"docs":{"detailed/down_list_combo.html":{"ref":"detailed/down_list_combo.html","tf":0.006578947368421052}}}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}}},"2":{"0":{"0":{"docs":{"core/layout/horizontal.html":{"ref":"core/layout/horizontal.html","tf":0.021505376344086023},"case/combo/bubble_combo.html":{"ref":"case/combo/bubble_combo.html","tf":0.005780346820809248},"detailed/tree/bi.multi_tree_combo.html":{"ref":"detailed/tree/bi.multi_tree_combo.html","tf":0.010869565217391304}},",":{"docs":{"core/layout/htape.html":{"ref":"core/layout/htape.html","tf":0.008},"core/layout/vtape.html":{"ref":"core/layout/vtape.html","tf":0.008},"core/layout/horizontal_float.html":{"ref":"core/layout/horizontal_float.html","tf":0.013888888888888888},"core/layout/border.html":{"ref":"core/layout/border.html","tf":0.012987012987012988},"core/layout/table.html":{"ref":"core/layout/table.html","tf":0.012048192771084338},"core/layout/td.html":{"ref":"core/layout/td.html","tf":0.017857142857142856},"core/layer/layer_float_box.html":{"ref":"core/layer/layer_float_box.html","tf":0.012345679012345678},"base/editor/editor.html":{"ref":"base/editor/editor.html","tf":0.005405405405405406},"base/table/table_view.html":{"ref":"base/table/table_view.html","tf":0.006289308176100629},"case/complex_canvas.html":{"ref":"case/complex_canvas.html","tf":0.020833333333333332},"detailed/text_input/bi.text_editor.html":{"ref":"detailed/text_input/bi.text_editor.html","tf":0.010309278350515464}},"e":{"docs":{},"l":{"docs":{},":":{"docs":{"core/layout/htape.html":{"ref":"core/layout/htape.html","tf":0.008},"core/layout/vtape.html":{"ref":"core/layout/vtape.html","tf":0.008},"core/layout/table.html":{"ref":"core/layout/table.html","tf":0.012048192771084338}}}}}},"]":{"docs":{"core/layout/td.html":{"ref":"core/layout/td.html","tf":0.017857142857142856}},",":{"docs":{"core/layout/table.html":{"ref":"core/layout/table.html","tf":0.012048192771084338}}}}},"1":{"0":{"docs":{},",":{"docs":{"core/combination/group_combo.html":{"ref":"core/combination/group_combo.html","tf":0.007874015748031496}}}},"5":{"docs":{"case/calendar.html":{"ref":"case/calendar.html","tf":0.013888888888888888}},",":{"docs":{"case/calendar.html":{"ref":"case/calendar.html","tf":0.013888888888888888}}}},"docs":{}},"docs":{"core/layout/flow.html":{"ref":"core/layout/flow.html","tf":0.046153846153846156},"core/layout/center.html":{"ref":"core/layout/center.html","tf":0.012658227848101266},"core/layout/float_center.html":{"ref":"core/layout/float_center.html","tf":0.012658227848101266},"core/layout/border.html":{"ref":"core/layout/border.html","tf":0.05194805194805195},"base/button/icon_button.html":{"ref":"base/button/icon_button.html","tf":0.02564102564102564},"case/segment.html":{"ref":"case/segment.html","tf":0.009345794392523364},"detailed/bi.button/tooltip.html":{"ref":"detailed/bi.button/tooltip.html","tf":0.011363636363636364},"detailed/bi.button/segment.html":{"ref":"detailed/bi.button/segment.html","tf":0.009345794392523364}},",":{"docs":{"core/layout/flow.html":{"ref":"core/layout/flow.html","tf":0.015384615384615385},"core/layout/center.html":{"ref":"core/layout/center.html","tf":0.012658227848101266},"core/layout/float_center.html":{"ref":"core/layout/float_center.html","tf":0.012658227848101266},"core/layout/border.html":{"ref":"core/layout/border.html","tf":0.05194805194805195},"core/layout/table.html":{"ref":"core/layout/table.html","tf":0.012048192771084338},"core/layout/td.html":{"ref":"core/layout/td.html","tf":0.017857142857142856},"base/button/icon_button.html":{"ref":"base/button/icon_button.html","tf":0.02564102564102564},"base/canvas.html":{"ref":"base/canvas.html","tf":0.016666666666666666},"case/complex_canvas.html":{"ref":"case/complex_canvas.html","tf":0.020833333333333332}}}},"1":{"docs":{},",":{"docs":{"detailed/down_list_combo.html":{"ref":"detailed/down_list_combo.html","tf":0.006578947368421052}}}},"2":{"docs":{},",":{"docs":{"detailed/down_list_combo.html":{"ref":"detailed/down_list_combo.html","tf":0.006578947368421052}}}},"4":{"docs":{"case/combo/icon_combo.html":{"ref":"case/combo/icon_combo.html","tf":0.015503875968992248},"case/combo/static_combo.html":{"ref":"case/combo/static_combo.html","tf":0.0125}}},"5":{"docs":{"core/abstract/custom_tree.html":{"ref":"core/abstract/custom_tree.html","tf":0.02158273381294964},"core/combination/bi.combo.html":{"ref":"core/combination/bi.combo.html","tf":0.004807692307692308},"core/combination/loader.html":{"ref":"core/combination/loader.html","tf":0.006289308176100629},"core/layer/layer_popup.html":{"ref":"core/layer/layer_popup.html","tf":0.0058823529411764705},"base/table/table_view.html":{"ref":"base/table/table_view.html","tf":0.018867924528301886},"base/table/grid_table.html":{"ref":"base/table/grid_table.html","tf":0.017543859649122806},"base/table/collection_table.html":{"ref":"base/table/collection_table.html","tf":0.013071895424836602},"base/table/resizable_table.html":{"ref":"base/table/resizable_table.html","tf":0.0125},"case/button/single_select_item.html":{"ref":"case/button/single_select_item.html","tf":0.016129032258064516},"case/button/single_select_radio_item.html":{"ref":"case/button/single_select_radio_item.html","tf":0.016129032258064516},"case/combo/bubble_combo.html":{"ref":"case/combo/bubble_combo.html","tf":0.005780346820809248},"case/table/adaptive_table.html":{"ref":"case/table/adaptive_table.html","tf":0.012121212121212121},"case/table/tree_table.html":{"ref":"case/table/tree_table.html","tf":0.01020408163265306},"case/table/layer_tree_table.html":{"ref":"case/table/layer_tree_table.html","tf":0.01020408163265306},"case/calendar.html":{"ref":"case/calendar.html","tf":0.013888888888888888},"detailed/table/bi.responsive_table.html":{"ref":"detailed/table/bi.responsive_table.html","tf":0.015789473684210527},"detailed/table/bi.page_table.html":{"ref":"detailed/table/bi.page_table.html","tf":0.009302325581395349}},",":{"docs":{"core/combination/bi.expander.html":{"ref":"core/combination/bi.expander.html","tf":0.016483516483516484},"core/combination/group_combo.html":{"ref":"core/combination/group_combo.html","tf":0.015748031496062992},"core/combination/switcher.html":{"ref":"core/combination/switcher.html","tf":0.00625},"case/combo/bubble_combo.html":{"ref":"case/combo/bubble_combo.html","tf":0.005780346820809248},"case/calendar.html":{"ref":"case/calendar.html","tf":0.013888888888888888},"detailed/down_list_combo.html":{"ref":"detailed/down_list_combo.html","tf":0.006578947368421052}}}},"6":{"docs":{},")":{"docs":{},"'":{"docs":{},",":{"docs":{"base/editor/formula_editor.html":{"ref":"base/editor/formula_editor.html","tf":0.010101010101010102}}}}}},"docs":{"core/combination/bi.expander.html":{"ref":"core/combination/bi.expander.html","tf":0.005494505494505495},"base/editor/editor.html":{"ref":"base/editor/editor.html","tf":0.005405405405405406},"base/editor/code_editor.html":{"ref":"base/editor/code_editor.html","tf":0.012658227848101266},"base/editor/formula_editor.html":{"ref":"base/editor/formula_editor.html","tf":0.010101010101010102},"case/editor/shelter_editor.html":{"ref":"case/editor/shelter_editor.html","tf":0.0051813471502590676},"case/editor/sign_editor.html":{"ref":"case/editor/sign_editor.html","tf":0.005494505494505495},"case/editor/sign_initial_editor.html":{"ref":"case/editor/sign_initial_editor.html","tf":0.005154639175257732},"case/editor/state_editor.html":{"ref":"case/editor/state_editor.html","tf":0.005747126436781609},"case/combo/static_combo.html":{"ref":"case/combo/static_combo.html","tf":0.0125},"case/combo/text_value_combo.html":{"ref":"case/combo/text_value_combo.html","tf":0.013513513513513514},"case/combo/text_value_downlist_combo.html":{"ref":"case/combo/text_value_downlist_combo.html","tf":0.013513513513513514},"case/complex_canvas.html":{"ref":"case/complex_canvas.html","tf":0.020833333333333332},"case/segment.html":{"ref":"case/segment.html","tf":0.009345794392523364},"detailed/bi.button/segment.html":{"ref":"detailed/bi.button/segment.html","tf":0.009345794392523364},"detailed/text_input/bi.text_editor.html":{"ref":"detailed/text_input/bi.text_editor.html","tf":0.010309278350515464},"detailed/text_input/bi.search_editor.html":{"ref":"detailed/text_input/bi.search_editor.html","tf":0.010101010101010102},"detailed/text_input/bi.clear_editor.html":{"ref":"detailed/text_input/bi.clear_editor.html","tf":0.00980392156862745}},"\"":{"docs":{},",":{"docs":{"core/layout/center_adapt.html":{"ref":"core/layout/center_adapt.html","tf":0.011764705882352941},"core/layout/flow.html":{"ref":"core/layout/flow.html","tf":0.015384615384615385},"detailed/down_list_combo.html":{"ref":"detailed/down_list_combo.html","tf":0.006578947368421052}}}},",":{"docs":{},"为":{"docs":{},"了":{"docs":{},"演":{"docs":{},"示":{"docs":{},"l":{"docs":{},"a":{"docs":{},"b":{"docs":{},"e":{"docs":{},"l":{"docs":{},"是":{"docs":{},"占":{"docs":{},"满":{"docs":{},"整":{"docs":{},"个":{"docs":{},"的":{"docs":{},",":{"docs":{},"用":{"docs":{},"了":{"docs":{},"一":{"docs":{},"个":{"docs":{},"w":{"docs":{},"h":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"s":{"docs":{},"p":{"docs":{},"a":{"docs":{},"c":{"docs":{},"e":{"docs":{},":":{"docs":{},"n":{"docs":{},"o":{"docs":{},"r":{"docs":{},"m":{"docs":{},"a":{"docs":{},"l":{"docs":{},"\"":{"docs":{},",":{"docs":{"core/layout/center.html":{"ref":"core/layout/center.html","tf":0.012658227848101266}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},",":{"docs":{"core/layout/grid.html":{"ref":"core/layout/grid.html","tf":0.017857142857142856},"core/abstract/custom_tree.html":{"ref":"core/abstract/custom_tree.html","tf":0.007194244604316547},"core/combination/bi.combo.html":{"ref":"core/combination/bi.combo.html","tf":0.004807692307692308},"core/combination/tab.html":{"ref":"core/combination/tab.html","tf":0.00684931506849315},"detailed/tree/bi.multi_tree_combo.html":{"ref":"detailed/tree/bi.multi_tree_combo.html","tf":0.010869565217391304},"detailed/tree/bi.switch_tree.html":{"ref":"detailed/tree/bi.switch_tree.html","tf":0.013157894736842105}}},":":{"docs":{"core/combination/tab.html":{"ref":"core/combination/tab.html","tf":0.00684931506849315}}},".":{"1":{"docs":{},"\"":{"docs":{},",":{"docs":{"detailed/down_list_combo.html":{"ref":"detailed/down_list_combo.html","tf":0.006578947368421052}}}}},"2":{"docs":{},"\"":{"docs":{},",":{"docs":{"detailed/down_list_combo.html":{"ref":"detailed/down_list_combo.html","tf":0.006578947368421052}}}}},"docs":{}}},"3":{"0":{"0":{"docs":{"base/editor/multifile_editor.html":{"ref":"base/editor/multifile_editor.html","tf":0.015384615384615385},"base/editor/textarea_editor.html":{"ref":"base/editor/textarea_editor.html","tf":0.021739130434782608},"case/editor/sign_editor.html":{"ref":"case/editor/sign_editor.html","tf":0.005494505494505495},"case/editor/sign_initial_editor.html":{"ref":"case/editor/sign_initial_editor.html","tf":0.005154639175257732},"case/editor/state_editor.html":{"ref":"case/editor/state_editor.html","tf":0.005747126436781609},"case/layer/multi_popup_layer.html":{"ref":"case/layer/multi_popup_layer.html","tf":0.04},"case/layer/layer_panel.html":{"ref":"case/layer/layer_panel.html","tf":0.010752688172043012},"case/combo/icon_combo.html":{"ref":"case/combo/icon_combo.html","tf":0.007751937984496124},"detailed/tree/bi.multi_tree_combo.html":{"ref":"detailed/tree/bi.multi_tree_combo.html","tf":0.010869565217391304},"detailed/text_input/finetuning_number_editor.html":{"ref":"detailed/text_input/finetuning_number_editor.html","tf":0.037037037037037035},"detailed/year_combo.html":{"ref":"detailed/year_combo.html","tf":0.025},"detailed/month_combo.html":{"ref":"detailed/month_combo.html","tf":0.03571428571428571},"detailed/quarter_combo.html":{"ref":"detailed/quarter_combo.html","tf":0.03571428571428571},"detailed/date/date_combo.html":{"ref":"detailed/date/date_combo.html","tf":0.058823529411764705},"detailed/date/date_pane_widget.html":{"ref":"detailed/date/date_pane_widget.html","tf":0.02702702702702703},"detailed/date/year_month_combo.html":{"ref":"detailed/date/year_month_combo.html","tf":0.029411764705882353},"detailed/date/year_quarter_combo.html":{"ref":"detailed/date/year_quarter_combo.html","tf":0.03225806451612903}},",":{"docs":{"core/layout/vertical_adapt.html":{"ref":"core/layout/vertical_adapt.html","tf":0.022988505747126436},"core/layout/horizontal_adapt.html":{"ref":"core/layout/horizontal_adapt.html","tf":0.021739130434782608},"core/layout/horizontal_auto.html":{"ref":"core/layout/horizontal_auto.html","tf":0.024691358024691357},"core/layout/float_center.html":{"ref":"core/layout/float_center.html","tf":0.012658227848101266},"core/layout/border.html":{"ref":"core/layout/border.html","tf":0.012987012987012988},"core/abstract/virtual_group.html":{"ref":"core/abstract/virtual_group.html","tf":0.014492753623188406},"core/abstract/grid_view.html":{"ref":"core/abstract/grid_view.html","tf":0.00641025641025641},"core/abstract/collection_view.html":{"ref":"core/abstract/collection_view.html","tf":0.0070921985815602835},"base/table/table_view.html":{"ref":"base/table/table_view.html","tf":0.006289308176100629},"case/editor/shelter_editor.html":{"ref":"case/editor/shelter_editor.html","tf":0.0051813471502590676},"case/combo/text_value_combo.html":{"ref":"case/combo/text_value_combo.html","tf":0.013513513513513514},"detailed/text_input/bi.search_editor.html":{"ref":"detailed/text_input/bi.search_editor.html","tf":0.010101010101010102},"detailed/text_input/bi.clear_editor.html":{"ref":"detailed/text_input/bi.clear_editor.html","tf":0.00980392156862745},"detailed/down_list_combo.html":{"ref":"detailed/down_list_combo.html","tf":0.006578947368421052},"detailed/combo/single_tree_combo.html":{"ref":"detailed/combo/single_tree_combo.html","tf":0.01694915254237288},"detailed/combo/multilayer_single_tree_combo.html":{"ref":"detailed/combo/multilayer_single_tree_combo.html","tf":0.018867924528301886},"detailed/combo/select_tree_combo.html":{"ref":"detailed/combo/select_tree_combo.html","tf":0.02040816326530612},"detailed/combo/multilayer_select_tree_combo.html":{"ref":"detailed/combo/multilayer_select_tree_combo.html","tf":0.02040816326530612}}}},"docs":{"core/layout/vertical.html":{"ref":"core/layout/vertical.html","tf":0.02564102564102564},"core/layout/center_adapt.html":{"ref":"core/layout/center_adapt.html","tf":0.023529411764705882},"core/layout/vertical_adapt.html":{"ref":"core/layout/vertical_adapt.html","tf":0.022988505747126436},"core/layout/left_right_vertical_adapt.html":{"ref":"core/layout/left_right_vertical_adapt.html","tf":0.02197802197802198},"core/layout/horizontal_adapt.html":{"ref":"core/layout/horizontal_adapt.html","tf":0.021739130434782608},"core/layout/horizontal_auto.html":{"ref":"core/layout/horizontal_auto.html","tf":0.024691358024691357},"core/layout/table.html":{"ref":"core/layout/table.html","tf":0.012048192771084338},"core/abstract/custom_tree.html":{"ref":"core/abstract/custom_tree.html","tf":0.007194244604316547},"base/toast.html":{"ref":"base/toast.html","tf":0.020833333333333332},"base/button/button.html":{"ref":"base/button/button.html","tf":0.005681818181818182},"base/button/text_button.html":{"ref":"base/button/text_button.html","tf":0.009433962264150943},"base/editor/editor.html":{"ref":"base/editor/editor.html","tf":0.005405405405405406},"case/button/multi_select_item.html":{"ref":"case/button/multi_select_item.html","tf":0.017543859649122806},"case/editor/shelter_editor.html":{"ref":"case/editor/shelter_editor.html","tf":0.0051813471502590676},"case/editor/sign_editor.html":{"ref":"case/editor/sign_editor.html","tf":0.005494505494505495},"case/editor/sign_initial_editor.html":{"ref":"case/editor/sign_initial_editor.html","tf":0.005154639175257732},"case/editor/state_editor.html":{"ref":"case/editor/state_editor.html","tf":0.005747126436781609},"case/trigger/editor_trigger.html":{"ref":"case/trigger/editor_trigger.html","tf":0.02},"case/combo/text_value_combo.html":{"ref":"case/combo/text_value_combo.html","tf":0.013513513513513514},"case/combo/text_value_downlist_combo.html":{"ref":"case/combo/text_value_downlist_combo.html","tf":0.013513513513513514},"case/pager/all_count_pager.html":{"ref":"case/pager/all_count_pager.html","tf":0.014705882352941176},"case/pager/direction_pager.html":{"ref":"case/pager/direction_pager.html","tf":0.00819672131147541},"case/color_chooser.html":{"ref":"case/color_chooser.html","tf":0.038461538461538464},"detailed/tree/bi.multi_tree_combo.html":{"ref":"detailed/tree/bi.multi_tree_combo.html","tf":0.010869565217391304},"detailed/table/bi.preview_table.html":{"ref":"detailed/table/bi.preview_table.html","tf":0.006756756756756757},"detailed/text_input/bi.text_editor.html":{"ref":"detailed/text_input/bi.text_editor.html","tf":0.010309278350515464},"detailed/text_input/bi.search_editor.html":{"ref":"detailed/text_input/bi.search_editor.html","tf":0.010101010101010102},"detailed/text_input/bi.clear_editor.html":{"ref":"detailed/text_input/bi.clear_editor.html","tf":0.00980392156862745},"detailed/combo/single_tree_combo.html":{"ref":"detailed/combo/single_tree_combo.html","tf":0.01694915254237288},"detailed/combo/multilayer_single_tree_combo.html":{"ref":"detailed/combo/multilayer_single_tree_combo.html","tf":0.018867924528301886},"detailed/combo/select_tree_combo.html":{"ref":"detailed/combo/select_tree_combo.html","tf":0.02040816326530612},"detailed/combo/multilayer_select_tree_combo.html":{"ref":"detailed/combo/multilayer_select_tree_combo.html","tf":0.02040816326530612}},",":{"docs":{"core/layout/horizontal.html":{"ref":"core/layout/horizontal.html","tf":0.021505376344086023},"core/layout/flow.html":{"ref":"core/layout/flow.html","tf":0.03076923076923077},"core/layout/border.html":{"ref":"core/layout/border.html","tf":0.012987012987012988},"core/layout/table.html":{"ref":"core/layout/table.html","tf":0.012048192771084338},"core/abstract/grid_view.html":{"ref":"core/abstract/grid_view.html","tf":0.00641025641025641},"core/abstract/virtual_list.html":{"ref":"core/abstract/virtual_list.html","tf":0.0125},"core/combination/navigation.html":{"ref":"core/combination/navigation.html","tf":0.007194244604316547},"core/combination/tab.html":{"ref":"core/combination/tab.html","tf":0.00684931506849315},"base/label.html":{"ref":"base/label.html","tf":0.006711409395973154},"base/bubble.html":{"ref":"base/bubble.html","tf":0.023255813953488372},"base/toast.html":{"ref":"base/toast.html","tf":0.020833333333333332},"base/message.html":{"ref":"base/message.html","tf":0.02127659574468085},"case/button/multi_select_item.html":{"ref":"case/button/multi_select_item.html","tf":0.017543859649122806},"case/button/single_select_item.html":{"ref":"case/button/single_select_item.html","tf":0.016129032258064516},"case/button/single_select_radio_item.html":{"ref":"case/button/single_select_radio_item.html","tf":0.016129032258064516},"case/pager/all_count_pager.html":{"ref":"case/pager/all_count_pager.html","tf":0.014705882352941176},"case/pager/direction_pager.html":{"ref":"case/pager/direction_pager.html","tf":0.00819672131147541},"case/color_chooser.html":{"ref":"case/color_chooser.html","tf":0.038461538461538464},"case/segment.html":{"ref":"case/segment.html","tf":0.009345794392523364},"detailed/bi.button/tooltip.html":{"ref":"detailed/bi.button/tooltip.html","tf":0.011363636363636364},"detailed/bi.button/items.html":{"ref":"detailed/bi.button/items.html","tf":0.02127659574468085},"detailed/bi.button/node.html":{"ref":"detailed/bi.button/node.html","tf":0.027777777777777776},"detailed/bi.button/segment.html":{"ref":"detailed/bi.button/segment.html","tf":0.009345794392523364},"detailed/text_input/bi.text_editor.html":{"ref":"detailed/text_input/bi.text_editor.html","tf":0.010309278350515464}}},";":{"docs":{"core/abstract/grid_view.html":{"ref":"core/abstract/grid_view.html","tf":0.00641025641025641}}}},"1":{"docs":{},"'":{"docs":{"case/calendar.html":{"ref":"case/calendar.html","tf":0.013888888888888888},"detailed/year_combo.html":{"ref":"detailed/year_combo.html","tf":0.025},"detailed/date/date_pane_widget.html":{"ref":"detailed/date/date_pane_widget.html","tf":0.02702702702702703}},",":{"docs":{"case/calendar.html":{"ref":"case/calendar.html","tf":0.013888888888888888}}}}},"5":{"docs":{"base/bubble.html":{"ref":"base/bubble.html","tf":0.023255813953488372}}},"7":{"docs":{"detailed/table/bi.excel_table.html":{"ref":"detailed/table/bi.excel_table.html","tf":0.016574585635359115}}},"docs":{"case/combo/static_combo.html":{"ref":"case/combo/static_combo.html","tf":0.0125},"case/combo/text_value_combo.html":{"ref":"case/combo/text_value_combo.html","tf":0.013513513513513514},"case/combo/text_value_downlist_combo.html":{"ref":"case/combo/text_value_downlist_combo.html","tf":0.013513513513513514},"case/segment.html":{"ref":"case/segment.html","tf":0.009345794392523364},"detailed/bi.button/segment.html":{"ref":"detailed/bi.button/segment.html","tf":0.009345794392523364}}},"4":{"0":{"0":{"docs":{"base/editor/code_editor.html":{"ref":"base/editor/code_editor.html","tf":0.012658227848101266}},",":{"docs":{"core/abstract/grid_view.html":{"ref":"core/abstract/grid_view.html","tf":0.00641025641025641},"core/abstract/collection_view.html":{"ref":"core/abstract/collection_view.html","tf":0.0070921985815602835},"base/editor/multifile_editor.html":{"ref":"base/editor/multifile_editor.html","tf":0.015384615384615385},"base/editor/textarea_editor.html":{"ref":"base/editor/textarea_editor.html","tf":0.021739130434782608},"base/table/table_view.html":{"ref":"base/table/table_view.html","tf":0.006289308176100629},"case/table/tree_table.html":{"ref":"case/table/tree_table.html","tf":0.00510204081632653},"case/table/layer_tree_table.html":{"ref":"case/table/layer_tree_table.html","tf":0.00510204081632653}}}},"docs":{}},"docs":{"base/editor/editor.html":{"ref":"base/editor/editor.html","tf":0.005405405405405406},"case/editor/shelter_editor.html":{"ref":"case/editor/shelter_editor.html","tf":0.0051813471502590676},"case/editor/sign_editor.html":{"ref":"case/editor/sign_editor.html","tf":0.005494505494505495},"case/editor/sign_initial_editor.html":{"ref":"case/editor/sign_initial_editor.html","tf":0.005154639175257732},"case/editor/state_editor.html":{"ref":"case/editor/state_editor.html","tf":0.005747126436781609},"detailed/text_input/bi.text_editor.html":{"ref":"detailed/text_input/bi.text_editor.html","tf":0.010309278350515464},"detailed/text_input/bi.search_editor.html":{"ref":"detailed/text_input/bi.search_editor.html","tf":0.010101010101010102},"detailed/text_input/bi.clear_editor.html":{"ref":"detailed/text_input/bi.clear_editor.html","tf":0.00980392156862745}}},"5":{"0":{"0":{"docs":{"core/layer/layer_float_box.html":{"ref":"core/layer/layer_float_box.html","tf":0.012345679012345678},"detailed/numeric_interval.html":{"ref":"detailed/numeric_interval.html","tf":0.017241379310344827}},",":{"docs":{"core/abstract/virtual_group.html":{"ref":"core/abstract/virtual_group.html","tf":0.014492753623188406},"base/table/grid_table.html":{"ref":"base/table/grid_table.html","tf":0.008771929824561403},"base/svg.html":{"ref":"base/svg.html","tf":0.011235955056179775},"base/canvas.html":{"ref":"base/canvas.html","tf":0.016666666666666666},"case/table/adaptive_table.html":{"ref":"case/table/adaptive_table.html","tf":0.006060606060606061},"case/complex_canvas.html":{"ref":"case/complex_canvas.html","tf":0.020833333333333332},"detailed/multi_select_combo.html":{"ref":"detailed/multi_select_combo.html","tf":0.04}}},"]":{"docs":{},",":{"docs":{"base/table/table_view.html":{"ref":"base/table/table_view.html","tf":0.006289308176100629}}}}},"docs":{"core/abstract/collection_view.html":{"ref":"core/abstract/collection_view.html","tf":0.0070921985815602835},"core/combination/tab.html":{"ref":"core/combination/tab.html","tf":0.0136986301369863},"case/tree/branch_relation.html":{"ref":"case/tree/branch_relation.html","tf":0.02040816326530612},"detailed/slider.html":{"ref":"detailed/slider.html","tf":0.029411764705882353}},",":{"docs":{"core/layout/border.html":{"ref":"core/layout/border.html","tf":0.012987012987012988},"core/layout/table.html":{"ref":"core/layout/table.html","tf":0.012048192771084338},"core/abstract/button_group.html":{"ref":"core/abstract/button_group.html","tf":0.007936507936507936},"core/abstract/collection_view.html":{"ref":"core/abstract/collection_view.html","tf":0.02127659574468085},"base/pager.html":{"ref":"base/pager.html","tf":0.006666666666666667},"base/canvas.html":{"ref":"base/canvas.html","tf":0.016666666666666666},"case/segment.html":{"ref":"case/segment.html","tf":0.009345794392523364},"detailed/bi.button/segment.html":{"ref":"detailed/bi.button/segment.html","tf":0.009345794392523364},"detailed/slider.html":{"ref":"detailed/slider.html","tf":0.029411764705882353}}},"]":{"docs":{},",":{"docs":{"detailed/table/bi.preview_table.html":{"ref":"detailed/table/bi.preview_table.html","tf":0.006756756756756757}}}}},"docs":{},",":{"docs":{"base/pager.html":{"ref":"base/pager.html","tf":0.006666666666666667}}}},"6":{"0":{"0":{"docs":{"core/layer/layer_float_box.html":{"ref":"core/layer/layer_float_box.html","tf":0.012345679012345678},"base/svg.html":{"ref":"base/svg.html","tf":0.011235955056179775},"base/canvas.html":{"ref":"base/canvas.html","tf":0.016666666666666666},"case/complex_canvas.html":{"ref":"case/complex_canvas.html","tf":0.020833333333333332}},",":{"docs":{"base/editor/code_editor.html":{"ref":"base/editor/code_editor.html","tf":0.012658227848101266},"base/table/grid_table.html":{"ref":"base/table/grid_table.html","tf":0.008771929824561403},"case/table/adaptive_table.html":{"ref":"case/table/adaptive_table.html","tf":0.006060606060606061},"case/table/tree_table.html":{"ref":"case/table/tree_table.html","tf":0.00510204081632653},"case/table/layer_tree_table.html":{"ref":"case/table/layer_tree_table.html","tf":0.00510204081632653}}}},"docs":{}},"docs":{},",":{"docs":{"base/pager.html":{"ref":"base/pager.html","tf":0.006666666666666667}}}},"7":{"0":{"docs":{},",":{"docs":{"core/layout/table.html":{"ref":"core/layout/table.html","tf":0.012048192771084338}}}},"docs":{"case/calendar.html":{"ref":"case/calendar.html","tf":0.013888888888888888}},",":{"docs":{"case/calendar.html":{"ref":"case/calendar.html","tf":0.013888888888888888}}}},"8":{"0":{"docs":{},",":{"docs":{"core/layer/layer_float_box.html":{"ref":"core/layer/layer_float_box.html","tf":0.012345679012345678}}}},"docs":{},")":{"docs":{},",":{"docs":{"core/combination/navigation.html":{"ref":"core/combination/navigation.html","tf":0.007194244604316547}}}}},"9":{"0":{"docs":{"base/button/button.html":{"ref":"base/button/button.html","tf":0.005681818181818182}},",":{"docs":{"core/layout/table.html":{"ref":"core/layout/table.html","tf":0.012048192771084338}}}},"docs":{}},"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"p":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"s":{"docs":{},":":{"docs":{"./":{"ref":"./","tf":0.15384615384615385}}}}}}}}}}},"e":{"docs":{},"_":{"docs":{},"e":{"docs":{},"d":{"docs":{},"i":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{"base/editor/code_editor.html":{"ref":"base/editor/code_editor.html","tf":10}}}}}}}}}}},"l":{"docs":{},"u":{"docs":{},"m":{"docs":{},"n":{"docs":{"core/layout/grid.html":{"ref":"core/layout/grid.html","tf":0.008928571428571428}},"s":{"docs":{"core/layout/horizontal.html":{"ref":"core/layout/horizontal.html","tf":0.010752688172043012},"core/layout/center_adapt.html":{"ref":"core/layout/center_adapt.html","tf":0.011764705882352941},"core/layout/vertical_adapt.html":{"ref":"core/layout/vertical_adapt.html","tf":0.011494252873563218},"core/layout/horizontal_adapt.html":{"ref":"core/layout/horizontal_adapt.html","tf":0.010869565217391304},"core/layout/table.html":{"ref":"core/layout/table.html","tf":0.012048192771084338},"core/layout/td.html":{"ref":"core/layout/td.html","tf":0.017857142857142856},"base/table/table_view.html":{"ref":"base/table/table_view.html","tf":0.025157232704402517},"base/table/grid_table.html":{"ref":"base/table/grid_table.html","tf":0.02631578947368421},"base/table/collection_table.html":{"ref":"base/table/collection_table.html","tf":0.0196078431372549},"base/table/resizable_table.html":{"ref":"base/table/resizable_table.html","tf":0.01875},"case/table/adaptive_table.html":{"ref":"case/table/adaptive_table.html","tf":0.006060606060606061},"case/table/tree_table.html":{"ref":"case/table/tree_table.html","tf":0.00510204081632653},"case/table/layer_tree_table.html":{"ref":"case/table/layer_tree_table.html","tf":0.00510204081632653},"detailed/table/bi.preview_table.html":{"ref":"detailed/table/bi.preview_table.html","tf":0.02702702702702703},"detailed/table/bi.responsive_table.html":{"ref":"detailed/table/bi.responsive_table.html","tf":0.02631578947368421},"detailed/table/bi.excel_table.html":{"ref":"detailed/table/bi.excel_table.html","tf":0.022099447513812154},"detailed/table/bi.page_table.html":{"ref":"detailed/table/bi.page_table.html","tf":0.004651162790697674}},":":{"docs":{"core/layout/grid.html":{"ref":"core/layout/grid.html","tf":0.008928571428571428}}},"i":{"docs":{},"z":{"docs":{},"e":{"docs":{},":":{"docs":{"core/layout/table.html":{"ref":"core/layout/table.html","tf":0.012048192771084338},"core/layout/td.html":{"ref":"core/layout/td.html","tf":0.017857142857142856},"base/table/table_view.html":{"ref":"base/table/table_view.html","tf":0.006289308176100629},"base/table/grid_table.html":{"ref":"base/table/grid_table.html","tf":0.008771929824561403},"base/table/collection_table.html":{"ref":"base/table/collection_table.html","tf":0.006535947712418301},"base/table/resizable_table.html":{"ref":"base/table/resizable_table.html","tf":0.00625},"case/table/adaptive_table.html":{"ref":"case/table/adaptive_table.html","tf":0.01818181818181818},"case/table/tree_table.html":{"ref":"case/table/tree_table.html","tf":0.015306122448979591},"case/table/layer_tree_table.html":{"ref":"case/table/layer_tree_table.html","tf":0.015306122448979591},"detailed/table/bi.preview_table.html":{"ref":"detailed/table/bi.preview_table.html","tf":0.006756756756756757},"detailed/table/bi.responsive_table.html":{"ref":"detailed/table/bi.responsive_table.html","tf":0.005263157894736842},"detailed/table/bi.excel_table.html":{"ref":"detailed/table/bi.excel_table.html","tf":0.0055248618784530384},"detailed/table/bi.page_table.html":{"ref":"detailed/table/bi.page_table.html","tf":0.013953488372093023}}}}}}},":":{"docs":{"core/layout/grid.html":{"ref":"core/layout/grid.html","tf":0.03571428571428571}}},"w":{"docs":{},"i":{"docs":{},"d":{"docs":{},"t":{"docs":{},"h":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"t":{"docs":{"core/abstract/grid_view.html":{"ref":"core/abstract/grid_view.html","tf":0.00641025641025641}},"e":{"docs":{},"r":{"docs":{},":":{"docs":{"core/abstract/grid_view.html":{"ref":"core/abstract/grid_view.html","tf":0.00641025641025641}}}}}}}}}}}}}}}}},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"_":{"docs":{},"v":{"docs":{},"i":{"docs":{},"e":{"docs":{},"w":{"docs":{"core/abstract/collection_view.html":{"ref":"core/abstract/collection_view.html","tf":10}}}}}},"t":{"docs":{"base/table/collection_table.html":{"ref":"base/table/collection_table.html","tf":10}}}},"v":{"docs":{},"i":{"docs":{},"e":{"docs":{},"w":{"docs":{},",":{"docs":{},"指":{"docs":{},"定":{"docs":{},"行":{"docs":{},"列":{"docs":{},"可":{"docs":{},"以":{"docs":{},"删":{"docs":{},"除":{"docs":{},"看":{"docs":{},"不":{"docs":{},"见":{"docs":{},"的":{"docs":{},"元":{"docs":{},"素":{"docs":{"core/abstract/collection_view.html":{"ref":"core/abstract/collection_view.html","tf":0.0070921985815602835}}}}}}}}}}}}}}}}}}}}}}}}}}}},"o":{"docs":{},"r":{"docs":{"case/color_chooser.html":{"ref":"case/color_chooser.html","tf":0.038461538461538464},"case/color_chooser_popup.html":{"ref":"case/color_chooser_popup.html","tf":0.058823529411764705}},")":{"docs":{},"分":{"docs":{},"别":{"docs":{},"表":{"docs":{},"示":{"docs":{},"原":{"docs":{},"点":{"docs":{},"的":{"docs":{},"横":{"docs":{},"坐":{"docs":{},"标":{"docs":{},",":{"docs":{},"纵":{"docs":{},"坐":{"docs":{},"标":{"docs":{},",":{"docs":{},"半":{"docs":{},"径":{"docs":{},"以":{"docs":{},"及":{"docs":{},"颜":{"docs":{},"色":{"docs":{"base/canvas.html":{"ref":"base/canvas.html","tf":0.016666666666666666}}}}}}}}}}}}}}}}}}}}}}}},"_":{"docs":{},"c":{"docs":{},"h":{"docs":{},"o":{"docs":{},"o":{"docs":{},"s":{"docs":{"case/color_chooser.html":{"ref":"case/color_chooser.html","tf":10}},"e":{"docs":{},"r":{"docs":{},"_":{"docs":{},"p":{"docs":{},"o":{"docs":{},"p":{"docs":{},"u":{"docs":{},"p":{"docs":{"case/color_chooser_popup.html":{"ref":"case/color_chooser_popup.html","tf":10}}}}}}}}}}}}}}}}}}},"n":{"docs":{},"s":{"docs":{},"t":{"docs":{"core/layout/horizontal_adapt.html":{"ref":"core/layout/horizontal_adapt.html","tf":0.010869565217391304},"core/abstract/button_group.html":{"ref":"core/abstract/button_group.html","tf":0.007936507936507936},"core/combination/searcher.html":{"ref":"core/combination/searcher.html","tf":0.004608294930875576},"core/layer/layer_popup.html":{"ref":"core/layer/layer_popup.html","tf":0.0058823529411764705},"core/layer/layer_searcher.html":{"ref":"core/layer/layer_searcher.html","tf":0.009259259259259259},"case/combo/icon_combo.html":{"ref":"case/combo/icon_combo.html","tf":0.007751937984496124},"case/combo/static_combo.html":{"ref":"case/combo/static_combo.html","tf":0.0125},"case/combo/text_value_combo.html":{"ref":"case/combo/text_value_combo.html","tf":0.013513513513513514}}}},"f":{"docs":{},"i":{"docs":{},"r":{"docs":{},"m":{"docs":{"base/message.html":{"ref":"base/message.html","tf":0.02127659574468085}}}}}},"t":{"docs":{},"e":{"docs":{},"x":{"docs":{},"t":{"docs":{"base/message.html":{"ref":"base/message.html","tf":0.02127659574468085}}}},"n":{"docs":{},"t":{"docs":{"detailed/dialog.html":{"ref":"detailed/dialog.html","tf":0.043478260869565216}},")":{"docs":{"detailed/dialog.html":{"ref":"detailed/dialog.html","tf":0.043478260869565216}}}}}}}},"m":{"docs":{},"b":{"docs":{},"o":{"docs":{"core/combination/bi.combo.html":{"ref":"core/combination/bi.combo.html","tf":10.009615384615385}},",":{"docs":{},"基":{"docs":{},"类":{"docs":{},"b":{"docs":{},"i":{"docs":{},".":{"docs":{},"w":{"docs":{},"i":{"docs":{},"d":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{"core/combination/bi.combo.html":{"ref":"core/combination/bi.combo.html","tf":0.004807692307692308}}}}}}}}}}}}}},"c":{"docs":{},"l":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{"core/combination/bi.combo.html":{"ref":"core/combination/bi.combo.html","tf":0.004807692307692308}}}}}}},"类":{"docs":{"core/combination/bi.combo.html":{"ref":"core/combination/bi.combo.html","tf":0.004807692307692308}}},"弹":{"docs":{},"出":{"docs":{},"层":{"docs":{},"位":{"docs":{},"置":{"docs":{"core/combination/loader.html":{"ref":"core/combination/loader.html","tf":0.006289308176100629}}}}}}}}},"m":{"docs":{},"o":{"docs":{},"n":{"docs":{"base/button/button.html":{"ref":"base/button/button.html","tf":0.005681818181818182}},",":{"docs":{},"s":{"docs":{},"u":{"docs":{},"c":{"docs":{},"c":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{},",":{"docs":{},"w":{"docs":{},"a":{"docs":{},"r":{"docs":{},"n":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},",":{"docs":{},"i":{"docs":{},"g":{"docs":{},"n":{"docs":{},"o":{"docs":{},"r":{"docs":{"base/button/button.html":{"ref":"base/button/button.html","tf":0.005681818181818182}}}}}}}}}}}}}}}}}}}}}}}}}}},"p":{"docs":{},"l":{"docs":{},"e":{"docs":{},"x":{"docs":{},"_":{"docs":{},"c":{"docs":{},"a":{"docs":{},"n":{"docs":{},"v":{"docs":{},"a":{"docs":{"case/complex_canvas.html":{"ref":"case/complex_canvas.html","tf":10.020833333333334}}}}}}}}}}}}},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{"core/combination/loader.html":{"ref":"core/combination/loader.html","tf":0.006289308176100629},"case/loader/list_loader.html":{"ref":"case/loader/list_loader.html","tf":0.010752688172043012},"case/loader/sort_list.html":{"ref":"case/loader/sort_list.html","tf":0.010752688172043012},"case/pager/all_count_pager.html":{"ref":"case/pager/all_count_pager.html","tf":0.029411764705882353}},":":{"docs":{"case/pager/all_count_pager.html":{"ref":"case/pager/all_count_pager.html","tf":0.014705882352941176}}}}}},"p":{"docs":{},"i":{"docs":{"case/clipboard.html":{"ref":"case/clipboard.html","tf":0.03125}}},"y":{"docs":{},":":{"docs":{"case/clipboard.html":{"ref":"case/clipboard.html","tf":0.03125}}}}}},"l":{"docs":{"core/widget.html":{"ref":"core/widget.html","tf":0.00510204081632653}},"s":{"docs":{},":":{"docs":{"core/layout/vertical.html":{"ref":"core/layout/vertical.html","tf":0.02564102564102564},"core/layout/horizontal.html":{"ref":"core/layout/horizontal.html","tf":0.021505376344086023},"core/layout/htape.html":{"ref":"core/layout/htape.html","tf":0.024},"core/layout/vtape.html":{"ref":"core/layout/vtape.html","tf":0.024},"core/layout/center_adapt.html":{"ref":"core/layout/center_adapt.html","tf":0.023529411764705882},"core/layout/vertical_adapt.html":{"ref":"core/layout/vertical_adapt.html","tf":0.022988505747126436},"core/layout/left_right_vertical_adapt.html":{"ref":"core/layout/left_right_vertical_adapt.html","tf":0.02197802197802198},"core/layout/flow.html":{"ref":"core/layout/flow.html","tf":0.03076923076923077},"core/layout/center.html":{"ref":"core/layout/center.html","tf":0.02531645569620253},"core/layout/horizontal_adapt.html":{"ref":"core/layout/horizontal_adapt.html","tf":0.021739130434782608},"core/layout/horizontal_auto.html":{"ref":"core/layout/horizontal_auto.html","tf":0.024691358024691357},"core/layout/horizontal_float.html":{"ref":"core/layout/horizontal_float.html","tf":0.013888888888888888},"core/layout/float_center.html":{"ref":"core/layout/float_center.html","tf":0.02531645569620253},"core/layout/grid.html":{"ref":"core/layout/grid.html","tf":0.03571428571428571},"core/combination/bi.expander.html":{"ref":"core/combination/bi.expander.html","tf":0.005494505494505495},"core/combination/navigation.html":{"ref":"core/combination/navigation.html","tf":0.007194244604316547},"core/combination/searcher.html":{"ref":"core/combination/searcher.html","tf":0.004608294930875576},"core/combination/tab.html":{"ref":"core/combination/tab.html","tf":0.0136986301369863},"base/button/icon_button.html":{"ref":"base/button/icon_button.html","tf":0.02564102564102564},"base/editor/code_editor.html":{"ref":"base/editor/code_editor.html","tf":0.012658227848101266},"base/editor/formula_editor.html":{"ref":"base/editor/formula_editor.html","tf":0.010101010101010102},"base/table/collection_table.html":{"ref":"base/table/collection_table.html","tf":0.026143790849673203},"base/table/resizable_table.html":{"ref":"base/table/resizable_table.html","tf":0.025},"case/editor/shelter_editor.html":{"ref":"case/editor/shelter_editor.html","tf":0.0051813471502590676},"case/editor/sign_initial_editor.html":{"ref":"case/editor/sign_initial_editor.html","tf":0.005154639175257732},"case/layer/pane_list.html":{"ref":"case/layer/pane_list.html","tf":0.006802721088435374},"detailed/table/bi.excel_table.html":{"ref":"detailed/table/bi.excel_table.html","tf":0.022099447513812154},"detailed/text_input/bi.clear_editor.html":{"ref":"detailed/text_input/bi.clear_editor.html","tf":0.00980392156862745},"detailed/down_list_combo.html":{"ref":"detailed/down_list_combo.html","tf":0.03289473684210526}},"\"":{"docs":{},"l":{"docs":{},"a":{"docs":{},"y":{"docs":{},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{"case/editor/sign_editor.html":{"ref":"case/editor/sign_editor.html","tf":0.005494505494505495}}}}}}}}}}},"i":{"docs":{},"c":{"docs":{},"k":{"docs":{"detailed/down_list_combo.html":{"ref":"detailed/down_list_combo.html","tf":0.006578947368421052}},",":{"docs":{"core/basic_button.html":{"ref":"core/basic_button.html","tf":0.007936507936507936},"case/combo/bubble_combo.html":{"ref":"case/combo/bubble_combo.html","tf":0.005780346820809248},"detailed/down_list_combo.html":{"ref":"detailed/down_list_combo.html","tf":0.006578947368421052}},"h":{"docs":{},"o":{"docs":{},"v":{"docs":{"core/combination/bi.combo.html":{"ref":"core/combination/bi.combo.html","tf":0.004807692307692308},"core/combination/bi.expander.html":{"ref":"core/combination/bi.expander.html","tf":0.005494505494505495},"core/combination/group_combo.html":{"ref":"core/combination/group_combo.html","tf":0.007874015748031496},"core/combination/switcher.html":{"ref":"core/combination/switcher.html","tf":0.00625}}}}}}}},"p":{"docs":{},"b":{"docs":{},"o":{"docs":{},"a":{"docs":{},"r":{"docs":{},"d":{"docs":{"case/clipboard.html":{"ref":"case/clipboard.html","tf":10}}}}}}}}},"o":{"docs":{},"s":{"docs":{},"e":{"docs":{"core/layer/layer_float_box.html":{"ref":"core/layer/layer_float_box.html","tf":0.012345679012345678}},"m":{"docs":{},"a":{"docs":{},"x":{"docs":{"detailed/numeric_interval.html":{"ref":"detailed/numeric_interval.html","tf":0.017241379310344827}}}},"i":{"docs":{},"n":{"docs":{"detailed/numeric_interval.html":{"ref":"detailed/numeric_interval.html","tf":0.017241379310344827}}}}}}}},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{},"类":{"docs":{},"名":{"docs":{"core/widget.html":{"ref":"core/widget.html","tf":0.00510204081632653}}}}}}},"e":{"docs":{},"a":{"docs":{},"r":{"docs":{"base/button/button.html":{"ref":"base/button/button.html","tf":0.005681818181818182},"base/svg.html":{"ref":"base/svg.html","tf":0.011235955056179775}}}}}},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{"core/layout/center.html":{"ref":"core/layout/center.html","tf":10},"base/label.html":{"ref":"base/label.html","tf":0.006711409395973154}},"_":{"docs":{},"a":{"docs":{},"d":{"docs":{},"a":{"docs":{},"p":{"docs":{},"t":{"docs":{"core/layout/center_adapt.html":{"ref":"core/layout/center_adapt.html","tf":10}}}}}}}},":":{"docs":{"core/layout/border.html":{"ref":"core/layout/border.html","tf":0.012987012987012988}}},"o":{"docs":{},"f":{"docs":{},"f":{"docs":{},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{"case/tree/branch_relation.html":{"ref":"case/tree/branch_relation.html","tf":0.02040816326530612}},":":{"docs":{"case/tree/branch_relation.html":{"ref":"case/tree/branch_relation.html","tf":0.02040816326530612}}}}}}}}}}}}},"l":{"docs":{},"l":{"docs":{},"s":{"docs":{},"i":{"docs":{},"z":{"docs":{},"e":{"docs":{},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{},"p":{"docs":{},"o":{"docs":{},"s":{"docs":{},"i":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"t":{"docs":{"core/abstract/collection_view.html":{"ref":"core/abstract/collection_view.html","tf":0.0070921985815602835}},"e":{"docs":{},"r":{"docs":{},":":{"docs":{"core/abstract/collection_view.html":{"ref":"core/abstract/collection_view.html","tf":0.0070921985815602835}}}}}}}}}}}}}}}}}}}}}}}}}}},"h":{"docs":{},"o":{"docs":{},"o":{"docs":{},"s":{"docs":{},"e":{"docs":{},"_":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{},"e":{"docs":{},"_":{"docs":{},"s":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"l":{"docs":{"core/combination/searcher.html":{"ref":"core/combination/searcher.html","tf":0.004608294930875576}},"e":{"docs":{},",":{"docs":{},"c":{"docs":{},"h":{"docs":{},"o":{"docs":{},"o":{"docs":{},"s":{"docs":{},"e":{"docs":{},"_":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{},"e":{"docs":{},"_":{"docs":{},"m":{"docs":{},"u":{"docs":{},"l":{"docs":{},"t":{"docs":{},"i":{"docs":{},",":{"docs":{},"c":{"docs":{},"h":{"docs":{},"o":{"docs":{},"o":{"docs":{},"s":{"docs":{},"e":{"docs":{},"_":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{},"e":{"docs":{},"_":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},",":{"docs":{},"c":{"docs":{},"h":{"docs":{},"o":{"docs":{},"o":{"docs":{},"s":{"docs":{},"e":{"docs":{},"_":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{},"e":{"docs":{},"_":{"docs":{},"n":{"docs":{},"o":{"docs":{},"n":{"docs":{},"e":{"docs":{},",":{"docs":{},"c":{"docs":{},"h":{"docs":{},"o":{"docs":{},"o":{"docs":{},"s":{"docs":{},"e":{"docs":{},"_":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{},"e":{"docs":{},"_":{"docs":{},"d":{"docs":{},"e":{"docs":{},"f":{"docs":{},"a":{"docs":{},"u":{"docs":{},"l":{"docs":{},"t":{"docs":{"core/abstract/button_group.html":{"ref":"core/abstract/button_group.html","tf":0.007936507936507936}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{"core/abstract/button_group.html":{"ref":"core/abstract/button_group.html","tf":0.007936507936507936},"core/combination/searcher.html":{"ref":"core/combination/searcher.html","tf":0.004608294930875576},"core/layer/layer_searcher.html":{"ref":"core/layer/layer_searcher.html","tf":0.009259259259259259},"case/combo/icon_combo.html":{"ref":"case/combo/icon_combo.html","tf":0.007751937984496124},"case/combo/static_combo.html":{"ref":"case/combo/static_combo.html","tf":0.0125},"case/combo/text_value_combo.html":{"ref":"case/combo/text_value_combo.html","tf":0.013513513513513514}},"e":{"docs":{},":":{"docs":{"core/abstract/button_group.html":{"ref":"core/abstract/button_group.html","tf":0.007936507936507936},"core/abstract/button_tree.html":{"ref":"core/abstract/button_tree.html","tf":0.014925373134328358},"core/abstract/virtual_group.html":{"ref":"core/abstract/virtual_group.html","tf":0.014492753623188406},"core/abstract/custom_tree.html":{"ref":"core/abstract/custom_tree.html","tf":0.007194244604316547},"core/layer/layer_popup.html":{"ref":"core/layer/layer_popup.html","tf":0.0058823529411764705}}},"可":{"docs":{},"选":{"docs":{},"值":{"docs":{},"为":{"docs":{"core/abstract/button_group.html":{"ref":"core/abstract/button_group.html","tf":0.007936507936507936}}}}}}}}}}}}}},"i":{"docs":{},"l":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{},"n":{"docs":{"core/combination/group_combo.html":{"ref":"core/combination/group_combo.html","tf":0.007874015748031496}}}}},"r":{"docs":{},"e":{"docs":{},"n":{"docs":{},":":{"docs":{"core/combination/group_combo.html":{"ref":"core/combination/group_combo.html","tf":0.007874015748031496},"case/combo/text_value_downlist_combo.html":{"ref":"case/combo/text_value_downlist_combo.html","tf":0.013513513513513514},"case/tree/branch_tree.html":{"ref":"case/tree/branch_tree.html","tf":0.04},"case/tree/handstand_branch_tree.html":{"ref":"case/tree/handstand_branch_tree.html","tf":0.038461538461538464},"detailed/down_list_combo.html":{"ref":"detailed/down_list_combo.html","tf":0.013157894736842105}}}}}}}}},"e":{"docs":{},"c":{"docs":{},"k":{"docs":{"core/pane.html":{"ref":"core/pane.html","tf":0.0196078431372549}}}}}},"u":{"docs":{},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"m":{"docs":{},"_":{"docs":{},"t":{"docs":{},"r":{"docs":{},"e":{"docs":{"core/abstract/custom_tree.html":{"ref":"core/abstract/custom_tree.html","tf":10}}}}},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"_":{"docs":{},"t":{"docs":{},"i":{"docs":{},"m":{"docs":{"detailed/date/custom_date_time.html":{"ref":"detailed/date/custom_date_time.html","tf":10.045454545454545}}}}}}}}}}}}}}},"r":{"docs":{},"r":{"docs":{"base/pager.html":{"ref":"base/pager.html","tf":0.006666666666666667},"case/pager/all_count_pager.html":{"ref":"case/pager/all_count_pager.html","tf":0.014705882352941176},"case/pager/direction_pager.html":{"ref":"case/pager/direction_pager.html","tf":0.00819672131147541},"detailed/table/bi.page_table.html":{"ref":"detailed/table/bi.page_table.html","tf":0.004651162790697674}},":":{"docs":{"base/pager.html":{"ref":"base/pager.html","tf":0.006666666666666667},"case/pager/all_count_pager.html":{"ref":"case/pager/all_count_pager.html","tf":0.014705882352941176},"case/pager/direction_pager.html":{"ref":"case/pager/direction_pager.html","tf":0.01639344262295082}}}}}},"a":{"docs":{},"r":{"docs":{},"d":{"docs":{},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{"core/combination/navigation.html":{"ref":"core/combination/navigation.html","tf":0.007194244604316547},"core/combination/tab.html":{"ref":"core/combination/tab.html","tf":0.00684931506849315}},"o":{"docs":{},"r":{"docs":{},":":{"docs":{"core/combination/navigation.html":{"ref":"core/combination/navigation.html","tf":0.007194244604316547},"core/combination/tab.html":{"ref":"core/combination/tab.html","tf":0.00684931506849315}}}}}}}}}},"\"":{"docs":{},",":{"docs":{"core/combination/tab.html":{"ref":"core/combination/tab.html","tf":0.0136986301369863}}}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"core/combination/tab.html":{"ref":"core/combination/tab.html","tf":0.00684931506849315}}}}}}},"s":{"docs":{},"e":{"docs":{"core/combination/tab.html":{"ref":"core/combination/tab.html","tf":0.0136986301369863}}}},"l":{"docs":{},"l":{"docs":{},"b":{"docs":{},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{"base/message.html":{"ref":"base/message.html","tf":0.0425531914893617},"base/canvas.html":{"ref":"base/canvas.html","tf":0.016666666666666666}},",":{"docs":{"base/message.html":{"ref":"base/message.html","tf":0.02127659574468085}}},"(":{"docs":{},"{":{"docs":{"detailed/tree/bi.multi_tree_combo.html":{"ref":"detailed/tree/bi.multi_tree_combo.html","tf":0.010869565217391304}}}},")":{"docs":{"detailed/tree/bi.multi_tree_combo.html":{"ref":"detailed/tree/bi.multi_tree_combo.html","tf":0.010869565217391304}}}}}}}},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{},"a":{"docs":{},"r":{"docs":{"case/calendar.html":{"ref":"case/calendar.html","tf":10}}}}}}}},"n":{"docs":{},"v":{"docs":{},"a":{"docs":{"base/canvas.html":{"ref":"base/canvas.html","tf":10.016666666666667},"case/complex_canvas.html":{"ref":"case/complex_canvas.html","tf":0.020833333333333332}},"s":{"docs":{},".":{"docs":{},"c":{"docs":{},"i":{"docs":{},"r":{"docs":{},"c":{"docs":{},"l":{"docs":{},"e":{"docs":{},"(":{"1":{"5":{"0":{"docs":{},",":{"docs":{"base/canvas.html":{"ref":"base/canvas.html","tf":0.016666666666666666}}}},"docs":{}},"docs":{}},"docs":{}}}}}}}},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"o":{"docs":{},"k":{"docs":{},"e":{"docs":{},"(":{"docs":{},")":{"docs":{},";":{"docs":{"base/canvas.html":{"ref":"base/canvas.html","tf":0.016666666666666666},"case/complex_canvas.html":{"ref":"case/complex_canvas.html","tf":0.020833333333333332}}}}}}}}}}},"b":{"docs":{},"r":{"docs":{},"a":{"docs":{},"n":{"docs":{},"c":{"docs":{},"h":{"docs":{},"(":{"5":{"5":{"docs":{},",":{"docs":{"case/complex_canvas.html":{"ref":"case/complex_canvas.html","tf":0.020833333333333332}}}},"docs":{}},"docs":{}}}}}}}}},"绘":{"docs":{},"图":{"docs":{},",":{"docs":{},"基":{"docs":{},"类":{"docs":{},"b":{"docs":{},"i":{"docs":{},".":{"docs":{},"w":{"docs":{},"i":{"docs":{},"d":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{"base/canvas.html":{"ref":"base/canvas.html","tf":0.016666666666666666}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{"core/widget.html":{"ref":"core/widget.html","tf":0.00510204081632653}}}}},"o":{"docs":{},"s":{"docs":{},"s":{"docs":{},"h":{"docs":{},"e":{"docs":{},"a":{"docs":{},"d":{"docs":{"case/table/adaptive_table.html":{"ref":"case/table/adaptive_table.html","tf":0.006060606060606061},"case/table/tree_table.html":{"ref":"case/table/tree_table.html","tf":0.00510204081632653},"case/table/layer_tree_table.html":{"ref":"case/table/layer_tree_table.html","tf":0.00510204081632653},"detailed/table/bi.responsive_table.html":{"ref":"detailed/table/bi.responsive_table.html","tf":0.005263157894736842},"detailed/table/bi.page_table.html":{"ref":"detailed/table/bi.page_table.html","tf":0.004651162790697674}},"e":{"docs":{},"r":{"docs":{},",":{"docs":{"case/table/tree_table.html":{"ref":"case/table/tree_table.html","tf":0.00510204081632653},"case/table/layer_tree_table.html":{"ref":"case/table/layer_tree_table.html","tf":0.00510204081632653}}},":":{"docs":{"case/table/tree_table.html":{"ref":"case/table/tree_table.html","tf":0.00510204081632653},"case/table/layer_tree_table.html":{"ref":"case/table/layer_tree_table.html","tf":0.00510204081632653}}}}}}}}},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{"case/table/adaptive_table.html":{"ref":"case/table/adaptive_table.html","tf":0.006060606060606061},"case/table/tree_table.html":{"ref":"case/table/tree_table.html","tf":0.00510204081632653},"case/table/layer_tree_table.html":{"ref":"case/table/layer_tree_table.html","tf":0.00510204081632653},"detailed/table/bi.responsive_table.html":{"ref":"detailed/table/bi.responsive_table.html","tf":0.005263157894736842},"detailed/table/bi.page_table.html":{"ref":"detailed/table/bi.page_table.html","tf":0.004651162790697674}},"s":{"docs":{},",":{"docs":{"case/table/tree_table.html":{"ref":"case/table/tree_table.html","tf":0.00510204081632653},"case/table/layer_tree_table.html":{"ref":"case/table/layer_tree_table.html","tf":0.00510204081632653}}},":":{"docs":{"case/table/tree_table.html":{"ref":"case/table/tree_table.html","tf":0.00510204081632653},"case/table/layer_tree_table.html":{"ref":"case/table/layer_tree_table.html","tf":0.00510204081632653}}}}}}}}}}}},"n":{"docs":{},"e":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{"base/button/button.html":{"ref":"base/button/button.html","tf":0.005681818181818182},"base/button/text_button.html":{"ref":"base/button/text_button.html","tf":0.009433962264150943}}}}}}},"i":{"docs":{},"r":{"docs":{},"c":{"docs":{},"l":{"docs":{"base/svg.html":{"ref":"base/svg.html","tf":0.011235955056179775},"base/canvas.html":{"ref":"base/canvas.html","tf":0.016666666666666666}}}}}}},"d":{"docs":{},"e":{"docs":{},"m":{"docs":{},"o":{"docs":{"./":{"ref":"./","tf":0.07692307692307693}}}},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"o":{"docs":{},"y":{"docs":{"core/abstract/button_group.html":{"ref":"core/abstract/button_group.html","tf":0.007936507936507936},"core/abstract/virtual_list.html":{"ref":"core/abstract/virtual_list.html","tf":0.0125},"core/combination/bi.combo.html":{"ref":"core/combination/bi.combo.html","tf":0.004807692307692308},"core/combination/bi.expander.html":{"ref":"core/combination/bi.expander.html","tf":0.005494505494505495},"core/combination/loader.html":{"ref":"core/combination/loader.html","tf":0.006289308176100629},"core/combination/navigation.html":{"ref":"core/combination/navigation.html","tf":0.007194244604316547},"core/combination/searcher.html":{"ref":"core/combination/searcher.html","tf":0.004608294930875576},"core/combination/switcher.html":{"ref":"core/combination/switcher.html","tf":0.00625},"core/combination/tab.html":{"ref":"core/combination/tab.html","tf":0.00684931506849315},"core/layer/layer_float_box.html":{"ref":"core/layer/layer_float_box.html","tf":0.012345679012345678},"core/widget.html":{"ref":"core/widget.html","tf":0.01020408163265306},"core/basic_button.html":{"ref":"core/basic_button.html","tf":0.007936507936507936},"base/button/button.html":{"ref":"base/button/button.html","tf":0.005681818181818182},"case/combo/bubble_combo.html":{"ref":"case/combo/bubble_combo.html","tf":0.005780346820809248},"case/tree/display_tree.html":{"ref":"case/tree/display_tree.html","tf":0.030303030303030304},"case/table/adaptive_table.html":{"ref":"case/table/adaptive_table.html","tf":0.006060606060606061},"case/table/tree_table.html":{"ref":"case/table/tree_table.html","tf":0.00510204081632653},"case/table/layer_tree_table.html":{"ref":"case/table/layer_tree_table.html","tf":0.00510204081632653},"detailed/table/bi.preview_table.html":{"ref":"detailed/table/bi.preview_table.html","tf":0.006756756756756757},"detailed/table/bi.responsive_table.html":{"ref":"detailed/table/bi.responsive_table.html","tf":0.005263157894736842},"detailed/table/bi.excel_table.html":{"ref":"detailed/table/bi.excel_table.html","tf":0.0055248618784530384},"detailed/table/bi.page_table.html":{"ref":"detailed/table/bi.page_table.html","tf":0.004651162790697674}},"w":{"docs":{},"h":{"docs":{},"e":{"docs":{},"n":{"docs":{},"h":{"docs":{},"i":{"docs":{},"d":{"docs":{"core/combination/bi.combo.html":{"ref":"core/combination/bi.combo.html","tf":0.004807692307692308}}}}}}}}}}}}}},"f":{"docs":{},"a":{"docs":{},"u":{"docs":{},"l":{"docs":{},"t":{"docs":{},"s":{"docs":{},"h":{"docs":{},"o":{"docs":{},"w":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"x":{"docs":{"core/combination/navigation.html":{"ref":"core/combination/navigation.html","tf":0.007194244604316547},"core/combination/tab.html":{"ref":"core/combination/tab.html","tf":0.00684931506849315}}}}}}}}}}}}}}}}},"o":{"docs":{},"b":{"docs":{},"e":{"docs":{},"h":{"docs":{},"a":{"docs":{},"v":{"docs":{},"i":{"docs":{},"o":{"docs":{},"r":{"docs":{"core/abstract/button_group.html":{"ref":"core/abstract/button_group.html","tf":0.007936507936507936},"core/widget.html":{"ref":"core/widget.html","tf":0.00510204081632653}}}}}}}}}},"s":{"docs":{},"e":{"docs":{},"a":{"docs":{},"r":{"docs":{},"c":{"docs":{},"h":{"docs":{"core/combination/searcher.html":{"ref":"core/combination/searcher.html","tf":0.004608294930875576}}}}}}}},"c":{"docs":{},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{},"k":{"docs":{"core/basic_button.html":{"ref":"core/basic_button.html","tf":0.007936507936507936},"core/node_button.html":{"ref":"core/node_button.html","tf":0.02631578947368421},"base/button/button.html":{"ref":"base/button/button.html","tf":0.005681818181818182},"base/button/text_button.html":{"ref":"base/button/text_button.html","tf":0.009433962264150943},"base/button/icon_button.html":{"ref":"base/button/icon_button.html","tf":0.02564102564102564},"base/button/image_button.html":{"ref":"base/button/image_button.html","tf":0.014925373134328358},"case/button/multi_select_item.html":{"ref":"case/button/multi_select_item.html","tf":0.017543859649122806},"case/button/single_select_item.html":{"ref":"case/button/single_select_item.html","tf":0.016129032258064516},"case/button/single_select_radio_item.html":{"ref":"case/button/single_select_radio_item.html","tf":0.016129032258064516},"case/combo/bubble_combo.html":{"ref":"case/combo/bubble_combo.html","tf":0.005780346820809248}}}}}}},"h":{"docs":{},"i":{"docs":{},"g":{"docs":{},"h":{"docs":{},"l":{"docs":{},"i":{"docs":{},"g":{"docs":{},"h":{"docs":{},"t":{"docs":{"base/label.html":{"ref":"base/label.html","tf":0.006711409395973154},"base/button/button.html":{"ref":"base/button/button.html","tf":0.005681818181818182},"base/button/text_button.html":{"ref":"base/button/text_button.html","tf":0.009433962264150943},"case/editor/shelter_editor.html":{"ref":"case/editor/shelter_editor.html","tf":0.0051813471502590676},"case/editor/sign_editor.html":{"ref":"case/editor/sign_editor.html","tf":0.005494505494505495},"case/editor/sign_initial_editor.html":{"ref":"case/editor/sign_initial_editor.html","tf":0.005154639175257732},"case/editor/state_editor.html":{"ref":"case/editor/state_editor.html","tf":0.005747126436781609}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"d":{"docs":{},"m":{"docs":{},"a":{"docs":{},"r":{"docs":{},"k":{"docs":{"base/label.html":{"ref":"base/label.html","tf":0.006711409395973154},"base/button/button.html":{"ref":"base/button/button.html","tf":0.005681818181818182},"base/button/text_button.html":{"ref":"base/button/text_button.html","tf":0.009433962264150943},"case/button/multi_select_item.html":{"ref":"case/button/multi_select_item.html","tf":0.017543859649122806},"case/button/single_select_item.html":{"ref":"case/button/single_select_item.html","tf":0.016129032258064516},"case/button/single_select_radio_item.html":{"ref":"case/button/single_select_radio_item.html","tf":0.016129032258064516},"case/editor/shelter_editor.html":{"ref":"case/editor/shelter_editor.html","tf":0.0051813471502590676},"case/editor/sign_editor.html":{"ref":"case/editor/sign_editor.html","tf":0.005494505494505495},"case/editor/sign_initial_editor.html":{"ref":"case/editor/sign_initial_editor.html","tf":0.005154639175257732},"case/editor/state_editor.html":{"ref":"case/editor/state_editor.html","tf":0.005747126436781609}}}}}}}}},"w":{"docs":{},"n":{"docs":{},"_":{"docs":{},"l":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{},"_":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"b":{"docs":{},"o":{"docs":{"detailed/down_list_combo.html":{"ref":"detailed/down_list_combo.html","tf":10.006578947368421}}}}}}}}}}}}}}}},"i":{"docs":{},"r":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"core/combination/bi.combo.html":{"ref":"core/combination/bi.combo.html","tf":0.004807692307692308},"core/combination/bi.expander.html":{"ref":"core/combination/bi.expander.html","tf":0.005494505494505495},"core/combination/group_combo.html":{"ref":"core/combination/group_combo.html","tf":0.007874015748031496},"core/combination/loader.html":{"ref":"core/combination/loader.html","tf":0.006289308176100629},"core/combination/navigation.html":{"ref":"core/combination/navigation.html","tf":0.007194244604316547},"core/combination/switcher.html":{"ref":"core/combination/switcher.html","tf":0.00625},"core/combination/tab.html":{"ref":"core/combination/tab.html","tf":0.00684931506849315},"core/layer/layer_popup.html":{"ref":"core/layer/layer_popup.html","tf":0.0058823529411764705},"base/bubble.html":{"ref":"base/bubble.html","tf":0.023255813953488372},"case/list/list.select.html":{"ref":"case/list/list.select.html","tf":0.009433962264150943},"case/tree/branch_relation.html":{"ref":"case/tree/branch_relation.html","tf":0.02040816326530612},"detailed/down_list_combo.html":{"ref":"detailed/down_list_combo.html","tf":0.006578947368421052}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},":":{"docs":{"case/tree/branch_relation.html":{"ref":"case/tree/branch_relation.html","tf":0.02040816326530612}}},"_":{"docs":{},"p":{"docs":{},"a":{"docs":{},"g":{"docs":{"case/pager/direction_pager.html":{"ref":"case/pager/direction_pager.html","tf":10}}},"t":{"docs":{},"h":{"docs":{},"_":{"docs":{},"c":{"docs":{},"h":{"docs":{},"o":{"docs":{},"o":{"docs":{},"s":{"docs":{"detailed/path/direction_path_chooser.html":{"ref":"detailed/path/direction_path_chooser.html","tf":10.02}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{"core/widget.html":{"ref":"core/widget.html","tf":0.01020408163265306},"base/label.html":{"ref":"base/label.html","tf":0.006711409395973154}},"e":{"docs":{},"d":{"docs":{},"h":{"docs":{},"o":{"docs":{},"v":{"docs":{"core/single.html":{"ref":"core/single.html","tf":0.013888888888888888}}}}},"\"":{"docs":{},",":{"docs":{"case/segment.html":{"ref":"case/segment.html","tf":0.009345794392523364},"detailed/bi.button/segment.html":{"ref":"detailed/bi.button/segment.html","tf":0.009345794392523364}}}},":":{"docs":{"case/segment.html":{"ref":"case/segment.html","tf":0.009345794392523364},"detailed/bi.button/segment.html":{"ref":"detailed/bi.button/segment.html","tf":0.009345794392523364},"detailed/down_list_combo.html":{"ref":"detailed/down_list_combo.html","tf":0.006578947368421052}}}},"s":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"core/basic_button.html":{"ref":"core/basic_button.html","tf":0.007936507936507936},"case/combo/bubble_combo.html":{"ref":"case/combo/bubble_combo.html","tf":0.005780346820809248}}}}}}}},"e":{"docs":{},"r":{"docs":{},"r":{"docs":{},"o":{"docs":{},"r":{"docs":{"base/editor/editor.html":{"ref":"base/editor/editor.html","tf":0.005405405405405406}}}}}}},"w":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"m":{"docs":{},"a":{"docs":{},"r":{"docs":{},"k":{"docs":{"base/editor/editor.html":{"ref":"base/editor/editor.html","tf":0.005405405405405406},"base/editor/formula_editor.html":{"ref":"base/editor/formula_editor.html","tf":0.010101010101010102}}}}}}}}}}}}}}},"h":{"docs":{},"o":{"docs":{},"v":{"docs":{"core/basic_button.html":{"ref":"core/basic_button.html","tf":0.007936507936507936},"case/combo/bubble_combo.html":{"ref":"case/combo/bubble_combo.html","tf":0.005780346820809248}}}}},"p":{"docs":{},"l":{"docs":{},"a":{"docs":{},"y":{"docs":{},"_":{"docs":{},"t":{"docs":{},"r":{"docs":{},"e":{"docs":{"case/tree/display_tree.html":{"ref":"case/tree/display_tree.html","tf":10}}}}}}}}}}},"a":{"docs":{},"l":{"docs":{},"o":{"docs":{},"g":{"docs":{"detailed/dialog.html":{"ref":"detailed/dialog.html","tf":10.043478260869565}}}}}}},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{"core/widget.html":{"ref":"core/widget.html","tf":0.00510204081632653},"case/list/list.select.html":{"ref":"case/list/list.select.html","tf":0.009433962264150943},"case/loader/lazy_loader.html":{"ref":"case/loader/lazy_loader.html","tf":0.01694915254237288},"case/loader/list_loader.html":{"ref":"case/loader/list_loader.html","tf":0.010752688172043012},"case/loader/sort_list.html":{"ref":"case/loader/sort_list.html","tf":0.010752688172043012}}},"e":{"docs":{},"_":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"b":{"docs":{},"o":{"docs":{"detailed/date/date_combo.html":{"ref":"detailed/date/date_combo.html","tf":10.058823529411764}}}}}}},"p":{"docs":{},"a":{"docs":{},"n":{"docs":{},"e":{"docs":{},"_":{"docs":{},"w":{"docs":{},"i":{"docs":{},"d":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{"detailed/date/date_pane_widget.html":{"ref":"detailed/date/date_pane_widget.html","tf":10.027027027027026}}}}}}}}}}}}}}}},"y":{"docs":{"case/calendar.html":{"ref":"case/calendar.html","tf":0.013888888888888888}},":":{"docs":{"case/calendar.html":{"ref":"case/calendar.html","tf":0.013888888888888888}}},"}":{"docs":{"case/calendar.html":{"ref":"case/calendar.html","tf":0.013888888888888888}}}}},"b":{"docs":{},"l":{"docs":{},"c":{"docs":{},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{},"k":{"docs":{},",":{"docs":{"core/basic_button.html":{"ref":"core/basic_button.html","tf":0.007936507936507936},"case/combo/bubble_combo.html":{"ref":"case/combo/bubble_combo.html","tf":0.005780346820809248}}}}}}}}}},"y":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"i":{"docs":{},"c":{"docs":{},"s":{"docs":{},"h":{"docs":{},"o":{"docs":{},"w":{"docs":{"base/pager.html":{"ref":"base/pager.html","tf":0.006666666666666667}},"f":{"docs":{},"i":{"docs":{},"r":{"docs":{},"s":{"docs":{},"t":{"docs":{},"l":{"docs":{},"a":{"docs":{},"s":{"docs":{},"t":{"docs":{"base/pager.html":{"ref":"base/pager.html","tf":0.006666666666666667}}}}}}}}}}},"p":{"docs":{},"r":{"docs":{},"e":{"docs":{},"v":{"docs":{},"n":{"docs":{},"e":{"docs":{},"x":{"docs":{},"t":{"docs":{"base/pager.html":{"ref":"base/pager.html","tf":0.006666666666666667}}}}}}}}}}}}}},":":{"docs":{"case/layer/panel.html":{"ref":"case/layer/panel.html","tf":0.015873015873015872}},"t":{"docs":{},"r":{"docs":{},"u":{"docs":{},"e":{"docs":{},"}":{"docs":{"case/layer/pane_list.html":{"ref":"case/layer/pane_list.html","tf":0.006802721088435374}}}}}}},"f":{"docs":{},"a":{"docs":{},"l":{"docs":{},"s":{"docs":{},"e":{"docs":{},"}":{"docs":{"case/layer/panel.html":{"ref":"case/layer/panel.html","tf":0.015873015873015872}}}}}}}}}}}}}}}},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"e":{"docs":{},"u":{"docs":{},"i":{"2":{"docs":{},".":{"0":{"docs":{},"引":{"docs":{},"入":{"docs":{},"生":{"docs":{},"命":{"docs":{},"周":{"docs":{},"期":{"docs":{},"后":{"docs":{},",":{"docs":{},"w":{"docs":{},"i":{"docs":{},"d":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"的":{"docs":{},"实":{"docs":{},"现":{"docs":{},"类":{"docs":{},"不":{"docs":{},"需":{"docs":{},"要":{"docs":{},"重":{"docs":{},"写":{"docs":{},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{},"e":{"docs":{},"n":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},",":{"docs":{},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"i":{"docs":{},"d":{"docs":{},"等":{"docs":{},"方":{"docs":{},"法":{"docs":{},",":{"docs":{},"会":{"docs":{},"自":{"docs":{},"动":{"docs":{},"调":{"docs":{},"用":{"docs":{},"子":{"docs":{},"组":{"docs":{},"件":{"docs":{},"的":{"docs":{},"对":{"docs":{},"应":{"docs":{},"方":{"docs":{},"法":{"docs":{"core/widget.html":{"ref":"core/widget.html","tf":0.00510204081632653}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"docs":{}}},"docs":{},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{"./":{"ref":"./","tf":0.07692307692307693}}}}},"文":{"docs":{},"档":{"docs":{"./":{"ref":"./","tf":0.07692307692307693}}}}}},"t":{"docs":{},"u":{"docs":{},"n":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"_":{"docs":{},"n":{"docs":{},"u":{"docs":{},"m":{"docs":{},"b":{"docs":{},"e":{"docs":{},"r":{"docs":{},"_":{"docs":{},"e":{"docs":{},"d":{"docs":{},"i":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{"detailed/text_input/finetuning_number_editor.html":{"ref":"detailed/text_input/finetuning_number_editor.html","tf":10.037037037037036}}}}}}}}}}}}}}}}}}}}}}}},"e":{"docs":{},"l":{"docs":{},"d":{"docs":{"base/editor/formula_editor.html":{"ref":"base/editor/formula_editor.html","tf":0.010101010101010102}},"t":{"docs":{},"e":{"docs":{},"x":{"docs":{},"t":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{},"e":{"docs":{},"m":{"docs":{},"a":{"docs":{},"p":{"docs":{"base/editor/formula_editor.html":{"ref":"base/editor/formula_editor.html","tf":0.020202020202020204}}}}}}}}}}}}}}}}},"r":{"docs":{},"s":{"docs":{},"t":{"docs":{"base/pager.html":{"ref":"base/pager.html","tf":0.006666666666666667}},":":{"docs":{"base/pager.html":{"ref":"base/pager.html","tf":0.006666666666666667}}},"p":{"docs":{},"a":{"docs":{},"g":{"docs":{"base/pager.html":{"ref":"base/pager.html","tf":0.006666666666666667},"case/pager/direction_pager.html":{"ref":"case/pager/direction_pager.html","tf":0.00819672131147541},"detailed/table/bi.page_table.html":{"ref":"detailed/table/bi.page_table.html","tf":0.004651162790697674}},"e":{"docs":{},":":{"docs":{"case/pager/direction_pager.html":{"ref":"case/pager/direction_pager.html","tf":0.01639344262295082}}}}}}}}}},"l":{"docs":{},"e":{"docs":{},"_":{"docs":{},"m":{"docs":{},"a":{"docs":{},"n":{"docs":{},"a":{"docs":{},"g":{"docs":{"detailed/file_manager.html":{"ref":"detailed/file_manager.html","tf":10.023255813953488}}}}}}}}}}},"l":{"docs":{},"o":{"docs":{},"w":{"docs":{"core/layout/flow.html":{"ref":"core/layout/flow.html","tf":10}}},"a":{"docs":{},"t":{"docs":{},"左":{"docs":{},"右":{"docs":{},"自":{"docs":{},"适":{"docs":{},"应":{"docs":{},"\"":{"docs":{},",":{"docs":{"core/layout/horizontal_float.html":{"ref":"core/layout/horizontal_float.html","tf":0.013888888888888888}}}}}}}}},"_":{"docs":{},"c":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"core/layout/float_center.html":{"ref":"core/layout/float_center.html","tf":10}}}}}},"b":{"docs":{},"o":{"docs":{},"x":{"docs":{"core/layer/layer_float_box.html":{"ref":"core/layer/layer_float_box.html","tf":10}}}}}},"b":{"docs":{},"o":{"docs":{},"x":{"docs":{},"弹":{"docs":{},"出":{"docs":{},"层":{"docs":{},",":{"docs":{},"b":{"docs":{},"i":{"docs":{},".":{"docs":{},"w":{"docs":{},"i":{"docs":{},"d":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{"core/layer/layer_float_box.html":{"ref":"core/layer/layer_float_box.html","tf":0.012345679012345678}}}}}}}}}}}}}}}}}}}}}},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{"core/abstract/grid_view.html":{"ref":"core/abstract/grid_view.html","tf":0.038461538461538464},"core/abstract/collection_view.html":{"ref":"core/abstract/collection_view.html","tf":0.014184397163120567},"core/abstract/virtual_list.html":{"ref":"core/abstract/virtual_list.html","tf":0.0125},"core/combination/bi.combo.html":{"ref":"core/combination/bi.combo.html","tf":0.004807692307692308},"core/combination/loader.html":{"ref":"core/combination/loader.html","tf":0.025157232704402517},"core/combination/navigation.html":{"ref":"core/combination/navigation.html","tf":0.02158273381294964},"core/combination/searcher.html":{"ref":"core/combination/searcher.html","tf":0.004608294930875576},"core/combination/tab.html":{"ref":"core/combination/tab.html","tf":0.0136986301369863},"core/layer/layer_searcher.html":{"ref":"core/layer/layer_searcher.html","tf":0.018518518518518517},"core/basic_button.html":{"ref":"core/basic_button.html","tf":0.007936507936507936},"core/pane.html":{"ref":"core/pane.html","tf":0.0196078431372549},"base/editor/editor.html":{"ref":"base/editor/editor.html","tf":0.010810810810810811},"base/editor/code_editor.html":{"ref":"base/editor/code_editor.html","tf":0.012658227848101266},"base/pager.html":{"ref":"base/pager.html","tf":0.03333333333333333},"case/editor/shelter_editor.html":{"ref":"case/editor/shelter_editor.html","tf":0.010362694300518135},"case/editor/sign_editor.html":{"ref":"case/editor/sign_editor.html","tf":0.01098901098901099},"case/editor/sign_initial_editor.html":{"ref":"case/editor/sign_initial_editor.html","tf":0.010309278350515464},"case/editor/state_editor.html":{"ref":"case/editor/state_editor.html","tf":0.011494252873563218},"case/layer/pane_list.html":{"ref":"case/layer/pane_list.html","tf":0.02040816326530612},"case/list/list.select.html":{"ref":"case/list/list.select.html","tf":0.018867924528301886},"case/loader/list_loader.html":{"ref":"case/loader/list_loader.html","tf":0.03225806451612903},"case/loader/sort_list.html":{"ref":"case/loader/sort_list.html","tf":0.03225806451612903},"case/trigger/editor_trigger.html":{"ref":"case/trigger/editor_trigger.html","tf":0.04},"case/combo/bubble_combo.html":{"ref":"case/combo/bubble_combo.html","tf":0.005780346820809248},"case/tree/simple_tree.html":{"ref":"case/tree/simple_tree.html","tf":0.022222222222222223},"case/table/tree_table.html":{"ref":"case/table/tree_table.html","tf":0.015306122448979591},"case/table/layer_tree_table.html":{"ref":"case/table/layer_tree_table.html","tf":0.015306122448979591},"case/pager/direction_pager.html":{"ref":"case/pager/direction_pager.html","tf":0.01639344262295082},"case/clipboard.html":{"ref":"case/clipboard.html","tf":0.125},"detailed/bi.button/tooltip.html":{"ref":"detailed/bi.button/tooltip.html","tf":0.011363636363636364},"detailed/tree/bi.multi_tree_combo.html":{"ref":"detailed/tree/bi.multi_tree_combo.html","tf":0.021739130434782608},"detailed/table/bi.responsive_table.html":{"ref":"detailed/table/bi.responsive_table.html","tf":0.015789473684210527},"detailed/table/bi.page_table.html":{"ref":"detailed/table/bi.page_table.html","tf":0.027906976744186046},"detailed/text_input/bi.text_editor.html":{"ref":"detailed/text_input/bi.text_editor.html","tf":0.020618556701030927},"detailed/text_input/bi.search_editor.html":{"ref":"detailed/text_input/bi.search_editor.html","tf":0.020202020202020204},"detailed/text_input/bi.clear_editor.html":{"ref":"detailed/text_input/bi.clear_editor.html","tf":0.0196078431372549},"detailed/combo/multilayer_single_tree_combo.html":{"ref":"detailed/combo/multilayer_single_tree_combo.html","tf":0.018867924528301886}},"(":{"docs":{},"i":{"docs":{},",":{"docs":{"core/combination/loader.html":{"ref":"core/combination/loader.html","tf":0.006289308176100629}}},"d":{"docs":{},"x":{"docs":{},",":{"docs":{"core/combination/loader.html":{"ref":"core/combination/loader.html","tf":0.006289308176100629}}}}}},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},")":{"docs":{"core/combination/loader.html":{"ref":"core/combination/loader.html","tf":0.006289308176100629}}},"s":{"docs":{},",":{"docs":{"core/combination/loader.html":{"ref":"core/combination/loader.html","tf":0.006289308176100629}}}}}}}},".":{"docs":{},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},"b":{"docs":{},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{},")":{"docs":{"core/combination/searcher.html":{"ref":"core/combination/searcher.html","tf":0.004608294930875576}}}}}}}}}}}}}},"v":{"docs":{},")":{"docs":{"core/combination/navigation.html":{"ref":"core/combination/navigation.html","tf":0.007194244604316547},"core/combination/tab.html":{"ref":"core/combination/tab.html","tf":0.00684931506849315}}}},")":{"docs":{"core/layer/layer_float_box.html":{"ref":"core/layer/layer_float_box.html","tf":0.012345679012345678},"base/message.html":{"ref":"base/message.html","tf":0.02127659574468085},"detailed/tree/bi.multi_tree_combo.html":{"ref":"detailed/tree/bi.multi_tree_combo.html","tf":0.010869565217391304}},"{":{"docs":{"base/pager.html":{"ref":"base/pager.html","tf":0.006666666666666667},"detailed/multi_select_combo.html":{"ref":"detailed/multi_select_combo.html","tf":0.04}},"r":{"docs":{},"e":{"docs":{},"t":{"docs":{},"u":{"docs":{},"r":{"docs":{},"n":{"docs":{"base/pager.html":{"ref":"base/pager.html","tf":0.006666666666666667}}}}}}}}}},"r":{"docs":{},"o":{"docs":{},"w":{"1":{"docs":{},",":{"docs":{"base/table/table_view.html":{"ref":"base/table/table_view.html","tf":0.006289308176100629},"base/table/collection_table.html":{"ref":"base/table/collection_table.html","tf":0.006535947712418301},"case/table/adaptive_table.html":{"ref":"case/table/adaptive_table.html","tf":0.006060606060606061},"case/table/tree_table.html":{"ref":"case/table/tree_table.html","tf":0.00510204081632653},"case/table/layer_tree_table.html":{"ref":"case/table/layer_tree_table.html","tf":0.00510204081632653},"detailed/table/bi.excel_table.html":{"ref":"detailed/table/bi.excel_table.html","tf":0.0055248618784530384},"detailed/table/bi.page_table.html":{"ref":"detailed/table/bi.page_table.html","tf":0.004651162790697674}}}},"docs":{}}}}}}}}}}}},"a":{"docs":{},"l":{"docs":{},"s":{"docs":{"core/combination/bi.combo.html":{"ref":"core/combination/bi.combo.html","tf":0.019230769230769232},"core/combination/bi.expander.html":{"ref":"core/combination/bi.expander.html","tf":0.005494505494505495},"core/combination/group_combo.html":{"ref":"core/combination/group_combo.html","tf":0.023622047244094488},"core/combination/searcher.html":{"ref":"core/combination/searcher.html","tf":0.009216589861751152},"core/combination/tab.html":{"ref":"core/combination/tab.html","tf":0.0136986301369863},"core/layer/layer_popup.html":{"ref":"core/layer/layer_popup.html","tf":0.01764705882352941},"core/widget.html":{"ref":"core/widget.html","tf":0.02040816326530612},"core/single.html":{"ref":"core/single.html","tf":0.013888888888888888},"core/basic_button.html":{"ref":"core/basic_button.html","tf":0.07142857142857142},"core/node_button.html":{"ref":"core/node_button.html","tf":0.02631578947368421},"base/button/button.html":{"ref":"base/button/button.html","tf":0.017045454545454544},"base/button/text_button.html":{"ref":"base/button/text_button.html","tf":0.009433962264150943},"base/editor/editor.html":{"ref":"base/editor/editor.html","tf":0.005405405405405406},"base/editor/code_editor.html":{"ref":"base/editor/code_editor.html","tf":0.012658227848101266},"base/editor/multifile_editor.html":{"ref":"base/editor/multifile_editor.html","tf":0.015384615384615385},"base/table/table_view.html":{"ref":"base/table/table_view.html","tf":0.018867924528301886},"base/table/grid_table.html":{"ref":"base/table/grid_table.html","tf":0.008771929824561403},"base/table/collection_table.html":{"ref":"base/table/collection_table.html","tf":0.013071895424836602},"base/table/resizable_table.html":{"ref":"base/table/resizable_table.html","tf":0.01875},"base/pager.html":{"ref":"base/pager.html","tf":0.03333333333333333},"case/loader/list_loader.html":{"ref":"case/loader/list_loader.html","tf":0.010752688172043012},"case/loader/sort_list.html":{"ref":"case/loader/sort_list.html","tf":0.010752688172043012},"case/trigger/editor_trigger.html":{"ref":"case/trigger/editor_trigger.html","tf":0.02},"case/combo/bubble_combo.html":{"ref":"case/combo/bubble_combo.html","tf":0.05202312138728324},"case/table/adaptive_table.html":{"ref":"case/table/adaptive_table.html","tf":0.012121212121212121},"case/table/tree_table.html":{"ref":"case/table/tree_table.html","tf":0.015306122448979591},"case/table/layer_tree_table.html":{"ref":"case/table/layer_tree_table.html","tf":0.015306122448979591},"case/pager/direction_pager.html":{"ref":"case/pager/direction_pager.html","tf":0.00819672131147541},"detailed/table/bi.preview_table.html":{"ref":"detailed/table/bi.preview_table.html","tf":0.006756756756756757},"detailed/table/bi.responsive_table.html":{"ref":"detailed/table/bi.responsive_table.html","tf":0.021052631578947368},"detailed/table/bi.excel_table.html":{"ref":"detailed/table/bi.excel_table.html","tf":0.011049723756906077},"detailed/table/bi.page_table.html":{"ref":"detailed/table/bi.page_table.html","tf":0.013953488372093023},"detailed/text_input/bi.text_editor.html":{"ref":"detailed/text_input/bi.text_editor.html","tf":0.010309278350515464},"detailed/text_input/bi.search_editor.html":{"ref":"detailed/text_input/bi.search_editor.html","tf":0.010101010101010102},"detailed/text_input/bi.clear_editor.html":{"ref":"detailed/text_input/bi.clear_editor.html","tf":0.00980392156862745},"detailed/multi_select_combo.html":{"ref":"detailed/multi_select_combo.html","tf":0.04}},"e":{"docs":{},",":{"docs":{"core/combination/navigation.html":{"ref":"core/combination/navigation.html","tf":0.014388489208633094}}}}}},"k":{"docs":{},"e":{"docs":{},"r":{"docs":{},".":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},".":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"(":{"docs":{},")":{"docs":{},",":{"docs":{"core/combination/loader.html":{"ref":"core/combination/loader.html","tf":0.006289308176100629}}}}}}}}}}}}}}}}}}}}}}},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{},"\"":{"docs":{"core/combination/group_combo.html":{"ref":"core/combination/group_combo.html","tf":0.007874015748031496},"case/combo/icon_combo.html":{"ref":"case/combo/icon_combo.html","tf":0.023255813953488372},"detailed/down_list_combo.html":{"ref":"detailed/down_list_combo.html","tf":0.006578947368421052}},",":{"docs":{"core/combination/bi.expander.html":{"ref":"core/combination/bi.expander.html","tf":0.005494505494505495},"base/button/icon_button.html":{"ref":"base/button/icon_button.html","tf":0.02564102564102564},"case/combo/icon_combo.html":{"ref":"case/combo/icon_combo.html","tf":0.007751937984496124},"detailed/down_list_combo.html":{"ref":"detailed/down_list_combo.html","tf":0.039473684210526314}}}},",":{"docs":{"base/svg.html":{"ref":"base/svg.html","tf":0.011235955056179775}}}}},"r":{"docs":{},"c":{"docs":{},"e":{"docs":{},"n":{"docs":{},"o":{"docs":{},"t":{"docs":{},"s":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"core/basic_button.html":{"ref":"core/basic_button.html","tf":0.007936507936507936},"case/combo/bubble_combo.html":{"ref":"case/combo/bubble_combo.html","tf":0.005780346820809248}}}}}}}}}}},"s":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"core/basic_button.html":{"ref":"core/basic_button.html","tf":0.007936507936507936},"case/combo/bubble_combo.html":{"ref":"case/combo/bubble_combo.html","tf":0.005780346820809248}}}}}}}},"c":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"base/label.html":{"ref":"base/label.html","tf":0.006711409395973154},"base/button/button.html":{"ref":"base/button/button.html","tf":0.005681818181818182},"base/button/text_button.html":{"ref":"base/button/text_button.html","tf":0.009433962264150943}}}}}}}},"m":{"docs":{},"u":{"docs":{},"l":{"docs":{},"a":{"docs":{},"_":{"docs":{},"e":{"docs":{},"d":{"docs":{},"i":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{"base/editor/formula_editor.html":{"ref":"base/editor/formula_editor.html","tf":10}}}}}}}}}}}}},"e":{"docs":{},"i":{"docs":{},"g":{"docs":{},"n":{"docs":{},":":{"docs":{"detailed/relation_view.html":{"ref":"detailed/relation_view.html","tf":0.038461538461538464}}}}}}}},"c":{"docs":{},"u":{"docs":{"base/editor/editor.html":{"ref":"base/editor/editor.html","tf":0.005405405405405406},"base/editor/code_editor.html":{"ref":"base/editor/code_editor.html","tf":0.012658227848101266},"base/editor/textarea_editor.html":{"ref":"base/editor/textarea_editor.html","tf":0.021739130434782608},"base/editor/formula_editor.html":{"ref":"base/editor/formula_editor.html","tf":0.010101010101010102},"case/editor/shelter_editor.html":{"ref":"case/editor/shelter_editor.html","tf":0.0051813471502590676},"case/editor/sign_editor.html":{"ref":"case/editor/sign_editor.html","tf":0.005494505494505495},"case/editor/sign_initial_editor.html":{"ref":"case/editor/sign_initial_editor.html","tf":0.005154639175257732},"case/editor/state_editor.html":{"ref":"case/editor/state_editor.html","tf":0.005747126436781609}},"s":{"docs":{},"事":{"docs":{},"件":{"docs":{"base/editor/editor.html":{"ref":"base/editor/editor.html","tf":0.005405405405405406},"case/editor/shelter_editor.html":{"ref":"case/editor/shelter_editor.html","tf":0.0051813471502590676},"case/editor/sign_editor.html":{"ref":"case/editor/sign_editor.html","tf":0.005494505494505495},"case/editor/sign_initial_editor.html":{"ref":"case/editor/sign_initial_editor.html","tf":0.005154639175257732},"case/editor/state_editor.html":{"ref":"case/editor/state_editor.html","tf":0.005747126436781609}}}}}}},"o":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{"base/table/table_view.html":{"ref":"base/table/table_view.html","tf":0.006289308176100629},"detailed/table/bi.responsive_table.html":{"ref":"detailed/table/bi.responsive_table.html","tf":0.005263157894736842}},"r":{"docs":{},"o":{"docs":{},"w":{"docs":{},"s":{"docs":{"base/table/table_view.html":{"ref":"base/table/table_view.html","tf":0.006289308176100629},"detailed/table/bi.responsive_table.html":{"ref":"detailed/table/bi.responsive_table.html","tf":0.005263157894736842},"detailed/table/bi.excel_table.html":{"ref":"detailed/table/bi.excel_table.html","tf":0.0055248618784530384}}}}}}}}}}},"n":{"docs":{"base/editor/formula_editor.html":{"ref":"base/editor/formula_editor.html","tf":0.010101010101010102}}},"r":{"docs":{},"e":{"docs":{},"e":{"docs":{},"z":{"docs":{},"e":{"docs":{},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{"base/table/grid_table.html":{"ref":"base/table/grid_table.html","tf":0.008771929824561403},"base/table/collection_table.html":{"ref":"base/table/collection_table.html","tf":0.006535947712418301},"base/table/resizable_table.html":{"ref":"base/table/resizable_table.html","tf":0.00625},"case/table/adaptive_table.html":{"ref":"case/table/adaptive_table.html","tf":0.006060606060606061},"case/table/tree_table.html":{"ref":"case/table/tree_table.html","tf":0.00510204081632653},"case/table/layer_tree_table.html":{"ref":"case/table/layer_tree_table.html","tf":0.00510204081632653},"detailed/table/bi.preview_table.html":{"ref":"detailed/table/bi.preview_table.html","tf":0.006756756756756757},"detailed/table/bi.responsive_table.html":{"ref":"detailed/table/bi.responsive_table.html","tf":0.005263157894736842},"detailed/table/bi.page_table.html":{"ref":"detailed/table/bi.page_table.html","tf":0.004651162790697674}},"s":{"docs":{},":":{"docs":{"base/table/table_view.html":{"ref":"base/table/table_view.html","tf":0.006289308176100629},"base/table/grid_table.html":{"ref":"base/table/grid_table.html","tf":0.008771929824561403},"case/table/adaptive_table.html":{"ref":"case/table/adaptive_table.html","tf":0.006060606060606061}}}}}}}}}}}}},"g":{"docs":{},"i":{"docs":{},"t":{"docs":{},"h":{"docs":{},"u":{"docs":{},"b":{"docs":{},"p":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"s":{"docs":{},":":{"docs":{"./":{"ref":"./","tf":0.07692307692307693}}}}}}}}}}}}},"e":{"docs":{},"t":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{"core/abstract/button_group.html":{"ref":"core/abstract/button_group.html","tf":0.007936507936507936},"core/abstract/button_tree.html":{"ref":"core/abstract/button_tree.html","tf":0.014925373134328358},"core/abstract/virtual_group.html":{"ref":"core/abstract/virtual_group.html","tf":0.014492753623188406},"core/abstract/custom_tree.html":{"ref":"core/abstract/custom_tree.html","tf":0.007194244604316547},"core/combination/bi.combo.html":{"ref":"core/combination/bi.combo.html","tf":0.004807692307692308},"core/combination/bi.expander.html":{"ref":"core/combination/bi.expander.html","tf":0.005494505494505495},"core/combination/group_combo.html":{"ref":"core/combination/group_combo.html","tf":0.007874015748031496},"core/combination/loader.html":{"ref":"core/combination/loader.html","tf":0.006289308176100629},"core/combination/navigation.html":{"ref":"core/combination/navigation.html","tf":0.007194244604316547},"core/combination/searcher.html":{"ref":"core/combination/searcher.html","tf":0.004608294930875576},"core/combination/switcher.html":{"ref":"core/combination/switcher.html","tf":0.00625},"core/combination/tab.html":{"ref":"core/combination/tab.html","tf":0.00684931506849315},"core/layer/layer_popup.html":{"ref":"core/layer/layer_popup.html","tf":0.0058823529411764705},"core/layer/layer_searcher.html":{"ref":"core/layer/layer_searcher.html","tf":0.009259259259259259},"core/widget.html":{"ref":"core/widget.html","tf":0.00510204081632653},"core/single.html":{"ref":"core/single.html","tf":0.013888888888888888},"base/editor/editor.html":{"ref":"base/editor/editor.html","tf":0.005405405405405406},"base/editor/code_editor.html":{"ref":"base/editor/code_editor.html","tf":0.012658227848101266},"base/editor/multifile_editor.html":{"ref":"base/editor/multifile_editor.html","tf":0.015384615384615385},"base/editor/textarea_editor.html":{"ref":"base/editor/textarea_editor.html","tf":0.021739130434782608},"base/editor/formula_editor.html":{"ref":"base/editor/formula_editor.html","tf":0.010101010101010102},"base/pager.html":{"ref":"base/pager.html","tf":0.006666666666666667},"case/editor/shelter_editor.html":{"ref":"case/editor/shelter_editor.html","tf":0.0051813471502590676},"case/editor/sign_editor.html":{"ref":"case/editor/sign_editor.html","tf":0.005494505494505495},"case/editor/sign_initial_editor.html":{"ref":"case/editor/sign_initial_editor.html","tf":0.005154639175257732},"case/editor/state_editor.html":{"ref":"case/editor/state_editor.html","tf":0.005747126436781609},"case/layer/layer_panel.html":{"ref":"case/layer/layer_panel.html","tf":0.010752688172043012},"case/layer/pane_list.html":{"ref":"case/layer/pane_list.html","tf":0.006802721088435374},"case/combo/icon_combo.html":{"ref":"case/combo/icon_combo.html","tf":0.007751937984496124},"case/combo/static_combo.html":{"ref":"case/combo/static_combo.html","tf":0.0125},"case/combo/text_value_combo.html":{"ref":"case/combo/text_value_combo.html","tf":0.013513513513513514},"case/combo/text_value_downlist_combo.html":{"ref":"case/combo/text_value_downlist_combo.html","tf":0.013513513513513514},"case/tree/branch_tree.html":{"ref":"case/tree/branch_tree.html","tf":0.02},"case/tree/handstand_branch_tree.html":{"ref":"case/tree/handstand_branch_tree.html","tf":0.019230769230769232},"case/tree/simple_tree.html":{"ref":"case/tree/simple_tree.html","tf":0.022222222222222223},"case/tree/level_tree.html":{"ref":"case/tree/level_tree.html","tf":0.017857142857142856},"case/color_chooser.html":{"ref":"case/color_chooser.html","tf":0.038461538461538464},"case/color_chooser_popup.html":{"ref":"case/color_chooser_popup.html","tf":0.029411764705882353},"detailed/tree/bi.multi_tree_combo.html":{"ref":"detailed/tree/bi.multi_tree_combo.html","tf":0.010869565217391304},"detailed/tree/bi.switch_tree.html":{"ref":"detailed/tree/bi.switch_tree.html","tf":0.013157894736842105},"detailed/combo/single_tree_combo.html":{"ref":"detailed/combo/single_tree_combo.html","tf":0.03389830508474576},"detailed/combo/multilayer_single_tree_combo.html":{"ref":"detailed/combo/multilayer_single_tree_combo.html","tf":0.03773584905660377},"detailed/combo/select_tree_combo.html":{"ref":"detailed/combo/select_tree_combo.html","tf":0.04081632653061224},"detailed/combo/multilayer_select_tree_combo.html":{"ref":"detailed/combo/multilayer_select_tree_combo.html","tf":0.04081632653061224},"detailed/slider.html":{"ref":"detailed/slider.html","tf":0.029411764705882353}},"e":{"docs":{},",":{"docs":{"OVERVIEW.html":{"ref":"OVERVIEW.html","tf":0.1}}}}}}},"i":{"docs":{},"e":{"docs":{},"w":{"docs":{"core/combination/bi.combo.html":{"ref":"core/combination/bi.combo.html","tf":0.004807692307692308},"core/combination/bi.expander.html":{"ref":"core/combination/bi.expander.html","tf":0.005494505494505495},"core/combination/searcher.html":{"ref":"core/combination/searcher.html","tf":0.004608294930875576},"core/combination/switcher.html":{"ref":"core/combination/switcher.html","tf":0.00625},"core/layer/layer_popup.html":{"ref":"core/layer/layer_popup.html","tf":0.0058823529411764705}}}}},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"i":{"docs":{},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"o":{"docs":{},"l":{"docs":{"base/table/table_view.html":{"ref":"base/table/table_view.html","tf":0.006289308176100629},"base/table/grid_table.html":{"ref":"base/table/grid_table.html","tf":0.008771929824561403},"base/table/collection_table.html":{"ref":"base/table/collection_table.html","tf":0.006535947712418301},"base/table/resizable_table.html":{"ref":"base/table/resizable_table.html","tf":0.00625},"case/table/adaptive_table.html":{"ref":"case/table/adaptive_table.html","tf":0.006060606060606061},"case/table/tree_table.html":{"ref":"case/table/tree_table.html","tf":0.00510204081632653},"case/table/layer_tree_table.html":{"ref":"case/table/layer_tree_table.html","tf":0.00510204081632653},"detailed/table/bi.preview_table.html":{"ref":"detailed/table/bi.preview_table.html","tf":0.006756756756756757},"detailed/table/bi.responsive_table.html":{"ref":"detailed/table/bi.responsive_table.html","tf":0.005263157894736842},"detailed/table/bi.excel_table.html":{"ref":"detailed/table/bi.excel_table.html","tf":0.0055248618784530384},"detailed/table/bi.page_table.html":{"ref":"detailed/table/bi.page_table.html","tf":0.004651162790697674}}}}}}}}}}}}}},"l":{"docs":{},"a":{"docs":{},"u":{"docs":{"case/list/list.select.html":{"ref":"case/list/list.select.html","tf":0.009433962264150943},"case/loader/lazy_loader.html":{"ref":"case/loader/lazy_loader.html","tf":0.01694915254237288},"case/loader/list_loader.html":{"ref":"case/loader/list_loader.html","tf":0.010752688172043012},"case/loader/sort_list.html":{"ref":"case/loader/sort_list.html","tf":0.010752688172043012},"case/trigger/editor_trigger.html":{"ref":"case/trigger/editor_trigger.html","tf":0.02},"case/trigger/text_trigger.html":{"ref":"case/trigger/text_trigger.html","tf":0.05263157894736842},"case/calendar.html":{"ref":"case/calendar.html","tf":0.013888888888888888}}}}},"p":{"docs":{},"a":{"docs":{},"g":{"docs":{"case/pager/direction_pager.html":{"ref":"case/pager/direction_pager.html","tf":0.00819672131147541},"detailed/table/bi.page_table.html":{"ref":"detailed/table/bi.page_table.html","tf":0.004651162790697674}}}}}},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},"b":{"docs":{},"u":{"docs":{},"t":{"docs":{},"t":{"docs":{},"o":{"docs":{},"n":{"docs":{"core/abstract/button_group.html":{"ref":"core/abstract/button_group.html","tf":0.007936507936507936},"core/abstract/button_tree.html":{"ref":"core/abstract/button_tree.html","tf":0.014925373134328358},"core/abstract/custom_tree.html":{"ref":"core/abstract/custom_tree.html","tf":0.007194244604316547},"core/combination/loader.html":{"ref":"core/combination/loader.html","tf":0.006289308176100629},"case/layer/layer_panel.html":{"ref":"case/layer/layer_panel.html","tf":0.010752688172043012},"case/layer/pane_list.html":{"ref":"case/layer/pane_list.html","tf":0.006802721088435374},"case/list/list.select.html":{"ref":"case/list/list.select.html","tf":0.009433962264150943},"case/loader/lazy_loader.html":{"ref":"case/loader/lazy_loader.html","tf":0.01694915254237288},"case/loader/list_loader.html":{"ref":"case/loader/list_loader.html","tf":0.010752688172043012},"case/loader/sort_list.html":{"ref":"case/loader/sort_list.html","tf":0.010752688172043012}}}}}}}},"l":{"docs":{},"e":{"docs":{},"a":{"docs":{},"v":{"docs":{"core/abstract/button_group.html":{"ref":"core/abstract/button_group.html","tf":0.007936507936507936},"core/abstract/button_tree.html":{"ref":"core/abstract/button_tree.html","tf":0.014925373134328358},"core/abstract/custom_tree.html":{"ref":"core/abstract/custom_tree.html","tf":0.007194244604316547},"core/combination/bi.expander.html":{"ref":"core/combination/bi.expander.html","tf":0.005494505494505495},"core/combination/loader.html":{"ref":"core/combination/loader.html","tf":0.006289308176100629},"core/combination/switcher.html":{"ref":"core/combination/switcher.html","tf":0.00625},"case/layer/layer_panel.html":{"ref":"case/layer/layer_panel.html","tf":0.010752688172043012},"case/layer/pane_list.html":{"ref":"case/layer/pane_list.html","tf":0.006802721088435374},"case/list/list.select.html":{"ref":"case/list/list.select.html","tf":0.009433962264150943},"case/loader/lazy_loader.html":{"ref":"case/loader/lazy_loader.html","tf":0.01694915254237288},"case/loader/list_loader.html":{"ref":"case/loader/list_loader.html","tf":0.010752688172043012},"case/loader/sort_list.html":{"ref":"case/loader/sort_list.html","tf":0.010752688172043012},"case/tree/level_tree.html":{"ref":"case/tree/level_tree.html","tf":0.017857142857142856}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"x":{"docs":{},"b":{"docs":{},"y":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{"core/abstract/button_group.html":{"ref":"core/abstract/button_group.html","tf":0.007936507936507936},"core/abstract/button_tree.html":{"ref":"core/abstract/button_tree.html","tf":0.014925373134328358},"core/combination/loader.html":{"ref":"core/combination/loader.html","tf":0.006289308176100629},"case/layer/layer_panel.html":{"ref":"case/layer/layer_panel.html","tf":0.010752688172043012},"case/layer/pane_list.html":{"ref":"case/layer/pane_list.html","tf":0.006802721088435374},"case/list/list.select.html":{"ref":"case/list/list.select.html","tf":0.009433962264150943},"case/loader/lazy_loader.html":{"ref":"case/loader/lazy_loader.html","tf":0.01694915254237288},"case/loader/list_loader.html":{"ref":"case/loader/list_loader.html","tf":0.010752688172043012},"case/loader/sort_list.html":{"ref":"case/loader/sort_list.html","tf":0.010752688172043012}}}}}}}}}}}},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"s":{"docs":{},":":{"docs":{"core/combination/searcher.html":{"ref":"core/combination/searcher.html","tf":0.004608294930875576}}}}}}},"m":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"h":{"docs":{},"e":{"docs":{},"i":{"docs":{},"g":{"docs":{},"h":{"docs":{},"t":{"docs":{"base/button/image_button.html":{"ref":"base/button/image_button.html","tf":0.014925373134328358}}}}}}}},"w":{"docs":{},"i":{"docs":{},"d":{"docs":{},"t":{"docs":{},"h":{"docs":{"base/button/image_button.html":{"ref":"base/button/image_button.html","tf":0.014925373134328358}}}}}}}}}}}},"n":{"docs":{},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{},"b":{"docs":{},"y":{"docs":{},"i":{"docs":{},"d":{"docs":{"core/abstract/button_group.html":{"ref":"core/abstract/button_group.html","tf":0.007936507936507936},"core/abstract/button_tree.html":{"ref":"core/abstract/button_tree.html","tf":0.014925373134328358},"core/abstract/custom_tree.html":{"ref":"core/abstract/custom_tree.html","tf":0.007194244604316547},"core/combination/bi.expander.html":{"ref":"core/combination/bi.expander.html","tf":0.005494505494505495},"core/combination/loader.html":{"ref":"core/combination/loader.html","tf":0.006289308176100629},"core/combination/switcher.html":{"ref":"core/combination/switcher.html","tf":0.00625},"case/layer/layer_panel.html":{"ref":"case/layer/layer_panel.html","tf":0.010752688172043012},"case/layer/pane_list.html":{"ref":"case/layer/pane_list.html","tf":0.006802721088435374},"case/list/list.select.html":{"ref":"case/list/list.select.html","tf":0.009433962264150943},"case/loader/lazy_loader.html":{"ref":"case/loader/lazy_loader.html","tf":0.01694915254237288},"case/loader/list_loader.html":{"ref":"case/loader/list_loader.html","tf":0.010752688172043012},"case/loader/sort_list.html":{"ref":"case/loader/sort_list.html","tf":0.010752688172043012},"case/tree/level_tree.html":{"ref":"case/tree/level_tree.html","tf":0.017857142857142856}}}},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{"core/abstract/button_group.html":{"ref":"core/abstract/button_group.html","tf":0.007936507936507936},"core/abstract/button_tree.html":{"ref":"core/abstract/button_tree.html","tf":0.014925373134328358},"core/abstract/custom_tree.html":{"ref":"core/abstract/custom_tree.html","tf":0.007194244604316547},"core/combination/bi.expander.html":{"ref":"core/combination/bi.expander.html","tf":0.005494505494505495},"core/combination/loader.html":{"ref":"core/combination/loader.html","tf":0.006289308176100629},"core/combination/switcher.html":{"ref":"core/combination/switcher.html","tf":0.00625},"case/layer/layer_panel.html":{"ref":"case/layer/layer_panel.html","tf":0.010752688172043012},"case/layer/pane_list.html":{"ref":"case/layer/pane_list.html","tf":0.006802721088435374},"case/list/list.select.html":{"ref":"case/list/list.select.html","tf":0.009433962264150943},"case/loader/lazy_loader.html":{"ref":"case/loader/lazy_loader.html","tf":0.01694915254237288},"case/loader/list_loader.html":{"ref":"case/loader/list_loader.html","tf":0.010752688172043012},"case/loader/sort_list.html":{"ref":"case/loader/sort_list.html","tf":0.010752688172043012},"case/tree/level_tree.html":{"ref":"case/tree/level_tree.html","tf":0.017857142857142856}}}}}}}}}},"t":{"docs":{},"s":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},"b":{"docs":{},"u":{"docs":{},"t":{"docs":{},"t":{"docs":{},"o":{"docs":{},"n":{"docs":{"core/abstract/button_group.html":{"ref":"core/abstract/button_group.html","tf":0.007936507936507936},"core/abstract/button_tree.html":{"ref":"core/abstract/button_tree.html","tf":0.014925373134328358},"core/combination/loader.html":{"ref":"core/combination/loader.html","tf":0.006289308176100629},"case/layer/layer_panel.html":{"ref":"case/layer/layer_panel.html","tf":0.010752688172043012},"case/layer/pane_list.html":{"ref":"case/layer/pane_list.html","tf":0.006802721088435374},"case/list/list.select.html":{"ref":"case/list/list.select.html","tf":0.009433962264150943},"case/loader/lazy_loader.html":{"ref":"case/loader/lazy_loader.html","tf":0.01694915254237288},"case/loader/list_loader.html":{"ref":"case/loader/list_loader.html","tf":0.010752688172043012},"case/loader/sort_list.html":{"ref":"case/loader/sort_list.html","tf":0.010752688172043012}}}}}}}},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{"core/abstract/button_group.html":{"ref":"core/abstract/button_group.html","tf":0.007936507936507936},"core/abstract/button_tree.html":{"ref":"core/abstract/button_tree.html","tf":0.014925373134328358},"core/combination/loader.html":{"ref":"core/combination/loader.html","tf":0.006289308176100629},"case/layer/layer_panel.html":{"ref":"case/layer/layer_panel.html","tf":0.010752688172043012},"case/layer/pane_list.html":{"ref":"case/layer/pane_list.html","tf":0.006802721088435374},"case/list/list.select.html":{"ref":"case/list/list.select.html","tf":0.009433962264150943},"case/loader/lazy_loader.html":{"ref":"case/loader/lazy_loader.html","tf":0.01694915254237288},"case/loader/list_loader.html":{"ref":"case/loader/list_loader.html","tf":0.010752688172043012},"case/loader/sort_list.html":{"ref":"case/loader/sort_list.html","tf":0.010752688172043012}}}}}}}}}}}}}}}},"a":{"docs":{},"m":{"docs":{"core/widget.html":{"ref":"core/widget.html","tf":0.00510204081632653}}}}},"s":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"core/combination/navigation.html":{"ref":"core/combination/navigation.html","tf":0.007194244604316547},"core/combination/tab.html":{"ref":"core/combination/tab.html","tf":0.00684931506849315},"detailed/tree/bi.switch_tree.html":{"ref":"detailed/tree/bi.switch_tree.html","tf":0.013157894736842105}},"e":{"docs":{},"d":{"docs":{},"b":{"docs":{},"u":{"docs":{},"t":{"docs":{},"t":{"docs":{},"o":{"docs":{},"n":{"docs":{"core/abstract/button_group.html":{"ref":"core/abstract/button_group.html","tf":0.007936507936507936},"core/abstract/button_tree.html":{"ref":"core/abstract/button_tree.html","tf":0.014925373134328358},"core/combination/loader.html":{"ref":"core/combination/loader.html","tf":0.006289308176100629},"case/layer/layer_panel.html":{"ref":"case/layer/layer_panel.html","tf":0.010752688172043012},"case/layer/pane_list.html":{"ref":"case/layer/pane_list.html","tf":0.006802721088435374},"case/list/list.select.html":{"ref":"case/list/list.select.html","tf":0.009433962264150943},"case/loader/lazy_loader.html":{"ref":"case/loader/lazy_loader.html","tf":0.01694915254237288},"case/loader/list_loader.html":{"ref":"case/loader/list_loader.html","tf":0.010752688172043012},"case/loader/sort_list.html":{"ref":"case/loader/sort_list.html","tf":0.010752688172043012}}}}}}}},"c":{"docs":{},"a":{"docs":{},"r":{"docs":{},"d":{"docs":{"core/combination/navigation.html":{"ref":"core/combination/navigation.html","tf":0.007194244604316547}}}}}},"t":{"docs":{},"a":{"docs":{},"b":{"docs":{"core/combination/tab.html":{"ref":"core/combination/tab.html","tf":0.00684931506849315}}}}},"i":{"docs":{},"d":{"docs":{"detailed/file_manager.html":{"ref":"detailed/file_manager.html","tf":0.023255813953488372}}}},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{},"e":{"docs":{},"(":{"docs":{},")":{"docs":{"detailed/file_manager.html":{"ref":"detailed/file_manager.html","tf":0.023255813953488372}}}}}}}}}}}}}}}},"c":{"docs":{},"r":{"docs":{},"o":{"docs":{},"l":{"docs":{},"l":{"docs":{},"l":{"docs":{},"e":{"docs":{},"f":{"docs":{},"t":{"docs":{"core/abstract/grid_view.html":{"ref":"core/abstract/grid_view.html","tf":0.00641025641025641},"core/abstract/collection_view.html":{"ref":"core/abstract/collection_view.html","tf":0.0070921985815602835}}}}}},"t":{"docs":{},"o":{"docs":{},"p":{"docs":{"core/abstract/grid_view.html":{"ref":"core/abstract/grid_view.html","tf":0.00641025641025641},"core/abstract/collection_view.html":{"ref":"core/abstract/collection_view.html","tf":0.0070921985815602835}}}}},"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":{"base/table/table_view.html":{"ref":"base/table/table_view.html","tf":0.006289308176100629},"base/table/collection_table.html":{"ref":"base/table/collection_table.html","tf":0.006535947712418301},"detailed/table/bi.preview_table.html":{"ref":"detailed/table/bi.preview_table.html","tf":0.006756756756756757},"detailed/table/bi.responsive_table.html":{"ref":"detailed/table/bi.responsive_table.html","tf":0.005263157894736842},"detailed/table/bi.excel_table.html":{"ref":"detailed/table/bi.excel_table.html","tf":0.0055248618784530384}}}}}}}}},"r":{"docs":{},"o":{"docs":{},"w":{"docs":{},"s":{"docs":{"base/table/table_view.html":{"ref":"base/table/table_view.html","tf":0.006289308176100629},"detailed/table/bi.preview_table.html":{"ref":"detailed/table/bi.preview_table.html","tf":0.006756756756756757},"detailed/table/bi.responsive_table.html":{"ref":"detailed/table/bi.responsive_table.html","tf":0.005263157894736842},"detailed/table/bi.excel_table.html":{"ref":"detailed/table/bi.excel_table.html","tf":0.0055248618784530384}}}}}}}}}}}}}}}}},"r":{"docs":{},"c":{"docs":{"base/button/image_button.html":{"ref":"base/button/image_button.html","tf":0.014925373134328358}}}},"t":{"docs":{},"y":{"docs":{},"l":{"docs":{"base/editor/code_editor.html":{"ref":"base/editor/code_editor.html","tf":0.012658227848101266},"base/editor/textarea_editor.html":{"ref":"base/editor/textarea_editor.html","tf":0.021739130434782608}}}},"a":{"docs":{},"t":{"docs":{"case/editor/shelter_editor.html":{"ref":"case/editor/shelter_editor.html","tf":0.0051813471502590676},"case/editor/sign_editor.html":{"ref":"case/editor/sign_editor.html","tf":0.005494505494505495},"case/editor/sign_initial_editor.html":{"ref":"case/editor/sign_initial_editor.html","tf":0.005154639175257732},"case/editor/state_editor.html":{"ref":"case/editor/state_editor.html","tf":0.005747126436781609}}}}}},"m":{"docs":{},"a":{"docs":{},"x":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"o":{"docs":{},"l":{"docs":{},"l":{"docs":{},"l":{"docs":{},"e":{"docs":{},"f":{"docs":{},"t":{"docs":{"core/abstract/grid_view.html":{"ref":"core/abstract/grid_view.html","tf":0.00641025641025641},"core/abstract/collection_view.html":{"ref":"core/abstract/collection_view.html","tf":0.0070921985815602835}}}}}},"t":{"docs":{},"o":{"docs":{},"p":{"docs":{"core/abstract/grid_view.html":{"ref":"core/abstract/grid_view.html","tf":0.00641025641025641},"core/abstract/collection_view.html":{"ref":"core/abstract/collection_view.html","tf":0.0070921985815602835}}}}}}}}}}}}}},"p":{"docs":{},"o":{"docs":{},"p":{"docs":{},"u":{"docs":{},"p":{"docs":{},"p":{"docs":{},"o":{"docs":{},"s":{"docs":{},"i":{"docs":{},"t":{"docs":{"core/combination/bi.combo.html":{"ref":"core/combination/bi.combo.html","tf":0.004807692307692308}}}}}}}}}}}},"k":{"docs":{},"e":{"docs":{},"y":{"docs":{},"w":{"docs":{},"o":{"docs":{},"r":{"docs":{},"d":{"docs":{"core/combination/searcher.html":{"ref":"core/combination/searcher.html","tf":0.009216589861751152}}}}}}}}},"t":{"docs":{},"a":{"docs":{},"b":{"docs":{"core/combination/tab.html":{"ref":"core/combination/tab.html","tf":0.00684931506849315}}},"g":{"docs":{"core/widget.html":{"ref":"core/widget.html","tf":0.00510204081632653}}}},"e":{"docs":{},"x":{"docs":{},"t":{"docs":{"core/widget.html":{"ref":"core/widget.html","tf":0.00510204081632653},"core/basic_button.html":{"ref":"core/basic_button.html","tf":0.007936507936507936},"base/label.html":{"ref":"base/label.html","tf":0.006711409395973154},"case/combo/bubble_combo.html":{"ref":"case/combo/bubble_combo.html","tf":0.005780346820809248}}}}},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{"core/single.html":{"ref":"core/single.html","tf":0.013888888888888888}}}}}},"t":{"docs":{},"l":{"docs":{"core/single.html":{"ref":"core/single.html","tf":0.013888888888888888}}}}}},"h":{"docs":{},"e":{"docs":{},"i":{"docs":{},"g":{"docs":{},"h":{"docs":{},"t":{"docs":{"core/widget.html":{"ref":"core/widget.html","tf":0.00510204081632653}}}}}}},"p":{"docs":{},"a":{"docs":{},"g":{"docs":{"case/pager/direction_pager.html":{"ref":"case/pager/direction_pager.html","tf":0.00819672131147541},"detailed/table/bi.page_table.html":{"ref":"detailed/table/bi.page_table.html","tf":0.004651162790697674}}}}}},"w":{"docs":{},"i":{"docs":{},"d":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"b":{"docs":{},"y":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"core/widget.html":{"ref":"core/widget.html","tf":0.00510204081632653}}}}}}}}}},"t":{"docs":{},"h":{"docs":{"core/widget.html":{"ref":"core/widget.html","tf":0.00510204081632653}}}}}},"a":{"docs":{},"r":{"docs":{},"n":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"t":{"docs":{},"i":{"docs":{},"t":{"docs":{},"l":{"docs":{"core/single.html":{"ref":"core/single.html","tf":0.013888888888888888}}}}}}}}}}}}},"e":{"docs":{},"r":{"docs":{},"r":{"docs":{},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{},"e":{"docs":{},"x":{"docs":{},"t":{"docs":{"base/editor/editor.html":{"ref":"base/editor/editor.html","tf":0.005405405405405406},"case/editor/shelter_editor.html":{"ref":"case/editor/shelter_editor.html","tf":0.0051813471502590676},"case/editor/sign_editor.html":{"ref":"case/editor/sign_editor.html","tf":0.005494505494505495},"case/editor/sign_initial_editor.html":{"ref":"case/editor/sign_initial_editor.html","tf":0.005154639175257732},"case/editor/state_editor.html":{"ref":"case/editor/state_editor.html","tf":0.005747126436781609}}}}}}}}}},"l":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"b":{"docs":{},"y":{"docs":{},"p":{"docs":{},"o":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{"base/svg.html":{"ref":"base/svg.html","tf":0.011235955056179775}}}}}}}}},"s":{"docs":{},"b":{"docs":{},"y":{"docs":{},"p":{"docs":{},"o":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{"base/svg.html":{"ref":"base/svg.html","tf":0.011235955056179775}}}}}}}}}}}}}}}}},"l":{"docs":{},"a":{"docs":{},"s":{"docs":{},"t":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"i":{"docs":{},"d":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{"base/editor/editor.html":{"ref":"base/editor/editor.html","tf":0.005405405405405406},"case/editor/shelter_editor.html":{"ref":"case/editor/shelter_editor.html","tf":0.0051813471502590676},"case/editor/sign_editor.html":{"ref":"case/editor/sign_editor.html","tf":0.005494505494505495},"case/editor/sign_initial_editor.html":{"ref":"case/editor/sign_initial_editor.html","tf":0.005154639175257732},"case/editor/state_editor.html":{"ref":"case/editor/state_editor.html","tf":0.005747126436781609}}}}}}}}}}}}}},"e":{"docs":{},"f":{"docs":{},"t":{"docs":{},"h":{"docs":{},"o":{"docs":{},"r":{"docs":{},"i":{"docs":{},"z":{"docs":{},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{},"a":{"docs":{},"l":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"o":{"docs":{},"l":{"docs":{"base/table/table_view.html":{"ref":"base/table/table_view.html","tf":0.006289308176100629},"base/table/grid_table.html":{"ref":"base/table/grid_table.html","tf":0.008771929824561403},"base/table/collection_table.html":{"ref":"base/table/collection_table.html","tf":0.006535947712418301},"base/table/resizable_table.html":{"ref":"base/table/resizable_table.html","tf":0.00625},"case/table/adaptive_table.html":{"ref":"case/table/adaptive_table.html","tf":0.006060606060606061},"case/table/tree_table.html":{"ref":"case/table/tree_table.html","tf":0.00510204081632653},"case/table/layer_tree_table.html":{"ref":"case/table/layer_tree_table.html","tf":0.00510204081632653},"detailed/table/bi.preview_table.html":{"ref":"detailed/table/bi.preview_table.html","tf":0.006756756756756757},"detailed/table/bi.responsive_table.html":{"ref":"detailed/table/bi.responsive_table.html","tf":0.005263157894736842},"detailed/table/bi.excel_table.html":{"ref":"detailed/table/bi.excel_table.html","tf":0.0055248618784530384},"detailed/table/bi.page_table.html":{"ref":"detailed/table/bi.page_table.html","tf":0.004651162790697674}}}}}}}}}}}}}}}}}}}}},"c":{"docs":{},"h":{"docs":{},"e":{"docs":{},"c":{"docs":{},"k":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"base/editor/formula_editor.html":{"ref":"base/editor/formula_editor.html","tf":0.010101010101010102}}}}}}}}},"a":{"docs":{},"l":{"docs":{},"c":{"docs":{},"u":{"docs":{},"l":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},"u":{"docs":{},"m":{"docs":{},"n":{"docs":{},"s":{"docs":{"base/table/table_view.html":{"ref":"base/table/table_view.html","tf":0.006289308176100629},"detailed/table/bi.preview_table.html":{"ref":"detailed/table/bi.preview_table.html","tf":0.006756756756756757},"detailed/table/bi.responsive_table.html":{"ref":"detailed/table/bi.responsive_table.html","tf":0.005263157894736842},"detailed/table/bi.excel_table.html":{"ref":"detailed/table/bi.excel_table.html","tf":0.0055248618784530384}}}}}}}}},"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":{"base/table/table_view.html":{"ref":"base/table/table_view.html","tf":0.006289308176100629},"detailed/table/bi.preview_table.html":{"ref":"detailed/table/bi.preview_table.html","tf":0.006756756756756757},"detailed/table/bi.responsive_table.html":{"ref":"detailed/table/bi.responsive_table.html","tf":0.005263157894736842},"detailed/table/bi.excel_table.html":{"ref":"detailed/table/bi.excel_table.html","tf":0.0055248618784530384}}}}}}}}},"r":{"docs":{},"o":{"docs":{},"w":{"docs":{},"s":{"docs":{"base/table/table_view.html":{"ref":"base/table/table_view.html","tf":0.006289308176100629},"detailed/table/bi.preview_table.html":{"ref":"detailed/table/bi.preview_table.html","tf":0.006756756756756757},"detailed/table/bi.responsive_table.html":{"ref":"detailed/table/bi.responsive_table.html","tf":0.005263157894736842},"detailed/table/bi.excel_table.html":{"ref":"detailed/table/bi.excel_table.html","tf":0.0055248618784530384}}}}}}}}}}}}}}}}}}}},"l":{"docs":{},"i":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"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":{"base/table/table_view.html":{"ref":"base/table/table_view.html","tf":0.006289308176100629},"detailed/table/bi.preview_table.html":{"ref":"detailed/table/bi.preview_table.html","tf":0.006756756756756757},"detailed/table/bi.responsive_table.html":{"ref":"detailed/table/bi.responsive_table.html","tf":0.005263157894736842},"detailed/table/bi.excel_table.html":{"ref":"detailed/table/bi.excel_table.html","tf":0.0055248618784530384}}}}}}}}}}}}}}}}}}}},"o":{"docs":{},"l":{"docs":{},"u":{"docs":{},"m":{"docs":{},"n":{"docs":{"base/table/table_view.html":{"ref":"base/table/table_view.html","tf":0.006289308176100629},"base/table/collection_table.html":{"ref":"base/table/collection_table.html","tf":0.006535947712418301},"detailed/table/bi.preview_table.html":{"ref":"detailed/table/bi.preview_table.html","tf":0.006756756756756757},"detailed/table/bi.responsive_table.html":{"ref":"detailed/table/bi.responsive_table.html","tf":0.005263157894736842},"detailed/table/bi.excel_table.html":{"ref":"detailed/table/bi.excel_table.html","tf":0.0055248618784530384}},"s":{"docs":{"base/table/table_view.html":{"ref":"base/table/table_view.html","tf":0.006289308176100629},"base/table/grid_table.html":{"ref":"base/table/grid_table.html","tf":0.008771929824561403},"base/table/collection_table.html":{"ref":"base/table/collection_table.html","tf":0.006535947712418301},"base/table/resizable_table.html":{"ref":"base/table/resizable_table.html","tf":0.00625},"case/table/adaptive_table.html":{"ref":"case/table/adaptive_table.html","tf":0.006060606060606061},"case/table/tree_table.html":{"ref":"case/table/tree_table.html","tf":0.00510204081632653},"case/table/layer_tree_table.html":{"ref":"case/table/layer_tree_table.html","tf":0.00510204081632653},"detailed/table/bi.preview_table.html":{"ref":"detailed/table/bi.preview_table.html","tf":0.006756756756756757},"detailed/table/bi.responsive_table.html":{"ref":"detailed/table/bi.responsive_table.html","tf":0.005263157894736842},"detailed/table/bi.excel_table.html":{"ref":"detailed/table/bi.excel_table.html","tf":0.0055248618784530384},"detailed/table/bi.page_table.html":{"ref":"detailed/table/bi.page_table.html","tf":0.004651162790697674}}}}}}}},"u":{"docs":{},"r":{"docs":{},"r":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"p":{"docs":{},"a":{"docs":{},"g":{"docs":{"base/pager.html":{"ref":"base/pager.html","tf":0.006666666666666667},"case/pager/all_count_pager.html":{"ref":"case/pager/all_count_pager.html","tf":0.014705882352941176}}}}}}}}}}}},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"m":{"docs":{},"u":{"docs":{},"l":{"docs":{},"a":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"base/editor/formula_editor.html":{"ref":"base/editor/formula_editor.html","tf":0.010101010101010102}}}}}}}}}},"n":{"docs":{},"t":{"docs":{"base/svg.html":{"ref":"base/svg.html","tf":0.011235955056179775}}}}}},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"d":{"docs":{},"f":{"docs":{},"i":{"docs":{},"e":{"docs":{},"l":{"docs":{},"d":{"docs":{"base/editor/formula_editor.html":{"ref":"base/editor/formula_editor.html","tf":0.010101010101010102}}}}}}}}}}},"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":{"base/table/table_view.html":{"ref":"base/table/table_view.html","tf":0.006289308176100629},"base/table/grid_table.html":{"ref":"base/table/grid_table.html","tf":0.008771929824561403},"base/table/collection_table.html":{"ref":"base/table/collection_table.html","tf":0.006535947712418301},"base/table/resizable_table.html":{"ref":"base/table/resizable_table.html","tf":0.00625},"case/table/adaptive_table.html":{"ref":"case/table/adaptive_table.html","tf":0.006060606060606061},"case/table/tree_table.html":{"ref":"case/table/tree_table.html","tf":0.00510204081632653},"case/table/layer_tree_table.html":{"ref":"case/table/layer_tree_table.html","tf":0.00510204081632653},"detailed/table/bi.preview_table.html":{"ref":"detailed/table/bi.preview_table.html","tf":0.006756756756756757},"detailed/table/bi.responsive_table.html":{"ref":"detailed/table/bi.responsive_table.html","tf":0.005263157894736842},"detailed/table/bi.excel_table.html":{"ref":"detailed/table/bi.excel_table.html","tf":0.0055248618784530384},"detailed/table/bi.page_table.html":{"ref":"detailed/table/bi.page_table.html","tf":0.004651162790697674}}}}}}}}},"s":{"docs":{"base/table/grid_table.html":{"ref":"base/table/grid_table.html","tf":0.008771929824561403}}}}}}}},"i":{"docs":{},"g":{"docs":{},"h":{"docs":{},"t":{"docs":{},"h":{"docs":{},"o":{"docs":{},"r":{"docs":{},"i":{"docs":{},"z":{"docs":{},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{},"a":{"docs":{},"l":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"o":{"docs":{},"l":{"docs":{"base/table/table_view.html":{"ref":"base/table/table_view.html","tf":0.006289308176100629},"base/table/grid_table.html":{"ref":"base/table/grid_table.html","tf":0.008771929824561403},"base/table/collection_table.html":{"ref":"base/table/collection_table.html","tf":0.006535947712418301},"base/table/resizable_table.html":{"ref":"base/table/resizable_table.html","tf":0.00625},"case/table/adaptive_table.html":{"ref":"case/table/adaptive_table.html","tf":0.006060606060606061},"case/table/tree_table.html":{"ref":"case/table/tree_table.html","tf":0.00510204081632653},"case/table/layer_tree_table.html":{"ref":"case/table/layer_tree_table.html","tf":0.00510204081632653},"detailed/table/bi.preview_table.html":{"ref":"detailed/table/bi.preview_table.html","tf":0.006756756756756757},"detailed/table/bi.responsive_table.html":{"ref":"detailed/table/bi.responsive_table.html","tf":0.005263157894736842},"detailed/table/bi.excel_table.html":{"ref":"detailed/table/bi.excel_table.html","tf":0.0055248618784530384},"detailed/table/bi.page_table.html":{"ref":"detailed/table/bi.page_table.html","tf":0.004651162790697674}}}}}}}}}}}}}}}}}}}}}},"b":{"docs":{},"y":{"docs":{},"i":{"docs":{},"d":{"docs":{"base/svg.html":{"ref":"base/svg.html","tf":0.011235955056179775}}}}}}}},"r":{"docs":{},"i":{"docs":{},"d":{"docs":{"core/layout/grid.html":{"ref":"core/layout/grid.html","tf":10}},"_":{"docs":{},"v":{"docs":{},"i":{"docs":{},"e":{"docs":{},"w":{"docs":{"core/abstract/grid_view.html":{"ref":"core/abstract/grid_view.html","tf":10}}}}}},"t":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{"base/table/grid_table.html":{"ref":"base/table/grid_table.html","tf":10}}}}}}}}},"o":{"docs":{},"u":{"docs":{},"p":{"docs":{"base/pager.html":{"ref":"base/pager.html","tf":0.006666666666666667}},"_":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"b":{"docs":{},"o":{"docs":{"core/combination/group_combo.html":{"ref":"core/combination/group_combo.html","tf":10}}}}}}}},"s":{"docs":{},":":{"docs":{"base/pager.html":{"ref":"base/pager.html","tf":0.006666666666666667}}}}}}},"a":{"docs":{},"d":{"docs":{},"i":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"base/canvas.html":{"ref":"base/canvas.html","tf":0.016666666666666666}}}}}}}}}},"h":{"docs":{"case/list/list.select.html":{"ref":"case/list/list.select.html","tf":0.009433962264150943},"case/loader/list_loader.html":{"ref":"case/loader/list_loader.html","tf":0.010752688172043012},"case/loader/sort_list.html":{"ref":"case/loader/sort_list.html","tf":0.010752688172043012}},"t":{"docs":{},"t":{"docs":{},"p":{"docs":{},":":{"docs":{},"/":{"docs":{},"/":{"docs":{},"f":{"docs":{},"a":{"docs":{},"n":{"docs":{},"r":{"docs":{},"u":{"docs":{},"a":{"docs":{},"n":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},".":{"docs":{},"m":{"docs":{},"e":{"docs":{},"/":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"e":{"docs":{},"u":{"docs":{},"i":{"docs":{"./":{"ref":"./","tf":0.07692307692307693}},"/":{"docs":{},"d":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{},"/":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"x":{"docs":{},".":{"docs":{},"h":{"docs":{},"t":{"docs":{},"m":{"docs":{},"l":{"docs":{"./":{"ref":"./","tf":0.07692307692307693}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"w":{"docs":{},"w":{"docs":{},"w":{"docs":{},".":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"e":{"docs":{},"d":{"docs":{},"e":{"docs":{},"v":{"docs":{},"e":{"docs":{},"l":{"docs":{},"o":{"docs":{},"p":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"/":{"docs":{},"d":{"docs":{},"i":{"docs":{},"s":{"docs":{},"p":{"docs":{},"l":{"docs":{},"a":{"docs":{},"y":{"docs":{},"/":{"docs":{},"d":{"docs":{},"r":{"docs":{},"/":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"e":{"docs":{},"u":{"docs":{},"i":{"docs":{"./":{"ref":"./","tf":0.07692307692307693}}}}}}}}}}}}}}}}}}},"p":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"s":{"docs":{},"/":{"docs":{},"v":{"docs":{},"i":{"docs":{},"e":{"docs":{},"w":{"docs":{},"p":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},".":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"?":{"docs":{},"p":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"i":{"docs":{},"d":{"docs":{},"=":{"1":{"5":{"3":{"3":{"0":{"0":{"7":{"7":{"docs":{"START.html":{"ref":"START.html","tf":0.3333333333333333}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},":":{"docs":{},"/":{"docs":{},"/":{"docs":{},"f":{"docs":{},"a":{"docs":{},"n":{"docs":{},"r":{"docs":{},"u":{"docs":{},"a":{"docs":{},"n":{"docs":{},".":{"docs":{},"g":{"docs":{},"i":{"docs":{},"t":{"docs":{},"h":{"docs":{},"u":{"docs":{},"b":{"docs":{},".":{"docs":{},"i":{"docs":{},"o":{"docs":{},"/":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"e":{"docs":{},"u":{"docs":{},"i":{"docs":{"./":{"ref":"./","tf":0.07692307692307693}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"a":{"docs":{},"p":{"docs":{},"e":{"docs":{"core/layout/htape.html":{"ref":"core/layout/htape.html","tf":10}}}}},"m":{"docs":{},"l":{"docs":{},"标":{"docs":{},"签":{"docs":{"core/widget.html":{"ref":"core/widget.html","tf":0.00510204081632653}}}}}}},"e":{"docs":{},"i":{"docs":{},"g":{"docs":{},"h":{"docs":{},"t":{"docs":{"core/abstract/grid_view.html":{"ref":"core/abstract/grid_view.html","tf":0.01282051282051282},"core/abstract/collection_view.html":{"ref":"core/abstract/collection_view.html","tf":0.0070921985815602835},"core/combination/bi.combo.html":{"ref":"core/combination/bi.combo.html","tf":0.004807692307692308},"core/layer/layer_float_box.html":{"ref":"core/layer/layer_float_box.html","tf":0.012345679012345678},"core/layer/layer_popup.html":{"ref":"core/layer/layer_popup.html","tf":0.0058823529411764705},"core/widget.html":{"ref":"core/widget.html","tf":0.00510204081632653},"base/bubble.html":{"ref":"base/bubble.html","tf":0.023255813953488372},"base/toast.html":{"ref":"base/toast.html","tf":0.020833333333333332},"base/message.html":{"ref":"base/message.html","tf":0.02127659574468085},"base/button/button.html":{"ref":"base/button/button.html","tf":0.005681818181818182},"base/table/grid_table.html":{"ref":"base/table/grid_table.html","tf":0.008771929824561403},"base/table/collection_table.html":{"ref":"base/table/collection_table.html","tf":0.006535947712418301},"case/button/multi_select_item.html":{"ref":"case/button/multi_select_item.html","tf":0.017543859649122806},"case/button/single_select_item.html":{"ref":"case/button/single_select_item.html","tf":0.016129032258064516},"case/button/single_select_radio_item.html":{"ref":"case/button/single_select_radio_item.html","tf":0.016129032258064516},"case/editor/shelter_editor.html":{"ref":"case/editor/shelter_editor.html","tf":0.0051813471502590676},"case/editor/sign_editor.html":{"ref":"case/editor/sign_editor.html","tf":0.005494505494505495},"case/editor/sign_initial_editor.html":{"ref":"case/editor/sign_initial_editor.html","tf":0.005154639175257732},"case/editor/state_editor.html":{"ref":"case/editor/state_editor.html","tf":0.005747126436781609},"case/combo/icon_combo.html":{"ref":"case/combo/icon_combo.html","tf":0.007751937984496124},"case/combo/static_combo.html":{"ref":"case/combo/static_combo.html","tf":0.0125},"case/combo/text_value_combo.html":{"ref":"case/combo/text_value_combo.html","tf":0.013513513513513514},"case/combo/text_value_downlist_combo.html":{"ref":"case/combo/text_value_downlist_combo.html","tf":0.013513513513513514},"case/pager/all_count_pager.html":{"ref":"case/pager/all_count_pager.html","tf":0.014705882352941176},"case/pager/direction_pager.html":{"ref":"case/pager/direction_pager.html","tf":0.00819672131147541},"case/color_chooser_popup.html":{"ref":"case/color_chooser_popup.html","tf":0.029411764705882353},"case/segment.html":{"ref":"case/segment.html","tf":0.009345794392523364},"detailed/bi.button/tooltip.html":{"ref":"detailed/bi.button/tooltip.html","tf":0.011363636363636364},"detailed/bi.button/items.html":{"ref":"detailed/bi.button/items.html","tf":0.010638297872340425},"detailed/bi.button/node.html":{"ref":"detailed/bi.button/node.html","tf":0.009259259259259259},"detailed/bi.button/segment.html":{"ref":"detailed/bi.button/segment.html","tf":0.009345794392523364},"detailed/tree/bi.multi_tree_combo.html":{"ref":"detailed/tree/bi.multi_tree_combo.html","tf":0.010869565217391304},"detailed/text_input/bi.text_editor.html":{"ref":"detailed/text_input/bi.text_editor.html","tf":0.010309278350515464},"detailed/text_input/bi.search_editor.html":{"ref":"detailed/text_input/bi.search_editor.html","tf":0.010101010101010102},"detailed/text_input/bi.clear_editor.html":{"ref":"detailed/text_input/bi.clear_editor.html","tf":0.00980392156862745},"detailed/combo/single_tree_combo.html":{"ref":"detailed/combo/single_tree_combo.html","tf":0.01694915254237288},"detailed/combo/multilayer_single_tree_combo.html":{"ref":"detailed/combo/multilayer_single_tree_combo.html","tf":0.018867924528301886},"detailed/combo/select_tree_combo.html":{"ref":"detailed/combo/select_tree_combo.html","tf":0.02040816326530612},"detailed/combo/multilayer_select_tree_combo.html":{"ref":"detailed/combo/multilayer_select_tree_combo.html","tf":0.02040816326530612}},":":{"3":{"0":{"docs":{"core/layout/horizontal_float.html":{"ref":"core/layout/horizontal_float.html","tf":0.013888888888888888}}},"docs":{}},"5":{"0":{"docs":{},",":{"docs":{"core/abstract/button_tree.html":{"ref":"core/abstract/button_tree.html","tf":0.014925373134328358}}}},"docs":{}},"docs":{"core/layout/vertical.html":{"ref":"core/layout/vertical.html","tf":0.02564102564102564},"core/layout/horizontal.html":{"ref":"core/layout/horizontal.html","tf":0.021505376344086023},"core/layout/vtape.html":{"ref":"core/layout/vtape.html","tf":0.024},"core/layout/center_adapt.html":{"ref":"core/layout/center_adapt.html","tf":0.023529411764705882},"core/layout/vertical_adapt.html":{"ref":"core/layout/vertical_adapt.html","tf":0.022988505747126436},"core/layout/left_right_vertical_adapt.html":{"ref":"core/layout/left_right_vertical_adapt.html","tf":0.02197802197802198},"core/layout/flow.html":{"ref":"core/layout/flow.html","tf":0.03076923076923077},"core/layout/horizontal_adapt.html":{"ref":"core/layout/horizontal_adapt.html","tf":0.021739130434782608},"core/layout/horizontal_auto.html":{"ref":"core/layout/horizontal_auto.html","tf":0.024691358024691357},"core/layout/float_center.html":{"ref":"core/layout/float_center.html","tf":0.012658227848101266},"core/layout/border.html":{"ref":"core/layout/border.html","tf":0.025974025974025976},"core/abstract/button_group.html":{"ref":"core/abstract/button_group.html","tf":0.007936507936507936},"core/abstract/virtual_group.html":{"ref":"core/abstract/virtual_group.html","tf":0.014492753623188406},"core/abstract/custom_tree.html":{"ref":"core/abstract/custom_tree.html","tf":0.02158273381294964},"core/abstract/grid_view.html":{"ref":"core/abstract/grid_view.html","tf":0.00641025641025641},"core/abstract/collection_view.html":{"ref":"core/abstract/collection_view.html","tf":0.014184397163120567},"core/abstract/virtual_list.html":{"ref":"core/abstract/virtual_list.html","tf":0.0125},"core/combination/bi.combo.html":{"ref":"core/combination/bi.combo.html","tf":0.004807692307692308},"core/combination/bi.expander.html":{"ref":"core/combination/bi.expander.html","tf":0.016483516483516484},"core/combination/group_combo.html":{"ref":"core/combination/group_combo.html","tf":0.015748031496062992},"core/combination/loader.html":{"ref":"core/combination/loader.html","tf":0.006289308176100629},"core/combination/navigation.html":{"ref":"core/combination/navigation.html","tf":0.007194244604316547},"core/combination/switcher.html":{"ref":"core/combination/switcher.html","tf":0.00625},"core/combination/tab.html":{"ref":"core/combination/tab.html","tf":0.00684931506849315},"core/layer/layer_float_box.html":{"ref":"core/layer/layer_float_box.html","tf":0.012345679012345678},"base/bubble.html":{"ref":"base/bubble.html","tf":0.023255813953488372},"base/toast.html":{"ref":"base/toast.html","tf":0.020833333333333332},"base/button/button.html":{"ref":"base/button/button.html","tf":0.005681818181818182},"base/button/text_button.html":{"ref":"base/button/text_button.html","tf":0.009433962264150943},"base/button/icon_button.html":{"ref":"base/button/icon_button.html","tf":0.02564102564102564},"base/button/image_button.html":{"ref":"base/button/image_button.html","tf":0.014925373134328358},"base/editor/editor.html":{"ref":"base/editor/editor.html","tf":0.005405405405405406},"base/editor/code_editor.html":{"ref":"base/editor/code_editor.html","tf":0.012658227848101266},"base/editor/multifile_editor.html":{"ref":"base/editor/multifile_editor.html","tf":0.015384615384615385},"base/editor/textarea_editor.html":{"ref":"base/editor/textarea_editor.html","tf":0.021739130434782608},"base/editor/formula_editor.html":{"ref":"base/editor/formula_editor.html","tf":0.010101010101010102},"base/table/grid_table.html":{"ref":"base/table/grid_table.html","tf":0.008771929824561403},"base/pager.html":{"ref":"base/pager.html","tf":0.006666666666666667},"base/svg.html":{"ref":"base/svg.html","tf":0.011235955056179775},"base/canvas.html":{"ref":"base/canvas.html","tf":0.016666666666666666},"case/button/multi_select_item.html":{"ref":"case/button/multi_select_item.html","tf":0.017543859649122806},"case/button/single_select_item.html":{"ref":"case/button/single_select_item.html","tf":0.016129032258064516},"case/button/single_select_radio_item.html":{"ref":"case/button/single_select_radio_item.html","tf":0.016129032258064516},"case/combo/bubble_combo.html":{"ref":"case/combo/bubble_combo.html","tf":0.011560693641618497},"case/table/adaptive_table.html":{"ref":"case/table/adaptive_table.html","tf":0.012121212121212121},"case/table/tree_table.html":{"ref":"case/table/tree_table.html","tf":0.01020408163265306},"case/table/layer_tree_table.html":{"ref":"case/table/layer_tree_table.html","tf":0.01020408163265306},"case/pager/all_count_pager.html":{"ref":"case/pager/all_count_pager.html","tf":0.014705882352941176},"case/pager/direction_pager.html":{"ref":"case/pager/direction_pager.html","tf":0.00819672131147541},"case/clipboard.html":{"ref":"case/clipboard.html","tf":0.03125},"case/complex_canvas.html":{"ref":"case/complex_canvas.html","tf":0.020833333333333332},"case/color_chooser.html":{"ref":"case/color_chooser.html","tf":0.038461538461538464},"case/segment.html":{"ref":"case/segment.html","tf":0.009345794392523364},"detailed/bi.button/tooltip.html":{"ref":"detailed/bi.button/tooltip.html","tf":0.011363636363636364},"detailed/bi.button/items.html":{"ref":"detailed/bi.button/items.html","tf":0.02127659574468085},"detailed/bi.button/node.html":{"ref":"detailed/bi.button/node.html","tf":0.027777777777777776},"detailed/bi.button/segment.html":{"ref":"detailed/bi.button/segment.html","tf":0.009345794392523364},"detailed/table/bi.page_table.html":{"ref":"detailed/table/bi.page_table.html","tf":0.004651162790697674},"detailed/text_input/bi.text_editor.html":{"ref":"detailed/text_input/bi.text_editor.html","tf":0.010309278350515464},"detailed/down_list_combo.html":{"ref":"detailed/down_list_combo.html","tf":0.006578947368421052}}}}}}},"a":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{"base/table/table_view.html":{"ref":"base/table/table_view.html","tf":0.006289308176100629},"base/table/grid_table.html":{"ref":"base/table/grid_table.html","tf":0.017543859649122806},"base/table/resizable_table.html":{"ref":"base/table/resizable_table.html","tf":0.00625},"case/table/adaptive_table.html":{"ref":"case/table/adaptive_table.html","tf":0.006060606060606061},"case/table/tree_table.html":{"ref":"case/table/tree_table.html","tf":0.00510204081632653},"case/table/layer_tree_table.html":{"ref":"case/table/layer_tree_table.html","tf":0.00510204081632653},"detailed/table/bi.preview_table.html":{"ref":"detailed/table/bi.preview_table.html","tf":0.006756756756756757},"detailed/table/bi.responsive_table.html":{"ref":"detailed/table/bi.responsive_table.html","tf":0.005263157894736842},"detailed/table/bi.page_table.html":{"ref":"detailed/table/bi.page_table.html","tf":0.004651162790697674}},":":{"docs":{"base/table/table_view.html":{"ref":"base/table/table_view.html","tf":0.006289308176100629},"base/table/grid_table.html":{"ref":"base/table/grid_table.html","tf":0.008771929824561403},"case/table/adaptive_table.html":{"ref":"case/table/adaptive_table.html","tf":0.006060606060606061},"case/table/tree_table.html":{"ref":"case/table/tree_table.html","tf":0.00510204081632653},"case/table/layer_tree_table.html":{"ref":"case/table/layer_tree_table.html","tf":0.00510204081632653},"detailed/table/bi.preview_table.html":{"ref":"detailed/table/bi.preview_table.html","tf":0.006756756756756757},"detailed/table/bi.responsive_table.html":{"ref":"detailed/table/bi.responsive_table.html","tf":0.005263157894736842}}},"r":{"docs":{},"o":{"docs":{},"w":{"docs":{},"s":{"docs":{"base/table/table_view.html":{"ref":"base/table/table_view.html","tf":0.006289308176100629},"base/table/grid_table.html":{"ref":"base/table/grid_table.html","tf":0.008771929824561403},"base/table/collection_table.html":{"ref":"base/table/collection_table.html","tf":0.006535947712418301},"base/table/resizable_table.html":{"ref":"base/table/resizable_table.html","tf":0.00625},"case/table/adaptive_table.html":{"ref":"case/table/adaptive_table.html","tf":0.006060606060606061},"case/table/tree_table.html":{"ref":"case/table/tree_table.html","tf":0.00510204081632653},"case/table/layer_tree_table.html":{"ref":"case/table/layer_tree_table.html","tf":0.00510204081632653},"detailed/table/bi.preview_table.html":{"ref":"detailed/table/bi.preview_table.html","tf":0.006756756756756757},"detailed/table/bi.responsive_table.html":{"ref":"detailed/table/bi.responsive_table.html","tf":0.005263157894736842},"detailed/table/bi.excel_table.html":{"ref":"detailed/table/bi.excel_table.html","tf":0.0055248618784530384},"detailed/table/bi.page_table.html":{"ref":"detailed/table/bi.page_table.html","tf":0.004651162790697674}}}}}},",":{"docs":{"case/table/tree_table.html":{"ref":"case/table/tree_table.html","tf":0.00510204081632653},"case/table/layer_tree_table.html":{"ref":"case/table/layer_tree_table.html","tf":0.00510204081632653}}},"c":{"docs":{},"e":{"docs":{},"l":{"docs":{},"l":{"docs":{},"s":{"docs":{},"t":{"docs":{},"y":{"docs":{},"l":{"docs":{},"e":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"t":{"docs":{"case/table/tree_table.html":{"ref":"case/table/tree_table.html","tf":0.00510204081632653},"case/table/layer_tree_table.html":{"ref":"case/table/layer_tree_table.html","tf":0.00510204081632653},"detailed/table/bi.page_table.html":{"ref":"detailed/table/bi.page_table.html","tf":0.004651162790697674}}}}}}}}}}}}}}}}}}}},"g":{"docs":{},"a":{"docs":{},"p":{"docs":{"core/layout/vertical.html":{"ref":"core/layout/vertical.html","tf":0.01282051282051282},"core/layout/horizontal.html":{"ref":"core/layout/horizontal.html","tf":0.010752688172043012},"core/layout/htape.html":{"ref":"core/layout/htape.html","tf":0.008},"core/layout/vtape.html":{"ref":"core/layout/vtape.html","tf":0.008},"core/layout/center_adapt.html":{"ref":"core/layout/center_adapt.html","tf":0.011764705882352941},"core/layout/vertical_adapt.html":{"ref":"core/layout/vertical_adapt.html","tf":0.011494252873563218},"core/layout/flow.html":{"ref":"core/layout/flow.html","tf":0.007692307692307693},"core/layout/center.html":{"ref":"core/layout/center.html","tf":0.012658227848101266},"core/layout/horizontal_adapt.html":{"ref":"core/layout/horizontal_adapt.html","tf":0.010869565217391304},"core/layout/horizontal_auto.html":{"ref":"core/layout/horizontal_auto.html","tf":0.012345679012345678},"core/layout/horizontal_float.html":{"ref":"core/layout/horizontal_float.html","tf":0.013888888888888888},"core/layout/float_center.html":{"ref":"core/layout/float_center.html","tf":0.012658227848101266},"core/layout/table.html":{"ref":"core/layout/table.html","tf":0.012048192771084338},"core/layout/td.html":{"ref":"core/layout/td.html","tf":0.017857142857142856},"core/combination/searcher.html":{"ref":"core/combination/searcher.html","tf":0.004608294930875576},"core/layer/layer_popup.html":{"ref":"core/layer/layer_popup.html","tf":0.0058823529411764705},"base/label.html":{"ref":"base/label.html","tf":0.006711409395973154},"base/button/button.html":{"ref":"base/button/button.html","tf":0.005681818181818182},"base/button/text_button.html":{"ref":"base/button/text_button.html","tf":0.009433962264150943},"base/editor/editor.html":{"ref":"base/editor/editor.html","tf":0.005405405405405406},"case/button/single_select_item.html":{"ref":"case/button/single_select_item.html","tf":0.016129032258064516},"case/button/single_select_radio_item.html":{"ref":"case/button/single_select_radio_item.html","tf":0.016129032258064516},"case/editor/shelter_editor.html":{"ref":"case/editor/shelter_editor.html","tf":0.0051813471502590676},"case/editor/sign_editor.html":{"ref":"case/editor/sign_editor.html","tf":0.005494505494505495},"case/editor/sign_initial_editor.html":{"ref":"case/editor/sign_initial_editor.html","tf":0.005154639175257732},"case/editor/state_editor.html":{"ref":"case/editor/state_editor.html","tf":0.005747126436781609},"case/layer/pane_list.html":{"ref":"case/layer/pane_list.html","tf":0.006802721088435374},"case/segment.html":{"ref":"case/segment.html","tf":0.009345794392523364},"detailed/bi.button/tooltip.html":{"ref":"detailed/bi.button/tooltip.html","tf":0.011363636363636364},"detailed/bi.button/items.html":{"ref":"detailed/bi.button/items.html","tf":0.010638297872340425},"detailed/bi.button/node.html":{"ref":"detailed/bi.button/node.html","tf":0.009259259259259259},"detailed/bi.button/segment.html":{"ref":"detailed/bi.button/segment.html","tf":0.009345794392523364},"detailed/text_input/bi.text_editor.html":{"ref":"detailed/text_input/bi.text_editor.html","tf":0.010309278350515464},"detailed/text_input/bi.search_editor.html":{"ref":"detailed/text_input/bi.search_editor.html","tf":0.010101010101010102},"detailed/text_input/bi.clear_editor.html":{"ref":"detailed/text_input/bi.clear_editor.html","tf":0.00980392156862745}},":":{"docs":{"core/layout/center_adapt.html":{"ref":"core/layout/center_adapt.html","tf":0.011764705882352941},"core/layout/flow.html":{"ref":"core/layout/flow.html","tf":0.046153846153846156},"core/layout/center.html":{"ref":"core/layout/center.html","tf":0.012658227848101266},"core/layout/float_center.html":{"ref":"core/layout/float_center.html","tf":0.012658227848101266},"core/layout/table.html":{"ref":"core/layout/table.html","tf":0.012048192771084338},"core/abstract/custom_tree.html":{"ref":"core/abstract/custom_tree.html","tf":0.007194244604316547},"case/segment.html":{"ref":"case/segment.html","tf":0.009345794392523364},"detailed/bi.button/segment.html":{"ref":"detailed/bi.button/segment.html","tf":0.009345794392523364}}}}}},"o":{"docs":{},"r":{"docs":{},"i":{"docs":{},"z":{"docs":{},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{"core/layout/horizontal.html":{"ref":"core/layout/horizontal.html","tf":10},"case/pager/direction_pager.html":{"ref":"case/pager/direction_pager.html","tf":0.00819672131147541},"detailed/table/bi.page_table.html":{"ref":"detailed/table/bi.page_table.html","tf":0.009302325581395349}},"a":{"docs":{},"l":{"docs":{},"_":{"docs":{},"a":{"docs":{},"d":{"docs":{},"a":{"docs":{},"p":{"docs":{},"t":{"docs":{"core/layout/horizontal_adapt.html":{"ref":"core/layout/horizontal_adapt.html","tf":10}}}}}},"u":{"docs":{},"t":{"docs":{},"o":{"docs":{"core/layout/horizontal_auto.html":{"ref":"core/layout/horizontal_auto.html","tf":10}}}}}},"f":{"docs":{},"l":{"docs":{},"o":{"docs":{},"a":{"docs":{},"t":{"docs":{"core/layout/horizontal_float.html":{"ref":"core/layout/horizontal_float.html","tf":10}}}}}}}},"o":{"docs":{},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"c":{"docs":{},"a":{"docs":{},"n":{"docs":{},"s":{"docs":{"core/abstract/collection_view.html":{"ref":"core/abstract/collection_view.html","tf":0.0070921985815602835}}}}}}}}}}},":":{"docs":{"case/pager/direction_pager.html":{"ref":"case/pager/direction_pager.html","tf":0.00819672131147541}}}}}}}}}}},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{"core/basic_button.html":{"ref":"core/basic_button.html","tf":0.007936507936507936},"case/combo/bubble_combo.html":{"ref":"case/combo/bubble_combo.html","tf":0.005780346820809248},"detailed/down_list_combo.html":{"ref":"detailed/down_list_combo.html","tf":0.006578947368421052}},"\"":{"docs":{"core/combination/bi.combo.html":{"ref":"core/combination/bi.combo.html","tf":0.004807692307692308},"core/combination/bi.expander.html":{"ref":"core/combination/bi.expander.html","tf":0.005494505494505495},"core/combination/switcher.html":{"ref":"core/combination/switcher.html","tf":0.00625}}},"c":{"docs":{},"l":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{"core/combination/bi.combo.html":{"ref":"core/combination/bi.combo.html","tf":0.004807692307692308},"core/combination/bi.expander.html":{"ref":"core/combination/bi.expander.html","tf":0.005494505494505495},"core/combination/switcher.html":{"ref":"core/combination/switcher.html","tf":0.00625}}}}}}},"类":{"docs":{"core/combination/bi.combo.html":{"ref":"core/combination/bi.combo.html","tf":0.004807692307692308},"core/combination/bi.expander.html":{"ref":"core/combination/bi.expander.html","tf":0.005494505494505495},"core/combination/switcher.html":{"ref":"core/combination/switcher.html","tf":0.00625}}},"事":{"docs":{},"件":{"docs":{"core/basic_button.html":{"ref":"core/basic_button.html","tf":0.007936507936507936},"case/combo/bubble_combo.html":{"ref":"case/combo/bubble_combo.html","tf":0.005780346820809248}}}}}}},"l":{"docs":{},"l":{"docs":{},"o":{"docs":{},"w":{"docs":{"base/canvas.html":{"ref":"base/canvas.html","tf":0.016666666666666666}}}}}}},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{"core/layer/layer_float_box.html":{"ref":"core/layer/layer_float_box.html","tf":0.012345679012345678}},"c":{"docs":{},"h":{"docs":{},"e":{"docs":{},"c":{"docs":{},"k":{"docs":{"core/combination/bi.combo.html":{"ref":"core/combination/bi.combo.html","tf":0.004807692307692308}}}}}}},"v":{"docs":{},"i":{"docs":{},"e":{"docs":{},"w":{"docs":{"core/combination/bi.combo.html":{"ref":"core/combination/bi.combo.html","tf":0.004807692307692308},"core/combination/bi.expander.html":{"ref":"core/combination/bi.expander.html","tf":0.005494505494505495},"core/combination/switcher.html":{"ref":"core/combination/switcher.html","tf":0.00625},"case/combo/icon_combo.html":{"ref":"case/combo/icon_combo.html","tf":0.007751937984496124}}}}}}}}},"a":{"docs":{"core/combination/bi.expander.html":{"ref":"core/combination/bi.expander.html","tf":0.005494505494505495},"core/combination/group_combo.html":{"ref":"core/combination/group_combo.html","tf":0.007874015748031496},"base/button/icon_button.html":{"ref":"base/button/icon_button.html","tf":0.02564102564102564}},"s":{"docs":{},"n":{"docs":{},"e":{"docs":{},"x":{"docs":{},"t":{"docs":{"core/combination/loader.html":{"ref":"core/combination/loader.html","tf":0.012578616352201259},"base/pager.html":{"ref":"base/pager.html","tf":0.013333333333333334},"case/layer/layer_panel.html":{"ref":"case/layer/layer_panel.html","tf":0.010752688172043012},"case/layer/pane_list.html":{"ref":"case/layer/pane_list.html","tf":0.013605442176870748},"case/list/list.select.html":{"ref":"case/list/list.select.html","tf":0.009433962264150943},"case/loader/list_loader.html":{"ref":"case/loader/list_loader.html","tf":0.021505376344086023},"case/loader/sort_list.html":{"ref":"case/loader/sort_list.html","tf":0.021505376344086023},"case/pager/all_count_pager.html":{"ref":"case/pager/all_count_pager.html","tf":0.014705882352941176},"case/pager/direction_pager.html":{"ref":"case/pager/direction_pager.html","tf":0.00819672131147541},"detailed/table/bi.page_table.html":{"ref":"detailed/table/bi.page_table.html","tf":0.004651162790697674}},":":{"docs":{"core/combination/loader.html":{"ref":"core/combination/loader.html","tf":0.006289308176100629},"detailed/multi_select_combo.html":{"ref":"detailed/multi_select_combo.html","tf":0.04}}}}}}},"p":{"docs":{},"r":{"docs":{},"e":{"docs":{},"v":{"docs":{"core/combination/loader.html":{"ref":"core/combination/loader.html","tf":0.006289308176100629},"base/pager.html":{"ref":"base/pager.html","tf":0.013333333333333334},"case/layer/layer_panel.html":{"ref":"case/layer/layer_panel.html","tf":0.010752688172043012},"case/layer/pane_list.html":{"ref":"case/layer/pane_list.html","tf":0.006802721088435374},"case/list/list.select.html":{"ref":"case/list/list.select.html","tf":0.009433962264150943},"case/pager/all_count_pager.html":{"ref":"case/pager/all_count_pager.html","tf":0.014705882352941176},"case/pager/direction_pager.html":{"ref":"case/pager/direction_pager.html","tf":0.00819672131147541},"detailed/table/bi.page_table.html":{"ref":"detailed/table/bi.page_table.html","tf":0.004651162790697674}}}}}},"m":{"docs":{},"a":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{"core/combination/searcher.html":{"ref":"core/combination/searcher.html","tf":0.004608294930875576},"core/layer/layer_searcher.html":{"ref":"core/layer/layer_searcher.html","tf":0.009259259259259259},"core/pane.html":{"ref":"core/pane.html","tf":0.0196078431372549}}}}}}},"w":{"docs":{},"i":{"docs":{},"d":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{"core/widget.html":{"ref":"core/widget.html","tf":0.00510204081632653}}}}}}}},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"i":{"docs":{},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"o":{"docs":{},"l":{"docs":{"base/table/table_view.html":{"ref":"base/table/table_view.html","tf":0.006289308176100629},"detailed/table/bi.preview_table.html":{"ref":"detailed/table/bi.preview_table.html","tf":0.006756756756756757},"detailed/table/bi.responsive_table.html":{"ref":"detailed/table/bi.responsive_table.html","tf":0.005263157894736842},"detailed/table/bi.excel_table.html":{"ref":"detailed/table/bi.excel_table.html","tf":0.0055248618784530384}}}}}}}}}}}}}},"n":{"docs":{},"e":{"docs":{},"x":{"docs":{},"t":{"docs":{"case/pager/direction_pager.html":{"ref":"case/pager/direction_pager.html","tf":0.00819672131147541}}}}}},"p":{"docs":{},"r":{"docs":{},"e":{"docs":{},"v":{"docs":{"case/pager/direction_pager.html":{"ref":"case/pager/direction_pager.html","tf":0.00819672131147541}}}}}}},"h":{"docs":{},"n":{"docs":{},"e":{"docs":{},"x":{"docs":{},"t":{"docs":{"case/pager/direction_pager.html":{"ref":"case/pager/direction_pager.html","tf":0.00819672131147541}}}}}},"p":{"docs":{},"r":{"docs":{},"e":{"docs":{},"v":{"docs":{"case/pager/direction_pager.html":{"ref":"case/pager/direction_pager.html","tf":0.00819672131147541}}}}}}}},"n":{"docs":{},"d":{"docs":{},"l":{"docs":{"core/basic_button.html":{"ref":"core/basic_button.html","tf":0.007936507936507936},"case/combo/bubble_combo.html":{"ref":"case/combo/bubble_combo.html","tf":0.005780346820809248}},"e":{"docs":{},"r":{"docs":{"core/basic_button.html":{"ref":"core/basic_button.html","tf":0.007936507936507936},"base/message.html":{"ref":"base/message.html","tf":0.02127659574468085},"case/combo/bubble_combo.html":{"ref":"case/combo/bubble_combo.html","tf":0.005780346820809248}},":":{"docs":{"core/layer/layer_float_box.html":{"ref":"core/layer/layer_float_box.html","tf":0.012345679012345678},"detailed/bi.button/tooltip.html":{"ref":"detailed/bi.button/tooltip.html","tf":0.011363636363636364}}}}}},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{},"_":{"docs":{},"b":{"docs":{},"r":{"docs":{},"a":{"docs":{},"n":{"docs":{},"c":{"docs":{},"h":{"docs":{},"_":{"docs":{},"t":{"docs":{},"r":{"docs":{},"e":{"docs":{"case/tree/handstand_branch_tree.html":{"ref":"case/tree/handstand_branch_tree.html","tf":10}}}}}}}}}}}}}}}}}}}}}},"k":{"docs":{},"m":{"docs":{},"s":{"docs":{},":":{"docs":{"./":{"ref":"./","tf":0.07692307692307693},"START.html":{"ref":"START.html","tf":0.3333333333333333}}}}},"e":{"docs":{},"y":{"docs":{"base/editor/editor.html":{"ref":"base/editor/editor.html","tf":0.005405405405405406},"case/editor/shelter_editor.html":{"ref":"case/editor/shelter_editor.html","tf":0.0051813471502590676}},"w":{"docs":{},"o":{"docs":{},"r":{"docs":{},"d":{"docs":{"core/combination/searcher.html":{"ref":"core/combination/searcher.html","tf":0.004608294930875576},"core/layer/layer_searcher.html":{"ref":"core/layer/layer_searcher.html","tf":0.009259259259259259},"base/label.html":{"ref":"base/label.html","tf":0.006711409395973154}},"s":{"docs":{},":":{"docs":{"case/tree/simple_tree.html":{"ref":"case/tree/simple_tree.html","tf":0.022222222222222223}}}}}}}},",":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{"core/widget.html":{"ref":"core/widget.html","tf":0.00510204081632653},"base/pager.html":{"ref":"base/pager.html","tf":0.006666666666666667}}}}}}},"d":{"docs":{},"o":{"docs":{},"w":{"docs":{},"n":{"docs":{},"时":{"docs":{},"触":{"docs":{},"发":{"docs":{"base/editor/editor.html":{"ref":"base/editor/editor.html","tf":0.005405405405405406},"case/editor/shelter_editor.html":{"ref":"case/editor/shelter_editor.html","tf":0.0051813471502590676},"case/editor/sign_editor.html":{"ref":"case/editor/sign_editor.html","tf":0.005494505494505495},"case/editor/sign_initial_editor.html":{"ref":"case/editor/sign_initial_editor.html","tf":0.005154639175257732},"case/editor/state_editor.html":{"ref":"case/editor/state_editor.html","tf":0.005747126436781609}}}}}}}}},":":{"docs":{},"键":{"docs":{},",":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{},"e":{"docs":{},":":{"docs":{},"值":{"docs":{"base/table/resizable_table.html":{"ref":"base/table/resizable_table.html","tf":0.00625},"detailed/table/bi.preview_table.html":{"ref":"detailed/table/bi.preview_table.html","tf":0.006756756756756757},"detailed/table/bi.responsive_table.html":{"ref":"detailed/table/bi.responsive_table.html","tf":0.005263157894736842},"detailed/table/bi.excel_table.html":{"ref":"detailed/table/bi.excel_table.html","tf":0.0055248618784530384}}}}}}}}}}}},":":{"docs":{"case/table/adaptive_table.html":{"ref":"case/table/adaptive_table.html","tf":0.006060606060606061},"case/table/tree_table.html":{"ref":"case/table/tree_table.html","tf":0.00510204081632653},"case/table/layer_tree_table.html":{"ref":"case/table/layer_tree_table.html","tf":0.00510204081632653},"detailed/table/bi.page_table.html":{"ref":"detailed/table/bi.page_table.html","tf":0.004651162790697674}}}}}},"代":{"docs":{},"码":{"docs":{},"设":{"docs":{},"计":{"docs":{},"文":{"docs":{},"档":{"docs":{"./":{"ref":"./","tf":0.07692307692307693}}}}}},"文":{"docs":{},"本":{"docs":{},"框":{"docs":{},",":{"docs":{},"基":{"docs":{},"类":{"docs":{},"b":{"docs":{},"i":{"docs":{},".":{"docs":{},"s":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"l":{"docs":{"base/editor/code_editor.html":{"ref":"base/editor/code_editor.html","tf":0.012658227848101266}}}}}}}}}}}}}}}}}},"文":{"docs":{},"档":{"docs":{},"地":{"docs":{},"址":{"docs":{"./":{"ref":"./","tf":0.07692307692307693}}}}},"本":{"docs":{},"内":{"docs":{},"容":{"docs":{"base/label.html":{"ref":"base/label.html","tf":0.006711409395973154},"case/editor/sign_initial_editor.html":{"ref":"case/editor/sign_initial_editor.html","tf":0.005154639175257732},"case/combo/static_combo.html":{"ref":"case/combo/static_combo.html","tf":0.0125},"case/combo/text_value_combo.html":{"ref":"case/combo/text_value_combo.html","tf":0.013513513513513514},"case/combo/text_value_downlist_combo.html":{"ref":"case/combo/text_value_downlist_combo.html","tf":0.013513513513513514}}}},"对":{"docs":{},"齐":{"docs":{},"方":{"docs":{},"式":{"docs":{"base/label.html":{"ref":"base/label.html","tf":0.006711409395973154},"case/button/single_select_item.html":{"ref":"case/button/single_select_item.html","tf":0.016129032258064516},"case/button/single_select_radio_item.html":{"ref":"case/button/single_select_radio_item.html","tf":0.016129032258064516}}}}}},"标":{"docs":{},"签":{"docs":{"base/label.html":{"ref":"base/label.html","tf":0.006711409395973154}},"宽":{"docs":{},"度":{"docs":{"base/label.html":{"ref":"base/label.html","tf":0.013422818791946308}}}}},"红":{"docs":{"base/label.html":{"ref":"base/label.html","tf":0.006711409395973154},"base/button/button.html":{"ref":"base/button/button.html","tf":0.005681818181818182},"base/button/text_button.html":{"ref":"base/button/text_button.html","tf":0.009433962264150943},"case/editor/shelter_editor.html":{"ref":"case/editor/shelter_editor.html","tf":0.0051813471502590676},"case/editor/sign_editor.html":{"ref":"case/editor/sign_editor.html","tf":0.005494505494505495},"case/editor/sign_initial_editor.html":{"ref":"case/editor/sign_initial_editor.html","tf":0.005154639175257732},"case/editor/state_editor.html":{"ref":"case/editor/state_editor.html","tf":0.005747126436781609}}}},"高":{"docs":{},"亮":{"docs":{"base/label.html":{"ref":"base/label.html","tf":0.006711409395973154},"base/button/button.html":{"ref":"base/button/button.html","tf":0.005681818181818182},"base/button/text_button.html":{"ref":"base/button/text_button.html","tf":0.009433962264150943},"case/editor/shelter_editor.html":{"ref":"case/editor/shelter_editor.html","tf":0.0051813471502590676},"case/editor/sign_editor.html":{"ref":"case/editor/sign_editor.html","tf":0.005494505494505495},"case/editor/sign_initial_editor.html":{"ref":"case/editor/sign_initial_editor.html","tf":0.005154639175257732},"case/editor/state_editor.html":{"ref":"case/editor/state_editor.html","tf":0.005747126436781609}}}},"框":{"docs":{},",":{"docs":{},"基":{"docs":{},"类":{"docs":{},"b":{"docs":{},"i":{"docs":{},".":{"docs":{},"s":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"l":{"docs":{"base/editor/editor.html":{"ref":"base/editor/editor.html","tf":0.005405405405405406}}}}}}}}}}}}},"p":{"docs":{},"l":{"docs":{},"a":{"docs":{},"c":{"docs":{},"e":{"docs":{},"h":{"docs":{},"o":{"docs":{},"l":{"docs":{},"d":{"docs":{"base/editor/editor.html":{"ref":"base/editor/editor.html","tf":0.005405405405405406},"base/editor/code_editor.html":{"ref":"base/editor/code_editor.html","tf":0.012658227848101266},"base/editor/formula_editor.html":{"ref":"base/editor/formula_editor.html","tf":0.010101010101010102},"case/editor/shelter_editor.html":{"ref":"case/editor/shelter_editor.html","tf":0.0051813471502590676},"case/editor/sign_editor.html":{"ref":"case/editor/sign_editor.html","tf":0.005494505494505495},"case/editor/sign_initial_editor.html":{"ref":"case/editor/sign_initial_editor.html","tf":0.005154639175257732},"case/editor/state_editor.html":{"ref":"case/editor/state_editor.html","tf":0.005747126436781609},"detailed/text_input/bi.text_editor.html":{"ref":"detailed/text_input/bi.text_editor.html","tf":0.010309278350515464},"detailed/text_input/bi.search_editor.html":{"ref":"detailed/text_input/bi.search_editor.html","tf":0.010101010101010102},"detailed/text_input/bi.clear_editor.html":{"ref":"detailed/text_input/bi.clear_editor.html","tf":0.00980392156862745}}}}}}}}}}},"值":{"docs":{"base/editor/code_editor.html":{"ref":"base/editor/code_editor.html","tf":0.012658227848101266},"detailed/combo/single_tree_combo.html":{"ref":"detailed/combo/single_tree_combo.html","tf":0.01694915254237288},"detailed/combo/multilayer_single_tree_combo.html":{"ref":"detailed/combo/multilayer_single_tree_combo.html","tf":0.018867924528301886},"detailed/combo/select_tree_combo.html":{"ref":"detailed/combo/select_tree_combo.html","tf":0.02040816326530612},"detailed/combo/multilayer_select_tree_combo.html":{"ref":"detailed/combo/multilayer_select_tree_combo.html","tf":0.02040816326530612}},"是":{"docs":{},"否":{"docs":{},"有":{"docs":{},"效":{"docs":{"base/editor/editor.html":{"ref":"base/editor/editor.html","tf":0.005405405405405406},"case/editor/shelter_editor.html":{"ref":"case/editor/shelter_editor.html","tf":0.0051813471502590676},"case/editor/sign_editor.html":{"ref":"case/editor/sign_editor.html","tf":0.005494505494505495},"case/editor/sign_initial_editor.html":{"ref":"case/editor/sign_initial_editor.html","tf":0.005154639175257732},"case/editor/state_editor.html":{"ref":"case/editor/state_editor.html","tf":0.005747126436781609}}}}}}},"失":{"docs":{},"焦":{"docs":{"base/editor/editor.html":{"ref":"base/editor/editor.html","tf":0.005405405405405406},"base/editor/code_editor.html":{"ref":"base/editor/code_editor.html","tf":0.012658227848101266},"case/editor/shelter_editor.html":{"ref":"case/editor/shelter_editor.html","tf":0.0051813471502590676},"case/editor/sign_editor.html":{"ref":"case/editor/sign_editor.html","tf":0.005494505494505495},"case/editor/sign_initial_editor.html":{"ref":"case/editor/sign_initial_editor.html","tf":0.005154639175257732},"case/editor/state_editor.html":{"ref":"case/editor/state_editor.html","tf":0.005747126436781609}}}},"是":{"docs":{},"否":{"docs":{},"处":{"docs":{},"于":{"docs":{},"编":{"docs":{},"辑":{"docs":{},"状":{"docs":{},"态":{"docs":{"base/editor/editor.html":{"ref":"base/editor/editor.html","tf":0.005405405405405406},"case/editor/shelter_editor.html":{"ref":"case/editor/shelter_editor.html","tf":0.0051813471502590676},"case/editor/sign_editor.html":{"ref":"case/editor/sign_editor.html","tf":0.005494505494505495},"case/editor/sign_initial_editor.html":{"ref":"case/editor/sign_initial_editor.html","tf":0.005154639175257732},"case/editor/state_editor.html":{"ref":"case/editor/state_editor.html","tf":0.005747126436781609}}}}}}}}}},"获":{"docs":{},"取":{"docs":{},"焦":{"docs":{},"点":{"docs":{"base/editor/editor.html":{"ref":"base/editor/editor.html","tf":0.005405405405405406},"base/editor/code_editor.html":{"ref":"base/editor/code_editor.html","tf":0.012658227848101266},"base/editor/formula_editor.html":{"ref":"base/editor/formula_editor.html","tf":0.010101010101010102},"case/editor/shelter_editor.html":{"ref":"case/editor/shelter_editor.html","tf":0.0051813471502590676},"case/editor/sign_editor.html":{"ref":"case/editor/sign_editor.html","tf":0.005494505494505495},"case/editor/sign_initial_editor.html":{"ref":"case/editor/sign_initial_editor.html","tf":0.005154639175257732},"case/editor/state_editor.html":{"ref":"case/editor/state_editor.html","tf":0.005747126436781609}}}}}},"宽":{"docs":{},"度":{"docs":{"detailed/text_input/bi.text_editor.html":{"ref":"detailed/text_input/bi.text_editor.html","tf":0.010309278350515464},"detailed/text_input/bi.search_editor.html":{"ref":"detailed/text_input/bi.search_editor.html","tf":0.010101010101010102},"detailed/text_input/bi.clear_editor.html":{"ref":"detailed/text_input/bi.clear_editor.html","tf":0.00980392156862745}}}},"高":{"docs":{},"度":{"docs":{"detailed/text_input/bi.text_editor.html":{"ref":"detailed/text_input/bi.text_editor.html","tf":0.010309278350515464},"detailed/text_input/bi.search_editor.html":{"ref":"detailed/text_input/bi.search_editor.html","tf":0.010101010101010102},"detailed/text_input/bi.clear_editor.html":{"ref":"detailed/text_input/bi.clear_editor.html","tf":0.00980392156862745}}}},"默":{"docs":{},"认":{"docs":{},"值":{"docs":{"detailed/text_input/bi.text_editor.html":{"ref":"detailed/text_input/bi.text_editor.html","tf":0.010309278350515464},"detailed/text_input/bi.search_editor.html":{"ref":"detailed/text_input/bi.search_editor.html","tf":0.010101010101010102},"detailed/text_input/bi.clear_editor.html":{"ref":"detailed/text_input/bi.clear_editor.html","tf":0.00980392156862745}}}}}},"域":{"docs":{},",":{"docs":{},"基":{"docs":{},"类":{"docs":{},"b":{"docs":{},"i":{"docs":{},".":{"docs":{},"s":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"l":{"docs":{"base/editor/textarea_editor.html":{"ref":"base/editor/textarea_editor.html","tf":0.021739130434782608}}}}}}}}}}}}},"失":{"docs":{},"焦":{"docs":{"base/editor/textarea_editor.html":{"ref":"base/editor/textarea_editor.html","tf":0.021739130434782608}}}},"的":{"docs":{},"值":{"docs":{"base/editor/textarea_editor.html":{"ref":"base/editor/textarea_editor.html","tf":0.021739130434782608},"base/editor/formula_editor.html":{"ref":"base/editor/formula_editor.html","tf":0.010101010101010102}}}},"获":{"docs":{},"取":{"docs":{},"焦":{"docs":{},"点":{"docs":{"base/editor/textarea_editor.html":{"ref":"base/editor/textarea_editor.html","tf":0.021739130434782608}}}}}}},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{},"e":{"docs":{},"值":{"docs":{"case/editor/sign_initial_editor.html":{"ref":"case/editor/sign_initial_editor.html","tf":0.005154639175257732}}}}}}}},"输":{"docs":{},"入":{"docs":{},"框":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"g":{"docs":{},"g":{"docs":{},"e":{"docs":{},"r":{"docs":{"case/trigger/editor_trigger.html":{"ref":"case/trigger/editor_trigger.html","tf":0.02},"case/trigger/text_trigger.html":{"ref":"case/trigger/text_trigger.html","tf":0.05263157894736842}}}}}}}}}}}}},"字":{"docs":{},"布":{"docs":{},"局":{"docs":{"base/button/button.html":{"ref":"base/button/button.html","tf":0.005681818181818182},"base/button/text_button.html":{"ref":"base/button/text_button.html","tf":0.009433962264150943}}}},"类":{"docs":{},"型":{"docs":{},"的":{"docs":{},"按":{"docs":{},"钮":{"docs":{},",":{"docs":{},"基":{"docs":{},"类":{"docs":{},"b":{"docs":{},"i":{"docs":{},".":{"docs":{},"b":{"docs":{},"a":{"docs":{},"s":{"docs":{},"i":{"docs":{},"c":{"docs":{},"b":{"docs":{},"u":{"docs":{},"t":{"docs":{},"t":{"docs":{},"o":{"docs":{},"n":{"docs":{"base/button/button.html":{"ref":"base/button/button.html","tf":0.005681818181818182}}}}}}}}}}}}}}}}}}}}}}}}},"件":{"docs":{},"上":{"docs":{},"传":{"docs":{"base/editor/multifile_editor.html":{"ref":"base/editor/multifile_editor.html","tf":0.015384615384615385}}}},"路":{"docs":{},"径":{"docs":{"base/editor/multifile_editor.html":{"ref":"base/editor/multifile_editor.html","tf":0.015384615384615385}}}},"管":{"docs":{},"理":{"docs":{},"器":{"docs":{"detailed/file_manager.html":{"ref":"detailed/file_manager.html","tf":0.023255813953488372}}}}}}},"概":{"docs":{},"览":{"docs":{"./":{"ref":"./","tf":10}}}},"开":{"docs":{},"发":{"docs":{},"教":{"docs":{},"程":{"docs":{"START.html":{"ref":"START.html","tf":0.3333333333333333}}}}},"启":{"docs":{},"p":{"docs":{},"o":{"docs":{},"p":{"docs":{},"u":{"docs":{},"p":{"docs":{},"元":{"docs":{},"素":{"docs":{"core/abstract/custom_tree.html":{"ref":"core/abstract/custom_tree.html","tf":0.007194244604316547}}}}}}}},"a":{"docs":{},"n":{"docs":{},"e":{"docs":{},"l":{"docs":{},"的":{"docs":{},"元":{"docs":{},"素":{"docs":{"case/layer/pane_list.html":{"ref":"case/layer/pane_list.html","tf":0.006802721088435374},"case/layer/panel.html":{"ref":"case/layer/panel.html","tf":0.015873015873015872}}}}}}}}}},"或":{"docs":{},"者":{"docs":{},"隐":{"docs":{},"藏":{"docs":{},"弹":{"docs":{},"出":{"docs":{},"层":{"docs":{"core/combination/bi.combo.html":{"ref":"core/combination/bi.combo.html","tf":0.004807692307692308}}}}}}}}},"弹":{"docs":{},"出":{"docs":{},"层":{"docs":{},"的":{"docs":{},"元":{"docs":{},"素":{"docs":{"core/combination/searcher.html":{"ref":"core/combination/searcher.html","tf":0.004608294930875576}}}}}}}}},"始":{"docs":{},"搜":{"docs":{},"索":{"docs":{"core/combination/searcher.html":{"ref":"core/combination/searcher.html","tf":0.009216589861751152}},"触":{"docs":{},"发":{"docs":{"core/combination/searcher.html":{"ref":"core/combination/searcher.html","tf":0.004608294930875576}}}}}},"输":{"docs":{},"入":{"docs":{},"触":{"docs":{},"发":{"docs":{"base/editor/editor.html":{"ref":"base/editor/editor.html","tf":0.005405405405405406},"case/editor/shelter_editor.html":{"ref":"case/editor/shelter_editor.html","tf":0.0051813471502590676},"case/editor/sign_editor.html":{"ref":"case/editor/sign_editor.html","tf":0.005494505494505495},"case/editor/sign_initial_editor.html":{"ref":"case/editor/sign_initial_editor.html","tf":0.005154639175257732},"case/editor/state_editor.html":{"ref":"case/editor/state_editor.html","tf":0.005747126436781609}}}}}},"上":{"docs":{},"传":{"docs":{},"时":{"docs":{},"触":{"docs":{},"发":{"docs":{"base/editor/multifile_editor.html":{"ref":"base/editor/multifile_editor.html","tf":0.015384615384615385}}}}}}},"绘":{"docs":{},"制":{"docs":{"base/svg.html":{"ref":"base/svg.html","tf":0.011235955056179775}}}}}},"起":{"docs":{},"步":{"docs":{"START.html":{"ref":"START.html","tf":10}}}},"p":{"docs":{},"o":{"docs":{},"p":{"docs":{},"u":{"docs":{},"l":{"docs":{"core/layout/table.html":{"ref":"core/layout/table.html","tf":0.012048192771084338},"core/layout/td.html":{"ref":"core/layout/td.html","tf":0.017857142857142856},"core/abstract/button_group.html":{"ref":"core/abstract/button_group.html","tf":0.007936507936507936},"core/abstract/virtual_group.html":{"ref":"core/abstract/virtual_group.html","tf":0.014492753623188406},"core/abstract/custom_tree.html":{"ref":"core/abstract/custom_tree.html","tf":0.007194244604316547},"core/abstract/grid_view.html":{"ref":"core/abstract/grid_view.html","tf":0.00641025641025641},"core/abstract/collection_view.html":{"ref":"core/abstract/collection_view.html","tf":0.0070921985815602835},"core/abstract/virtual_list.html":{"ref":"core/abstract/virtual_list.html","tf":0.0125},"core/combination/bi.combo.html":{"ref":"core/combination/bi.combo.html","tf":0.004807692307692308},"core/combination/bi.expander.html":{"ref":"core/combination/bi.expander.html","tf":0.005494505494505495},"core/combination/group_combo.html":{"ref":"core/combination/group_combo.html","tf":0.007874015748031496},"core/combination/loader.html":{"ref":"core/combination/loader.html","tf":0.006289308176100629},"core/combination/navigation.html":{"ref":"core/combination/navigation.html","tf":0.007194244604316547},"core/combination/searcher.html":{"ref":"core/combination/searcher.html","tf":0.004608294930875576},"core/combination/switcher.html":{"ref":"core/combination/switcher.html","tf":0.00625},"core/combination/tab.html":{"ref":"core/combination/tab.html","tf":0.00684931506849315},"core/layer/layer_float_box.html":{"ref":"core/layer/layer_float_box.html","tf":0.012345679012345678},"core/layer/layer_popup.html":{"ref":"core/layer/layer_popup.html","tf":0.0058823529411764705},"core/layer/layer_searcher.html":{"ref":"core/layer/layer_searcher.html","tf":0.009259259259259259},"core/single.html":{"ref":"core/single.html","tf":0.013888888888888888},"core/pane.html":{"ref":"core/pane.html","tf":0.0196078431372549},"base/label.html":{"ref":"base/label.html","tf":0.006711409395973154},"base/table/table_view.html":{"ref":"base/table/table_view.html","tf":0.006289308176100629},"base/table/grid_table.html":{"ref":"base/table/grid_table.html","tf":0.008771929824561403},"base/table/collection_table.html":{"ref":"base/table/collection_table.html","tf":0.006535947712418301},"base/table/resizable_table.html":{"ref":"base/table/resizable_table.html","tf":0.00625},"base/pager.html":{"ref":"base/pager.html","tf":0.006666666666666667},"case/layer/layer_panel.html":{"ref":"case/layer/layer_panel.html","tf":0.010752688172043012},"case/layer/pane_list.html":{"ref":"case/layer/pane_list.html","tf":0.006802721088435374},"case/list/list.select.html":{"ref":"case/list/list.select.html","tf":0.009433962264150943},"case/loader/lazy_loader.html":{"ref":"case/loader/lazy_loader.html","tf":0.01694915254237288},"case/loader/list_loader.html":{"ref":"case/loader/list_loader.html","tf":0.010752688172043012},"case/loader/sort_list.html":{"ref":"case/loader/sort_list.html","tf":0.010752688172043012},"case/combo/icon_combo.html":{"ref":"case/combo/icon_combo.html","tf":0.007751937984496124},"case/combo/static_combo.html":{"ref":"case/combo/static_combo.html","tf":0.0125},"case/combo/text_value_combo.html":{"ref":"case/combo/text_value_combo.html","tf":0.013513513513513514},"case/combo/text_value_downlist_combo.html":{"ref":"case/combo/text_value_downlist_combo.html","tf":0.013513513513513514},"case/tree/branch_tree.html":{"ref":"case/tree/branch_tree.html","tf":0.02},"case/tree/handstand_branch_tree.html":{"ref":"case/tree/handstand_branch_tree.html","tf":0.019230769230769232},"case/tree/simple_tree.html":{"ref":"case/tree/simple_tree.html","tf":0.022222222222222223},"case/tree/level_tree.html":{"ref":"case/tree/level_tree.html","tf":0.017857142857142856},"case/tree/branch_relation.html":{"ref":"case/tree/branch_relation.html","tf":0.02040816326530612},"case/table/adaptive_table.html":{"ref":"case/table/adaptive_table.html","tf":0.006060606060606061},"case/table/tree_table.html":{"ref":"case/table/tree_table.html","tf":0.00510204081632653},"case/table/layer_tree_table.html":{"ref":"case/table/layer_tree_table.html","tf":0.00510204081632653},"case/pager/all_count_pager.html":{"ref":"case/pager/all_count_pager.html","tf":0.014705882352941176},"case/pager/direction_pager.html":{"ref":"case/pager/direction_pager.html","tf":0.00819672131147541},"detailed/tree/bi.multi_tree_combo.html":{"ref":"detailed/tree/bi.multi_tree_combo.html","tf":0.010869565217391304},"detailed/tree/bi.switch_tree.html":{"ref":"detailed/tree/bi.switch_tree.html","tf":0.013157894736842105},"detailed/table/bi.preview_table.html":{"ref":"detailed/table/bi.preview_table.html","tf":0.006756756756756757},"detailed/table/bi.responsive_table.html":{"ref":"detailed/table/bi.responsive_table.html","tf":0.005263157894736842},"detailed/table/bi.excel_table.html":{"ref":"detailed/table/bi.excel_table.html","tf":0.0055248618784530384},"detailed/table/bi.page_table.html":{"ref":"detailed/table/bi.page_table.html","tf":0.004651162790697674},"detailed/combo/single_tree_combo.html":{"ref":"detailed/combo/single_tree_combo.html","tf":0.01694915254237288},"detailed/combo/multilayer_single_tree_combo.html":{"ref":"detailed/combo/multilayer_single_tree_combo.html","tf":0.018867924528301886},"detailed/combo/select_tree_combo.html":{"ref":"detailed/combo/select_tree_combo.html","tf":0.02040816326530612},"detailed/combo/multilayer_select_tree_combo.html":{"ref":"detailed/combo/multilayer_select_tree_combo.html","tf":0.02040816326530612}},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"这":{"docs":{},"几":{"docs":{},"个":{"docs":{},"方":{"docs":{},"法":{"docs":{},"来":{"docs":{},"设":{"docs":{},"置":{"docs":{},"值":{"docs":{},",":{"docs":{},"获":{"docs":{},"取":{"docs":{},"值":{"docs":{},"(":{"docs":{},"展":{"docs":{},"示":{"docs":{},"类":{"docs":{},"控":{"docs":{},"件":{"docs":{},"除":{"docs":{},"外":{"docs":{},")":{"docs":{},"和":{"docs":{},"刷":{"docs":{},"新":{"docs":{},"控":{"docs":{},"件":{"docs":{"OVERVIEW.html":{"ref":"OVERVIEW.html","tf":0.1}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"(":{"docs":{},"b":{"docs":{},"i":{"docs":{},".":{"docs":{},"m":{"docs":{},"a":{"docs":{},"p":{"docs":{},"(":{"docs":{},"b":{"docs":{},"i":{"docs":{},".":{"docs":{},"m":{"docs":{},"a":{"docs":{},"p":{"docs":{},"(":{"docs":{},"b":{"docs":{},"i":{"docs":{},".":{"docs":{},"m":{"docs":{},"a":{"docs":{},"k":{"docs":{},"e":{"docs":{},"a":{"docs":{},"r":{"docs":{},"r":{"docs":{},"a":{"docs":{},"y":{"docs":{},"(":{"3":{"docs":{},",":{"docs":{"core/combination/loader.html":{"ref":"core/combination/loader.html","tf":0.006289308176100629}}}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}},")":{"docs":{"core/combination/loader.html":{"ref":"core/combination/loader.html","tf":0.006289308176100629}}}}}}},"p":{"docs":{"core/combination/bi.combo.html":{"ref":"core/combination/bi.combo.html","tf":0.004807692307692308},"core/combination/bi.expander.html":{"ref":"core/combination/bi.expander.html","tf":0.005494505494505495},"core/combination/group_combo.html":{"ref":"core/combination/group_combo.html","tf":0.007874015748031496},"core/combination/searcher.html":{"ref":"core/combination/searcher.html","tf":0.004608294930875576},"core/combination/switcher.html":{"ref":"core/combination/switcher.html","tf":0.00625},"core/layer/layer_popup.html":{"ref":"core/layer/layer_popup.html","tf":10},"case/combo/icon_combo.html":{"ref":"case/combo/icon_combo.html","tf":0.007751937984496124}},"组":{"docs":{},"件":{"docs":{"core/abstract/custom_tree.html":{"ref":"core/abstract/custom_tree.html","tf":0.007194244604316547}}}},"\"":{"docs":{"core/combination/bi.combo.html":{"ref":"core/combination/bi.combo.html","tf":0.004807692307692308},"core/combination/bi.expander.html":{"ref":"core/combination/bi.expander.html","tf":0.005494505494505495},"core/combination/switcher.html":{"ref":"core/combination/switcher.html","tf":0.00625}}},":":{"docs":{"core/combination/bi.combo.html":{"ref":"core/combination/bi.combo.html","tf":0.004807692307692308},"core/combination/bi.expander.html":{"ref":"core/combination/bi.expander.html","tf":0.005494505494505495},"core/combination/searcher.html":{"ref":"core/combination/searcher.html","tf":0.004608294930875576},"core/combination/switcher.html":{"ref":"core/combination/switcher.html","tf":0.00625},"case/combo/bubble_combo.html":{"ref":"case/combo/bubble_combo.html","tf":0.005780346820809248}}}}},"l":{"docs":{},"u":{"docs":{},"l":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"(":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"s":{"docs":{},")":{"docs":{"core/layout/table.html":{"ref":"core/layout/table.html","tf":0.012048192771084338},"core/layout/td.html":{"ref":"core/layout/td.html","tf":0.017857142857142856}}}}}}}}}}}}}}}}},"a":{"docs":{},"d":{"docs":{},"d":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"值":{"docs":{"core/layout/vertical.html":{"ref":"core/layout/vertical.html","tf":0.05128205128205128},"core/layout/horizontal.html":{"ref":"core/layout/horizontal.html","tf":0.043010752688172046},"core/layout/htape.html":{"ref":"core/layout/htape.html","tf":0.032},"core/layout/vtape.html":{"ref":"core/layout/vtape.html","tf":0.032},"core/layout/center_adapt.html":{"ref":"core/layout/center_adapt.html","tf":0.047058823529411764},"core/layout/vertical_adapt.html":{"ref":"core/layout/vertical_adapt.html","tf":0.04597701149425287},"core/layout/left_right_vertical_adapt.html":{"ref":"core/layout/left_right_vertical_adapt.html","tf":0.04395604395604396},"core/layout/flow.html":{"ref":"core/layout/flow.html","tf":0.03076923076923077},"core/layout/center.html":{"ref":"core/layout/center.html","tf":0.05063291139240506},"core/layout/horizontal_adapt.html":{"ref":"core/layout/horizontal_adapt.html","tf":0.043478260869565216},"core/layout/horizontal_auto.html":{"ref":"core/layout/horizontal_auto.html","tf":0.04938271604938271},"core/layout/horizontal_float.html":{"ref":"core/layout/horizontal_float.html","tf":0.05555555555555555},"core/layout/float_center.html":{"ref":"core/layout/float_center.html","tf":0.05063291139240506},"core/combination/searcher.html":{"ref":"core/combination/searcher.html","tf":0.018433179723502304},"core/layer/layer_popup.html":{"ref":"core/layer/layer_popup.html","tf":0.023529411764705882},"base/label.html":{"ref":"base/label.html","tf":0.026845637583892617},"base/button/button.html":{"ref":"base/button/button.html","tf":0.022727272727272728},"base/button/text_button.html":{"ref":"base/button/text_button.html","tf":0.018867924528301886},"base/editor/editor.html":{"ref":"base/editor/editor.html","tf":0.021621621621621623},"case/editor/shelter_editor.html":{"ref":"case/editor/shelter_editor.html","tf":0.02072538860103627},"case/editor/sign_editor.html":{"ref":"case/editor/sign_editor.html","tf":0.02197802197802198},"case/editor/sign_initial_editor.html":{"ref":"case/editor/sign_initial_editor.html","tf":0.020618556701030927},"case/editor/state_editor.html":{"ref":"case/editor/state_editor.html","tf":0.022988505747126436},"case/layer/pane_list.html":{"ref":"case/layer/pane_list.html","tf":0.027210884353741496},"case/segment.html":{"ref":"case/segment.html","tf":0.037383177570093455},"detailed/bi.button/tooltip.html":{"ref":"detailed/bi.button/tooltip.html","tf":0.045454545454545456},"detailed/bi.button/items.html":{"ref":"detailed/bi.button/items.html","tf":0.0425531914893617},"detailed/bi.button/node.html":{"ref":"detailed/bi.button/node.html","tf":0.037037037037037035},"detailed/bi.button/segment.html":{"ref":"detailed/bi.button/segment.html","tf":0.037383177570093455},"detailed/text_input/bi.text_editor.html":{"ref":"detailed/text_input/bi.text_editor.html","tf":0.041237113402061855},"detailed/text_input/bi.search_editor.html":{"ref":"detailed/text_input/bi.search_editor.html","tf":0.04040404040404041},"detailed/text_input/bi.clear_editor.html":{"ref":"detailed/text_input/bi.clear_editor.html","tf":0.0392156862745098}}}}}}}},"n":{"docs":{},"e":{"docs":{"core/pane.html":{"ref":"core/pane.html","tf":10}},"l":{"docs":{"case/layer/panel.html":{"ref":"case/layer/panel.html","tf":10}},"的":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{},"e":{"docs":{},"发":{"docs":{},"生":{"docs":{},"改":{"docs":{},"变":{"docs":{},"触":{"docs":{},"发":{"docs":{"case/layer/layer_panel.html":{"ref":"case/layer/layer_panel.html","tf":0.010752688172043012}}}}}}}}}}}}},"关":{"docs":{},"闭":{"docs":{},"事":{"docs":{},"件":{"docs":{"case/layer/layer_panel.html":{"ref":"case/layer/layer_panel.html","tf":0.010752688172043012}}}}}}}},"_":{"docs":{},"l":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{"case/layer/pane_list.html":{"ref":"case/layer/pane_list.html","tf":10}}}}}}}}},"r":{"docs":{},"a":{"docs":{},"m":{"docs":{"base/editor/code_editor.html":{"ref":"base/editor/code_editor.html","tf":0.012658227848101266}},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"m":{"docs":{},"a":{"docs":{},"t":{"docs":{},"t":{"docs":{"base/editor/code_editor.html":{"ref":"base/editor/code_editor.html","tf":0.012658227848101266}}}}}}}}}}}},"g":{"docs":{},"e":{"docs":{"base/pager.html":{"ref":"base/pager.html","tf":0.013333333333333334},"base/svg.html":{"ref":"base/svg.html","tf":0.011235955056179775},"case/pager/all_count_pager.html":{"ref":"case/pager/all_count_pager.html","tf":0.014705882352941176},"case/pager/direction_pager.html":{"ref":"case/pager/direction_pager.html","tf":0.00819672131147541},"detailed/table/bi.page_table.html":{"ref":"detailed/table/bi.page_table.html","tf":0.004651162790697674}},"r":{"docs":{"base/pager.html":{"ref":"base/pager.html","tf":10},"case/pager/direction_pager.html":{"ref":"case/pager/direction_pager.html","tf":0.00819672131147541},"detailed/table/bi.page_table.html":{"ref":"detailed/table/bi.page_table.html","tf":0.004651162790697674}},"刷":{"docs":{},"新":{"docs":{},"完":{"docs":{},"成":{"docs":{},"事":{"docs":{},"件":{"docs":{"base/pager.html":{"ref":"base/pager.html","tf":0.006666666666666667}}}}}}}},":":{"docs":{"detailed/table/bi.page_table.html":{"ref":"detailed/table/bi.page_table.html","tf":0.004651162790697674}}}},"s":{"docs":{},":":{"docs":{"base/pager.html":{"ref":"base/pager.html","tf":0.006666666666666667},"case/pager/all_count_pager.html":{"ref":"case/pager/all_count_pager.html","tf":0.014705882352941176},"case/pager/direction_pager.html":{"ref":"case/pager/direction_pager.html","tf":0.01639344262295082}}},"为":{"docs":{},"数":{"docs":{},"字":{"docs":{},"时":{"docs":{},"可":{"docs":{},"用":{"docs":{"case/pager/direction_pager.html":{"ref":"case/pager/direction_pager.html","tf":0.00819672131147541}},",":{"docs":{"case/pager/direction_pager.html":{"ref":"case/pager/direction_pager.html","tf":0.01639344262295082}}}}}}}}}},"_":{"docs":{},"t":{"docs":{"detailed/table/bi.page_table.html":{"ref":"detailed/table/bi.page_table.html","tf":10}}}}}},"t":{"docs":{},"h":{"docs":{"base/svg.html":{"ref":"base/svg.html","tf":0.011235955056179775}},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"base/svg.html":{"ref":"base/svg.html","tf":0.011235955056179775}}}}},"_":{"docs":{},"c":{"docs":{},"h":{"docs":{},"o":{"docs":{},"o":{"docs":{},"s":{"docs":{"detailed/path/path_chooser.html":{"ref":"detailed/path/path_chooser.html","tf":10.01923076923077}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"p":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{"core/abstract/button_group.html":{"ref":"core/abstract/button_group.html","tf":0.007936507936507936},"core/abstract/virtual_group.html":{"ref":"core/abstract/virtual_group.html","tf":0.014492753623188406},"core/abstract/custom_tree.html":{"ref":"core/abstract/custom_tree.html","tf":0.007194244604316547},"core/combination/loader.html":{"ref":"core/combination/loader.html","tf":0.006289308176100629},"case/layer/layer_panel.html":{"ref":"case/layer/layer_panel.html","tf":0.010752688172043012},"case/layer/pane_list.html":{"ref":"case/layer/pane_list.html","tf":0.006802721088435374},"case/list/list.select.html":{"ref":"case/list/list.select.html","tf":0.009433962264150943}}}}}}}}}},"v":{"docs":{"core/combination/loader.html":{"ref":"core/combination/loader.html","tf":0.006289308176100629},"base/pager.html":{"ref":"base/pager.html","tf":0.006666666666666667}},"i":{"docs":{},"e":{"docs":{},"w":{"docs":{},"_":{"docs":{},"t":{"docs":{"detailed/table/bi.preview_table.html":{"ref":"detailed/table/bi.preview_table.html","tf":10}}}}}}}}},"o":{"docs":{},"m":{"docs":{},"p":{"docs":{},"t":{"docs":{"base/message.html":{"ref":"base/message.html","tf":0.02127659574468085}}}}},"p":{"docs":{},"s":{"docs":{},".":{"docs":{},"c":{"docs":{},"l":{"docs":{},"e":{"docs":{},"a":{"docs":{},"r":{"docs":{"base/button/button.html":{"ref":"base/button/button.html","tf":0.005681818181818182}}}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{"base/svg.html":{"ref":"base/svg.html","tf":0.011235955056179775}}}},"m":{"docs":{},"a":{"docs":{},"r":{"docs":{},"y":{"docs":{},":":{"docs":{"detailed/relation_view.html":{"ref":"detailed/relation_view.html","tf":0.038461538461538464}}}}}}}}},"i":{"docs":{},"d":{"docs":{},":":{"docs":{"core/abstract/custom_tree.html":{"ref":"core/abstract/custom_tree.html","tf":0.02158273381294964},"detailed/tree/bi.multi_tree_combo.html":{"ref":"detailed/tree/bi.multi_tree_combo.html","tf":0.03260869565217391},"detailed/tree/bi.switch_tree.html":{"ref":"detailed/tree/bi.switch_tree.html","tf":0.039473684210526314},"detailed/file_manager.html":{"ref":"detailed/file_manager.html","tf":0.046511627906976744}}}}},"y":{"docs":{"base/label.html":{"ref":"base/label.html","tf":0.006711409395973154},"base/button/text_button.html":{"ref":"base/button/text_button.html","tf":0.009433962264150943}}}},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{"base/svg.html":{"ref":"base/svg.html","tf":0.011235955056179775}},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"i":{"docs":{},"d":{"docs":{"core/widget.html":{"ref":"core/widget.html","tf":0.00510204081632653}},"这":{"docs":{},"几":{"docs":{},"个":{"docs":{},"方":{"docs":{},"法":{"docs":{},"来":{"docs":{},"设":{"docs":{},"置":{"docs":{},"使":{"docs":{},"能":{"docs":{},",":{"docs":{},"是":{"docs":{},"否":{"docs":{},"可":{"docs":{},"见":{"docs":{},",":{"docs":{},"是":{"docs":{},"否":{"docs":{},"有":{"docs":{},"效":{"docs":{},"状":{"docs":{},"态":{"docs":{},",":{"docs":{},"并":{"docs":{},"且":{"docs":{},"在":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"e":{"docs":{},"u":{"docs":{},"i":{"2":{"docs":{},".":{"0":{"docs":{},"之":{"docs":{},"后":{"docs":{},",":{"docs":{},"会":{"docs":{},"自":{"docs":{},"动":{"docs":{},"给":{"docs":{},"子":{"docs":{},"组":{"docs":{},"件":{"docs":{},"设":{"docs":{},"置":{"docs":{},"同":{"docs":{},"样":{"docs":{},"的":{"docs":{},"状":{"docs":{},"态":{"docs":{},",":{"docs":{},"不":{"docs":{},"要":{"docs":{},"重":{"docs":{},"写":{"docs":{},"这":{"docs":{},"些":{"docs":{},"方":{"docs":{},"法":{"docs":{},",":{"docs":{},"一":{"docs":{},"些":{"docs":{},"需":{"docs":{},"要":{"docs":{},"在":{"docs":{},"设":{"docs":{},"置":{"docs":{},"状":{"docs":{},"态":{"docs":{},"时":{"docs":{},"的":{"docs":{},"额":{"docs":{},"外":{"docs":{},"操":{"docs":{},"作":{"docs":{},"可":{"docs":{},"以":{"docs":{},"通":{"docs":{},"过":{"docs":{},"重":{"docs":{},"写":{"docs":{},"_":{"docs":{},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{},"x":{"docs":{},"x":{"docs":{},"x":{"docs":{},"来":{"docs":{},"实":{"docs":{},"现":{"docs":{"OVERVIEW.html":{"ref":"OVERVIEW.html","tf":0.1}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"docs":{}}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"u":{"docs":{"core/abstract/button_group.html":{"ref":"core/abstract/button_group.html","tf":0.007936507936507936},"core/abstract/button_tree.html":{"ref":"core/abstract/button_tree.html","tf":0.014925373134328358},"core/abstract/virtual_group.html":{"ref":"core/abstract/virtual_group.html","tf":0.014492753623188406},"core/abstract/custom_tree.html":{"ref":"core/abstract/custom_tree.html","tf":0.007194244604316547},"core/combination/bi.combo.html":{"ref":"core/combination/bi.combo.html","tf":0.004807692307692308},"core/combination/bi.expander.html":{"ref":"core/combination/bi.expander.html","tf":0.005494505494505495},"core/combination/group_combo.html":{"ref":"core/combination/group_combo.html","tf":0.007874015748031496},"core/combination/loader.html":{"ref":"core/combination/loader.html","tf":0.006289308176100629},"core/combination/navigation.html":{"ref":"core/combination/navigation.html","tf":0.007194244604316547},"core/combination/searcher.html":{"ref":"core/combination/searcher.html","tf":0.004608294930875576},"core/combination/switcher.html":{"ref":"core/combination/switcher.html","tf":0.00625},"core/combination/tab.html":{"ref":"core/combination/tab.html","tf":0.00684931506849315},"core/layer/layer_popup.html":{"ref":"core/layer/layer_popup.html","tf":0.0058823529411764705},"core/layer/layer_searcher.html":{"ref":"core/layer/layer_searcher.html","tf":0.009259259259259259},"core/widget.html":{"ref":"core/widget.html","tf":0.00510204081632653},"core/single.html":{"ref":"core/single.html","tf":0.013888888888888888},"base/label.html":{"ref":"base/label.html","tf":0.006711409395973154},"base/button/button.html":{"ref":"base/button/button.html","tf":0.005681818181818182},"base/button/text_button.html":{"ref":"base/button/text_button.html","tf":0.009433962264150943},"base/editor/editor.html":{"ref":"base/editor/editor.html","tf":0.005405405405405406},"base/editor/code_editor.html":{"ref":"base/editor/code_editor.html","tf":0.012658227848101266},"base/editor/textarea_editor.html":{"ref":"base/editor/textarea_editor.html","tf":0.021739130434782608},"base/editor/formula_editor.html":{"ref":"base/editor/formula_editor.html","tf":0.010101010101010102},"base/pager.html":{"ref":"base/pager.html","tf":0.006666666666666667},"case/editor/shelter_editor.html":{"ref":"case/editor/shelter_editor.html","tf":0.0051813471502590676},"case/editor/sign_editor.html":{"ref":"case/editor/sign_editor.html","tf":0.005494505494505495},"case/editor/sign_initial_editor.html":{"ref":"case/editor/sign_initial_editor.html","tf":0.005154639175257732},"case/editor/state_editor.html":{"ref":"case/editor/state_editor.html","tf":0.005747126436781609},"case/layer/layer_panel.html":{"ref":"case/layer/layer_panel.html","tf":0.010752688172043012},"case/layer/pane_list.html":{"ref":"case/layer/pane_list.html","tf":0.006802721088435374},"case/list/list.select.html":{"ref":"case/list/list.select.html","tf":0.009433962264150943},"case/loader/lazy_loader.html":{"ref":"case/loader/lazy_loader.html","tf":0.01694915254237288},"case/loader/list_loader.html":{"ref":"case/loader/list_loader.html","tf":0.010752688172043012},"case/loader/sort_list.html":{"ref":"case/loader/sort_list.html","tf":0.010752688172043012},"case/trigger/editor_trigger.html":{"ref":"case/trigger/editor_trigger.html","tf":0.02},"case/trigger/text_trigger.html":{"ref":"case/trigger/text_trigger.html","tf":0.05263157894736842},"case/combo/icon_combo.html":{"ref":"case/combo/icon_combo.html","tf":0.007751937984496124},"case/combo/static_combo.html":{"ref":"case/combo/static_combo.html","tf":0.0125},"case/combo/text_value_combo.html":{"ref":"case/combo/text_value_combo.html","tf":0.013513513513513514},"case/combo/text_value_downlist_combo.html":{"ref":"case/combo/text_value_downlist_combo.html","tf":0.013513513513513514},"case/tree/simple_tree.html":{"ref":"case/tree/simple_tree.html","tf":0.022222222222222223},"case/tree/level_tree.html":{"ref":"case/tree/level_tree.html","tf":0.017857142857142856},"case/pager/all_count_pager.html":{"ref":"case/pager/all_count_pager.html","tf":0.014705882352941176},"case/calendar.html":{"ref":"case/calendar.html","tf":0.013888888888888888},"case/color_chooser.html":{"ref":"case/color_chooser.html","tf":0.038461538461538464},"case/color_chooser_popup.html":{"ref":"case/color_chooser_popup.html","tf":0.029411764705882353},"detailed/tree/bi.multi_tree_combo.html":{"ref":"detailed/tree/bi.multi_tree_combo.html","tf":0.010869565217391304},"detailed/tree/bi.switch_tree.html":{"ref":"detailed/tree/bi.switch_tree.html","tf":0.013157894736842105},"detailed/combo/single_tree_combo.html":{"ref":"detailed/combo/single_tree_combo.html","tf":0.03389830508474576},"detailed/combo/multilayer_single_tree_combo.html":{"ref":"detailed/combo/multilayer_single_tree_combo.html","tf":0.03773584905660377},"detailed/combo/select_tree_combo.html":{"ref":"detailed/combo/select_tree_combo.html","tf":0.04081632653061224},"detailed/combo/multilayer_select_tree_combo.html":{"ref":"detailed/combo/multilayer_select_tree_combo.html","tf":0.04081632653061224},"detailed/slider.html":{"ref":"detailed/slider.html","tf":0.029411764705882353}}}}},"i":{"docs":{},"s":{"docs":{"core/widget.html":{"ref":"core/widget.html","tf":0.00510204081632653}},"i":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},",":{"docs":{"OVERVIEW.html":{"ref":"OVERVIEW.html","tf":0.1}}}}}}}},"e":{"docs":{},"w":{"docs":{},"b":{"docs":{},"o":{"docs":{},"x":{"docs":{"base/svg.html":{"ref":"base/svg.html","tf":0.011235955056179775}}}}}}}},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"i":{"docs":{},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"o":{"docs":{},"l":{"docs":{"base/table/table_view.html":{"ref":"base/table/table_view.html","tf":0.006289308176100629},"base/table/grid_table.html":{"ref":"base/table/grid_table.html","tf":0.008771929824561403},"base/table/collection_table.html":{"ref":"base/table/collection_table.html","tf":0.006535947712418301},"base/table/resizable_table.html":{"ref":"base/table/resizable_table.html","tf":0.00625},"case/table/adaptive_table.html":{"ref":"case/table/adaptive_table.html","tf":0.006060606060606061},"case/table/tree_table.html":{"ref":"case/table/tree_table.html","tf":0.00510204081632653},"case/table/layer_tree_table.html":{"ref":"case/table/layer_tree_table.html","tf":0.00510204081632653},"detailed/table/bi.preview_table.html":{"ref":"detailed/table/bi.preview_table.html","tf":0.006756756756756757},"detailed/table/bi.responsive_table.html":{"ref":"detailed/table/bi.responsive_table.html","tf":0.005263157894736842},"detailed/table/bi.excel_table.html":{"ref":"detailed/table/bi.excel_table.html","tf":0.0055248618784530384},"detailed/table/bi.page_table.html":{"ref":"detailed/table/bi.page_table.html","tf":0.004651162790697674}}}}}}}}}}}}}},"p":{"docs":{},"a":{"docs":{},"g":{"docs":{"case/pager/all_count_pager.html":{"ref":"case/pager/all_count_pager.html","tf":0.014705882352941176},"case/pager/direction_pager.html":{"ref":"case/pager/direction_pager.html","tf":0.00819672131147541},"detailed/table/bi.page_table.html":{"ref":"detailed/table/bi.page_table.html","tf":0.004651162790697674}},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{},"i":{"docs":{},"s":{"docs":{"case/pager/direction_pager.html":{"ref":"case/pager/direction_pager.html","tf":0.00819672131147541}}}}}}}}}}},"e":{"docs":{},"n":{"docs":{"core/widget.html":{"ref":"core/widget.html","tf":0.00510204081632653}},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"d":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{"core/abstract/button_group.html":{"ref":"core/abstract/button_group.html","tf":0.007936507936507936},"core/abstract/button_tree.html":{"ref":"core/abstract/button_tree.html","tf":0.014925373134328358}}}}}}}}}}}},"s":{"docs":{},"t":{"docs":{},"i":{"docs":{},"m":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},"u":{"docs":{},"m":{"docs":{},"n":{"docs":{},"s":{"docs":{"core/abstract/grid_view.html":{"ref":"core/abstract/grid_view.html","tf":0.00641025641025641}}}}}}}}},"r":{"docs":{},"o":{"docs":{},"w":{"docs":{},"s":{"docs":{"core/abstract/grid_view.html":{"ref":"core/abstract/grid_view.html","tf":0.00641025641025641}}}}}}}}}}}}}},"r":{"docs":{},"r":{"docs":{},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{},"e":{"docs":{},"x":{"docs":{},"t":{"docs":{"base/editor/editor.html":{"ref":"base/editor/editor.html","tf":0.005405405405405406},"case/editor/shelter_editor.html":{"ref":"case/editor/shelter_editor.html","tf":0.0051813471502590676},"case/editor/sign_editor.html":{"ref":"case/editor/sign_editor.html","tf":0.005494505494505495},"case/editor/sign_initial_editor.html":{"ref":"case/editor/sign_initial_editor.html","tf":0.005154639175257732},"case/editor/state_editor.html":{"ref":"case/editor/state_editor.html","tf":0.005747126436781609}}}}}},"v":{"docs":{},"i":{"docs":{},"s":{"docs":{"base/editor/editor.html":{"ref":"base/editor/editor.html","tf":0.005405405405405406}}}}}}}}}},"n":{"docs":{},"o":{"docs":{},"t":{"docs":{},"s":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{"core/abstract/button_group.html":{"ref":"core/abstract/button_group.html","tf":0.007936507936507936},"core/abstract/button_tree.html":{"ref":"core/abstract/button_tree.html","tf":0.014925373134328358},"core/combination/loader.html":{"ref":"core/combination/loader.html","tf":0.006289308176100629},"case/layer/layer_panel.html":{"ref":"case/layer/layer_panel.html","tf":0.010752688172043012},"case/layer/pane_list.html":{"ref":"case/layer/pane_list.html","tf":0.006802721088435374},"case/list/list.select.html":{"ref":"case/list/list.select.html","tf":0.009433962264150943},"case/loader/lazy_loader.html":{"ref":"case/loader/lazy_loader.html","tf":0.01694915254237288},"case/loader/list_loader.html":{"ref":"case/loader/list_loader.html","tf":0.010752688172043012},"case/loader/sort_list.html":{"ref":"case/loader/sort_list.html","tf":0.010752688172043012}}}}}}}}}}}}}}}},"u":{"docs":{},"m":{"docs":{},"t":{"docs":{},"i":{"docs":{},"p":{"docs":{},"(":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},")":{"docs":{"detailed/numeric_interval.html":{"ref":"detailed/numeric_interval.html","tf":0.017241379310344827}}}}}}}}}}}}}}}},"o":{"docs":{},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},"f":{"docs":{},"l":{"docs":{},"o":{"docs":{},"w":{"docs":{},"i":{"docs":{"core/abstract/grid_view.html":{"ref":"core/abstract/grid_view.html","tf":0.00641025641025641},"core/abstract/collection_view.html":{"ref":"core/abstract/collection_view.html","tf":0.0070921985815602835}}},"x":{"docs":{"core/abstract/grid_view.html":{"ref":"core/abstract/grid_view.html","tf":0.00641025641025641},"core/abstract/collection_view.html":{"ref":"core/abstract/collection_view.html","tf":0.0070921985815602835}}}}}}}}}},"p":{"docs":{},"e":{"docs":{},"n":{"docs":{"core/node_button.html":{"ref":"core/node_button.html","tf":0.02631578947368421}}}}}},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"o":{"docs":{},"l":{"docs":{},"l":{"docs":{},"l":{"docs":{},"e":{"docs":{},"f":{"docs":{},"t":{"docs":{"core/abstract/grid_view.html":{"ref":"core/abstract/grid_view.html","tf":0.00641025641025641},"core/abstract/collection_view.html":{"ref":"core/abstract/collection_view.html","tf":0.0070921985815602835}}}}}},"t":{"docs":{},"o":{"docs":{},"p":{"docs":{"core/abstract/grid_view.html":{"ref":"core/abstract/grid_view.html","tf":0.00641025641025641},"core/abstract/collection_view.html":{"ref":"core/abstract/collection_view.html","tf":0.0070921985815602835}}}}}}}}}},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"core/combination/navigation.html":{"ref":"core/combination/navigation.html","tf":0.007194244604316547},"core/combination/tab.html":{"ref":"core/combination/tab.html","tf":0.00684931506849315},"core/basic_button.html":{"ref":"core/basic_button.html","tf":0.007936507936507936},"case/button/multi_select_item.html":{"ref":"case/button/multi_select_item.html","tf":0.017543859649122806},"case/button/single_select_item.html":{"ref":"case/button/single_select_item.html","tf":0.016129032258064516},"case/button/single_select_radio_item.html":{"ref":"case/button/single_select_radio_item.html","tf":0.016129032258064516},"case/combo/bubble_combo.html":{"ref":"case/combo/bubble_combo.html","tf":0.005780346820809248},"detailed/tree/bi.switch_tree.html":{"ref":"detailed/tree/bi.switch_tree.html","tf":0.013157894736842105}}}}}}},"t":{"docs":{},"y":{"docs":{},"l":{"docs":{"base/label.html":{"ref":"base/label.html","tf":0.006711409395973154},"base/button/text_button.html":{"ref":"base/button/text_button.html","tf":0.009433962264150943},"base/editor/code_editor.html":{"ref":"base/editor/code_editor.html","tf":0.012658227848101266},"base/editor/textarea_editor.html":{"ref":"base/editor/textarea_editor.html","tf":0.021739130434782608}}}},"a":{"docs":{},"r":{"docs":{},"t":{"docs":{"base/svg.html":{"ref":"base/svg.html","tf":0.011235955056179775}}}},"t":{"docs":{"case/editor/shelter_editor.html":{"ref":"case/editor/shelter_editor.html","tf":0.0051813471502590676},"case/editor/sign_editor.html":{"ref":"case/editor/sign_editor.html","tf":0.005494505494505495},"case/editor/sign_initial_editor.html":{"ref":"case/editor/sign_initial_editor.html","tf":0.005154639175257732},"case/editor/state_editor.html":{"ref":"case/editor/state_editor.html","tf":0.005747126436781609}}}},"o":{"docs":{},"r":{"docs":{},"e":{"docs":{},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},"o":{"docs":{},"r":{"docs":{"case/color_chooser_popup.html":{"ref":"case/color_chooser_popup.html","tf":0.029411764705882353}}}}}}}}}}},"r":{"docs":{},"c":{"docs":{"base/button/image_button.html":{"ref":"base/button/image_button.html","tf":0.014925373134328358}}}},"i":{"docs":{},"z":{"docs":{"base/svg.html":{"ref":"base/svg.html","tf":0.011235955056179775}}}}},"a":{"docs":{},"d":{"docs":{},"a":{"docs":{},"p":{"docs":{},"t":{"docs":{"core/combination/switcher.html":{"ref":"core/combination/switcher.html","tf":0.00625}}}}}},"l":{"docs":{},"l":{"docs":{},"p":{"docs":{},"a":{"docs":{},"g":{"docs":{"base/pager.html":{"ref":"base/pager.html","tf":0.006666666666666667},"case/pager/all_count_pager.html":{"ref":"case/pager/all_count_pager.html","tf":0.014705882352941176}}}}},"s":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"case/list/list.select.html":{"ref":"case/list/list.select.html","tf":0.009433962264150943}}}}}}}}}}},"z":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"x":{"docs":{"core/layer/layer_float_box.html":{"ref":"core/layer/layer_float_box.html","tf":0.012345679012345678},"core/layer/layer_popup.html":{"ref":"core/layer/layer_popup.html","tf":0.0058823529411764705}}}}}}}},"h":{"docs":{},"e":{"docs":{},"i":{"docs":{},"g":{"docs":{},"h":{"docs":{},"t":{"docs":{"core/widget.html":{"ref":"core/widget.html","tf":0.00510204081632653},"base/toast.html":{"ref":"base/toast.html","tf":0.020833333333333332},"base/button/image_button.html":{"ref":"base/button/image_button.html","tf":0.014925373134328358},"base/table/grid_table.html":{"ref":"base/table/grid_table.html","tf":0.008771929824561403},"base/table/collection_table.html":{"ref":"base/table/collection_table.html","tf":0.006535947712418301},"base/table/resizable_table.html":{"ref":"base/table/resizable_table.html","tf":0.00625},"case/table/adaptive_table.html":{"ref":"case/table/adaptive_table.html","tf":0.006060606060606061},"case/table/tree_table.html":{"ref":"case/table/tree_table.html","tf":0.00510204081632653},"case/table/layer_tree_table.html":{"ref":"case/table/layer_tree_table.html","tf":0.00510204081632653},"detailed/table/bi.page_table.html":{"ref":"detailed/table/bi.page_table.html","tf":0.004651162790697674}}}}}},"a":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},"u":{"docs":{},"m":{"docs":{},"n":{"docs":{},"s":{"docs":{"base/table/table_view.html":{"ref":"base/table/table_view.html","tf":0.006289308176100629},"detailed/table/bi.preview_table.html":{"ref":"detailed/table/bi.preview_table.html","tf":0.006756756756756757},"detailed/table/bi.responsive_table.html":{"ref":"detailed/table/bi.responsive_table.html","tf":0.005263157894736842},"detailed/table/bi.excel_table.html":{"ref":"detailed/table/bi.excel_table.html","tf":0.0055248618784530384}}}}}}}}}}}}}},"p":{"docs":{},"a":{"docs":{},"g":{"docs":{"case/pager/direction_pager.html":{"ref":"case/pager/direction_pager.html","tf":0.00819672131147541},"detailed/table/bi.page_table.html":{"ref":"detailed/table/bi.page_table.html","tf":0.004651162790697674}},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{},"i":{"docs":{},"s":{"docs":{"case/pager/direction_pager.html":{"ref":"case/pager/direction_pager.html","tf":0.00819672131147541}}}}}}}}}}},"t":{"docs":{},"a":{"docs":{},"g":{"docs":{"core/widget.html":{"ref":"core/widget.html","tf":0.00510204081632653}}}},"e":{"docs":{},"x":{"docs":{},"t":{"docs":{"core/widget.html":{"ref":"core/widget.html","tf":0.00510204081632653},"core/basic_button.html":{"ref":"core/basic_button.html","tf":0.007936507936507936},"base/label.html":{"ref":"base/label.html","tf":0.006711409395973154},"base/bubble.html":{"ref":"base/bubble.html","tf":0.023255813953488372},"base/toast.html":{"ref":"base/toast.html","tf":0.020833333333333332},"base/button/button.html":{"ref":"base/button/button.html","tf":0.005681818181818182},"base/button/text_button.html":{"ref":"base/button/text_button.html","tf":0.009433962264150943},"case/trigger/editor_trigger.html":{"ref":"case/trigger/editor_trigger.html","tf":0.02},"case/combo/bubble_combo.html":{"ref":"case/combo/bubble_combo.html","tf":0.005780346820809248}},"s":{"docs":{},"t":{"docs":{},"y":{"docs":{},"l":{"docs":{"case/editor/shelter_editor.html":{"ref":"case/editor/shelter_editor.html","tf":0.0051813471502590676}}}}}}}}},"i":{"docs":{},"t":{"docs":{},"l":{"docs":{"core/single.html":{"ref":"core/single.html","tf":0.013888888888888888},"case/editor/shelter_editor.html":{"ref":"case/editor/shelter_editor.html","tf":0.0051813471502590676},"case/editor/sign_editor.html":{"ref":"case/editor/sign_editor.html","tf":0.005494505494505495},"case/editor/sign_initial_editor.html":{"ref":"case/editor/sign_initial_editor.html","tf":0.005154639175257732},"case/layer/panel.html":{"ref":"case/layer/panel.html","tf":0.015873015873015872}}}},"p":{"docs":{},"v":{"docs":{},"i":{"docs":{},"s":{"docs":{"core/pane.html":{"ref":"core/pane.html","tf":0.0196078431372549}}}}}},"n":{"docs":{},"g":{"docs":{},"s":{"docs":{},":":{"docs":{"case/tree/display_tree.html":{"ref":"case/tree/display_tree.html","tf":0.030303030303030304}}}}}}},"o":{"docs":{},"o":{"docs":{},"l":{"docs":{},"b":{"docs":{},"a":{"docs":{},"r":{"docs":{},"v":{"docs":{},"i":{"docs":{},"s":{"docs":{"case/list/list.select.html":{"ref":"case/list/list.select.html","tf":0.009433962264150943}}}}}}}}}}}},"w":{"docs":{},"i":{"docs":{},"d":{"docs":{},"t":{"docs":{},"h":{"docs":{"core/widget.html":{"ref":"core/widget.html","tf":0.00510204081632653},"base/button/image_button.html":{"ref":"base/button/image_button.html","tf":0.014925373134328358},"base/table/grid_table.html":{"ref":"base/table/grid_table.html","tf":0.008771929824561403},"base/table/collection_table.html":{"ref":"base/table/collection_table.html","tf":0.006535947712418301},"base/table/resizable_table.html":{"ref":"base/table/resizable_table.html","tf":0.00625},"case/table/adaptive_table.html":{"ref":"case/table/adaptive_table.html","tf":0.006060606060606061},"case/table/tree_table.html":{"ref":"case/table/tree_table.html","tf":0.00510204081632653},"case/table/layer_tree_table.html":{"ref":"case/table/layer_tree_table.html","tf":0.00510204081632653},"detailed/table/bi.page_table.html":{"ref":"detailed/table/bi.page_table.html","tf":0.004651162790697674}}}}}},"a":{"docs":{},"r":{"docs":{},"n":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"t":{"docs":{},"i":{"docs":{},"t":{"docs":{},"l":{"docs":{"core/single.html":{"ref":"core/single.html","tf":0.013888888888888888},"case/editor/shelter_editor.html":{"ref":"case/editor/shelter_editor.html","tf":0.0051813471502590676},"case/editor/sign_editor.html":{"ref":"case/editor/sign_editor.html","tf":0.005494505494505495},"case/editor/sign_initial_editor.html":{"ref":"case/editor/sign_initial_editor.html","tf":0.005154639175257732}}}}}}}}}}}}},"i":{"docs":{},"m":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"h":{"docs":{},"e":{"docs":{},"i":{"docs":{},"g":{"docs":{},"h":{"docs":{},"t":{"docs":{"base/button/image_button.html":{"ref":"base/button/image_button.html","tf":0.014925373134328358}}}}}}}},"w":{"docs":{},"i":{"docs":{},"d":{"docs":{},"t":{"docs":{},"h":{"docs":{"base/button/image_button.html":{"ref":"base/button/image_button.html","tf":0.014925373134328358}}}}}}}}}}}},"f":{"docs":{},"i":{"docs":{},"e":{"docs":{},"l":{"docs":{},"d":{"docs":{},"t":{"docs":{},"e":{"docs":{},"x":{"docs":{},"t":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{},"e":{"docs":{},"m":{"docs":{},"a":{"docs":{},"p":{"docs":{"base/editor/formula_editor.html":{"ref":"base/editor/formula_editor.html","tf":0.010101010101010102}}}}}}}}}}}}}}}}},"n":{"docs":{},"i":{"docs":{},"s":{"docs":{},"h":{"docs":{"base/svg.html":{"ref":"base/svg.html","tf":0.011235955056179775}}}}}}},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{},"t":{"docs":{"base/editor/formula_editor.html":{"ref":"base/editor/formula_editor.html","tf":0.010101010101010102}}}}}}},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},"u":{"docs":{},"m":{"docs":{},"n":{"docs":{},"s":{"docs":{"base/table/table_view.html":{"ref":"base/table/table_view.html","tf":0.006289308176100629},"base/table/grid_table.html":{"ref":"base/table/grid_table.html","tf":0.008771929824561403},"base/table/collection_table.html":{"ref":"base/table/collection_table.html","tf":0.006535947712418301},"base/table/resizable_table.html":{"ref":"base/table/resizable_table.html","tf":0.00625},"case/table/adaptive_table.html":{"ref":"case/table/adaptive_table.html","tf":0.006060606060606061},"case/table/tree_table.html":{"ref":"case/table/tree_table.html","tf":0.00510204081632653},"case/table/layer_tree_table.html":{"ref":"case/table/layer_tree_table.html","tf":0.00510204081632653},"detailed/table/bi.preview_table.html":{"ref":"detailed/table/bi.preview_table.html","tf":0.006756756756756757},"detailed/table/bi.responsive_table.html":{"ref":"detailed/table/bi.responsive_table.html","tf":0.005263157894736842},"detailed/table/bi.excel_table.html":{"ref":"detailed/table/bi.excel_table.html","tf":0.0055248618784530384},"detailed/table/bi.page_table.html":{"ref":"detailed/table/bi.page_table.html","tf":0.004651162790697674}}}}}}},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{"case/pager/all_count_pager.html":{"ref":"case/pager/all_count_pager.html","tf":0.014705882352941176}}}}}},"l":{"docs":{},"o":{"docs":{},"s":{"docs":{},"e":{"docs":{},"m":{"docs":{},"a":{"docs":{},"x":{"docs":{},"e":{"docs":{},"n":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"(":{"docs":{},"b":{"docs":{},"o":{"docs":{},"o":{"docs":{},"l":{"docs":{},"e":{"docs":{},"a":{"docs":{},"n":{"docs":{},")":{"docs":{"detailed/numeric_interval.html":{"ref":"detailed/numeric_interval.html","tf":0.017241379310344827}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"e":{"docs":{},"n":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"(":{"docs":{},"b":{"docs":{},"o":{"docs":{},"o":{"docs":{},"l":{"docs":{},"e":{"docs":{},"a":{"docs":{},"n":{"docs":{},")":{"docs":{"detailed/numeric_interval.html":{"ref":"detailed/numeric_interval.html","tf":0.017241379310344827}}}}}}}}}}}}}}}}}}}}}}}}},"l":{"docs":{},"e":{"docs":{},"f":{"docs":{},"t":{"docs":{},"h":{"docs":{},"o":{"docs":{},"r":{"docs":{},"i":{"docs":{},"z":{"docs":{},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{},"a":{"docs":{},"l":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"o":{"docs":{},"l":{"docs":{"base/table/table_view.html":{"ref":"base/table/table_view.html","tf":0.006289308176100629},"base/table/grid_table.html":{"ref":"base/table/grid_table.html","tf":0.008771929824561403},"base/table/collection_table.html":{"ref":"base/table/collection_table.html","tf":0.006535947712418301},"base/table/resizable_table.html":{"ref":"base/table/resizable_table.html","tf":0.00625},"case/table/adaptive_table.html":{"ref":"case/table/adaptive_table.html","tf":0.006060606060606061},"case/table/tree_table.html":{"ref":"case/table/tree_table.html","tf":0.00510204081632653},"case/table/layer_tree_table.html":{"ref":"case/table/layer_tree_table.html","tf":0.00510204081632653},"detailed/table/bi.preview_table.html":{"ref":"detailed/table/bi.preview_table.html","tf":0.006756756756756757},"detailed/table/bi.responsive_table.html":{"ref":"detailed/table/bi.responsive_table.html","tf":0.005263157894736842},"detailed/table/bi.excel_table.html":{"ref":"detailed/table/bi.excel_table.html","tf":0.0055248618784530384},"detailed/table/bi.page_table.html":{"ref":"detailed/table/bi.page_table.html","tf":0.004651162790697674}}}}}}}}}}}}}}}}}}}}},"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":{"base/table/table_view.html":{"ref":"base/table/table_view.html","tf":0.006289308176100629},"base/table/grid_table.html":{"ref":"base/table/grid_table.html","tf":0.008771929824561403},"base/table/collection_table.html":{"ref":"base/table/collection_table.html","tf":0.006535947712418301},"base/table/resizable_table.html":{"ref":"base/table/resizable_table.html","tf":0.00625},"case/table/adaptive_table.html":{"ref":"case/table/adaptive_table.html","tf":0.006060606060606061},"case/table/tree_table.html":{"ref":"case/table/tree_table.html","tf":0.00510204081632653},"case/table/layer_tree_table.html":{"ref":"case/table/layer_tree_table.html","tf":0.00510204081632653},"detailed/table/bi.preview_table.html":{"ref":"detailed/table/bi.preview_table.html","tf":0.006756756756756757},"detailed/table/bi.responsive_table.html":{"ref":"detailed/table/bi.responsive_table.html","tf":0.005263157894736842},"detailed/table/bi.excel_table.html":{"ref":"detailed/table/bi.excel_table.html","tf":0.0055248618784530384},"detailed/table/bi.page_table.html":{"ref":"detailed/table/bi.page_table.html","tf":0.004651162790697674}}}}}}}}}}}}}},"i":{"docs":{},"g":{"docs":{},"h":{"docs":{},"t":{"docs":{},"h":{"docs":{},"o":{"docs":{},"r":{"docs":{},"i":{"docs":{},"z":{"docs":{},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{},"a":{"docs":{},"l":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"o":{"docs":{},"l":{"docs":{"base/table/table_view.html":{"ref":"base/table/table_view.html","tf":0.006289308176100629},"base/table/grid_table.html":{"ref":"base/table/grid_table.html","tf":0.008771929824561403},"base/table/collection_table.html":{"ref":"base/table/collection_table.html","tf":0.006535947712418301},"base/table/resizable_table.html":{"ref":"base/table/resizable_table.html","tf":0.00625},"case/table/adaptive_table.html":{"ref":"case/table/adaptive_table.html","tf":0.006060606060606061},"case/table/tree_table.html":{"ref":"case/table/tree_table.html","tf":0.00510204081632653},"case/table/layer_tree_table.html":{"ref":"case/table/layer_tree_table.html","tf":0.00510204081632653},"detailed/table/bi.preview_table.html":{"ref":"detailed/table/bi.preview_table.html","tf":0.006756756756756757},"detailed/table/bi.responsive_table.html":{"ref":"detailed/table/bi.responsive_table.html","tf":0.005263157894736842},"detailed/table/bi.excel_table.html":{"ref":"detailed/table/bi.excel_table.html","tf":0.0055248618784530384},"detailed/table/bi.page_table.html":{"ref":"detailed/table/bi.page_table.html","tf":0.004651162790697674}}}}}}}}}}}}}}}}}}}}}},"p":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{},"i":{"docs":{},"s":{"docs":{"case/pager/all_count_pager.html":{"ref":"case/pager/all_count_pager.html","tf":0.014705882352941176}}}}}}}}}},"m":{"docs":{},"a":{"docs":{},"x":{"docs":{},"e":{"docs":{},"n":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"(":{"docs":{},"b":{"docs":{},"o":{"docs":{},"o":{"docs":{},"l":{"docs":{},"e":{"docs":{},"a":{"docs":{},"n":{"docs":{},")":{"docs":{"detailed/numeric_interval.html":{"ref":"detailed/numeric_interval.html","tf":0.017241379310344827}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"e":{"docs":{},"n":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"(":{"docs":{},"b":{"docs":{},"o":{"docs":{},"o":{"docs":{},"l":{"docs":{},"e":{"docs":{},"a":{"docs":{},"n":{"docs":{},")":{"docs":{"detailed/numeric_interval.html":{"ref":"detailed/numeric_interval.html","tf":0.017241379310344827}}}}}}}}}}}}}}}}}}}}},"a":{"docs":{},"r":{"docs":{},"c":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{"core/combination/searcher.html":{"ref":"core/combination/searcher.html","tf":10},"core/layer/layer_searcher.html":{"ref":"core/layer/layer_searcher.html","tf":10.018518518518519}},".":{"docs":{},"p":{"docs":{},"o":{"docs":{},"p":{"docs":{},"u":{"docs":{},"l":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"(":{"docs":{},"[":{"docs":{},"{":{"docs":{"core/layer/layer_searcher.html":{"ref":"core/layer/layer_searcher.html","tf":0.009259259259259259}}}}}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"u":{"docs":{},"l":{"docs":{},"t":{"docs":{},",":{"docs":{"core/combination/searcher.html":{"ref":"core/combination/searcher.html","tf":0.004608294930875576},"core/layer/layer_searcher.html":{"ref":"core/layer/layer_searcher.html","tf":0.009259259259259259}}}}}}}}}}}}},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"v":{"docs":{},"i":{"docs":{},"d":{"docs":{"core/layer/layer_float_box.html":{"ref":"core/layer/layer_float_box.html","tf":0.012345679012345678}}}}}}}}}}}}},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"core/basic_button.html":{"ref":"core/basic_button.html","tf":0.007936507936507936},"base/editor/multifile_editor.html":{"ref":"base/editor/multifile_editor.html","tf":0.015384615384615385},"case/combo/bubble_combo.html":{"ref":"case/combo/bubble_combo.html","tf":0.005780346820809248}},"a":{"docs":{},"l":{"docs":{"base/editor/editor.html":{"ref":"base/editor/editor.html","tf":0.005405405405405406}}}},"_":{"docs":{},"l":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{"case/list/list.select.html":{"ref":"case/list/list.select.html","tf":10}}}}}},"t":{"docs":{},"r":{"docs":{},"e":{"docs":{},"e":{"docs":{},"_":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"b":{"docs":{},"o":{"docs":{"detailed/combo/select_tree_combo.html":{"ref":"detailed/combo/select_tree_combo.html","tf":10}}}}}}}}}}}}},"e":{"docs":{},"d":{"docs":{},":":{"docs":{"case/segment.html":{"ref":"case/segment.html","tf":0.009345794392523364},"detailed/bi.button/segment.html":{"ref":"detailed/bi.button/segment.html","tf":0.009345794392523364},"detailed/down_list_combo.html":{"ref":"detailed/down_list_combo.html","tf":0.006578947368421052}}},"t":{"docs":{},"i":{"docs":{},"m":{"docs":{"detailed/date/date_pane_widget.html":{"ref":"detailed/date/date_pane_widget.html","tf":0.02702702702702703}}}}}}}}}}},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"n":{"docs":{},"c":{"docs":{},"e":{"docs":{},"c":{"docs":{},"e":{"docs":{},"l":{"docs":{},"l":{"docs":{},"s":{"docs":{},"t":{"docs":{},"y":{"docs":{},"l":{"docs":{},"e":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"t":{"docs":{"case/table/tree_table.html":{"ref":"case/table/tree_table.html","tf":0.00510204081632653},"case/table/layer_tree_table.html":{"ref":"case/table/layer_tree_table.html","tf":0.00510204081632653},"detailed/table/bi.page_table.html":{"ref":"detailed/table/bi.page_table.html","tf":0.004651162790697674}}}}}}}}}}}}}}}}}}}}},"g":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"case/segment.html":{"ref":"case/segment.html","tf":10}}}}}}}},"c":{"docs":{},"r":{"docs":{},"o":{"docs":{},"l":{"docs":{},"l":{"docs":{},"i":{"docs":{"core/layout/vertical.html":{"ref":"core/layout/vertical.html","tf":0.01282051282051282},"core/layout/table.html":{"ref":"core/layout/table.html","tf":0.012048192771084338}}},"x":{"docs":{"core/layout/horizontal.html":{"ref":"core/layout/horizontal.html","tf":0.010752688172043012}}},"l":{"docs":{},"e":{"docs":{},"f":{"docs":{},"t":{"docs":{"core/abstract/grid_view.html":{"ref":"core/abstract/grid_view.html","tf":0.01282051282051282},"core/abstract/collection_view.html":{"ref":"core/abstract/collection_view.html","tf":0.014184397163120567},"base/table/table_view.html":{"ref":"base/table/table_view.html","tf":0.012578616352201259},"base/table/grid_table.html":{"ref":"base/table/grid_table.html","tf":0.017543859649122806},"base/table/collection_table.html":{"ref":"base/table/collection_table.html","tf":0.013071895424836602},"base/table/resizable_table.html":{"ref":"base/table/resizable_table.html","tf":0.0125},"detailed/table/bi.preview_table.html":{"ref":"detailed/table/bi.preview_table.html","tf":0.013513513513513514},"detailed/table/bi.responsive_table.html":{"ref":"detailed/table/bi.responsive_table.html","tf":0.010526315789473684},"detailed/table/bi.excel_table.html":{"ref":"detailed/table/bi.excel_table.html","tf":0.011049723756906077}},",":{"docs":{"core/abstract/grid_view.html":{"ref":"core/abstract/grid_view.html","tf":0.00641025641025641},"core/abstract/collection_view.html":{"ref":"core/abstract/collection_view.html","tf":0.0070921985815602835}}},":":{"docs":{"case/table/adaptive_table.html":{"ref":"case/table/adaptive_table.html","tf":0.012121212121212121},"case/table/tree_table.html":{"ref":"case/table/tree_table.html","tf":0.01020408163265306},"case/table/layer_tree_table.html":{"ref":"case/table/layer_tree_table.html","tf":0.01020408163265306},"detailed/table/bi.page_table.html":{"ref":"detailed/table/bi.page_table.html","tf":0.009302325581395349}}}}}}},"t":{"docs":{},"o":{"docs":{},"p":{"docs":{"core/abstract/grid_view.html":{"ref":"core/abstract/grid_view.html","tf":0.01282051282051282},"core/abstract/collection_view.html":{"ref":"core/abstract/collection_view.html","tf":0.014184397163120567},"core/abstract/virtual_list.html":{"ref":"core/abstract/virtual_list.html","tf":0.0125},"base/table/table_view.html":{"ref":"base/table/table_view.html","tf":0.006289308176100629},"base/table/grid_table.html":{"ref":"base/table/grid_table.html","tf":0.008771929824561403},"base/table/collection_table.html":{"ref":"base/table/collection_table.html","tf":0.006535947712418301},"base/table/resizable_table.html":{"ref":"base/table/resizable_table.html","tf":0.00625},"detailed/table/bi.preview_table.html":{"ref":"detailed/table/bi.preview_table.html","tf":0.006756756756756757},"detailed/table/bi.responsive_table.html":{"ref":"detailed/table/bi.responsive_table.html","tf":0.005263157894736842},"detailed/table/bi.excel_table.html":{"ref":"detailed/table/bi.excel_table.html","tf":0.0055248618784530384}},":":{"docs":{"core/abstract/grid_view.html":{"ref":"core/abstract/grid_view.html","tf":0.01282051282051282},"core/abstract/collection_view.html":{"ref":"core/abstract/collection_view.html","tf":0.0070921985815602835},"case/table/adaptive_table.html":{"ref":"case/table/adaptive_table.html","tf":0.006060606060606061},"case/table/tree_table.html":{"ref":"case/table/tree_table.html","tf":0.00510204081632653},"case/table/layer_tree_table.html":{"ref":"case/table/layer_tree_table.html","tf":0.00510204081632653},"detailed/table/bi.page_table.html":{"ref":"detailed/table/bi.page_table.html","tf":0.004651162790697674}}},"}":{"docs":{"core/abstract/grid_view.html":{"ref":"core/abstract/grid_view.html","tf":0.00641025641025641},"core/abstract/collection_view.html":{"ref":"core/abstract/collection_view.html","tf":0.0070921985815602835}}}}}}}}}}},"o":{"docs":{},"u":{"docs":{},"r":{"docs":{},"c":{"docs":{"core/layout/vertical.html":{"ref":"core/layout/vertical.html","tf":0.01282051282051282},"core/layout/horizontal.html":{"ref":"core/layout/horizontal.html","tf":0.010752688172043012},"core/layout/htape.html":{"ref":"core/layout/htape.html","tf":0.008},"core/layout/vtape.html":{"ref":"core/layout/vtape.html","tf":0.008},"core/layout/center_adapt.html":{"ref":"core/layout/center_adapt.html","tf":0.011764705882352941},"core/layout/vertical_adapt.html":{"ref":"core/layout/vertical_adapt.html","tf":0.011494252873563218},"core/layout/left_right_vertical_adapt.html":{"ref":"core/layout/left_right_vertical_adapt.html","tf":0.01098901098901099},"core/layout/flow.html":{"ref":"core/layout/flow.html","tf":0.007692307692307693},"core/layout/center.html":{"ref":"core/layout/center.html","tf":0.012658227848101266},"core/layout/horizontal_adapt.html":{"ref":"core/layout/horizontal_adapt.html","tf":0.010869565217391304},"core/layout/horizontal_auto.html":{"ref":"core/layout/horizontal_auto.html","tf":0.012345679012345678},"core/layout/horizontal_float.html":{"ref":"core/layout/horizontal_float.html","tf":0.013888888888888888},"core/layout/float_center.html":{"ref":"core/layout/float_center.html","tf":0.012658227848101266},"core/layout/border.html":{"ref":"core/layout/border.html","tf":0.012987012987012988},"core/layout/grid.html":{"ref":"core/layout/grid.html","tf":0.008928571428571428},"core/layout/table.html":{"ref":"core/layout/table.html","tf":0.012048192771084338},"core/layout/td.html":{"ref":"core/layout/td.html","tf":0.017857142857142856},"core/abstract/button_group.html":{"ref":"core/abstract/button_group.html","tf":0.007936507936507936},"core/abstract/button_tree.html":{"ref":"core/abstract/button_tree.html","tf":0.014925373134328358},"core/abstract/virtual_group.html":{"ref":"core/abstract/virtual_group.html","tf":0.014492753623188406},"core/abstract/custom_tree.html":{"ref":"core/abstract/custom_tree.html","tf":0.007194244604316547},"core/abstract/grid_view.html":{"ref":"core/abstract/grid_view.html","tf":0.00641025641025641},"core/abstract/collection_view.html":{"ref":"core/abstract/collection_view.html","tf":0.0070921985815602835},"core/abstract/virtual_list.html":{"ref":"core/abstract/virtual_list.html","tf":0.0125},"core/combination/bi.combo.html":{"ref":"core/combination/bi.combo.html","tf":0.004807692307692308},"core/combination/bi.expander.html":{"ref":"core/combination/bi.expander.html","tf":0.005494505494505495},"core/combination/group_combo.html":{"ref":"core/combination/group_combo.html","tf":0.007874015748031496},"core/combination/loader.html":{"ref":"core/combination/loader.html","tf":0.006289308176100629},"core/combination/navigation.html":{"ref":"core/combination/navigation.html","tf":0.007194244604316547},"core/combination/searcher.html":{"ref":"core/combination/searcher.html","tf":0.004608294930875576},"core/combination/switcher.html":{"ref":"core/combination/switcher.html","tf":0.00625},"core/combination/tab.html":{"ref":"core/combination/tab.html","tf":0.00684931506849315},"core/layer/layer_float_box.html":{"ref":"core/layer/layer_float_box.html","tf":0.012345679012345678},"core/layer/layer_popup.html":{"ref":"core/layer/layer_popup.html","tf":0.0058823529411764705},"core/layer/layer_searcher.html":{"ref":"core/layer/layer_searcher.html","tf":0.009259259259259259},"base/label.html":{"ref":"base/label.html","tf":0.006711409395973154},"base/bubble.html":{"ref":"base/bubble.html","tf":0.023255813953488372},"base/toast.html":{"ref":"base/toast.html","tf":0.020833333333333332},"base/message.html":{"ref":"base/message.html","tf":0.02127659574468085},"base/button/button.html":{"ref":"base/button/button.html","tf":0.005681818181818182},"base/button/text_button.html":{"ref":"base/button/text_button.html","tf":0.009433962264150943},"base/button/icon_button.html":{"ref":"base/button/icon_button.html","tf":0.02564102564102564},"base/button/image_button.html":{"ref":"base/button/image_button.html","tf":0.014925373134328358},"base/editor/editor.html":{"ref":"base/editor/editor.html","tf":0.005405405405405406},"base/editor/code_editor.html":{"ref":"base/editor/code_editor.html","tf":0.012658227848101266},"base/editor/multifile_editor.html":{"ref":"base/editor/multifile_editor.html","tf":0.015384615384615385},"base/editor/textarea_editor.html":{"ref":"base/editor/textarea_editor.html","tf":0.021739130434782608},"base/editor/formula_editor.html":{"ref":"base/editor/formula_editor.html","tf":0.010101010101010102},"base/table/table_view.html":{"ref":"base/table/table_view.html","tf":0.006289308176100629},"base/table/grid_table.html":{"ref":"base/table/grid_table.html","tf":0.008771929824561403},"base/table/collection_table.html":{"ref":"base/table/collection_table.html","tf":0.006535947712418301},"base/table/resizable_table.html":{"ref":"base/table/resizable_table.html","tf":0.00625},"base/pager.html":{"ref":"base/pager.html","tf":0.006666666666666667},"base/svg.html":{"ref":"base/svg.html","tf":0.011235955056179775},"base/canvas.html":{"ref":"base/canvas.html","tf":0.016666666666666666},"case/button/multi_select_item.html":{"ref":"case/button/multi_select_item.html","tf":0.017543859649122806},"case/button/single_select_item.html":{"ref":"case/button/single_select_item.html","tf":0.016129032258064516},"case/button/single_select_radio_item.html":{"ref":"case/button/single_select_radio_item.html","tf":0.016129032258064516},"case/editor/shelter_editor.html":{"ref":"case/editor/shelter_editor.html","tf":0.0051813471502590676},"case/editor/sign_editor.html":{"ref":"case/editor/sign_editor.html","tf":0.005494505494505495},"case/editor/sign_initial_editor.html":{"ref":"case/editor/sign_initial_editor.html","tf":0.005154639175257732},"case/editor/state_editor.html":{"ref":"case/editor/state_editor.html","tf":0.005747126436781609},"case/layer/multi_popup_layer.html":{"ref":"case/layer/multi_popup_layer.html","tf":0.04},"case/layer/layer_panel.html":{"ref":"case/layer/layer_panel.html","tf":0.010752688172043012},"case/layer/pane_list.html":{"ref":"case/layer/pane_list.html","tf":0.006802721088435374},"case/layer/panel.html":{"ref":"case/layer/panel.html","tf":0.015873015873015872},"case/list/list.select.html":{"ref":"case/list/list.select.html","tf":0.009433962264150943},"case/loader/lazy_loader.html":{"ref":"case/loader/lazy_loader.html","tf":0.01694915254237288},"case/loader/list_loader.html":{"ref":"case/loader/list_loader.html","tf":0.010752688172043012},"case/loader/sort_list.html":{"ref":"case/loader/sort_list.html","tf":0.010752688172043012},"case/trigger/editor_trigger.html":{"ref":"case/trigger/editor_trigger.html","tf":0.02},"case/trigger/icon_trigger.html":{"ref":"case/trigger/icon_trigger.html","tf":0.1111111111111111},"case/trigger/text_trigger.html":{"ref":"case/trigger/text_trigger.html","tf":0.05263157894736842},"case/combo/bubble_combo.html":{"ref":"case/combo/bubble_combo.html","tf":0.005780346820809248},"case/combo/icon_combo.html":{"ref":"case/combo/icon_combo.html","tf":0.007751937984496124},"case/combo/static_combo.html":{"ref":"case/combo/static_combo.html","tf":0.0125},"case/combo/text_value_combo.html":{"ref":"case/combo/text_value_combo.html","tf":0.013513513513513514},"case/combo/text_value_downlist_combo.html":{"ref":"case/combo/text_value_downlist_combo.html","tf":0.013513513513513514},"case/tree/branch_tree.html":{"ref":"case/tree/branch_tree.html","tf":0.02},"case/tree/handstand_branch_tree.html":{"ref":"case/tree/handstand_branch_tree.html","tf":0.019230769230769232},"case/tree/display_tree.html":{"ref":"case/tree/display_tree.html","tf":0.030303030303030304},"case/tree/simple_tree.html":{"ref":"case/tree/simple_tree.html","tf":0.022222222222222223},"case/tree/level_tree.html":{"ref":"case/tree/level_tree.html","tf":0.017857142857142856},"case/tree/branch_relation.html":{"ref":"case/tree/branch_relation.html","tf":0.02040816326530612},"case/table/adaptive_table.html":{"ref":"case/table/adaptive_table.html","tf":0.006060606060606061},"case/table/tree_table.html":{"ref":"case/table/tree_table.html","tf":0.00510204081632653},"case/table/layer_tree_table.html":{"ref":"case/table/layer_tree_table.html","tf":0.00510204081632653},"case/pager/all_count_pager.html":{"ref":"case/pager/all_count_pager.html","tf":0.014705882352941176},"case/pager/direction_pager.html":{"ref":"case/pager/direction_pager.html","tf":0.00819672131147541},"case/calendar.html":{"ref":"case/calendar.html","tf":0.013888888888888888},"case/clipboard.html":{"ref":"case/clipboard.html","tf":0.03125},"case/complex_canvas.html":{"ref":"case/complex_canvas.html","tf":0.020833333333333332},"case/color_chooser.html":{"ref":"case/color_chooser.html","tf":0.038461538461538464},"case/color_chooser_popup.html":{"ref":"case/color_chooser_popup.html","tf":0.029411764705882353},"case/segment.html":{"ref":"case/segment.html","tf":0.009345794392523364},"detailed/bi.button/tooltip.html":{"ref":"detailed/bi.button/tooltip.html","tf":0.011363636363636364},"detailed/bi.button/items.html":{"ref":"detailed/bi.button/items.html","tf":0.010638297872340425},"detailed/bi.button/node.html":{"ref":"detailed/bi.button/node.html","tf":0.009259259259259259},"detailed/bi.button/segment.html":{"ref":"detailed/bi.button/segment.html","tf":0.009345794392523364},"detailed/tree/bi.multi_tree_combo.html":{"ref":"detailed/tree/bi.multi_tree_combo.html","tf":0.010869565217391304},"detailed/tree/bi.switch_tree.html":{"ref":"detailed/tree/bi.switch_tree.html","tf":0.013157894736842105},"detailed/table/bi.preview_table.html":{"ref":"detailed/table/bi.preview_table.html","tf":0.006756756756756757},"detailed/table/bi.responsive_table.html":{"ref":"detailed/table/bi.responsive_table.html","tf":0.005263157894736842},"detailed/table/bi.excel_table.html":{"ref":"detailed/table/bi.excel_table.html","tf":0.0055248618784530384},"detailed/table/bi.page_table.html":{"ref":"detailed/table/bi.page_table.html","tf":0.004651162790697674},"detailed/text_input/bi.text_editor.html":{"ref":"detailed/text_input/bi.text_editor.html","tf":0.010309278350515464},"detailed/text_input/bi.search_editor.html":{"ref":"detailed/text_input/bi.search_editor.html","tf":0.010101010101010102},"detailed/text_input/bi.clear_editor.html":{"ref":"detailed/text_input/bi.clear_editor.html","tf":0.00980392156862745},"detailed/text_input/finetuning_number_editor.html":{"ref":"detailed/text_input/finetuning_number_editor.html","tf":0.037037037037037035},"detailed/year_combo.html":{"ref":"detailed/year_combo.html","tf":0.025},"detailed/month_combo.html":{"ref":"detailed/month_combo.html","tf":0.03571428571428571},"detailed/quarter_combo.html":{"ref":"detailed/quarter_combo.html","tf":0.03571428571428571},"detailed/down_list_combo.html":{"ref":"detailed/down_list_combo.html","tf":0.006578947368421052},"detailed/numeric_interval.html":{"ref":"detailed/numeric_interval.html","tf":0.017241379310344827},"detailed/multi_select_combo.html":{"ref":"detailed/multi_select_combo.html","tf":0.04},"detailed/date/date_combo.html":{"ref":"detailed/date/date_combo.html","tf":0.058823529411764705},"detailed/date/date_pane_widget.html":{"ref":"detailed/date/date_pane_widget.html","tf":0.02702702702702703},"detailed/date/year_month_combo.html":{"ref":"detailed/date/year_month_combo.html","tf":0.029411764705882353},"detailed/date/year_quarter_combo.html":{"ref":"detailed/date/year_quarter_combo.html","tf":0.03225806451612903},"detailed/date/custom_date_time.html":{"ref":"detailed/date/custom_date_time.html","tf":0.045454545454545456},"detailed/combo/single_tree_combo.html":{"ref":"detailed/combo/single_tree_combo.html","tf":0.01694915254237288},"detailed/combo/multilayer_single_tree_combo.html":{"ref":"detailed/combo/multilayer_single_tree_combo.html","tf":0.018867924528301886},"detailed/combo/select_tree_combo.html":{"ref":"detailed/combo/select_tree_combo.html","tf":0.02040816326530612},"detailed/combo/multilayer_select_tree_combo.html":{"ref":"detailed/combo/multilayer_select_tree_combo.html","tf":0.02040816326530612},"detailed/path/path_chooser.html":{"ref":"detailed/path/path_chooser.html","tf":0.019230769230769232},"detailed/path/direction_path_chooser.html":{"ref":"detailed/path/direction_path_chooser.html","tf":0.02},"detailed/relation_view.html":{"ref":"detailed/relation_view.html","tf":0.019230769230769232},"detailed/dialog.html":{"ref":"detailed/dialog.html","tf":0.043478260869565216},"detailed/file_manager.html":{"ref":"detailed/file_manager.html","tf":0.023255813953488372},"detailed/slider.html":{"ref":"detailed/slider.html","tf":0.029411764705882353}}}},"t":{"docs":{},"h":{"docs":{},":":{"docs":{"core/layout/border.html":{"ref":"core/layout/border.html","tf":0.012987012987012988}}}}}},"l":{"docs":{},"i":{"docs":{},"d":{"docs":{"base/canvas.html":{"ref":"base/canvas.html","tf":0.016666666666666666}}}}},"r":{"docs":{},"t":{"docs":{},"_":{"docs":{},"l":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{"case/loader/sort_list.html":{"ref":"case/loader/sort_list.html","tf":10}}}}}}}}}},"t":{"docs":{},"r":{"docs":{"base/editor/code_editor.html":{"ref":"base/editor/code_editor.html","tf":0.012658227848101266},"base/editor/formula_editor.html":{"ref":"base/editor/formula_editor.html","tf":0.010101010101010102}},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{"core/layout/horizontal.html":{"ref":"core/layout/horizontal.html","tf":0.010752688172043012},"core/combination/bi.combo.html":{"ref":"core/combination/bi.combo.html","tf":0.02403846153846154},"core/combination/bi.expander.html":{"ref":"core/combination/bi.expander.html","tf":0.02197802197802198},"core/combination/group_combo.html":{"ref":"core/combination/group_combo.html","tf":0.015748031496062992},"core/combination/loader.html":{"ref":"core/combination/loader.html","tf":0.006289308176100629},"core/combination/navigation.html":{"ref":"core/combination/navigation.html","tf":0.007194244604316547},"core/combination/switcher.html":{"ref":"core/combination/switcher.html","tf":0.025},"core/combination/tab.html":{"ref":"core/combination/tab.html","tf":0.00684931506849315},"core/layer/layer_searcher.html":{"ref":"core/layer/layer_searcher.html","tf":0.009259259259259259},"core/widget.html":{"ref":"core/widget.html","tf":0.02040816326530612},"core/single.html":{"ref":"core/single.html","tf":0.05555555555555555},"core/basic_button.html":{"ref":"core/basic_button.html","tf":0.015873015873015872},"core/pane.html":{"ref":"core/pane.html","tf":0.0196078431372549},"base/label.html":{"ref":"base/label.html","tf":0.04697986577181208},"base/bubble.html":{"ref":"base/bubble.html","tf":0.046511627906976744},"base/toast.html":{"ref":"base/toast.html","tf":0.041666666666666664},"base/button/button.html":{"ref":"base/button/button.html","tf":0.022727272727272728},"base/button/text_button.html":{"ref":"base/button/text_button.html","tf":0.03773584905660377},"base/button/image_button.html":{"ref":"base/button/image_button.html","tf":0.014925373134328358},"base/editor/editor.html":{"ref":"base/editor/editor.html","tf":0.016216216216216217},"base/editor/code_editor.html":{"ref":"base/editor/code_editor.html","tf":0.02531645569620253},"base/editor/multifile_editor.html":{"ref":"base/editor/multifile_editor.html","tf":0.03076923076923077},"base/editor/textarea_editor.html":{"ref":"base/editor/textarea_editor.html","tf":0.021739130434782608},"base/editor/formula_editor.html":{"ref":"base/editor/formula_editor.html","tf":0.020202020202020204},"case/button/single_select_item.html":{"ref":"case/button/single_select_item.html","tf":0.016129032258064516},"case/button/single_select_radio_item.html":{"ref":"case/button/single_select_radio_item.html","tf":0.016129032258064516},"case/editor/shelter_editor.html":{"ref":"case/editor/shelter_editor.html","tf":0.010362694300518135},"case/editor/sign_editor.html":{"ref":"case/editor/sign_editor.html","tf":0.005494505494505495},"case/editor/sign_initial_editor.html":{"ref":"case/editor/sign_initial_editor.html","tf":0.015463917525773196},"case/editor/state_editor.html":{"ref":"case/editor/state_editor.html","tf":0.005747126436781609},"case/layer/layer_panel.html":{"ref":"case/layer/layer_panel.html","tf":0.010752688172043012},"case/layer/panel.html":{"ref":"case/layer/panel.html","tf":0.015873015873015872},"case/list/list.select.html":{"ref":"case/list/list.select.html","tf":0.009433962264150943},"case/trigger/editor_trigger.html":{"ref":"case/trigger/editor_trigger.html","tf":0.04},"case/combo/bubble_combo.html":{"ref":"case/combo/bubble_combo.html","tf":0.017341040462427744},"case/combo/icon_combo.html":{"ref":"case/combo/icon_combo.html","tf":0.015503875968992248},"case/combo/static_combo.html":{"ref":"case/combo/static_combo.html","tf":0.0125},"case/combo/text_value_combo.html":{"ref":"case/combo/text_value_combo.html","tf":0.013513513513513514},"case/combo/text_value_downlist_combo.html":{"ref":"case/combo/text_value_downlist_combo.html","tf":0.013513513513513514},"case/tree/branch_relation.html":{"ref":"case/tree/branch_relation.html","tf":0.04081632653061224},"case/calendar.html":{"ref":"case/calendar.html","tf":0.027777777777777776},"detailed/text_input/bi.text_editor.html":{"ref":"detailed/text_input/bi.text_editor.html","tf":0.030927835051546393},"detailed/text_input/bi.search_editor.html":{"ref":"detailed/text_input/bi.search_editor.html","tf":0.030303030303030304},"detailed/text_input/bi.clear_editor.html":{"ref":"detailed/text_input/bi.clear_editor.html","tf":0.029411764705882353},"detailed/year_combo.html":{"ref":"detailed/year_combo.html","tf":0.05},"detailed/down_list_combo.html":{"ref":"detailed/down_list_combo.html","tf":0.013157894736842105},"detailed/date/date_pane_widget.html":{"ref":"detailed/date/date_pane_widget.html","tf":0.05405405405405406},"detailed/combo/single_tree_combo.html":{"ref":"detailed/combo/single_tree_combo.html","tf":0.01694915254237288},"detailed/combo/multilayer_single_tree_combo.html":{"ref":"detailed/combo/multilayer_single_tree_combo.html","tf":0.018867924528301886},"detailed/combo/select_tree_combo.html":{"ref":"detailed/combo/select_tree_combo.html","tf":0.02040816326530612},"detailed/combo/multilayer_select_tree_combo.html":{"ref":"detailed/combo/multilayer_select_tree_combo.html","tf":0.02040816326530612},"detailed/dialog.html":{"ref":"detailed/dialog.html","tf":0.08695652173913043}},"/":{"docs":{},"f":{"docs":{},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{},"t":{"docs":{"base/editor/editor.html":{"ref":"base/editor/editor.html","tf":0.005405405405405406},"case/editor/shelter_editor.html":{"ref":"case/editor/shelter_editor.html","tf":0.0051813471502590676},"case/editor/sign_editor.html":{"ref":"case/editor/sign_editor.html","tf":0.005494505494505495},"case/editor/sign_initial_editor.html":{"ref":"case/editor/sign_initial_editor.html","tf":0.005154639175257732},"case/editor/state_editor.html":{"ref":"case/editor/state_editor.html","tf":0.005747126436781609}}}}}}},"n":{"docs":{},"u":{"docs":{},"m":{"docs":{},"b":{"docs":{"case/combo/icon_combo.html":{"ref":"case/combo/icon_combo.html","tf":0.007751937984496124}}}}}}},",":{"docs":{"base/svg.html":{"ref":"base/svg.html","tf":0.011235955056179775}},"o":{"docs":{},"b":{"docs":{},"j":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"base/pager.html":{"ref":"base/pager.html","tf":0.006666666666666667}}}}}}}}}}}},"o":{"docs":{},"k":{"docs":{},"e":{"docs":{"core/abstract/custom_tree.html":{"ref":"core/abstract/custom_tree.html","tf":0.007194244604316547},"base/canvas.html":{"ref":"base/canvas.html","tf":0.016666666666666666},"case/tree/level_tree.html":{"ref":"case/tree/level_tree.html","tf":0.017857142857142856},"case/complex_canvas.html":{"ref":"case/complex_canvas.html","tf":0.020833333333333332}},"s":{"docs":{},"t":{"docs":{},"y":{"docs":{},"l":{"docs":{},"e":{"docs":{},":":{"docs":{"case/complex_canvas.html":{"ref":"case/complex_canvas.html","tf":0.020833333333333332}}}}}}}}}}},"e":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{},")":{"docs":{"base/svg.html":{"ref":"base/svg.html","tf":0.011235955056179775}}}}}}}},"o":{"docs":{},"p":{"docs":{},"e":{"docs":{},"v":{"docs":{"core/combination/bi.combo.html":{"ref":"core/combination/bi.combo.html","tf":0.004807692307692308},"core/layer/layer_popup.html":{"ref":"core/layer/layer_popup.html","tf":0.0058823529411764705},"core/basic_button.html":{"ref":"core/basic_button.html","tf":0.007936507936507936},"case/combo/bubble_combo.html":{"ref":"case/combo/bubble_combo.html","tf":0.005780346820809248}}}},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"p":{"docs":{},"a":{"docs":{},"g":{"docs":{"core/combination/bi.combo.html":{"ref":"core/combination/bi.combo.html","tf":0.004807692307692308},"core/layer/layer_popup.html":{"ref":"core/layer/layer_popup.html","tf":0.0058823529411764705},"core/basic_button.html":{"ref":"core/basic_button.html","tf":0.007936507936507936},"case/combo/bubble_combo.html":{"ref":"case/combo/bubble_combo.html","tf":0.005780346820809248}}}}}}}},"s":{"docs":{},"e":{"docs":{},"a":{"docs":{},"r":{"docs":{},"c":{"docs":{},"h":{"docs":{"core/combination/searcher.html":{"ref":"core/combination/searcher.html","tf":0.004608294930875576}}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},",":{"docs":{},"o":{"docs":{},"b":{"docs":{},"j":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"base/pager.html":{"ref":"base/pager.html","tf":0.006666666666666667}}}}}}}}}}}},"y":{"docs":{},"l":{"docs":{},"e":{"docs":{"case/editor/shelter_editor.html":{"ref":"case/editor/shelter_editor.html","tf":0.0051813471502590676}},",":{"docs":{"base/svg.html":{"ref":"base/svg.html","tf":0.011235955056179775}}}}}},"a":{"docs":{},"r":{"docs":{},"t":{"docs":{},",":{"docs":{"base/canvas.html":{"ref":"base/canvas.html","tf":0.016666666666666666}}}}},"t":{"docs":{},"e":{"docs":{},"_":{"docs":{},"e":{"docs":{},"d":{"docs":{},"i":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{"case/editor/state_editor.html":{"ref":"case/editor/state_editor.html","tf":10}}}}}}}}}},"i":{"docs":{},"c":{"docs":{},"_":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"b":{"docs":{},"o":{"docs":{"case/combo/static_combo.html":{"ref":"case/combo/static_combo.html","tf":10}}}}}}}}}}}}},"h":{"docs":{},"o":{"docs":{},"w":{"docs":{"core/layer/layer_float_box.html":{"ref":"core/layer/layer_float_box.html","tf":0.012345679012345678}},"v":{"docs":{},"i":{"docs":{},"e":{"docs":{},"w":{"docs":{"core/combination/bi.combo.html":{"ref":"core/combination/bi.combo.html","tf":0.004807692307692308},"core/combination/bi.expander.html":{"ref":"core/combination/bi.expander.html","tf":0.005494505494505495},"core/combination/switcher.html":{"ref":"core/combination/switcher.html","tf":0.00625},"case/combo/icon_combo.html":{"ref":"case/combo/icon_combo.html","tf":0.007751937984496124}}}}}},"h":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{"base/editor/formula_editor.html":{"ref":"base/editor/formula_editor.html","tf":0.010101010101010102}}}}}}}},"a":{"docs":{},"d":{"docs":{},"o":{"docs":{},"w":{"docs":{"core/basic_button.html":{"ref":"core/basic_button.html","tf":0.007936507936507936},"base/button/button.html":{"ref":"base/button/button.html","tf":0.005681818181818182},"case/combo/bubble_combo.html":{"ref":"case/combo/bubble_combo.html","tf":0.005780346820809248}}}}}},"e":{"docs":{},"l":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"_":{"docs":{},"e":{"docs":{},"d":{"docs":{},"i":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{"case/editor/shelter_editor.html":{"ref":"case/editor/shelter_editor.html","tf":10}}}}}}}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"l":{"docs":{"core/combination/navigation.html":{"ref":"core/combination/navigation.html","tf":0.007194244604316547},"core/combination/tab.html":{"ref":"core/combination/tab.html","tf":0.00684931506849315},"core/single.html":{"ref":"core/single.html","tf":10}},"e":{"docs":{},"_":{"docs":{},"s":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"_":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{"case/button/single_select_item.html":{"ref":"case/button/single_select_item.html","tf":10}}}}}},"r":{"docs":{},"a":{"docs":{},"d":{"docs":{},"i":{"docs":{},"o":{"docs":{},"_":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{"case/button/single_select_radio_item.html":{"ref":"case/button/single_select_radio_item.html","tf":10}}}}}}}}}}}}}}}}}}},"t":{"docs":{},"r":{"docs":{},"e":{"docs":{},"e":{"docs":{},"_":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"b":{"docs":{},"o":{"docs":{"detailed/combo/single_tree_combo.html":{"ref":"detailed/combo/single_tree_combo.html","tf":10}}}}}}}}}}}}}}}}},"z":{"docs":{},"e":{"docs":{},",":{"docs":{"base/svg.html":{"ref":"base/svg.html","tf":0.011235955056179775}}}}},"g":{"docs":{},"n":{"docs":{},"_":{"docs":{},"e":{"docs":{},"d":{"docs":{},"i":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{"case/editor/sign_editor.html":{"ref":"case/editor/sign_editor.html","tf":10}}}}}}}},"i":{"docs":{},"n":{"docs":{},"i":{"docs":{},"t":{"docs":{},"i":{"docs":{},"a":{"docs":{},"l":{"docs":{},"_":{"docs":{},"e":{"docs":{},"d":{"docs":{},"i":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{"case/editor/sign_initial_editor.html":{"ref":"case/editor/sign_initial_editor.html","tf":10}}}}}}}}}}}}}}}}}}},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{},"e":{"docs":{},"_":{"docs":{},"t":{"docs":{},"r":{"docs":{},"e":{"docs":{"case/tree/simple_tree.html":{"ref":"case/tree/simple_tree.html","tf":10}}}}}}}}}}},"w":{"docs":{},"i":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{"core/combination/tab.html":{"ref":"core/combination/tab.html","tf":0.00684931506849315}},"e":{"docs":{},"r":{"docs":{"core/combination/switcher.html":{"ref":"core/combination/switcher.html","tf":10.0125}},"c":{"docs":{},"l":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{"core/combination/switcher.html":{"ref":"core/combination/switcher.html","tf":0.00625}}}}}}}}},"_":{"docs":{},"t":{"docs":{},"r":{"docs":{},"e":{"docs":{"detailed/tree/bi.switch_tree.html":{"ref":"detailed/tree/bi.switch_tree.html","tf":10}}}}}},"s":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"detailed/tree/bi.switch_tree.html":{"ref":"detailed/tree/bi.switch_tree.html","tf":0.013157894736842105}}}}}}}}}}}}},"u":{"docs":{},"c":{"docs":{},"c":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{},",":{"docs":{},"w":{"docs":{},"a":{"docs":{},"r":{"docs":{},"n":{"docs":{"core/single.html":{"ref":"core/single.html","tf":0.013888888888888888},"base/toast.html":{"ref":"base/toast.html","tf":0.020833333333333332},"base/editor/editor.html":{"ref":"base/editor/editor.html","tf":0.005405405405405406}}}}}}}}}}}},"m":{"docs":{},"m":{"docs":{},"a":{"docs":{},"r":{"docs":{},"y":{"docs":{},"c":{"docs":{},"e":{"docs":{},"l":{"docs":{},"l":{"docs":{},"s":{"docs":{},"t":{"docs":{},"y":{"docs":{},"l":{"docs":{},"e":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"t":{"docs":{"case/table/tree_table.html":{"ref":"case/table/tree_table.html","tf":0.00510204081632653},"case/table/layer_tree_table.html":{"ref":"case/table/layer_tree_table.html","tf":0.00510204081632653},"detailed/table/bi.page_table.html":{"ref":"detailed/table/bi.page_table.html","tf":0.004651162790697674}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"c":{"docs":{"base/button/image_button.html":{"ref":"base/button/image_button.html","tf":0.029850746268656716}},":":{"docs":{"base/button/image_button.html":{"ref":"base/button/image_button.html","tf":0.014925373134328358}}}}},"v":{"docs":{},"g":{"docs":{"base/svg.html":{"ref":"base/svg.html","tf":10.01123595505618}},".":{"docs":{},"p":{"docs":{},"a":{"docs":{},"t":{"docs":{},"h":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"m":{"1":{"0":{"docs":{},",":{"1":{"0":{"docs":{},"l":{"5":{"0":{"docs":{},",":{"5":{"0":{"docs":{},"m":{"5":{"0":{"docs":{},",":{"1":{"0":{"docs":{},"l":{"1":{"0":{"docs":{},",":{"5":{"0":{"docs":{},"\"":{"docs":{},")":{"docs":{"base/svg.html":{"ref":"base/svg.html","tf":0.011235955056179775}}}}},"docs":{}},"docs":{}}},"docs":{}},"docs":{}}},"docs":{}},"docs":{}}},"docs":{}},"docs":{}}},"docs":{}},"docs":{}}},"docs":{}},"docs":{}}},"docs":{}},"docs":{}}},"docs":{}},"docs":{}}}}}}}}},"绘":{"docs":{},"图":{"docs":{},",":{"docs":{},"基":{"docs":{},"类":{"docs":{},"b":{"docs":{},"i":{"docs":{},".":{"docs":{},"w":{"docs":{},"i":{"docs":{},"d":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{"base/svg.html":{"ref":"base/svg.html","tf":0.011235955056179775}}}}}}}}}}}}}}}}}},"l":{"docs":{},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{"detailed/slider.html":{"ref":"detailed/slider.html","tf":10}},"插":{"docs":{},"件":{"docs":{"detailed/slider.html":{"ref":"detailed/slider.html","tf":0.029411764705882353}}}}}}}}}},"使":{"docs":{},"用":{"docs":{},"p":{"docs":{},"o":{"docs":{},"p":{"docs":{},"u":{"docs":{},"l":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"来":{"docs":{},"清":{"docs":{},"空":{"docs":{},"或":{"docs":{},"者":{"docs":{},"重":{"docs":{},"置":{"docs":{},"布":{"docs":{},"局":{"docs":{},",":{"docs":{},"不":{"docs":{},"要":{"docs":{},"使":{"docs":{},"用":{"docs":{},"e":{"docs":{},"m":{"docs":{},"p":{"docs":{},"t":{"docs":{},"y":{"docs":{},",":{"docs":{"OVERVIEW.html":{"ref":"OVERVIEW.html","tf":0.1}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"能":{"docs":{},"选":{"docs":{},"中":{"docs":{"core/basic_button.html":{"ref":"core/basic_button.html","tf":0.007936507936507936},"case/combo/bubble_combo.html":{"ref":"case/combo/bubble_combo.html","tf":0.005780346820809248}}}}}},"慎":{"docs":{},"用":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"i":{"docs":{},"z":{"docs":{"OVERVIEW.html":{"ref":"OVERVIEW.html","tf":0.1}}}}}}}}},"控":{"docs":{},"件":{"docs":{},"都":{"docs":{},"会":{"docs":{},"提":{"docs":{},"供":{"docs":{},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{},"e":{"docs":{},"n":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},",":{"docs":{"OVERVIEW.html":{"ref":"OVERVIEW.html","tf":0.1}}}}}}}}},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{},"e":{"docs":{},",":{"docs":{"OVERVIEW.html":{"ref":"OVERVIEW.html","tf":0.1}}}}}}}}}}}}}}},"位":{"docs":{},"置":{"docs":{"core/combination/navigation.html":{"ref":"core/combination/navigation.html","tf":0.007194244604316547},"core/combination/tab.html":{"ref":"core/combination/tab.html","tf":0.00684931506849315}}}},"高":{"docs":{},"度":{"docs":{"case/pager/all_count_pager.html":{"ref":"case/pager/all_count_pager.html","tf":0.014705882352941176},"case/pager/direction_pager.html":{"ref":"case/pager/direction_pager.html","tf":0.00819672131147541}}}}}},"谨":{"docs":{},"慎":{"docs":{},"监":{"docs":{},"听":{"docs":{},"和":{"docs":{},"触":{"docs":{},"发":{"docs":{},"b":{"docs":{},"i":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{},"r":{"docs":{},"o":{"docs":{},"l":{"docs":{},"l":{"docs":{},"e":{"docs":{},"r":{"docs":{},".":{"docs":{},"e":{"docs":{},"v":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"_":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{},"e":{"docs":{},"事":{"docs":{},"件":{"docs":{},",":{"docs":{},"一":{"docs":{},"般":{"docs":{},"来":{"docs":{},"说":{"docs":{},",":{"docs":{},"控":{"docs":{},"件":{"docs":{},"都":{"docs":{},"会":{"docs":{},"有":{"docs":{},"一":{"docs":{},"个":{"docs":{},"b":{"docs":{},"i":{"docs":{},".":{"docs":{},"c":{"docs":{},"l":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},".":{"docs":{},"e":{"docs":{},"v":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"_":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{},"e":{"docs":{},"事":{"docs":{},"件":{"docs":{},",":{"docs":{},"一":{"docs":{},"些":{"docs":{},"特":{"docs":{},"殊":{"docs":{},"的":{"docs":{},"事":{"docs":{},"件":{"docs":{},"会":{"docs":{},"在":{"docs":{},"对":{"docs":{},"应":{"docs":{},"控":{"docs":{},"件":{"docs":{},"文":{"docs":{},"档":{"docs":{},"中":{"docs":{},"列":{"docs":{},"出":{"docs":{"OVERVIEW.html":{"ref":"OVERVIEW.html","tf":0.1}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"通":{"docs":{},"用":{"docs":{},"规":{"docs":{},"范":{"docs":{"OVERVIEW.html":{"ref":"OVERVIEW.html","tf":10.1}}}},"按":{"docs":{},"钮":{"docs":{"detailed/bi.button/general.html":{"ref":"detailed/bi.button/general.html","tf":10}},",":{"docs":{},"详":{"docs":{},"情":{"docs":{},"见":{"docs":{},"b":{"docs":{},"i":{"docs":{},".":{"docs":{},"b":{"docs":{},"u":{"docs":{},"t":{"docs":{},"t":{"docs":{},"o":{"docs":{},"n":{"docs":{"detailed/bi.button/general.html":{"ref":"detailed/bi.button/general.html","tf":0.5}}}}}}}}}}}}}}}}}},"过":{"docs":{},"给":{"docs":{},"定":{"docs":{},"的":{"docs":{},"参":{"docs":{},"数":{"docs":{},"在":{"docs":{},"已":{"docs":{},"注":{"docs":{},"册":{"docs":{},"的":{"docs":{},"字":{"docs":{},"体":{"docs":{},"中":{"docs":{},"找":{"docs":{},"到":{"docs":{},"字":{"docs":{},"体":{"docs":{},"对":{"docs":{},"象":{"docs":{"base/svg.html":{"ref":"base/svg.html","tf":0.011235955056179775}}}}}}}}}}}}}}}}}}}}},"鼠":{"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.010309278350515464}}}}}}}}}}}}},"\"":{"0":{"docs":{},"\"":{"docs":{},",":{"docs":{"core/abstract/button_tree.html":{"ref":"core/abstract/button_tree.html","tf":0.014925373134328358}}}},"f":{"docs":{},"b":{"docs":{},"d":{"0":{"docs":{},"d":{"docs":{},"c":{"6":{"4":{"8":{"docs":{},"f":{"4":{"1":{"docs":{},"e":{"9":{"7":{"docs":{},"\"":{"docs":{},",":{"docs":{"detailed/path/path_chooser.html":{"ref":"detailed/path/path_chooser.html","tf":0.019230769230769232}}}}},"docs":{}},"docs":{}}},"docs":{}},"docs":{}}},"docs":{}},"docs":{}},"docs":{}}}},"docs":{}}}}},"1":{"0":{"0":{"docs":{},"%":{"docs":{},"\"":{"docs":{"base/button/image_button.html":{"ref":"base/button/image_button.html","tf":0.029850746268656716},"base/editor/formula_editor.html":{"ref":"base/editor/formula_editor.html","tf":0.010101010101010102}},",":{"docs":{"base/editor/formula_editor.html":{"ref":"base/editor/formula_editor.html","tf":0.010101010101010102}}}}}},"docs":{}},"1":{"docs":{},"\"":{"docs":{},",":{"docs":{"case/combo/text_value_downlist_combo.html":{"ref":"case/combo/text_value_downlist_combo.html","tf":0.013513513513513514},"detailed/file_manager.html":{"ref":"detailed/file_manager.html","tf":0.046511627906976744}}}}},"2":{"3":{"docs":{},"\"":{"docs":{},",":{"docs":{"case/editor/sign_editor.html":{"ref":"case/editor/sign_editor.html","tf":0.005494505494505495},"case/editor/state_editor.html":{"ref":"case/editor/state_editor.html","tf":0.005747126436781609}}}}},"docs":{},"\"":{"docs":{},",":{"docs":{"detailed/file_manager.html":{"ref":"detailed/file_manager.html","tf":0.046511627906976744}}}}},"docs":{},"\"":{"docs":{"detailed/path/path_chooser.html":{"ref":"detailed/path/path_chooser.html","tf":0.019230769230769232}},",":{"docs":{"case/combo/static_combo.html":{"ref":"case/combo/static_combo.html","tf":0.0125},"case/combo/text_value_combo.html":{"ref":"case/combo/text_value_combo.html","tf":0.013513513513513514},"case/combo/text_value_downlist_combo.html":{"ref":"case/combo/text_value_downlist_combo.html","tf":0.013513513513513514},"detailed/file_manager.html":{"ref":"detailed/file_manager.html","tf":0.09302325581395349}}}},"f":{"4":{"7":{"1":{"1":{"docs":{},"c":{"2":{"0":{"1":{"docs":{},"e":{"docs":{},"f":{"1":{"8":{"4":{"2":{"docs":{},"\"":{"docs":{},",":{"docs":{"detailed/path/direction_path_chooser.html":{"ref":"detailed/path/direction_path_chooser.html","tf":0.02}}}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}}}},"docs":{}},"docs":{}},"docs":{}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}}},"2":{"0":{"1":{"0":{"docs":{},"年":{"docs":{},"\"":{"docs":{},",":{"docs":{"core/combination/group_combo.html":{"ref":"core/combination/group_combo.html","tf":0.007874015748031496}}}}}},"docs":{}},"docs":{}},"docs":{},"\"":{"docs":{},",":{"docs":{"case/combo/static_combo.html":{"ref":"case/combo/static_combo.html","tf":0.0125},"case/combo/text_value_combo.html":{"ref":"case/combo/text_value_combo.html","tf":0.013513513513513514},"case/combo/text_value_downlist_combo.html":{"ref":"case/combo/text_value_downlist_combo.html","tf":0.013513513513513514}}}}},"3":{"docs":{},"\"":{"docs":{"detailed/path/path_chooser.html":{"ref":"detailed/path/path_chooser.html","tf":0.019230769230769232}},",":{"docs":{"case/combo/static_combo.html":{"ref":"case/combo/static_combo.html","tf":0.0125},"case/combo/text_value_combo.html":{"ref":"case/combo/text_value_combo.html","tf":0.013513513513513514},"case/combo/text_value_downlist_combo.html":{"ref":"case/combo/text_value_downlist_combo.html","tf":0.013513513513513514}}}}},"4":{"5":{"6":{"docs":{},"\"":{"docs":{},",":{"docs":{"case/editor/sign_editor.html":{"ref":"case/editor/sign_editor.html","tf":0.005494505494505495},"case/editor/state_editor.html":{"ref":"case/editor/state_editor.html","tf":0.005747126436781609}}}}},"docs":{}},"docs":{}},"5":{"docs":{},"\"":{"docs":{"detailed/path/path_chooser.html":{"ref":"detailed/path/path_chooser.html","tf":0.019230769230769232}}}},"8":{"docs":{},"c":{"4":{"4":{"6":{"0":{"docs":{},"b":{"docs":{},"c":{"3":{"6":{"0":{"5":{"6":{"8":{"5":{"docs":{},"e":{"docs":{},"\"":{"docs":{},",":{"docs":{"detailed/path/path_chooser.html":{"ref":"detailed/path/path_chooser.html","tf":0.019230769230769232}}}}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}}},"docs":{"core/widget.html":{"ref":"core/widget.html","tf":0.030612244897959183},"base/label.html":{"ref":"base/label.html","tf":0.013422818791946308},"base/bubble.html":{"ref":"base/bubble.html","tf":0.046511627906976744},"base/toast.html":{"ref":"base/toast.html","tf":0.041666666666666664},"base/button/button.html":{"ref":"base/button/button.html","tf":0.011363636363636364},"base/button/text_button.html":{"ref":"base/button/text_button.html","tf":0.018867924528301886},"base/button/image_button.html":{"ref":"base/button/image_button.html","tf":0.029850746268656716},"base/editor/editor.html":{"ref":"base/editor/editor.html","tf":0.021621621621621623},"base/editor/code_editor.html":{"ref":"base/editor/code_editor.html","tf":0.05063291139240506},"base/editor/multifile_editor.html":{"ref":"base/editor/multifile_editor.html","tf":0.06153846153846154},"base/editor/textarea_editor.html":{"ref":"base/editor/textarea_editor.html","tf":0.043478260869565216},"base/editor/formula_editor.html":{"ref":"base/editor/formula_editor.html","tf":0.04040404040404041},"case/editor/shelter_editor.html":{"ref":"case/editor/shelter_editor.html","tf":0.02072538860103627},"case/editor/sign_editor.html":{"ref":"case/editor/sign_editor.html","tf":0.02197802197802198},"case/editor/sign_initial_editor.html":{"ref":"case/editor/sign_initial_editor.html","tf":0.041237113402061855},"case/editor/state_editor.html":{"ref":"case/editor/state_editor.html","tf":0.022988505747126436},"case/layer/layer_panel.html":{"ref":"case/layer/layer_panel.html","tf":0.021505376344086023},"case/layer/panel.html":{"ref":"case/layer/panel.html","tf":0.031746031746031744},"case/combo/icon_combo.html":{"ref":"case/combo/icon_combo.html","tf":0.015503875968992248},"case/combo/static_combo.html":{"ref":"case/combo/static_combo.html","tf":0.025},"case/combo/text_value_combo.html":{"ref":"case/combo/text_value_combo.html","tf":0.02702702702702703},"case/combo/text_value_downlist_combo.html":{"ref":"case/combo/text_value_downlist_combo.html","tf":0.02702702702702703},"detailed/text_input/bi.text_editor.html":{"ref":"detailed/text_input/bi.text_editor.html","tf":0.020618556701030927},"detailed/text_input/bi.search_editor.html":{"ref":"detailed/text_input/bi.search_editor.html","tf":0.020202020202020204},"detailed/text_input/bi.clear_editor.html":{"ref":"detailed/text_input/bi.clear_editor.html","tf":0.0196078431372549},"detailed/dialog.html":{"ref":"detailed/dialog.html","tf":0.17391304347826086}},"#":{"docs":{},"w":{"docs":{},"r":{"docs":{},"a":{"docs":{},"p":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"\"":{"docs":{},",":{"docs":{"core/layout/vertical.html":{"ref":"core/layout/vertical.html","tf":0.01282051282051282},"core/layout/horizontal.html":{"ref":"core/layout/horizontal.html","tf":0.010752688172043012},"core/layout/htape.html":{"ref":"core/layout/htape.html","tf":0.008},"core/layout/vtape.html":{"ref":"core/layout/vtape.html","tf":0.008},"core/layout/center_adapt.html":{"ref":"core/layout/center_adapt.html","tf":0.011764705882352941},"core/layout/vertical_adapt.html":{"ref":"core/layout/vertical_adapt.html","tf":0.011494252873563218},"core/layout/left_right_vertical_adapt.html":{"ref":"core/layout/left_right_vertical_adapt.html","tf":0.01098901098901099},"core/layout/flow.html":{"ref":"core/layout/flow.html","tf":0.007692307692307693},"core/layout/center.html":{"ref":"core/layout/center.html","tf":0.012658227848101266},"core/layout/horizontal_adapt.html":{"ref":"core/layout/horizontal_adapt.html","tf":0.010869565217391304},"core/layout/horizontal_auto.html":{"ref":"core/layout/horizontal_auto.html","tf":0.012345679012345678},"core/layout/horizontal_float.html":{"ref":"core/layout/horizontal_float.html","tf":0.013888888888888888},"core/layout/float_center.html":{"ref":"core/layout/float_center.html","tf":0.012658227848101266},"core/layout/border.html":{"ref":"core/layout/border.html","tf":0.012987012987012988},"core/layout/grid.html":{"ref":"core/layout/grid.html","tf":0.008928571428571428},"core/abstract/button_group.html":{"ref":"core/abstract/button_group.html","tf":0.007936507936507936},"core/abstract/button_tree.html":{"ref":"core/abstract/button_tree.html","tf":0.014925373134328358},"core/abstract/virtual_group.html":{"ref":"core/abstract/virtual_group.html","tf":0.014492753623188406},"core/combination/bi.expander.html":{"ref":"core/combination/bi.expander.html","tf":0.005494505494505495},"core/combination/group_combo.html":{"ref":"core/combination/group_combo.html","tf":0.007874015748031496},"core/combination/loader.html":{"ref":"core/combination/loader.html","tf":0.006289308176100629},"core/combination/navigation.html":{"ref":"core/combination/navigation.html","tf":0.007194244604316547},"core/combination/switcher.html":{"ref":"core/combination/switcher.html","tf":0.00625},"core/combination/tab.html":{"ref":"core/combination/tab.html","tf":0.00684931506849315},"core/layer/layer_float_box.html":{"ref":"core/layer/layer_float_box.html","tf":0.012345679012345678},"core/layer/layer_popup.html":{"ref":"core/layer/layer_popup.html","tf":0.0058823529411764705},"core/layer/layer_searcher.html":{"ref":"core/layer/layer_searcher.html","tf":0.009259259259259259},"base/bubble.html":{"ref":"base/bubble.html","tf":0.023255813953488372},"base/toast.html":{"ref":"base/toast.html","tf":0.020833333333333332},"base/message.html":{"ref":"base/message.html","tf":0.02127659574468085},"base/button/button.html":{"ref":"base/button/button.html","tf":0.005681818181818182},"base/editor/editor.html":{"ref":"base/editor/editor.html","tf":0.005405405405405406},"base/canvas.html":{"ref":"base/canvas.html","tf":0.016666666666666666},"case/button/multi_select_item.html":{"ref":"case/button/multi_select_item.html","tf":0.017543859649122806},"case/button/single_select_item.html":{"ref":"case/button/single_select_item.html","tf":0.016129032258064516},"case/button/single_select_radio_item.html":{"ref":"case/button/single_select_radio_item.html","tf":0.016129032258064516},"case/editor/shelter_editor.html":{"ref":"case/editor/shelter_editor.html","tf":0.0051813471502590676},"case/editor/sign_editor.html":{"ref":"case/editor/sign_editor.html","tf":0.005494505494505495},"case/editor/sign_initial_editor.html":{"ref":"case/editor/sign_initial_editor.html","tf":0.005154639175257732},"case/editor/state_editor.html":{"ref":"case/editor/state_editor.html","tf":0.005747126436781609},"case/layer/multi_popup_layer.html":{"ref":"case/layer/multi_popup_layer.html","tf":0.04},"case/layer/layer_panel.html":{"ref":"case/layer/layer_panel.html","tf":0.010752688172043012},"case/layer/pane_list.html":{"ref":"case/layer/pane_list.html","tf":0.006802721088435374},"case/layer/panel.html":{"ref":"case/layer/panel.html","tf":0.015873015873015872},"case/combo/icon_combo.html":{"ref":"case/combo/icon_combo.html","tf":0.007751937984496124},"case/combo/static_combo.html":{"ref":"case/combo/static_combo.html","tf":0.0125},"case/combo/text_value_combo.html":{"ref":"case/combo/text_value_combo.html","tf":0.013513513513513514},"case/combo/text_value_downlist_combo.html":{"ref":"case/combo/text_value_downlist_combo.html","tf":0.013513513513513514},"case/color_chooser.html":{"ref":"case/color_chooser.html","tf":0.038461538461538464},"case/segment.html":{"ref":"case/segment.html","tf":0.009345794392523364},"detailed/bi.button/tooltip.html":{"ref":"detailed/bi.button/tooltip.html","tf":0.011363636363636364},"detailed/bi.button/items.html":{"ref":"detailed/bi.button/items.html","tf":0.010638297872340425},"detailed/bi.button/node.html":{"ref":"detailed/bi.button/node.html","tf":0.009259259259259259},"detailed/bi.button/segment.html":{"ref":"detailed/bi.button/segment.html","tf":0.009345794392523364},"detailed/text_input/bi.text_editor.html":{"ref":"detailed/text_input/bi.text_editor.html","tf":0.010309278350515464},"detailed/date/date_combo.html":{"ref":"detailed/date/date_combo.html","tf":0.058823529411764705},"detailed/date/date_pane_widget.html":{"ref":"detailed/date/date_pane_widget.html","tf":0.02702702702702703},"detailed/date/custom_date_time.html":{"ref":"detailed/date/custom_date_time.html","tf":0.045454545454545456},"detailed/path/path_chooser.html":{"ref":"detailed/path/path_chooser.html","tf":0.019230769230769232},"detailed/path/direction_path_chooser.html":{"ref":"detailed/path/direction_path_chooser.html","tf":0.02}}}}}}}}}}}},"b":{"2":{"docs":{},"\"":{"docs":{},",":{"docs":{"detailed/relation_view.html":{"ref":"detailed/relation_view.html","tf":0.019230769230769232}}}},".":{"docs":{},".":{"docs":{},".":{"docs":{},"\"":{"docs":{},",":{"docs":{"detailed/relation_view.html":{"ref":"detailed/relation_view.html","tf":0.019230769230769232}}}}}}},"字":{"docs":{},"段":{"docs":{},"\"":{"docs":{"detailed/relation_view.html":{"ref":"detailed/relation_view.html","tf":0.019230769230769232}}}}}},"docs":{},"i":{"docs":{"core/combination/bi.combo.html":{"ref":"core/combination/bi.combo.html","tf":0.009615384615384616},"core/combination/bi.expander.html":{"ref":"core/combination/bi.expander.html","tf":0.01098901098901099},"core/combination/searcher.html":{"ref":"core/combination/searcher.html","tf":0.004608294930875576},"core/combination/switcher.html":{"ref":"core/combination/switcher.html","tf":0.0125},"core/combination/tab.html":{"ref":"core/combination/tab.html","tf":0.0136986301369863},"base/editor/formula_editor.html":{"ref":"base/editor/formula_editor.html","tf":0.010101010101010102},"case/editor/shelter_editor.html":{"ref":"case/editor/shelter_editor.html","tf":0.0051813471502590676},"case/layer/pane_list.html":{"ref":"case/layer/pane_list.html","tf":0.006802721088435374},"detailed/text_input/bi.clear_editor.html":{"ref":"detailed/text_input/bi.clear_editor.html","tf":0.00980392156862745}},".":{"docs":{},"l":{"docs":{},"a":{"docs":{},"b":{"docs":{},"e":{"docs":{},"l":{"docs":{},"\"":{"docs":{},",":{"docs":{"core/layout/vertical.html":{"ref":"core/layout/vertical.html","tf":0.02564102564102564},"core/layout/center_adapt.html":{"ref":"core/layout/center_adapt.html","tf":0.023529411764705882},"core/layout/vertical_adapt.html":{"ref":"core/layout/vertical_adapt.html","tf":0.022988505747126436},"core/layout/left_right_vertical_adapt.html":{"ref":"core/layout/left_right_vertical_adapt.html","tf":0.02197802197802198},"core/layout/flow.html":{"ref":"core/layout/flow.html","tf":0.03076923076923077},"core/layout/center.html":{"ref":"core/layout/center.html","tf":0.02531645569620253},"core/layout/horizontal_adapt.html":{"ref":"core/layout/horizontal_adapt.html","tf":0.021739130434782608},"core/layout/horizontal_auto.html":{"ref":"core/layout/horizontal_auto.html","tf":0.024691358024691357},"core/layout/horizontal_float.html":{"ref":"core/layout/horizontal_float.html","tf":0.013888888888888888},"core/layout/float_center.html":{"ref":"core/layout/float_center.html","tf":0.02531645569620253},"core/layout/grid.html":{"ref":"core/layout/grid.html","tf":0.03571428571428571},"core/abstract/button_group.html":{"ref":"core/abstract/button_group.html","tf":0.007936507936507936},"core/abstract/button_tree.html":{"ref":"core/abstract/button_tree.html","tf":0.014925373134328358},"core/abstract/virtual_list.html":{"ref":"core/abstract/virtual_list.html","tf":0.0125},"core/combination/navigation.html":{"ref":"core/combination/navigation.html","tf":0.007194244604316547},"core/combination/searcher.html":{"ref":"core/combination/searcher.html","tf":0.004608294930875576},"core/combination/tab.html":{"ref":"core/combination/tab.html","tf":0.0136986301369863},"base/label.html":{"ref":"base/label.html","tf":0.006711409395973154},"base/table/collection_table.html":{"ref":"base/table/collection_table.html","tf":0.026143790849673203},"base/table/resizable_table.html":{"ref":"base/table/resizable_table.html","tf":0.025},"case/button/multi_select_item.html":{"ref":"case/button/multi_select_item.html","tf":0.017543859649122806},"case/button/single_select_item.html":{"ref":"case/button/single_select_item.html","tf":0.016129032258064516},"case/button/single_select_radio_item.html":{"ref":"case/button/single_select_radio_item.html","tf":0.016129032258064516},"case/segment.html":{"ref":"case/segment.html","tf":0.009345794392523364},"detailed/bi.button/items.html":{"ref":"detailed/bi.button/items.html","tf":0.02127659574468085},"detailed/bi.button/node.html":{"ref":"detailed/bi.button/node.html","tf":0.027777777777777776},"detailed/bi.button/segment.html":{"ref":"detailed/bi.button/segment.html","tf":0.009345794392523364},"detailed/table/bi.excel_table.html":{"ref":"detailed/table/bi.excel_table.html","tf":0.022099447513812154}}},"}":{"docs":{},",":{"docs":{"core/layout/border.html":{"ref":"core/layout/border.html","tf":0.05194805194805195}}},"}":{"docs":{"core/layout/border.html":{"ref":"core/layout/border.html","tf":0.012987012987012988}}}}}}}},"z":{"docs":{},"y":{"docs":{},"_":{"docs":{},"l":{"docs":{},"o":{"docs":{},"a":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{},"\"":{"docs":{},",":{"docs":{"case/loader/lazy_loader.html":{"ref":"case/loader/lazy_loader.html","tf":0.01694915254237288}}}}}}}}}}}}},"y":{"docs":{},"e":{"docs":{},"r":{"docs":{},"_":{"docs":{},"t":{"docs":{},"r":{"docs":{},"e":{"docs":{},"e":{"docs":{},"_":{"docs":{},"t":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"\"":{"docs":{},",":{"docs":{"case/table/layer_tree_table.html":{"ref":"case/table/layer_tree_table.html","tf":0.00510204081632653}}}}}}}}}}}}}}}}}}},"e":{"docs":{},"f":{"docs":{},"t":{"docs":{},"\"":{"docs":{},",":{"docs":{"core/layout/flow.html":{"ref":"core/layout/flow.html","tf":0.007692307692307693}}}}}},"v":{"docs":{},"e":{"docs":{},"l":{"docs":{},"_":{"docs":{},"t":{"docs":{},"r":{"docs":{},"e":{"docs":{},"e":{"docs":{},"\"":{"docs":{},",":{"docs":{"case/tree/level_tree.html":{"ref":"case/tree/level_tree.html","tf":0.017857142857142856}}}}}}}}}}}}},"o":{"docs":{},"a":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{},"\"":{"docs":{},",":{"docs":{"core/combination/loader.html":{"ref":"core/combination/loader.html","tf":0.006289308176100629}}}}}}}}},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{},"_":{"docs":{},"l":{"docs":{},"o":{"docs":{},"a":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{},"\"":{"docs":{},",":{"docs":{"case/loader/list_loader.html":{"ref":"case/loader/list_loader.html","tf":0.010752688172043012}}}}}}}}}}}}}}},"t":{"docs":{},"e":{"docs":{},"x":{"docs":{},"t":{"docs":{},"_":{"docs":{},"b":{"docs":{},"u":{"docs":{},"t":{"docs":{},"t":{"docs":{},"o":{"docs":{},"n":{"docs":{},"\"":{"docs":{},",":{"docs":{"core/layout/horizontal.html":{"ref":"core/layout/horizontal.html","tf":0.021505376344086023},"core/combination/group_combo.html":{"ref":"core/combination/group_combo.html","tf":0.007874015748031496},"core/layer/layer_float_box.html":{"ref":"core/layer/layer_float_box.html","tf":0.012345679012345678}}}}}}}}}},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"\"":{"docs":{},",":{"docs":{"case/combo/bubble_combo.html":{"ref":"case/combo/bubble_combo.html","tf":0.005780346820809248}}}}}}}},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{},"e":{"docs":{},"_":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"b":{"docs":{},"o":{"docs":{},"\"":{"docs":{},",":{"docs":{"case/combo/text_value_combo.html":{"ref":"case/combo/text_value_combo.html","tf":0.013513513513513514}}}}}}}}},"d":{"docs":{},"o":{"docs":{},"w":{"docs":{},"n":{"docs":{},"_":{"docs":{},"l":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{},"_":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"b":{"docs":{},"o":{"docs":{},"\"":{"docs":{},",":{"docs":{"case/combo/text_value_downlist_combo.html":{"ref":"case/combo/text_value_downlist_combo.html","tf":0.013513513513513514}}}}}}}}}}}}}}}}}}}}}}}}},"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.010309278350515464}}}}}}}}}}},"a":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"_":{"docs":{},"e":{"docs":{},"d":{"docs":{},"i":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"\"":{"docs":{},",":{"docs":{"base/editor/textarea_editor.html":{"ref":"base/editor/textarea_editor.html","tf":0.021739130434782608}}}}}}}}}}}}}}}}}},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"\"":{"docs":{},",":{"docs":{"core/layout/table.html":{"ref":"core/layout/table.html","tf":0.012048192771084338}}}},"_":{"docs":{},"v":{"docs":{},"i":{"docs":{},"e":{"docs":{},"w":{"docs":{},"\"":{"docs":{},",":{"docs":{"base/table/table_view.html":{"ref":"base/table/table_view.html","tf":0.006289308176100629}}}}}}}}}}},"\"":{"docs":{},",":{"docs":{"core/combination/tab.html":{"ref":"core/combination/tab.html","tf":0.00684931506849315}}}}}},"d":{"docs":{},"\"":{"docs":{},",":{"docs":{"core/layout/td.html":{"ref":"core/layout/td.html","tf":0.017857142857142856}}}}},"r":{"docs":{},"e":{"docs":{},"e":{"docs":{},"_":{"docs":{},"t":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"\"":{"docs":{},",":{"docs":{"case/table/tree_table.html":{"ref":"case/table/tree_table.html","tf":0.00510204081632653}}}}}}}}}}}},"i":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{},"l":{"docs":{},"e":{"docs":{},"_":{"docs":{},"g":{"docs":{},"r":{"docs":{},"o":{"docs":{},"u":{"docs":{},"p":{"docs":{},"_":{"docs":{},"n":{"docs":{},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{},"\"":{"docs":{},",":{"docs":{"detailed/bi.button/node.html":{"ref":"detailed/bi.button/node.html","tf":0.009259259259259259}}}}}}}}}}}}}}}}}}}}}}},"h":{"docs":{},"t":{"docs":{},"a":{"docs":{},"p":{"docs":{},"e":{"docs":{},"\"":{"docs":{},",":{"docs":{"core/layout/htape.html":{"ref":"core/layout/htape.html","tf":0.008}}}}}}}},"o":{"docs":{},"r":{"docs":{},"i":{"docs":{},"z":{"docs":{},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{},"a":{"docs":{},"l":{"docs":{},"_":{"docs":{},"a":{"docs":{},"d":{"docs":{},"a":{"docs":{},"p":{"docs":{},"t":{"docs":{},"\"":{"docs":{},",":{"docs":{"core/layout/horizontal_adapt.html":{"ref":"core/layout/horizontal_adapt.html","tf":0.010869565217391304}}}}}}}},"u":{"docs":{},"t":{"docs":{},"o":{"docs":{},"\"":{"docs":{},",":{"docs":{"core/layout/horizontal_auto.html":{"ref":"core/layout/horizontal_auto.html","tf":0.012345679012345678}}}}}}}},"f":{"docs":{},"l":{"docs":{},"o":{"docs":{},"a":{"docs":{},"t":{"docs":{},"\"":{"docs":{},",":{"docs":{"core/layout/horizontal_float.html":{"ref":"core/layout/horizontal_float.html","tf":0.013888888888888888}}}}}}}}}}}}}}}}}}},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{},"_":{"docs":{},"b":{"docs":{},"r":{"docs":{},"a":{"docs":{},"n":{"docs":{},"c":{"docs":{},"h":{"docs":{},"_":{"docs":{},"t":{"docs":{},"r":{"docs":{},"e":{"docs":{},"e":{"docs":{},"\"":{"docs":{},",":{"docs":{"case/tree/handstand_branch_tree.html":{"ref":"case/tree/handstand_branch_tree.html","tf":0.019230769230769232}}}}}}}}}}}}}}}}}}}}}}}}},"v":{"docs":{},"t":{"docs":{},"a":{"docs":{},"p":{"docs":{},"e":{"docs":{},"\"":{"docs":{},",":{"docs":{"core/layout/vtape.html":{"ref":"core/layout/vtape.html","tf":0.008}}}}}}}},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"i":{"docs":{},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{},"_":{"docs":{},"a":{"docs":{},"d":{"docs":{},"a":{"docs":{},"p":{"docs":{},"t":{"docs":{},"\"":{"docs":{},",":{"docs":{"core/layout/vertical_adapt.html":{"ref":"core/layout/vertical_adapt.html","tf":0.011494252873563218}}}}}}}}}},"\"":{"docs":{"core/abstract/button_group.html":{"ref":"core/abstract/button_group.html","tf":0.007936507936507936},"core/abstract/button_tree.html":{"ref":"core/abstract/button_tree.html","tf":0.014925373134328358},"core/abstract/virtual_group.html":{"ref":"core/abstract/virtual_group.html","tf":0.014492753623188406},"core/combination/searcher.html":{"ref":"core/combination/searcher.html","tf":0.004608294930875576},"core/layer/layer_popup.html":{"ref":"core/layer/layer_popup.html","tf":0.0058823529411764705},"core/layer/layer_searcher.html":{"ref":"core/layer/layer_searcher.html","tf":0.009259259259259259},"case/combo/bubble_combo.html":{"ref":"case/combo/bubble_combo.html","tf":0.005780346820809248}},",":{"docs":{"core/abstract/custom_tree.html":{"ref":"core/abstract/custom_tree.html","tf":0.007194244604316547},"case/segment.html":{"ref":"case/segment.html","tf":0.009345794392523364},"detailed/bi.button/tooltip.html":{"ref":"detailed/bi.button/tooltip.html","tf":0.011363636363636364},"detailed/bi.button/segment.html":{"ref":"detailed/bi.button/segment.html","tf":0.009345794392523364}}},"}":{"docs":{},"]":{"docs":{},"}":{"docs":{"core/abstract/custom_tree.html":{"ref":"core/abstract/custom_tree.html","tf":0.007194244604316547},"core/layer/layer_popup.html":{"ref":"core/layer/layer_popup.html","tf":0.0058823529411764705},"core/layer/layer_searcher.html":{"ref":"core/layer/layer_searcher.html","tf":0.009259259259259259}},"}":{"docs":{"core/combination/group_combo.html":{"ref":"core/combination/group_combo.html","tf":0.007874015748031496}}}}}}}}}}}}}},"i":{"docs":{},"r":{"docs":{},"t":{"docs":{},"u":{"docs":{},"a":{"docs":{},"l":{"docs":{},"_":{"docs":{},"g":{"docs":{},"r":{"docs":{},"o":{"docs":{},"u":{"docs":{},"p":{"docs":{},"\"":{"docs":{},",":{"docs":{"core/abstract/virtual_group.html":{"ref":"core/abstract/virtual_group.html","tf":0.014492753623188406}}}}}}}}},"l":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{},"\"":{"docs":{},",":{"docs":{"core/abstract/virtual_list.html":{"ref":"core/abstract/virtual_list.html","tf":0.0125}}}}}}}}}}}}}}}},"c":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"_":{"docs":{},"a":{"docs":{},"d":{"docs":{},"a":{"docs":{},"p":{"docs":{},"t":{"docs":{},"\"":{"docs":{},",":{"docs":{"core/layout/center_adapt.html":{"ref":"core/layout/center_adapt.html","tf":0.011764705882352941},"core/layout/flow.html":{"ref":"core/layout/flow.html","tf":0.007692307692307693},"core/abstract/virtual_group.html":{"ref":"core/abstract/virtual_group.html","tf":0.014492753623188406}}}}}}}}}},"\"":{"docs":{},",":{"docs":{"core/layout/center.html":{"ref":"core/layout/center.html","tf":0.012658227848101266}},"h":{"docs":{},"g":{"docs":{},"a":{"docs":{},"p":{"docs":{},":":{"docs":{"core/abstract/button_group.html":{"ref":"core/abstract/button_group.html","tf":0.007936507936507936},"core/abstract/virtual_group.html":{"ref":"core/abstract/virtual_group.html","tf":0.014492753623188406}}}}}}}}}}}}}},"u":{"docs":{},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"m":{"docs":{},"_":{"docs":{},"t":{"docs":{},"r":{"docs":{},"e":{"docs":{},"e":{"docs":{},"\"":{"docs":{},",":{"docs":{"core/abstract/custom_tree.html":{"ref":"core/abstract/custom_tree.html","tf":0.007194244604316547}}},"}":{"docs":{},"}":{"docs":{"core/abstract/custom_tree.html":{"ref":"core/abstract/custom_tree.html","tf":0.007194244604316547}}}}}}}}},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"_":{"docs":{},"t":{"docs":{},"i":{"docs":{},"m":{"docs":{},"e":{"docs":{},"_":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"b":{"docs":{},"o":{"docs":{},"\"":{"docs":{},",":{"docs":{"detailed/date/custom_date_time.html":{"ref":"detailed/date/custom_date_time.html","tf":0.045454545454545456}}}}}}}}}}}}}}}}}}}}}}}}},"o":{"docs":{},"l":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"_":{"docs":{},"v":{"docs":{},"i":{"docs":{},"e":{"docs":{},"w":{"docs":{},"\"":{"docs":{},",":{"docs":{"core/abstract/collection_view.html":{"ref":"core/abstract/collection_view.html","tf":0.0070921985815602835}}}}}}}},"t":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"\"":{"docs":{},",":{"docs":{"base/table/collection_table.html":{"ref":"base/table/collection_table.html","tf":0.006535947712418301}}}}}}}}}}}}}}}}},"o":{"docs":{},"r":{"docs":{},"_":{"docs":{},"c":{"docs":{},"h":{"docs":{},"o":{"docs":{},"o":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"\"":{"docs":{},",":{"docs":{"case/color_chooser.html":{"ref":"case/color_chooser.html","tf":0.038461538461538464}}}},"_":{"docs":{},"p":{"docs":{},"o":{"docs":{},"p":{"docs":{},"u":{"docs":{},"p":{"docs":{},"\"":{"docs":{},",":{"docs":{"case/color_chooser_popup.html":{"ref":"case/color_chooser_popup.html","tf":0.029411764705882353}}}}}}}}}}}}}}}}}}}}},"m":{"docs":{},"b":{"docs":{},"o":{"docs":{},"\"":{"docs":{},",":{"docs":{"core/combination/bi.combo.html":{"ref":"core/combination/bi.combo.html","tf":0.004807692307692308}}}},"_":{"docs":{},"g":{"docs":{},"r":{"docs":{},"o":{"docs":{},"u":{"docs":{},"p":{"docs":{},"\"":{"docs":{},",":{"docs":{"core/combination/group_combo.html":{"ref":"core/combination/group_combo.html","tf":0.007874015748031496}}}}}}}}}}}},"p":{"docs":{},"l":{"docs":{},"e":{"docs":{},"x":{"docs":{},"_":{"docs":{},"c":{"docs":{},"a":{"docs":{},"n":{"docs":{},"v":{"docs":{},"a":{"docs":{},"s":{"docs":{},"\"":{"docs":{},",":{"docs":{"case/complex_canvas.html":{"ref":"case/complex_canvas.html","tf":0.020833333333333332}}}}}}}}}}}}}}}},"d":{"docs":{},"e":{"docs":{},"_":{"docs":{},"e":{"docs":{},"d":{"docs":{},"i":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"\"":{"docs":{},",":{"docs":{"base/editor/code_editor.html":{"ref":"base/editor/code_editor.html","tf":0.012658227848101266}}}}}}}}}}}}}},"a":{"docs":{},"n":{"docs":{},"v":{"docs":{},"a":{"docs":{},"s":{"docs":{},"\"":{"docs":{},",":{"docs":{"base/canvas.html":{"ref":"base/canvas.html","tf":0.016666666666666666}}}}}}}}}},"r":{"docs":{},"i":{"docs":{},"g":{"docs":{},"h":{"docs":{},"t":{"docs":{},"\"":{"docs":{},",":{"docs":{"core/layout/flow.html":{"ref":"core/layout/flow.html","tf":0.007692307692307693}}}}}}}},"e":{"docs":{},"s":{"docs":{},"i":{"docs":{},"z":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"_":{"docs":{},"t":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"\"":{"docs":{},",":{"docs":{"base/table/resizable_table.html":{"ref":"base/table/resizable_table.html","tf":0.00625}}}}}}}}}}}}}}}},"p":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"i":{"docs":{},"v":{"docs":{},"e":{"docs":{},"_":{"docs":{},"t":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"\"":{"docs":{},",":{"docs":{"detailed/table/bi.responsive_table.html":{"ref":"detailed/table/bi.responsive_table.html","tf":0.005263157894736842}}}}}}}}}}}}}}}}}},"l":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"_":{"docs":{},"v":{"docs":{},"i":{"docs":{},"e":{"docs":{},"w":{"docs":{},"\"":{"docs":{},",":{"docs":{"detailed/relation_view.html":{"ref":"detailed/relation_view.html","tf":0.019230769230769232}}}}}}}}}}}}}}}}},"b":{"docs":{},"u":{"docs":{},"t":{"docs":{},"t":{"docs":{},"o":{"docs":{},"n":{"docs":{},"_":{"docs":{},"g":{"docs":{},"r":{"docs":{},"o":{"docs":{},"u":{"docs":{},"p":{"docs":{},"\"":{"docs":{"case/layer/pane_list.html":{"ref":"case/layer/pane_list.html","tf":0.006802721088435374}},",":{"docs":{"core/abstract/button_group.html":{"ref":"core/abstract/button_group.html","tf":0.007936507936507936},"core/combination/searcher.html":{"ref":"core/combination/searcher.html","tf":0.004608294930875576},"core/combination/tab.html":{"ref":"core/combination/tab.html","tf":0.00684931506849315},"core/layer/layer_popup.html":{"ref":"core/layer/layer_popup.html","tf":0.0058823529411764705},"case/combo/bubble_combo.html":{"ref":"case/combo/bubble_combo.html","tf":0.005780346820809248}},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"s":{"docs":{},":":{"docs":{"core/layer/layer_popup.html":{"ref":"core/layer/layer_popup.html","tf":0.0058823529411764705}}}}}}}},"b":{"docs":{},"e":{"docs":{},"h":{"docs":{},"a":{"docs":{},"v":{"docs":{},"i":{"docs":{},"o":{"docs":{},"r":{"docs":{},"s":{"docs":{},":":{"docs":{"core/layer/layer_searcher.html":{"ref":"core/layer/layer_searcher.html","tf":0.018518518518518517}}}}}}}}}}}}}}}}}}},"t":{"docs":{},"r":{"docs":{},"e":{"docs":{},"e":{"docs":{},"\"":{"docs":{},",":{"docs":{"core/abstract/button_tree.html":{"ref":"core/abstract/button_tree.html","tf":0.014925373134328358},"core/abstract/custom_tree.html":{"ref":"core/abstract/custom_tree.html","tf":0.007194244604316547}},"c":{"docs":{},"h":{"docs":{},"o":{"docs":{},"o":{"docs":{},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{},"e":{"docs":{},":":{"docs":{"core/abstract/custom_tree.html":{"ref":"core/abstract/custom_tree.html","tf":0.007194244604316547},"core/combination/group_combo.html":{"ref":"core/combination/group_combo.html","tf":0.007874015748031496}}}}}}}}}}}}}}}}}}}},"\"":{"docs":{},",":{"docs":{"core/combination/bi.combo.html":{"ref":"core/combination/bi.combo.html","tf":0.004807692307692308},"core/combination/switcher.html":{"ref":"core/combination/switcher.html","tf":0.00625},"base/message.html":{"ref":"base/message.html","tf":0.02127659574468085},"case/layer/panel.html":{"ref":"case/layer/panel.html","tf":0.015873015873015872},"case/combo/bubble_combo.html":{"ref":"case/combo/bubble_combo.html","tf":0.005780346820809248}}}}}}}},"b":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"_":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"b":{"docs":{},"o":{"docs":{},"\"":{"docs":{},",":{"docs":{"case/combo/bubble_combo.html":{"ref":"case/combo/bubble_combo.html","tf":0.005780346820809248}}}}}}}}}}}}}}},"r":{"docs":{},"a":{"docs":{},"n":{"docs":{},"c":{"docs":{},"h":{"docs":{},"_":{"docs":{},"t":{"docs":{},"r":{"docs":{},"e":{"docs":{},"e":{"docs":{},"\"":{"docs":{},",":{"docs":{"case/tree/branch_tree.html":{"ref":"case/tree/branch_tree.html","tf":0.02}}}}}}}},"r":{"docs":{},"e":{"docs":{},"l":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"\"":{"docs":{},",":{"docs":{"case/tree/branch_relation.html":{"ref":"case/tree/branch_relation.html","tf":0.02040816326530612}}}}}}}}}}}}}}}}}}},"p":{"docs":{},"l":{"docs":{},"u":{"docs":{},"s":{"docs":{},"_":{"docs":{},"g":{"docs":{},"r":{"docs":{},"o":{"docs":{},"u":{"docs":{},"p":{"docs":{},"_":{"docs":{},"n":{"docs":{},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{},"\"":{"docs":{},",":{"docs":{"core/abstract/custom_tree.html":{"ref":"core/abstract/custom_tree.html","tf":0.014388489208633094},"detailed/bi.button/node.html":{"ref":"detailed/bi.button/node.html","tf":0.009259259259259259}}}}}}}}}}}}}}}}}},"o":{"docs":{},"p":{"docs":{},"u":{"docs":{},"p":{"docs":{},"_":{"docs":{},"v":{"docs":{},"i":{"docs":{},"e":{"docs":{},"w":{"docs":{},"\"":{"docs":{},",":{"docs":{"core/layer/layer_popup.html":{"ref":"core/layer/layer_popup.html","tf":0.0058823529411764705}}}}}}}},"p":{"docs":{},"a":{"docs":{},"n":{"docs":{},"e":{"docs":{},"l":{"docs":{},"\"":{"docs":{},",":{"docs":{"case/layer/layer_panel.html":{"ref":"case/layer/layer_panel.html","tf":0.010752688172043012}}}}}}}}}}}}}},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"r":{"docs":{},"\"":{"docs":{},",":{"docs":{"base/pager.html":{"ref":"base/pager.html","tf":0.006666666666666667}}}}},"_":{"docs":{},"t":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"\"":{"docs":{},",":{"docs":{"detailed/table/bi.page_table.html":{"ref":"detailed/table/bi.page_table.html","tf":0.004651162790697674}}}}}}}}}}}},"n":{"docs":{},"e":{"docs":{},"l":{"docs":{},"\"":{"docs":{},",":{"docs":{"case/layer/panel.html":{"ref":"case/layer/panel.html","tf":0.015873015873015872}}}}}}},"t":{"docs":{},"h":{"docs":{},"_":{"docs":{},"c":{"docs":{},"h":{"docs":{},"o":{"docs":{},"o":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"\"":{"docs":{},",":{"docs":{"detailed/path/path_chooser.html":{"ref":"detailed/path/path_chooser.html","tf":0.019230769230769232}}}}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"v":{"docs":{},"i":{"docs":{},"e":{"docs":{},"w":{"docs":{},"_":{"docs":{},"t":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"\"":{"docs":{},",":{"docs":{"detailed/table/bi.preview_table.html":{"ref":"detailed/table/bi.preview_table.html","tf":0.006756756756756757}}}}}}}}}}}}}}}}},"s":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"l":{"docs":{},"e":{"docs":{},"_":{"docs":{},"s":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"_":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"\"":{"docs":{},",":{"docs":{"core/abstract/custom_tree.html":{"ref":"core/abstract/custom_tree.html","tf":0.007194244604316547},"core/combination/bi.expander.html":{"ref":"core/combination/bi.expander.html","tf":0.01098901098901099},"core/combination/group_combo.html":{"ref":"core/combination/group_combo.html","tf":0.007874015748031496},"core/combination/loader.html":{"ref":"core/combination/loader.html","tf":0.006289308176100629},"case/button/single_select_item.html":{"ref":"case/button/single_select_item.html","tf":0.016129032258064516},"detailed/bi.button/items.html":{"ref":"detailed/bi.button/items.html","tf":0.010638297872340425}}}}}}}},"r":{"docs":{},"a":{"docs":{},"d":{"docs":{},"i":{"docs":{},"o":{"docs":{},"_":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"\"":{"docs":{},",":{"docs":{"case/button/single_select_radio_item.html":{"ref":"case/button/single_select_radio_item.html","tf":0.016129032258064516}}}}}}}}}}}}}}}}}}}}},"t":{"docs":{},"r":{"docs":{},"e":{"docs":{},"e":{"docs":{},"_":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"b":{"docs":{},"o":{"docs":{},"\"":{"docs":{},",":{"docs":{"detailed/combo/single_tree_combo.html":{"ref":"detailed/combo/single_tree_combo.html","tf":0.01694915254237288}}}}}}}}}}}}}}}}}}},"g":{"docs":{},"n":{"docs":{},"_":{"docs":{},"e":{"docs":{},"d":{"docs":{},"i":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"\"":{"docs":{},",":{"docs":{"case/editor/sign_editor.html":{"ref":"case/editor/sign_editor.html","tf":0.005494505494505495}}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"i":{"docs":{},"t":{"docs":{},"i":{"docs":{},"a":{"docs":{},"l":{"docs":{},"_":{"docs":{},"e":{"docs":{},"d":{"docs":{},"i":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"\"":{"docs":{},",":{"docs":{"case/editor/sign_initial_editor.html":{"ref":"case/editor/sign_initial_editor.html","tf":0.005154639175257732}}}}}}}}}}}}}}}}}}}}},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{},"e":{"docs":{},"_":{"docs":{},"t":{"docs":{},"r":{"docs":{},"e":{"docs":{},"e":{"docs":{},"\"":{"docs":{},",":{"docs":{"case/tree/simple_tree.html":{"ref":"case/tree/simple_tree.html","tf":0.022222222222222223}}}}}}}}}}}}}},"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":{"core/combination/searcher.html":{"ref":"core/combination/searcher.html","tf":0.004608294930875576}}}}}}}}}}},"e":{"docs":{},"r":{"docs":{},"\"":{"docs":{},",":{"docs":{"core/combination/searcher.html":{"ref":"core/combination/searcher.html","tf":0.004608294930875576}}}},"_":{"docs":{},"v":{"docs":{},"i":{"docs":{},"e":{"docs":{},"w":{"docs":{},"\"":{"docs":{},"}":{"docs":{"core/combination/searcher.html":{"ref":"core/combination/searcher.html","tf":0.004608294930875576}}},",":{"docs":{"core/layer/layer_searcher.html":{"ref":"core/layer/layer_searcher.html","tf":0.009259259259259259}}}}}}}}}}}}}}},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"_":{"docs":{},"l":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{},"\"":{"docs":{},",":{"docs":{"case/list/list.select.html":{"ref":"case/list/list.select.html","tf":0.009433962264150943}}}}}}}},"t":{"docs":{},"r":{"docs":{},"e":{"docs":{},"e":{"docs":{},"_":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"b":{"docs":{},"o":{"docs":{},"\"":{"docs":{},",":{"docs":{"detailed/combo/select_tree_combo.html":{"ref":"detailed/combo/select_tree_combo.html","tf":0.02040816326530612}}}}}}}}}}}}}}}}}}},"g":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"\"":{"docs":{},",":{"docs":{"case/segment.html":{"ref":"case/segment.html","tf":0.009345794392523364},"detailed/bi.button/segment.html":{"ref":"detailed/bi.button/segment.html","tf":0.009345794392523364}}}}}}}}}},"w":{"docs":{},"i":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},"\"":{"docs":{},",":{"docs":{"core/combination/switcher.html":{"ref":"core/combination/switcher.html","tf":0.00625}}}}}},"_":{"docs":{},"t":{"docs":{},"r":{"docs":{},"e":{"docs":{},"e":{"docs":{},"\"":{"docs":{},",":{"docs":{"detailed/tree/bi.switch_tree.html":{"ref":"detailed/tree/bi.switch_tree.html","tf":0.013157894736842105}}}}}}}}}}}}}},"v":{"docs":{},"g":{"docs":{},"\"":{"docs":{},",":{"docs":{"base/svg.html":{"ref":"base/svg.html","tf":0.011235955056179775}}}}}},"h":{"docs":{},"e":{"docs":{},"l":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"_":{"docs":{},"e":{"docs":{},"d":{"docs":{},"i":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"\"":{"docs":{},",":{"docs":{"case/editor/shelter_editor.html":{"ref":"case/editor/shelter_editor.html","tf":0.0051813471502590676}}}}}}}}}}}}}}}}},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"_":{"docs":{},"e":{"docs":{},"d":{"docs":{},"i":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"\"":{"docs":{},",":{"docs":{"case/editor/state_editor.html":{"ref":"case/editor/state_editor.html","tf":0.005747126436781609}}}}}}}}}}}},"i":{"docs":{},"c":{"docs":{},"_":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"b":{"docs":{},"o":{"docs":{},"\"":{"docs":{},",":{"docs":{"case/combo/static_combo.html":{"ref":"case/combo/static_combo.html","tf":0.0125}}}}}}}}}}}}}}},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{},"_":{"docs":{},"l":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{},"\"":{"docs":{},",":{"docs":{"case/loader/sort_list.html":{"ref":"case/loader/sort_list.html","tf":0.010752688172043012}}}}}}}}}}}},"l":{"docs":{},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{},"\"":{"docs":{},",":{"docs":{"detailed/slider.html":{"ref":"detailed/slider.html","tf":0.029411764705882353}}}}}}}}}},"g":{"docs":{},"r":{"docs":{},"i":{"docs":{},"d":{"docs":{},"_":{"docs":{},"v":{"docs":{},"i":{"docs":{},"e":{"docs":{},"w":{"docs":{},"\"":{"docs":{},",":{"docs":{"core/abstract/grid_view.html":{"ref":"core/abstract/grid_view.html","tf":0.00641025641025641}}}}}}}},"t":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"\"":{"docs":{},",":{"docs":{"base/table/grid_table.html":{"ref":"base/table/grid_table.html","tf":0.008771929824561403}}}}}}}}}}}}}},"e":{"docs":{},"x":{"docs":{},"p":{"docs":{},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{},"\"":{"docs":{},",":{"docs":{"core/combination/bi.expander.html":{"ref":"core/combination/bi.expander.html","tf":0.005494505494505495}}}}}}}}}},"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.0055248618784530384}}}}}}}}}}}}}},"d":{"docs":{},"i":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"\"":{"docs":{},",":{"docs":{"base/editor/editor.html":{"ref":"base/editor/editor.html","tf":0.005405405405405406}}}},"_":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"g":{"docs":{},"g":{"docs":{},"e":{"docs":{},"r":{"docs":{},"\"":{"docs":{},",":{"docs":{"case/trigger/editor_trigger.html":{"ref":"case/trigger/editor_trigger.html","tf":0.02},"case/trigger/text_trigger.html":{"ref":"case/trigger/text_trigger.html","tf":0.05263157894736842}}}}}}}}}}}}}}}}}},"i":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"_":{"docs":{},"t":{"docs":{},"e":{"docs":{},"x":{"docs":{},"t":{"docs":{},"_":{"docs":{},"n":{"docs":{},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{},"\"":{"docs":{},",":{"docs":{"core/combination/bi.expander.html":{"ref":"core/combination/bi.expander.html","tf":0.005494505494505495}}}}}}}},"i":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"_":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"\"":{"docs":{},",":{"docs":{"core/combination/group_combo.html":{"ref":"core/combination/group_combo.html","tf":0.007874015748031496},"detailed/down_list_combo.html":{"ref":"detailed/down_list_combo.html","tf":0.006578947368421052}}}}}}}}}}}},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"\"":{"docs":{},",":{"docs":{"detailed/down_list_combo.html":{"ref":"detailed/down_list_combo.html","tf":0.006578947368421052}}}}}}}}}}}},"r":{"docs":{},"i":{"docs":{},"g":{"docs":{},"g":{"docs":{},"e":{"docs":{},"r":{"docs":{},"\"":{"docs":{},",":{"docs":{"case/trigger/icon_trigger.html":{"ref":"case/trigger/icon_trigger.html","tf":0.1111111111111111}}}}}}}}}}},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"b":{"docs":{},"o":{"docs":{},"\"":{"docs":{},",":{"docs":{"case/combo/icon_combo.html":{"ref":"case/combo/icon_combo.html","tf":0.007751937984496124}}}}}}}}}}}}}},"n":{"docs":{},"a":{"docs":{},"v":{"docs":{},"i":{"docs":{},"g":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"\"":{"docs":{},",":{"docs":{"core/combination/navigation.html":{"ref":"core/combination/navigation.html","tf":0.007194244604316547}}}}}}}}}}}}},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"r":{"docs":{},"i":{"docs":{},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{},"_":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"\"":{"docs":{},",":{"docs":{"detailed/numeric_interval.html":{"ref":"detailed/numeric_interval.html","tf":0.017241379310344827}}}}}}}}}}}}}}}}}}}}}},"m":{"docs":{},"u":{"docs":{},"l":{"docs":{},"t":{"docs":{},"i":{"docs":{},"f":{"docs":{},"i":{"docs":{},"l":{"docs":{},"e":{"docs":{},"_":{"docs":{},"e":{"docs":{},"d":{"docs":{},"i":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"\"":{"docs":{},",":{"docs":{"base/editor/multifile_editor.html":{"ref":"base/editor/multifile_editor.html","tf":0.015384615384615385}}}}}}}}}}}}}}},"_":{"docs":{},"s":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"_":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"\"":{"docs":{},",":{"docs":{"case/button/multi_select_item.html":{"ref":"case/button/multi_select_item.html","tf":0.017543859649122806},"detailed/bi.button/items.html":{"ref":"detailed/bi.button/items.html","tf":0.010638297872340425}}}}}}}},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"b":{"docs":{},"o":{"docs":{},"\"":{"docs":{},",":{"docs":{"detailed/multi_select_combo.html":{"ref":"detailed/multi_select_combo.html","tf":0.04}}}}}}}}}}}}}}}},"p":{"docs":{},"o":{"docs":{},"p":{"docs":{},"u":{"docs":{},"p":{"docs":{},"_":{"docs":{},"v":{"docs":{},"i":{"docs":{},"e":{"docs":{},"w":{"docs":{},"\"":{"docs":{},",":{"docs":{"case/layer/multi_popup_layer.html":{"ref":"case/layer/multi_popup_layer.html","tf":0.04}}}}}}}}}}}}}},"t":{"docs":{},"r":{"docs":{},"e":{"docs":{},"e":{"docs":{},"_":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"b":{"docs":{},"o":{"docs":{},"\"":{"docs":{},",":{"docs":{"detailed/tree/bi.multi_tree_combo.html":{"ref":"detailed/tree/bi.multi_tree_combo.html","tf":0.010869565217391304}}}}}}}}}}}}}}},"l":{"docs":{},"a":{"docs":{},"y":{"docs":{},"e":{"docs":{},"r":{"docs":{},"_":{"docs":{},"s":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"l":{"docs":{},"e":{"docs":{},"_":{"docs":{},"t":{"docs":{},"r":{"docs":{},"e":{"docs":{},"e":{"docs":{},"_":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"b":{"docs":{},"o":{"docs":{},"\"":{"docs":{},",":{"docs":{"detailed/combo/multilayer_single_tree_combo.html":{"ref":"detailed/combo/multilayer_single_tree_combo.html","tf":0.018867924528301886}}}}}}}}}}}}}}}}}}}},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"_":{"docs":{},"t":{"docs":{},"r":{"docs":{},"e":{"docs":{},"e":{"docs":{},"_":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"b":{"docs":{},"o":{"docs":{},"\"":{"docs":{},",":{"docs":{"detailed/combo/multilayer_select_tree_combo.html":{"ref":"detailed/combo/multilayer_select_tree_combo.html","tf":0.02040816326530612}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"m":{"docs":{},"u":{"docs":{},"l":{"docs":{},"a":{"docs":{},"_":{"docs":{},"e":{"docs":{},"d":{"docs":{},"i":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"\"":{"docs":{},",":{"docs":{"base/editor/formula_editor.html":{"ref":"base/editor/formula_editor.html","tf":0.010101010101010102}}}}}}}}}}}}}}}}},"i":{"docs":{},"l":{"docs":{},"e":{"docs":{},"_":{"docs":{},"m":{"docs":{},"a":{"docs":{},"n":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"r":{"docs":{},"\"":{"docs":{},",":{"docs":{"detailed/file_manager.html":{"ref":"detailed/file_manager.html","tf":0.023255813953488372}}}}}}}}}}}}}}}},"d":{"docs":{},"i":{"docs":{},"s":{"docs":{},"p":{"docs":{},"l":{"docs":{},"a":{"docs":{},"y":{"docs":{},"_":{"docs":{},"t":{"docs":{},"r":{"docs":{},"e":{"docs":{},"e":{"docs":{},"\"":{"docs":{},",":{"docs":{"case/tree/display_tree.html":{"ref":"case/tree/display_tree.html","tf":0.030303030303030304}}}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"_":{"docs":{},"p":{"docs":{},"a":{"docs":{},"t":{"docs":{},"h":{"docs":{},"_":{"docs":{},"c":{"docs":{},"h":{"docs":{},"o":{"docs":{},"o":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"\"":{"docs":{},",":{"docs":{"detailed/path/direction_path_chooser.html":{"ref":"detailed/path/direction_path_chooser.html","tf":0.02}}}}}}}}}}}}}}}}}}}}}}}}},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"_":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"b":{"docs":{},"o":{"docs":{},"\"":{"docs":{},",":{"docs":{"detailed/date/date_combo.html":{"ref":"detailed/date/date_combo.html","tf":0.058823529411764705}}}}}}}}},"p":{"docs":{},"a":{"docs":{},"n":{"docs":{},"e":{"docs":{},"_":{"docs":{},"w":{"docs":{},"i":{"docs":{},"d":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"\"":{"docs":{},",":{"docs":{"detailed/date/date_pane_widget.html":{"ref":"detailed/date/date_pane_widget.html","tf":0.02702702702702703}}}}}}}}}}}}}}}}}}}},"a":{"docs":{},"d":{"docs":{},"a":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"v":{"docs":{},"e":{"docs":{},"_":{"docs":{},"t":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"\"":{"docs":{},",":{"docs":{"case/table/adaptive_table.html":{"ref":"case/table/adaptive_table.html","tf":0.006060606060606061}}}}}}}}}}}}}}}}},"r":{"docs":{},"r":{"docs":{},"o":{"docs":{},"w":{"docs":{},"_":{"docs":{},"g":{"docs":{},"r":{"docs":{},"o":{"docs":{},"u":{"docs":{},"p":{"docs":{},"_":{"docs":{},"n":{"docs":{},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{},"\"":{"docs":{},",":{"docs":{"detailed/bi.button/node.html":{"ref":"detailed/bi.button/node.html","tf":0.009259259259259259}}}}}}}}}}}}}}}}}}}},"y":{"docs":{},"e":{"docs":{},"a":{"docs":{},"r":{"docs":{},"_":{"docs":{},"m":{"docs":{},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{},"h":{"docs":{},"_":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"b":{"docs":{},"o":{"docs":{},"\"":{"docs":{},",":{"docs":{"detailed/date/year_month_combo.html":{"ref":"detailed/date/year_month_combo.html","tf":0.029411764705882353}}}}}}}}}}}}}}},"q":{"docs":{},"u":{"docs":{},"a":{"docs":{},"r":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"_":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"b":{"docs":{},"o":{"docs":{},"\"":{"docs":{},",":{"docs":{"detailed/date/year_quarter_combo.html":{"ref":"detailed/date/year_quarter_combo.html","tf":0.03225806451612903}}}}}}}}}}}}}}}}}}}}}}}},"o":{"docs":{},"d":{"docs":{},"y":{"docs":{},"\"":{"docs":{},",":{"docs":{"core/layout/table.html":{"ref":"core/layout/table.html","tf":0.012048192771084338},"core/combination/bi.combo.html":{"ref":"core/combination/bi.combo.html","tf":0.004807692307692308},"base/table/collection_table.html":{"ref":"base/table/collection_table.html","tf":0.006535947712418301},"base/table/resizable_table.html":{"ref":"base/table/resizable_table.html","tf":0.00625},"case/trigger/editor_trigger.html":{"ref":"case/trigger/editor_trigger.html","tf":0.02},"case/trigger/icon_trigger.html":{"ref":"case/trigger/icon_trigger.html","tf":0.1111111111111111},"case/trigger/text_trigger.html":{"ref":"case/trigger/text_trigger.html","tf":0.05263157894736842},"detailed/table/bi.excel_table.html":{"ref":"detailed/table/bi.excel_table.html","tf":0.0055248618784530384},"detailed/table/bi.page_table.html":{"ref":"detailed/table/bi.page_table.html","tf":0.004651162790697674}}}}}},"t":{"docs":{},"t":{"docs":{},"o":{"docs":{},"m":{"docs":{},"\"":{"docs":{"core/combination/bi.combo.html":{"ref":"core/combination/bi.combo.html","tf":0.004807692307692308},"core/combination/bi.expander.html":{"ref":"core/combination/bi.expander.html","tf":0.005494505494505495},"core/combination/group_combo.html":{"ref":"core/combination/group_combo.html","tf":0.007874015748031496},"core/combination/navigation.html":{"ref":"core/combination/navigation.html","tf":0.007194244604316547},"core/combination/tab.html":{"ref":"core/combination/tab.html","tf":0.00684931506849315}}}}}}}},"u":{"docs":{},"t":{"docs":{},"t":{"docs":{},"o":{"docs":{},"n":{"docs":{},"_":{"docs":{},"g":{"docs":{},"r":{"docs":{},"o":{"docs":{},"u":{"docs":{},"p":{"docs":{},"\"":{"docs":{"core/abstract/button_group.html":{"ref":"core/abstract/button_group.html","tf":0.007936507936507936}}}}}}}}}}}}}},"b":{"docs":{},"b":{"docs":{},"\"":{"docs":{"core/layer/layer_popup.html":{"ref":"core/layer/layer_popup.html","tf":0.0058823529411764705}},",":{"docs":{"core/layer/layer_popup.html":{"ref":"core/layer/layer_popup.html","tf":0.0058823529411764705}}}}}},"\"":{"docs":{},",":{"docs":{"detailed/relation_view.html":{"ref":"detailed/relation_view.html","tf":0.019230769230769232}}}}},"l":{"docs":{},"a":{"docs":{},"y":{"docs":{},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{"core/layout/vertical.html":{"ref":"core/layout/vertical.html","tf":0.02564102564102564},"core/layout/horizontal.html":{"ref":"core/layout/horizontal.html","tf":0.021505376344086023},"core/layout/htape.html":{"ref":"core/layout/htape.html","tf":0.024},"core/layout/vtape.html":{"ref":"core/layout/vtape.html","tf":0.024},"core/layout/center_adapt.html":{"ref":"core/layout/center_adapt.html","tf":0.023529411764705882},"core/layout/vertical_adapt.html":{"ref":"core/layout/vertical_adapt.html","tf":0.022988505747126436},"core/layout/left_right_vertical_adapt.html":{"ref":"core/layout/left_right_vertical_adapt.html","tf":0.02197802197802198},"core/layout/flow.html":{"ref":"core/layout/flow.html","tf":0.03076923076923077},"core/layout/center.html":{"ref":"core/layout/center.html","tf":0.02531645569620253},"core/layout/horizontal_adapt.html":{"ref":"core/layout/horizontal_adapt.html","tf":0.021739130434782608},"core/layout/horizontal_auto.html":{"ref":"core/layout/horizontal_auto.html","tf":0.024691358024691357},"core/layout/horizontal_float.html":{"ref":"core/layout/horizontal_float.html","tf":0.013888888888888888},"core/layout/float_center.html":{"ref":"core/layout/float_center.html","tf":0.02531645569620253},"core/layout/grid.html":{"ref":"core/layout/grid.html","tf":0.03571428571428571},"core/combination/navigation.html":{"ref":"core/combination/navigation.html","tf":0.007194244604316547},"base/table/collection_table.html":{"ref":"base/table/collection_table.html","tf":0.026143790849673203},"base/table/resizable_table.html":{"ref":"base/table/resizable_table.html","tf":0.025},"case/editor/sign_initial_editor.html":{"ref":"case/editor/sign_initial_editor.html","tf":0.005154639175257732},"detailed/table/bi.excel_table.html":{"ref":"detailed/table/bi.excel_table.html","tf":0.022099447513812154}}}}}},"b":{"docs":{},"e":{"docs":{},"l":{"1":{"docs":{},"\"":{"docs":{},",":{"docs":{"core/abstract/button_tree.html":{"ref":"core/abstract/button_tree.html","tf":0.014925373134328358}}}}},"docs":{}}}}},"e":{"docs":{},"f":{"docs":{},"t":{"docs":{"core/layout/flow.html":{"ref":"core/layout/flow.html","tf":0.015384615384615385}},",":{"docs":{},"r":{"docs":{},"i":{"docs":{},"g":{"docs":{},"h":{"docs":{},"t":{"docs":{},",":{"docs":{},"c":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"\"":{"docs":{"core/combination/bi.combo.html":{"ref":"core/combination/bi.combo.html","tf":0.004807692307692308},"case/combo/icon_combo.html":{"ref":"case/combo/icon_combo.html","tf":0.007751937984496124}}}}}}}}}}}}}}}},"\"":{"docs":{"case/button/single_select_item.html":{"ref":"case/button/single_select_item.html","tf":0.016129032258064516},"case/button/single_select_radio_item.html":{"ref":"case/button/single_select_radio_item.html","tf":0.016129032258064516},"case/editor/shelter_editor.html":{"ref":"case/editor/shelter_editor.html","tf":0.0051813471502590676}}}}}}},"这":{"docs":{},"里":{"docs":{},"设":{"docs":{},"置":{"docs":{},"了":{"docs":{},"h":{"docs":{},"g":{"docs":{},"a":{"docs":{},"p":{"docs":{},"(":{"docs":{},"水":{"docs":{},"平":{"docs":{},"间":{"docs":{},"距":{"docs":{},")":{"docs":{},",":{"docs":{},"v":{"docs":{},"g":{"docs":{},"a":{"docs":{},"p":{"docs":{},"(":{"docs":{},"垂":{"docs":{},"直":{"docs":{},"间":{"docs":{},"距":{"docs":{},")":{"docs":{},"\"":{"docs":{},",":{"docs":{"core/layout/vertical.html":{"ref":"core/layout/vertical.html","tf":0.02564102564102564}}}}}}}}}}}}}}}}}}}}}}}}},"l":{"docs":{},"g":{"docs":{},"a":{"docs":{},"p":{"docs":{},",":{"docs":{},"r":{"docs":{},"g":{"docs":{},"a":{"docs":{},"p":{"docs":{},",":{"docs":{},"t":{"docs":{},"g":{"docs":{},"a":{"docs":{},"p":{"docs":{},",":{"docs":{},"b":{"docs":{},"g":{"docs":{},"a":{"docs":{},"p":{"docs":{},"\"":{"docs":{},",":{"docs":{"core/layout/horizontal.html":{"ref":"core/layout/horizontal.html","tf":0.021505376344086023}}}}}}}}}}}}}}}}}}}}}}}}}}},"个":{"docs":{},"是":{"docs":{},"带":{"docs":{},"标":{"docs":{},"记":{"docs":{},"的":{"docs":{},"\"":{"docs":{"case/editor/shelter_editor.html":{"ref":"case/editor/shelter_editor.html","tf":0.0051813471502590676}}}}}}}}}},"m":{"docs":{},"i":{"docs":{},"d":{"docs":{},"d":{"docs":{},"l":{"docs":{},"e":{"docs":{},"\"":{"docs":{"core/layout/horizontal.html":{"ref":"core/layout/horizontal.html","tf":0.010752688172043012}}}}}}}},"v":{"docs":{},"c":{"docs":{"base/editor/code_editor.html":{"ref":"base/editor/code_editor.html","tf":0.012658227848101266}}}},"o":{"docs":{},"v":{"docs":{},"e":{"docs":{"case/combo/icon_combo.html":{"ref":"case/combo/icon_combo.html","tf":0.007751937984496124}}}}}},"c":{"1":{"docs":{},"\"":{"docs":{},",":{"docs":{"detailed/relation_view.html":{"ref":"detailed/relation_view.html","tf":0.019230769230769232}}}},"字":{"docs":{},"段":{"docs":{},"\"":{"docs":{},"}":{"docs":{"detailed/relation_view.html":{"ref":"detailed/relation_view.html","tf":0.019230769230769232}}}}}}},"2":{"docs":{},"\"":{"docs":{},",":{"docs":{"detailed/relation_view.html":{"ref":"detailed/relation_view.html","tf":0.019230769230769232}}}},"字":{"docs":{},"段":{"docs":{},"\"":{"docs":{},"}":{"docs":{"detailed/relation_view.html":{"ref":"detailed/relation_view.html","tf":0.019230769230769232}}}}}}},"6":{"docs":{},"d":{"7":{"2":{"docs":{},"d":{"6":{"docs":{},"c":{"7":{"docs":{},"e":{"1":{"9":{"docs":{},"a":{"6":{"6":{"7":{"docs":{},"\"":{"docs":{},",":{"docs":{"detailed/path/path_chooser.html":{"ref":"detailed/path/path_chooser.html","tf":0.019230769230769232}}}}},"docs":{}},"docs":{}},"docs":{}}},"docs":{}},"docs":{}}},"docs":{}}},"docs":{}}},"docs":{}},"docs":{}}},"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{"core/layout/center_adapt.html":{"ref":"core/layout/center_adapt.html","tf":0.023529411764705882},"core/layout/center.html":{"ref":"core/layout/center.html","tf":0.02531645569620253}}}}}}},"o":{"docs":{},"l":{"docs":{},"u":{"docs":{},"m":{"docs":{},"n":{"docs":{"core/layout/grid.html":{"ref":"core/layout/grid.html","tf":0.03571428571428571},"detailed/down_list_combo.html":{"ref":"detailed/down_list_combo.html","tf":0.039473684210526314}}}}}}},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{},"k":{"docs":{},"\"":{"docs":{"core/combination/bi.combo.html":{"ref":"core/combination/bi.combo.html","tf":0.004807692307692308},"core/combination/bi.expander.html":{"ref":"core/combination/bi.expander.html","tf":0.005494505494505495},"core/combination/group_combo.html":{"ref":"core/combination/group_combo.html","tf":0.007874015748031496},"core/combination/switcher.html":{"ref":"core/combination/switcher.html","tf":0.00625}}}}}},"o":{"docs":{},"s":{"docs":{},"e":{"docs":{"core/combination/group_combo.html":{"ref":"core/combination/group_combo.html","tf":0.007874015748031496},"base/button/icon_button.html":{"ref":"base/button/icon_button.html","tf":0.02564102564102564}}}}}},"h":{"docs":{},"a":{"docs":{},"r":{"docs":{},"t":{"docs":{"detailed/down_list_combo.html":{"ref":"detailed/down_list_combo.html","tf":0.006578947368421052}}}}},"e":{"docs":{},"c":{"docs":{},"k":{"docs":{"detailed/down_list_combo.html":{"ref":"detailed/down_list_combo.html","tf":0.006578947368421052}}}}}},"\"":{"docs":{},",":{"docs":{"detailed/relation_view.html":{"ref":"detailed/relation_view.html","tf":0.038461538461538464}}}}},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"i":{"docs":{},"c":{"docs":{"core/layout/vertical_adapt.html":{"ref":"core/layout/vertical_adapt.html","tf":0.022988505747126436}}}}}}},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{"case/combo/static_combo.html":{"ref":"case/combo/static_combo.html","tf":0.0125}},"e":{"docs":{},"_":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"b":{"docs":{},"o":{"docs":{},"\"":{"docs":{},",":{"docs":{"case/combo/text_value_combo.html":{"ref":"case/combo/text_value_combo.html","tf":0.013513513513513514}}}}}}}}}},"\"":{"docs":{},":":{"docs":{"detailed/path/path_chooser.html":{"ref":"detailed/path/path_chooser.html","tf":0.057692307692307696},"detailed/path/direction_path_chooser.html":{"ref":"detailed/path/direction_path_chooser.html","tf":0.06}}}}}}}}},"右":{"docs":{},"边":{"docs":{},"的":{"docs":{},"垂":{"docs":{},"直":{"docs":{},"居":{"docs":{},"中":{"docs":{},"\"":{"docs":{},",":{"docs":{"core/layout/left_right_vertical_adapt.html":{"ref":"core/layout/left_right_vertical_adapt.html","tf":0.01098901098901099}}}}}}}}}}},"左":{"docs":{},"边":{"docs":{},"的":{"docs":{},"垂":{"docs":{},"直":{"docs":{},"居":{"docs":{},"中":{"docs":{},"\"":{"docs":{},",":{"docs":{"core/layout/left_right_vertical_adapt.html":{"ref":"core/layout/left_right_vertical_adapt.html","tf":0.01098901098901099}}}}}}}}}}},"r":{"docs":{},"i":{"docs":{},"g":{"docs":{},"h":{"docs":{},"t":{"docs":{"core/layout/flow.html":{"ref":"core/layout/flow.html","tf":0.015384615384615385}}}}}},"e":{"docs":{},"d":{"docs":{},"\"":{"docs":{},"}":{"docs":{},")":{"docs":{},";":{"docs":{"base/svg.html":{"ref":"base/svg.html","tf":0.011235955056179775}}}}},",":{"docs":{"case/complex_canvas.html":{"ref":"case/complex_canvas.html","tf":0.020833333333333332}}}}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"case/combo/icon_combo.html":{"ref":"case/combo/icon_combo.html","tf":0.015503875968992248}}}}},"g":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"\"":{"docs":{},":":{"docs":{"detailed/path/path_chooser.html":{"ref":"detailed/path/path_chooser.html","tf":0.057692307692307696},"detailed/path/direction_path_chooser.html":{"ref":"detailed/path/direction_path_chooser.html","tf":0.06}}}},"t":{"docs":{},"e":{"docs":{},"x":{"docs":{},"t":{"docs":{},"\"":{"docs":{},":":{"docs":{"detailed/path/path_chooser.html":{"ref":"detailed/path/path_chooser.html","tf":0.057692307692307696}}}}}}}}}}}}}},"n":{"docs":{},"o":{"docs":{},"r":{"docs":{},"m":{"docs":{},"a":{"docs":{},"l":{"docs":{},"\"":{"docs":{"core/layout/center.html":{"ref":"core/layout/center.html","tf":0.02531645569620253},"core/layout/float_center.html":{"ref":"core/layout/float_center.html","tf":0.02531645569620253}}}}}}}}},"h":{"docs":{},"o":{"docs":{},"r":{"docs":{},"i":{"docs":{},"z":{"docs":{},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{"core/layout/horizontal_adapt.html":{"ref":"core/layout/horizontal_adapt.html","tf":0.021739130434782608},"core/layout/horizontal_auto.html":{"ref":"core/layout/horizontal_auto.html","tf":0.024691358024691357},"core/layout/horizontal_float.html":{"ref":"core/layout/horizontal_float.html","tf":0.013888888888888888}}}}}}}}},"t":{"docs":{},"t":{"docs":{},"p":{"docs":{},":":{"docs":{},"/":{"docs":{},"/":{"docs":{},"w":{"docs":{},"w":{"docs":{},"w":{"docs":{},".":{"docs":{},"e":{"docs":{},"a":{"docs":{},"s":{"docs":{},"y":{"docs":{},"i":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},".":{"docs":{},"n":{"docs":{},"e":{"docs":{},"t":{"docs":{},"/":{"docs":{},"a":{"docs":{},"p":{"docs":{},"i":{"docs":{},"/":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"i":{"docs":{},"z":{"docs":{},"e":{"docs":{},"a":{"docs":{},"p":{"docs":{},"i":{"docs":{},".":{"docs":{},"p":{"docs":{},"h":{"docs":{},"p":{"docs":{},"?":{"docs":{},"i":{"docs":{},"d":{"docs":{},"=":{"1":{"2":{"0":{"6":{"7":{"4":{"1":{"docs":{},"&":{"docs":{},"s":{"docs":{},"i":{"docs":{},"z":{"docs":{},"e":{"docs":{},"=":{"1":{"2":{"8":{"docs":{},"\"":{"docs":{},",":{"docs":{"base/button/image_button.html":{"ref":"base/button/image_button.html","tf":0.014925373134328358}}}}},"docs":{}},"docs":{}},"docs":{}}}}}}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"f":{"docs":{},"l":{"docs":{},"o":{"docs":{},"a":{"docs":{},"t":{"docs":{},"c":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"与":{"docs":{},"c":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"的":{"docs":{},"不":{"docs":{},"同":{"docs":{},"在":{"docs":{},"于":{"docs":{},",":{"docs":{},"它":{"docs":{},"可":{"docs":{},"以":{"docs":{},"控":{"docs":{},"制":{"docs":{},"最":{"docs":{},"小":{"docs":{},"宽":{"docs":{},"度":{"docs":{},"和":{"docs":{},"最":{"docs":{},"大":{"docs":{},"宽":{"docs":{},"度":{"docs":{},"\"":{"docs":{},",":{"docs":{"core/layout/float_center.html":{"ref":"core/layout/float_center.html","tf":0.02531645569620253}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"l":{"docs":{},"l":{"docs":{},"\"":{"docs":{},",":{"docs":{"core/layout/table.html":{"ref":"core/layout/table.html","tf":0.012048192771084338}}}}}}}},"根":{"docs":{},"目":{"docs":{},"录":{"docs":{},"\"":{"docs":{"detailed/tree/bi.multi_tree_combo.html":{"ref":"detailed/tree/bi.multi_tree_combo.html","tf":0.010869565217391304},"detailed/tree/bi.switch_tree.html":{"ref":"detailed/tree/bi.switch_tree.html","tf":0.013157894736842105},"detailed/file_manager.html":{"ref":"detailed/file_manager.html","tf":0.023255813953488372}},",":{"docs":{"core/abstract/custom_tree.html":{"ref":"core/abstract/custom_tree.html","tf":0.007194244604316547},"detailed/tree/bi.multi_tree_combo.html":{"ref":"detailed/tree/bi.multi_tree_combo.html","tf":0.010869565217391304},"detailed/tree/bi.switch_tree.html":{"ref":"detailed/tree/bi.switch_tree.html","tf":0.013157894736842105}}}}}}},"第":{"docs":{},"一":{"docs":{},"级":{"docs":{},"目":{"docs":{},"录":{"1":{"docs":{},"\"":{"docs":{"detailed/tree/bi.multi_tree_combo.html":{"ref":"detailed/tree/bi.multi_tree_combo.html","tf":0.010869565217391304},"detailed/tree/bi.switch_tree.html":{"ref":"detailed/tree/bi.switch_tree.html","tf":0.013157894736842105}},",":{"docs":{"core/abstract/custom_tree.html":{"ref":"core/abstract/custom_tree.html","tf":0.007194244604316547},"detailed/tree/bi.multi_tree_combo.html":{"ref":"detailed/tree/bi.multi_tree_combo.html","tf":0.010869565217391304},"detailed/tree/bi.switch_tree.html":{"ref":"detailed/tree/bi.switch_tree.html","tf":0.013157894736842105}}}}},"docs":{}}},"子":{"docs":{},"目":{"docs":{},"录":{"1":{"docs":{},"\"":{"docs":{"detailed/file_manager.html":{"ref":"detailed/file_manager.html","tf":0.023255813953488372}}}},"2":{"docs":{},"\"":{"docs":{"detailed/file_manager.html":{"ref":"detailed/file_manager.html","tf":0.023255813953488372}}}},"docs":{}}}}},"行":{"docs":{},"第":{"docs":{},"一":{"docs":{},"列":{"docs":{},"\"":{"docs":{"base/table/collection_table.html":{"ref":"base/table/collection_table.html","tf":0.006535947712418301},"base/table/resizable_table.html":{"ref":"base/table/resizable_table.html","tf":0.00625},"detailed/table/bi.preview_table.html":{"ref":"detailed/table/bi.preview_table.html","tf":0.006756756756756757},"detailed/table/bi.responsive_table.html":{"ref":"detailed/table/bi.responsive_table.html","tf":0.005263157894736842},"detailed/table/bi.excel_table.html":{"ref":"detailed/table/bi.excel_table.html","tf":0.0055248618784530384}}}}},"二":{"docs":{},"列":{"docs":{},"\"":{"docs":{"base/table/collection_table.html":{"ref":"base/table/collection_table.html","tf":0.006535947712418301},"base/table/resizable_table.html":{"ref":"base/table/resizable_table.html","tf":0.00625},"detailed/table/bi.preview_table.html":{"ref":"detailed/table/bi.preview_table.html","tf":0.006756756756756757},"detailed/table/bi.responsive_table.html":{"ref":"detailed/table/bi.responsive_table.html","tf":0.005263157894736842},"detailed/table/bi.excel_table.html":{"ref":"detailed/table/bi.excel_table.html","tf":0.0055248618784530384}}}}},"三":{"docs":{},"列":{"docs":{},"\"":{"docs":{"detailed/table/bi.preview_table.html":{"ref":"detailed/table/bi.preview_table.html","tf":0.006756756756756757},"detailed/table/bi.responsive_table.html":{"ref":"detailed/table/bi.responsive_table.html","tf":0.005263157894736842}}}}}}},"项":{"docs":{},"\"":{"docs":{},",":{"docs":{"case/combo/icon_combo.html":{"ref":"case/combo/icon_combo.html","tf":0.007751937984496124}}}}}},"二":{"docs":{},"级":{"docs":{},"文":{"docs":{},"件":{"1":{"docs":{},"\"":{"docs":{"detailed/tree/bi.multi_tree_combo.html":{"ref":"detailed/tree/bi.multi_tree_combo.html","tf":0.010869565217391304},"detailed/tree/bi.switch_tree.html":{"ref":"detailed/tree/bi.switch_tree.html","tf":0.013157894736842105}},",":{"docs":{"core/abstract/custom_tree.html":{"ref":"core/abstract/custom_tree.html","tf":0.007194244604316547},"detailed/tree/bi.multi_tree_combo.html":{"ref":"detailed/tree/bi.multi_tree_combo.html","tf":0.010869565217391304},"detailed/tree/bi.switch_tree.html":{"ref":"detailed/tree/bi.switch_tree.html","tf":0.013157894736842105}}}}},"docs":{}}}},"行":{"docs":{},"第":{"docs":{},"一":{"docs":{},"列":{"docs":{},"\"":{"docs":{"base/table/collection_table.html":{"ref":"base/table/collection_table.html","tf":0.006535947712418301},"base/table/resizable_table.html":{"ref":"base/table/resizable_table.html","tf":0.00625},"detailed/table/bi.excel_table.html":{"ref":"detailed/table/bi.excel_table.html","tf":0.0055248618784530384}}}}},"二":{"docs":{},"列":{"docs":{},"\"":{"docs":{"base/table/collection_table.html":{"ref":"base/table/collection_table.html","tf":0.006535947712418301},"base/table/resizable_table.html":{"ref":"base/table/resizable_table.html","tf":0.00625},"detailed/table/bi.excel_table.html":{"ref":"detailed/table/bi.excel_table.html","tf":0.0055248618784530384}}}}}}},"项":{"docs":{},"\"":{"docs":{},",":{"docs":{"case/combo/icon_combo.html":{"ref":"case/combo/icon_combo.html","tf":0.007751937984496124}}}}}},"\"":{"docs":{"core/combination/navigation.html":{"ref":"core/combination/navigation.html","tf":0.007194244604316547}}},"三":{"docs":{},"项":{"docs":{},"\"":{"docs":{},",":{"docs":{"case/combo/icon_combo.html":{"ref":"case/combo/icon_combo.html","tf":0.007751937984496124}}}}}}},".":{"docs":{},"\"":{"docs":{"core/abstract/virtual_list.html":{"ref":"core/abstract/virtual_list.html","tf":0.0125}}}},"x":{"docs":{},"x":{"docs":{},"x":{"docs":{},"x":{"docs":{},"\"":{"docs":{},"}":{"docs":{},"]":{"docs":{},",":{"docs":{"core/abstract/virtual_list.html":{"ref":"core/abstract/virtual_list.html","tf":0.0125}}}}}}}}}},"测":{"docs":{},"试":{"docs":{},"\"":{"docs":{"base/bubble.html":{"ref":"base/bubble.html","tf":0.023255813953488372}},",":{"docs":{"core/combination/bi.combo.html":{"ref":"core/combination/bi.combo.html","tf":0.004807692307692308},"case/layer/layer_panel.html":{"ref":"case/layer/layer_panel.html","tf":0.010752688172043012},"case/combo/bubble_combo.html":{"ref":"case/combo/bubble_combo.html","tf":0.005780346820809248}}}}}},"e":{"3":{"5":{"1":{"docs":{},"e":{"9":{"docs":{},"f":{"1":{"docs":{},"d":{"8":{"1":{"4":{"7":{"9":{"4":{"7":{"docs":{},"合":{"docs":{},"同":{"docs":{},"i":{"docs":{},"d":{"docs":{},"\"":{"docs":{},",":{"docs":{"detailed/path/direction_path_chooser.html":{"ref":"detailed/path/direction_path_chooser.html","tf":0.02}}}}}}}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}}},"docs":{}}},"docs":{}}},"docs":{}},"docs":{}},"docs":{},"x":{"docs":{},"p":{"docs":{},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{},"\"":{"docs":{"core/combination/bi.expander.html":{"ref":"core/combination/bi.expander.html","tf":0.005494505494505495}}}}}}}}}}},"p":{"docs":{},"u":{"docs":{},"l":{"docs":{},"l":{"docs":{"core/combination/bi.expander.html":{"ref":"core/combination/bi.expander.html","tf":0.005494505494505495}}}}}},"项":{"docs":{},"目":{"1":{"docs":{},"\"":{"docs":{},",":{"docs":{"core/combination/bi.expander.html":{"ref":"core/combination/bi.expander.html","tf":0.005494505494505495}}}}},"2":{"docs":{},"\"":{"docs":{},",":{"docs":{"core/combination/bi.expander.html":{"ref":"core/combination/bi.expander.html","tf":0.005494505494505495}}}}},"docs":{}}},"\"":{"docs":{"case/trigger/editor_trigger.html":{"ref":"case/trigger/editor_trigger.html","tf":0.04},"case/combo/bubble_combo.html":{"ref":"case/combo/bubble_combo.html","tf":0.011560693641618497}},",":{"docs":{"core/combination/group_combo.html":{"ref":"core/combination/group_combo.html","tf":0.007874015748031496},"detailed/table/bi.preview_table.html":{"ref":"detailed/table/bi.preview_table.html","tf":0.006756756756756757},"detailed/table/bi.responsive_table.html":{"ref":"detailed/table/bi.responsive_table.html","tf":0.005263157894736842}}},"}":{"docs":{"core/combination/group_combo.html":{"ref":"core/combination/group_combo.html","tf":0.007874015748031496}}},"]":{"docs":{"detailed/table/bi.excel_table.html":{"ref":"detailed/table/bi.excel_table.html","tf":0.0055248618784530384}},",":{"docs":{"detailed/table/bi.responsive_table.html":{"ref":"detailed/table/bi.responsive_table.html","tf":0.005263157894736842}}}}},"一":{"docs":{},"月":{"docs":{},"\"":{"docs":{},",":{"docs":{"core/combination/group_combo.html":{"ref":"core/combination/group_combo.html","tf":0.007874015748031496}}}}}},"t":{"docs":{},"o":{"docs":{},"p":{"docs":{},"\"":{"docs":{"core/combination/loader.html":{"ref":"core/combination/loader.html","tf":0.006289308176100629},"base/bubble.html":{"ref":"base/bubble.html","tf":0.023255813953488372}}}},"a":{"docs":{},"s":{"docs":{},"t":{"docs":{},"测":{"docs":{},"试":{"docs":{},"\"":{"docs":{"base/toast.html":{"ref":"base/toast.html","tf":0.020833333333333332}}}}}}}}},"a":{"docs":{},"b":{"1":{"docs":{},"\"":{"docs":{},",":{"docs":{"core/combination/tab.html":{"ref":"core/combination/tab.html","tf":0.00684931506849315},"case/segment.html":{"ref":"case/segment.html","tf":0.009345794392523364},"detailed/bi.button/segment.html":{"ref":"detailed/bi.button/segment.html","tf":0.009345794392523364}}}}},"2":{"docs":{},"\"":{"docs":{},",":{"docs":{"core/combination/tab.html":{"ref":"core/combination/tab.html","tf":0.00684931506849315},"case/segment.html":{"ref":"case/segment.html","tf":0.009345794392523364},"detailed/bi.button/segment.html":{"ref":"detailed/bi.button/segment.html","tf":0.009345794392523364}}}}},"3":{"docs":{"case/segment.html":{"ref":"case/segment.html","tf":0.009345794392523364},"detailed/bi.button/segment.html":{"ref":"detailed/bi.button/segment.html","tf":0.009345794392523364}}},"docs":{}}},"e":{"docs":{},"x":{"docs":{},"t":{"docs":{},"\"":{"docs":{"base/editor/editor.html":{"ref":"base/editor/editor.html","tf":0.005405405405405406}},",":{"docs":{"case/combo/text_value_downlist_combo.html":{"ref":"case/combo/text_value_downlist_combo.html","tf":0.013513513513513514}}},":":{"docs":{"detailed/path/path_chooser.html":{"ref":"detailed/path/path_chooser.html","tf":0.057692307692307696},"detailed/path/direction_path_chooser.html":{"ref":"detailed/path/direction_path_chooser.html","tf":0.06}}}}}}}},"前":{"docs":{},"进":{"docs":{},"\"":{"docs":{},",":{"docs":{"core/combination/navigation.html":{"ref":"core/combination/navigation.html","tf":0.007194244604316547}}}}}},"后":{"docs":{},"退":{"docs":{},"\"":{"docs":{},",":{"docs":{"core/combination/navigation.html":{"ref":"core/combination/navigation.html","tf":0.007194244604316547}}}}}},"页":{"docs":{},"\"":{"docs":{"core/combination/navigation.html":{"ref":"core/combination/navigation.html","tf":0.007194244604316547}}}},"张":{"docs":{},"三":{"docs":{},"\"":{"docs":{"core/combination/searcher.html":{"ref":"core/combination/searcher.html","tf":0.004608294930875576}}}}},"s":{"docs":{},"w":{"docs":{},"i":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},"\"":{"docs":{"core/combination/switcher.html":{"ref":"core/combination/switcher.html","tf":0.00625}}}}}}}}}},"u":{"docs":{},"c":{"docs":{},"c":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{},"\"":{"docs":{"base/toast.html":{"ref":"base/toast.html","tf":0.020833333333333332}}}}}}}}}},"面":{"docs":{},"板":{"1":{"docs":{},"\"":{"docs":{"core/combination/tab.html":{"ref":"core/combination/tab.html","tf":0.00684931506849315}}}},"2":{"docs":{},"\"":{"docs":{"core/combination/tab.html":{"ref":"core/combination/tab.html","tf":0.00684931506849315}}}},"docs":{}}},"点":{"docs":{},"击":{"docs":{},"弹":{"docs":{},"出":{"docs":{},"f":{"docs":{},"l":{"docs":{},"o":{"docs":{},"a":{"docs":{},"t":{"docs":{},"b":{"docs":{},"o":{"docs":{},"x":{"docs":{},"\"":{"docs":{},",":{"docs":{"core/layer/layer_float_box.html":{"ref":"core/layer/layer_float_box.html","tf":0.012345679012345678}}}}}}}}}}}}}}}},"a":{"1":{"docs":{},"\"":{"docs":{},",":{"docs":{"detailed/relation_view.html":{"ref":"detailed/relation_view.html","tf":0.019230769230769232}}}},"字":{"docs":{},"段":{"docs":{},"\"":{"docs":{},"}":{"docs":{},",":{"docs":{"detailed/relation_view.html":{"ref":"detailed/relation_view.html","tf":0.019230769230769232}}}}}}}},"docs":{},"a":{"docs":{},"a":{"docs":{},"\"":{"docs":{"core/layer/layer_popup.html":{"ref":"core/layer/layer_popup.html","tf":0.0058823529411764705}},",":{"docs":{"core/layer/layer_popup.html":{"ref":"core/layer/layer_popup.html","tf":0.0058823529411764705}}}}}},"u":{"docs":{},"t":{"docs":{},"o":{"docs":{},"\"":{"docs":{"core/layer/layer_popup.html":{"ref":"core/layer/layer_popup.html","tf":0.0058823529411764705},"case/combo/icon_combo.html":{"ref":"case/combo/icon_combo.html","tf":0.007751937984496124}}}}}},"\"":{"docs":{"core/layer/layer_searcher.html":{"ref":"core/layer/layer_searcher.html","tf":0.009259259259259259}},")":{"docs":{},";":{"docs":{"core/layer/layer_searcher.html":{"ref":"core/layer/layer_searcher.html","tf":0.009259259259259259}}}},",":{"docs":{"core/layer/layer_searcher.html":{"ref":"core/layer/layer_searcher.html","tf":0.009259259259259259},"detailed/relation_view.html":{"ref":"detailed/relation_view.html","tf":0.019230769230769232}}}},"b":{"docs":{},"a":{"docs":{},"\"":{"docs":{"core/layer/layer_searcher.html":{"ref":"core/layer/layer_searcher.html","tf":0.009259259259259259}},",":{"docs":{"core/layer/layer_searcher.html":{"ref":"core/layer/layer_searcher.html","tf":0.009259259259259259}}}}}},"c":{"docs":{},"c":{"docs":{},"\"":{"docs":{"core/layer/layer_searcher.html":{"ref":"core/layer/layer_searcher.html","tf":0.009259259259259259}},",":{"docs":{"core/layer/layer_searcher.html":{"ref":"core/layer/layer_searcher.html","tf":0.009259259259259259}}}}}}},"d":{"docs":{},"i":{"docs":{},"v":{"docs":{},"\"":{"docs":{"core/widget.html":{"ref":"core/widget.html","tf":0.00510204081632653}}}},"r":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"\"":{"docs":{},":":{"docs":{"detailed/path/direction_path_chooser.html":{"ref":"detailed/path/direction_path_chooser.html","tf":0.04}}}}}}}}}}}},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"t":{"docs":{"case/combo/icon_combo.html":{"ref":"case/combo/icon_combo.html","tf":0.007751937984496124}}}}},"f":{"docs":{},"a":{"1":{"docs":{},"f":{"7":{"docs":{},"b":{"docs":{},"a":{"8":{"docs":{},"b":{"2":{"6":{"8":{"4":{"docs":{},"a":{"docs":{},"客":{"docs":{},"户":{"docs":{},"i":{"docs":{},"d":{"docs":{},"\"":{"docs":{"detailed/path/direction_path_chooser.html":{"ref":"detailed/path/direction_path_chooser.html","tf":0.02}}}}}}}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}}},"docs":{}}}},"docs":{}}},"docs":{}}}},"o":{"docs":{},"t":{"docs":{"detailed/down_list_combo.html":{"ref":"detailed/down_list_combo.html","tf":0.03289473684210526}}}}},"基":{"docs":{},"本":{"docs":{},"标":{"docs":{},"签":{"docs":{},"\"":{"docs":{"base/label.html":{"ref":"base/label.html","tf":0.006711409395973154}}}}}}},"w":{"docs":{},"a":{"docs":{},"r":{"docs":{},"n":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"\"":{"docs":{"base/editor/editor.html":{"ref":"base/editor/editor.html","tf":0.005405405405405406}},",":{"docs":{"base/toast.html":{"ref":"base/toast.html","tf":0.020833333333333332}}}}}}}}}}},"字":{"docs":{},"段":{"docs":{},"不":{"docs":{},"可":{"docs":{},"重":{"docs":{},"名":{"docs":{},"!":{"docs":{},"\"":{"docs":{},",":{"docs":{"base/editor/editor.html":{"ref":"base/editor/editor.html","tf":0.005405405405405406}}}}}}}}}}},"上":{"docs":{},"一":{"docs":{},"页":{"docs":{},"\"":{"docs":{"base/pager.html":{"ref":"base/pager.html","tf":0.006666666666666667}}}}}},"下":{"docs":{},"一":{"docs":{},"页":{"docs":{},"\"":{"docs":{"base/pager.html":{"ref":"base/pager.html","tf":0.006666666666666667}}}}}},"尾":{"docs":{},"页":{"docs":{},"\"":{"docs":{"base/pager.html":{"ref":"base/pager.html","tf":0.006666666666666667}}}}},"首":{"docs":{},"页":{"docs":{},"\"":{"docs":{},",":{"docs":{"base/pager.html":{"ref":"base/pager.html","tf":0.006666666666666667}}}}}},"g":{"docs":{},"r":{"docs":{},"e":{"docs":{},"e":{"docs":{},"n":{"docs":{},"\"":{"docs":{},")":{"docs":{},";":{"docs":{"base/canvas.html":{"ref":"base/canvas.html","tf":0.016666666666666666}}}}}}}}}},"复":{"docs":{},"选":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"\"":{"docs":{"case/button/multi_select_item.html":{"ref":"case/button/multi_select_item.html","tf":0.017543859649122806},"case/button/single_select_item.html":{"ref":"case/button/single_select_item.html","tf":0.016129032258064516},"detailed/bi.button/items.html":{"ref":"detailed/bi.button/items.html","tf":0.010638297872340425}}}}}}},"项":{"docs":{},"\"":{"docs":{"case/button/multi_select_item.html":{"ref":"case/button/multi_select_item.html","tf":0.017543859649122806},"case/button/single_select_item.html":{"ref":"case/button/single_select_item.html","tf":0.016129032258064516},"detailed/bi.button/items.html":{"ref":"detailed/bi.button/items.html","tf":0.010638297872340425}}}}}},"单":{"docs":{},"选":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"\"":{"docs":{"case/button/single_select_radio_item.html":{"ref":"case/button/single_select_radio_item.html","tf":0.016129032258064516},"detailed/bi.button/items.html":{"ref":"detailed/bi.button/items.html","tf":0.010638297872340425}}}}}}},"项":{"docs":{},"\"":{"docs":{"case/button/single_select_radio_item.html":{"ref":"case/button/single_select_radio_item.html","tf":0.016129032258064516},"detailed/bi.button/items.html":{"ref":"detailed/bi.button/items.html","tf":0.010638297872340425}}}}}},"原":{"docs":{},"始":{"docs":{},"值":{"docs":{},"\"":{"docs":{},",":{"docs":{"case/editor/sign_initial_editor.html":{"ref":"case/editor/sign_initial_editor.html","tf":0.005154639175257732}}}}}}},"+":{"docs":{},"\"":{"docs":{"case/layer/panel.html":{"ref":"case/layer/panel.html","tf":0.015873015873015872}}}},"标":{"docs":{},"题":{"docs":{},"\"":{"docs":{},",":{"docs":{"case/layer/panel.html":{"ref":"case/layer/panel.html","tf":0.015873015873015872}}}}}},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"\"":{"docs":{"case/combo/bubble_combo.html":{"ref":"case/combo/bubble_combo.html","tf":0.005780346820809248}}}}}},"d":{"docs":{},"\"":{"docs":{},",":{"docs":{"detailed/path/path_chooser.html":{"ref":"detailed/path/path_chooser.html","tf":0.038461538461538464}}}}}},"默":{"docs":{},"认":{"docs":{},"风":{"docs":{},"格":{"docs":{},"\"":{"docs":{"case/segment.html":{"ref":"case/segment.html","tf":0.009345794392523364},"detailed/bi.button/segment.html":{"ref":"detailed/bi.button/segment.html","tf":0.009345794392523364}}}}},"值":{"docs":{},"\"":{"docs":{},",":{"docs":{"detailed/combo/single_tree_combo.html":{"ref":"detailed/combo/single_tree_combo.html","tf":0.01694915254237288},"detailed/combo/multilayer_single_tree_combo.html":{"ref":"detailed/combo/multilayer_single_tree_combo.html","tf":0.018867924528301886},"detailed/combo/select_tree_combo.html":{"ref":"detailed/combo/select_tree_combo.html","tf":0.02040816326530612},"detailed/combo/multilayer_select_tree_combo.html":{"ref":"detailed/combo/multilayer_select_tree_combo.html","tf":0.02040816326530612}}}}}}},"三":{"docs":{},"角":{"docs":{},"形":{"docs":{},"的":{"docs":{},"节":{"docs":{},"点":{"docs":{},"\"":{"docs":{"detailed/bi.button/node.html":{"ref":"detailed/bi.button/node.html","tf":0.018518518518518517}}}}}}}}},"十":{"docs":{},"字":{"docs":{},"形":{"docs":{},"的":{"docs":{},"节":{"docs":{},"点":{"docs":{},"\"":{"docs":{"detailed/bi.button/node.html":{"ref":"detailed/bi.button/node.html","tf":0.018518518518518517}}}}}}}}},"箭":{"docs":{},"头":{"docs":{},"节":{"docs":{},"点":{"docs":{},"\"":{"docs":{"detailed/bi.button/node.html":{"ref":"detailed/bi.button/node.html","tf":0.018518518518518517}}}}}}},"表":{"docs":{},"头":{"1":{"docs":{},"\"":{"docs":{"detailed/table/bi.preview_table.html":{"ref":"detailed/table/bi.preview_table.html","tf":0.006756756756756757},"detailed/table/bi.responsive_table.html":{"ref":"detailed/table/bi.responsive_table.html","tf":0.005263157894736842}}}},"2":{"docs":{},"\"":{"docs":{"detailed/table/bi.preview_table.html":{"ref":"detailed/table/bi.preview_table.html","tf":0.006756756756756757},"detailed/table/bi.responsive_table.html":{"ref":"detailed/table/bi.responsive_table.html","tf":0.005263157894736842}}}},"3":{"docs":{},"\"":{"docs":{"detailed/table/bi.preview_table.html":{"ref":"detailed/table/bi.preview_table.html","tf":0.006756756756756757},"detailed/table/bi.responsive_table.html":{"ref":"detailed/table/bi.responsive_table.html","tf":0.005263157894736842}}}},"docs":{}}},"供":{"docs":{},"应":{"docs":{},"商":{"docs":{},"基":{"docs":{},"本":{"docs":{},"信":{"docs":{},"息":{"docs":{},"\"":{"docs":{},",":{"docs":{"detailed/path/path_chooser.html":{"ref":"detailed/path/path_chooser.html","tf":0.019230769230769232}}}}}}}}}}},"学":{"docs":{},"号":{"docs":{},"\"":{"docs":{},",":{"docs":{"detailed/path/path_chooser.html":{"ref":"detailed/path/path_chooser.html","tf":0.019230769230769232}}}}}},"采":{"docs":{},"购":{"docs":{},"订":{"docs":{},"单":{"docs":{},"\"":{"docs":{},",":{"docs":{"detailed/path/path_chooser.html":{"ref":"detailed/path/path_chooser.html","tf":0.019230769230769232}}}},"x":{"docs":{},"x":{"docs":{},"x":{"docs":{},"\"":{"docs":{},",":{"docs":{"detailed/path/path_chooser.html":{"ref":"detailed/path/path_chooser.html","tf":0.019230769230769232}}}}}}}}}}},"主":{"docs":{},"键":{"docs":{},"\"":{"docs":{},",":{"docs":{"detailed/path/direction_path_chooser.html":{"ref":"detailed/path/direction_path_chooser.html","tf":0.02}}}}}},"合":{"docs":{},"同":{"docs":{},"i":{"docs":{},"d":{"docs":{},"\"":{"docs":{},",":{"docs":{"detailed/path/direction_path_chooser.html":{"ref":"detailed/path/direction_path_chooser.html","tf":0.02}}}}}},"信":{"docs":{},"息":{"docs":{},"\"":{"docs":{},",":{"docs":{"detailed/path/direction_path_chooser.html":{"ref":"detailed/path/direction_path_chooser.html","tf":0.02}}}}}},"的":{"docs":{},"回":{"docs":{},"款":{"docs":{},"信":{"docs":{},"息":{"docs":{},"\"":{"docs":{},",":{"docs":{"detailed/path/direction_path_chooser.html":{"ref":"detailed/path/direction_path_chooser.html","tf":0.02}}}}}}}}}}},"客":{"docs":{},"户":{"docs":{},"i":{"docs":{},"d":{"docs":{},"\"":{"docs":{},",":{"docs":{"detailed/path/direction_path_chooser.html":{"ref":"detailed/path/direction_path_chooser.html","tf":0.02}}}}}},"信":{"docs":{},"息":{"docs":{},"\"":{"docs":{},",":{"docs":{"detailed/path/direction_path_chooser.html":{"ref":"detailed/path/direction_path_chooser.html","tf":0.02}}}}}}}},"比":{"docs":{},"\"":{"docs":{},",":{"docs":{"detailed/relation_view.html":{"ref":"detailed/relation_view.html","tf":0.019230769230769232}}}}}},"'":{"1":{"9":{"0":{"0":{"docs":{"case/calendar.html":{"ref":"case/calendar.html","tf":0.027777777777777776},"detailed/year_combo.html":{"ref":"detailed/year_combo.html","tf":0.025},"detailed/date/date_pane_widget.html":{"ref":"detailed/date/date_pane_widget.html","tf":0.02702702702702703}}},"docs":{}},"docs":{}},"docs":{},"'":{"docs":{},",":{"docs":{"core/layout/htape.html":{"ref":"core/layout/htape.html","tf":0.008},"core/layout/vtape.html":{"ref":"core/layout/vtape.html","tf":0.008},"case/list/list.select.html":{"ref":"case/list/list.select.html","tf":0.009433962264150943}}}}},"2":{"0":{"9":{"9":{"docs":{"case/calendar.html":{"ref":"case/calendar.html","tf":0.027777777777777776},"detailed/year_combo.html":{"ref":"detailed/year_combo.html","tf":0.025},"detailed/date/date_pane_widget.html":{"ref":"detailed/date/date_pane_widget.html","tf":0.02702702702702703}}},"docs":{}},"docs":{}},"docs":{},"'":{"docs":{},",":{"docs":{"core/layout/htape.html":{"ref":"core/layout/htape.html","tf":0.008},"core/layout/vtape.html":{"ref":"core/layout/vtape.html","tf":0.008},"case/list/list.select.html":{"ref":"case/list/list.select.html","tf":0.009433962264150943}}}}},"3":{"docs":{},"'":{"docs":{},",":{"docs":{"core/layout/htape.html":{"ref":"core/layout/htape.html","tf":0.008},"core/layout/vtape.html":{"ref":"core/layout/vtape.html","tf":0.008}}}}},"docs":{},"d":{"docs":{},"e":{"docs":{},"m":{"docs":{},"o":{"docs":{},".":{"docs":{},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"i":{"docs":{},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{},"'":{"docs":{},",":{"docs":{"core/layout/vertical.html":{"ref":"core/layout/vertical.html","tf":0.01282051282051282}}}}}}}}}}}}}}}}},"b":{"docs":{},"i":{"docs":{},".":{"docs":{},"h":{"docs":{},"o":{"docs":{},"r":{"docs":{},"i":{"docs":{},"z":{"docs":{},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{},"a":{"docs":{},"l":{"docs":{},"'":{"docs":{},",":{"docs":{"core/layout/horizontal.html":{"ref":"core/layout/horizontal.html","tf":0.010752688172043012}}}}}}}}}}}}}},"b":{"docs":{},"u":{"docs":{},"t":{"docs":{},"t":{"docs":{},"o":{"docs":{},"n":{"docs":{},"'":{"docs":{},",":{"docs":{"core/layout/htape.html":{"ref":"core/layout/htape.html","tf":0.024},"core/layout/vtape.html":{"ref":"core/layout/vtape.html","tf":0.024},"core/layout/table.html":{"ref":"core/layout/table.html","tf":0.03614457831325301},"base/button/button.html":{"ref":"base/button/button.html","tf":0.005681818181818182},"detailed/bi.button/tooltip.html":{"ref":"detailed/bi.button/tooltip.html","tf":0.011363636363636364}}}}}}}},"b":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"'":{"docs":{},",":{"docs":{"base/bubble.html":{"ref":"base/bubble.html","tf":0.023255813953488372}}}}}}}}},"o":{"docs":{},"r":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{},"'":{"docs":{},",":{"docs":{"core/layout/border.html":{"ref":"core/layout/border.html","tf":0.012987012987012988}}}}}}}}}},"l":{"docs":{},"a":{"docs":{},"b":{"docs":{},"e":{"docs":{},"l":{"docs":{},"'":{"docs":{},",":{"docs":{"core/layout/htape.html":{"ref":"core/layout/htape.html","tf":0.024},"core/layout/vtape.html":{"ref":"core/layout/vtape.html","tf":0.024}}}}}}}},"e":{"docs":{},"f":{"docs":{},"t":{"docs":{},"_":{"docs":{},"r":{"docs":{},"i":{"docs":{},"g":{"docs":{},"h":{"docs":{},"t":{"docs":{},"_":{"docs":{},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"i":{"docs":{},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{},"_":{"docs":{},"a":{"docs":{},"d":{"docs":{},"a":{"docs":{},"p":{"docs":{},"t":{"docs":{},"'":{"docs":{},",":{"docs":{"core/layout/left_right_vertical_adapt.html":{"ref":"core/layout/left_right_vertical_adapt.html","tf":0.01098901098901099}}}}}}}}}}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{},"_":{"docs":{},"p":{"docs":{},"a":{"docs":{},"n":{"docs":{},"e":{"docs":{},"'":{"docs":{},",":{"docs":{"case/layer/pane_list.html":{"ref":"case/layer/pane_list.html","tf":0.006802721088435374}}}}}}}}}}}}},"f":{"docs":{},"l":{"docs":{},"o":{"docs":{},"a":{"docs":{},"t":{"docs":{},"_":{"docs":{},"c":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"'":{"docs":{},",":{"docs":{"core/layout/float_center.html":{"ref":"core/layout/float_center.html","tf":0.012658227848101266}}}}}}}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"e":{"docs":{},"_":{"docs":{},"t":{"docs":{},"u":{"docs":{},"n":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"_":{"docs":{},"n":{"docs":{},"u":{"docs":{},"m":{"docs":{},"b":{"docs":{},"e":{"docs":{},"r":{"docs":{},"_":{"docs":{},"e":{"docs":{},"d":{"docs":{},"i":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"'":{"docs":{},",":{"docs":{"detailed/text_input/finetuning_number_editor.html":{"ref":"detailed/text_input/finetuning_number_editor.html","tf":0.037037037037037035}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"g":{"docs":{},"r":{"docs":{},"i":{"docs":{},"d":{"docs":{},"'":{"docs":{},",":{"docs":{"core/layout/grid.html":{"ref":"core/layout/grid.html","tf":0.008928571428571428}}}}}}}},"t":{"docs":{},"o":{"docs":{},"a":{"docs":{},"s":{"docs":{},"t":{"docs":{},"'":{"docs":{},",":{"docs":{"base/toast.html":{"ref":"base/toast.html","tf":0.020833333333333332}}}}}}}},"e":{"docs":{},"x":{"docs":{},"t":{"docs":{},"_":{"docs":{},"b":{"docs":{},"u":{"docs":{},"t":{"docs":{},"t":{"docs":{},"o":{"docs":{},"n":{"docs":{},"'":{"docs":{},",":{"docs":{"base/button/text_button.html":{"ref":"base/button/text_button.html","tf":0.009433962264150943}}}}}}}}}}}}}}},"i":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"_":{"docs":{},"b":{"docs":{},"u":{"docs":{},"t":{"docs":{},"t":{"docs":{},"o":{"docs":{},"n":{"docs":{},"'":{"docs":{},",":{"docs":{"base/button/icon_button.html":{"ref":"base/button/icon_button.html","tf":0.02564102564102564}}}}}}}}}}}}}},"m":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"_":{"docs":{},"b":{"docs":{},"u":{"docs":{},"t":{"docs":{},"t":{"docs":{},"o":{"docs":{},"n":{"docs":{},"'":{"docs":{},",":{"docs":{"base/button/image_button.html":{"ref":"base/button/image_button.html","tf":0.014925373134328358}}}}}}}}}}}}}}}},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"i":{"docs":{},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{},"'":{"docs":{},",":{"docs":{"case/button/multi_select_item.html":{"ref":"case/button/multi_select_item.html","tf":0.017543859649122806},"case/button/single_select_item.html":{"ref":"case/button/single_select_item.html","tf":0.016129032258064516},"case/button/single_select_radio_item.html":{"ref":"case/button/single_select_radio_item.html","tf":0.016129032258064516},"detailed/bi.button/items.html":{"ref":"detailed/bi.button/items.html","tf":0.010638297872340425},"detailed/bi.button/node.html":{"ref":"detailed/bi.button/node.html","tf":0.009259259259259259}}}}}}}}}}}},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},"_":{"docs":{},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{},"_":{"docs":{},"p":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"r":{"docs":{},"'":{"docs":{},",":{"docs":{"case/pager/all_count_pager.html":{"ref":"case/pager/all_count_pager.html","tf":0.014705882352941176}}}}}}}}}}}}}}}}}}},"d":{"docs":{},"i":{"docs":{},"r":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"_":{"docs":{},"p":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"r":{"docs":{},"'":{"docs":{},",":{"docs":{"case/pager/direction_pager.html":{"ref":"case/pager/direction_pager.html","tf":0.00819672131147541}}}}}}}}}}}}}}}}}},"o":{"docs":{},"w":{"docs":{},"n":{"docs":{},"_":{"docs":{},"l":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{},"_":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"b":{"docs":{},"o":{"docs":{},"'":{"docs":{},",":{"docs":{"detailed/down_list_combo.html":{"ref":"detailed/down_list_combo.html","tf":0.006578947368421052}}}}}}}}}}}}}}}}}}},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{},"a":{"docs":{},"r":{"docs":{},"'":{"docs":{},",":{"docs":{"case/calendar.html":{"ref":"case/calendar.html","tf":0.013888888888888888}}}}}}}}}}},"l":{"docs":{},"i":{"docs":{},"p":{"docs":{},"b":{"docs":{},"o":{"docs":{},"a":{"docs":{},"r":{"docs":{},"d":{"docs":{},"'":{"docs":{},",":{"docs":{"case/clipboard.html":{"ref":"case/clipboard.html","tf":0.03125}}}}}}}}}}},"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.00980392156862745}}}}}}}}}}}}}}}},"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.010101010101010102}}}}}}}}}}}}}}}}},"y":{"docs":{},"e":{"docs":{},"a":{"docs":{},"r":{"docs":{},"_":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"b":{"docs":{},"o":{"docs":{},"'":{"docs":{},",":{"docs":{"detailed/year_combo.html":{"ref":"detailed/year_combo.html","tf":0.025}}}}}}}}}}}}}},"m":{"docs":{},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{},"h":{"docs":{},"_":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"b":{"docs":{},"o":{"docs":{},"'":{"docs":{},",":{"docs":{"detailed/month_combo.html":{"ref":"detailed/month_combo.html","tf":0.03571428571428571}}}}}}}}}}}}}}},"q":{"docs":{},"u":{"docs":{},"a":{"docs":{},"r":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"_":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"b":{"docs":{},"o":{"docs":{},"'":{"docs":{},",":{"docs":{"detailed/quarter_combo.html":{"ref":"detailed/quarter_combo.html","tf":0.03571428571428571}}}}}}}}}}}}}}}}}}},"u":{"docs":{},"t":{"docs":{},"t":{"docs":{},"o":{"docs":{},"n":{"1":{"docs":{},"'":{"docs":{},"}":{"docs":{},"}":{"docs":{},",":{"docs":{},"{":{"docs":{},"w":{"docs":{},"i":{"docs":{},"d":{"docs":{},"t":{"docs":{},"h":{"docs":{},":":{"docs":{"core/layout/htape.html":{"ref":"core/layout/htape.html","tf":0.008},"core/layout/table.html":{"ref":"core/layout/table.html","tf":0.012048192771084338}}}}}}}},"h":{"docs":{},"e":{"docs":{},"i":{"docs":{},"g":{"docs":{},"h":{"docs":{},"t":{"docs":{},":":{"docs":{"core/layout/vtape.html":{"ref":"core/layout/vtape.html","tf":0.008}}}}}}}}}}}}}}},"2":{"docs":{},"'":{"docs":{},"}":{"docs":{},"}":{"docs":{},",":{"docs":{},"{":{"docs":{},"w":{"docs":{},"i":{"docs":{},"d":{"docs":{},"t":{"docs":{},"h":{"docs":{},":":{"docs":{"core/layout/htape.html":{"ref":"core/layout/htape.html","tf":0.008},"core/layout/table.html":{"ref":"core/layout/table.html","tf":0.012048192771084338}}}}}}}},"h":{"docs":{},"e":{"docs":{},"i":{"docs":{},"g":{"docs":{},"h":{"docs":{},"t":{"docs":{},":":{"docs":{"core/layout/vtape.html":{"ref":"core/layout/vtape.html","tf":0.008}}}}}}}}}}}}}}},"3":{"docs":{},"'":{"docs":{},"}":{"docs":{},"}":{"docs":{"core/layout/vtape.html":{"ref":"core/layout/vtape.html","tf":0.008}},"]":{"docs":{"core/layout/htape.html":{"ref":"core/layout/htape.html","tf":0.008},"core/layout/table.html":{"ref":"core/layout/table.html","tf":0.012048192771084338}}}}}}},"docs":{}}}}}},"o":{"docs":{},"d":{"docs":{},"y":{"docs":{},"'":{"docs":{"detailed/table/bi.responsive_table.html":{"ref":"detailed/table/bi.responsive_table.html","tf":0.005263157894736842}},",":{"docs":{"core/layout/td.html":{"ref":"core/layout/td.html","tf":0.017857142857142856},"base/table/table_view.html":{"ref":"base/table/table_view.html","tf":0.006289308176100629},"base/table/grid_table.html":{"ref":"base/table/grid_table.html","tf":0.008771929824561403},"case/loader/lazy_loader.html":{"ref":"case/loader/lazy_loader.html","tf":0.01694915254237288},"case/loader/list_loader.html":{"ref":"case/loader/list_loader.html","tf":0.010752688172043012},"case/loader/sort_list.html":{"ref":"case/loader/sort_list.html","tf":0.010752688172043012},"case/tree/branch_tree.html":{"ref":"case/tree/branch_tree.html","tf":0.02},"case/tree/handstand_branch_tree.html":{"ref":"case/tree/handstand_branch_tree.html","tf":0.019230769230769232},"case/tree/display_tree.html":{"ref":"case/tree/display_tree.html","tf":0.030303030303030304},"case/tree/simple_tree.html":{"ref":"case/tree/simple_tree.html","tf":0.022222222222222223},"case/tree/level_tree.html":{"ref":"case/tree/level_tree.html","tf":0.017857142857142856},"case/tree/branch_relation.html":{"ref":"case/tree/branch_relation.html","tf":0.02040816326530612},"case/table/adaptive_table.html":{"ref":"case/table/adaptive_table.html","tf":0.006060606060606061},"case/table/tree_table.html":{"ref":"case/table/tree_table.html","tf":0.00510204081632653},"case/table/layer_tree_table.html":{"ref":"case/table/layer_tree_table.html","tf":0.00510204081632653},"case/pager/direction_pager.html":{"ref":"case/pager/direction_pager.html","tf":0.00819672131147541},"detailed/table/bi.preview_table.html":{"ref":"detailed/table/bi.preview_table.html","tf":0.006756756756756757},"detailed/combo/single_tree_combo.html":{"ref":"detailed/combo/single_tree_combo.html","tf":0.01694915254237288},"detailed/combo/multilayer_single_tree_combo.html":{"ref":"detailed/combo/multilayer_single_tree_combo.html","tf":0.018867924528301886},"detailed/combo/select_tree_combo.html":{"ref":"detailed/combo/select_tree_combo.html","tf":0.02040816326530612},"detailed/combo/multilayer_select_tree_combo.html":{"ref":"detailed/combo/multilayer_select_tree_combo.html","tf":0.02040816326530612}}}}}}}},"f":{"docs":{},"i":{"docs":{},"l":{"docs":{},"l":{"docs":{},"'":{"docs":{},",":{"docs":{"core/layout/htape.html":{"ref":"core/layout/htape.html","tf":0.008},"core/layout/vtape.html":{"ref":"core/layout/vtape.html","tf":0.008}},"e":{"docs":{},"l":{"docs":{},":":{"docs":{"core/layout/htape.html":{"ref":"core/layout/htape.html","tf":0.008},"core/layout/vtape.html":{"ref":"core/layout/vtape.html","tf":0.008},"core/layout/table.html":{"ref":"core/layout/table.html","tf":0.012048192771084338}}}}}},"]":{"docs":{"core/layout/table.html":{"ref":"core/layout/table.html","tf":0.012048192771084338}},",":{"docs":{"core/layout/td.html":{"ref":"core/layout/td.html","tf":0.017857142857142856}}}}}}}}},"l":{"docs":{},"a":{"docs":{},"b":{"docs":{},"e":{"docs":{},"l":{"1":{"docs":{},"'":{"docs":{},"}":{"docs":{},"}":{"docs":{},",":{"docs":{},"{":{"docs":{"core/layout/td.html":{"ref":"core/layout/td.html","tf":0.017857142857142856}}}}}}}},"2":{"docs":{},"'":{"docs":{},"}":{"docs":{},",":{"docs":{},"{":{"docs":{"core/layout/td.html":{"ref":"core/layout/td.html","tf":0.017857142857142856}}}}}}},"3":{"docs":{},"'":{"docs":{},"}":{"docs":{"core/layout/td.html":{"ref":"core/layout/td.html","tf":0.017857142857142856}}}}},"docs":{}}}}}},"点":{"docs":{},"击":{"docs":{},"我":{"docs":{},"弹":{"docs":{},"出":{"docs":{},"一":{"docs":{},"个":{"docs":{},"消":{"docs":{},"息":{"docs":{},"框":{"docs":{},"'":{"docs":{},",":{"docs":{"base/message.html":{"ref":"base/message.html","tf":0.02127659574468085}}}}}}}}}}}}}},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"m":{"docs":{},"o":{"docs":{},"n":{"docs":{},"'":{"docs":{},",":{"docs":{"base/button/button.html":{"ref":"base/button/button.html","tf":0.005681818181818182}}}}}}}}}},"一":{"docs":{},"般":{"docs":{},"按":{"docs":{},"钮":{"docs":{},"'":{"docs":{},",":{"docs":{"base/button/button.html":{"ref":"base/button/button.html","tf":0.005681818181818182}}}}}}}},"文":{"docs":{},"字":{"docs":{},"按":{"docs":{},"钮":{"docs":{},"'":{"docs":{},",":{"docs":{"base/button/text_button.html":{"ref":"base/button/text_button.html","tf":0.009433962264150943}}}}}}}},"s":{"docs":{},"u":{"docs":{},"m":{"docs":{},"(":{"docs":{},"c":{"5":{"docs":{},",":{"docs":{"base/editor/formula_editor.html":{"ref":"base/editor/formula_editor.html","tf":0.010101010101010102}}}},"docs":{}}}}}},"'":{"docs":{"detailed/combo/single_tree_combo.html":{"ref":"detailed/combo/single_tree_combo.html","tf":0.01694915254237288},"detailed/combo/multilayer_single_tree_combo.html":{"ref":"detailed/combo/multilayer_single_tree_combo.html","tf":0.018867924528301886},"detailed/combo/select_tree_combo.html":{"ref":"detailed/combo/select_tree_combo.html","tf":0.02040816326530612},"detailed/combo/multilayer_select_tree_combo.html":{"ref":"detailed/combo/multilayer_select_tree_combo.html","tf":0.02040816326530612}},",":{"docs":{"case/tree/display_tree.html":{"ref":"case/tree/display_tree.html","tf":0.030303030303030304}}}},"简":{"docs":{},"单":{"docs":{},"t":{"docs":{},"o":{"docs":{},"a":{"docs":{},"s":{"docs":{},"t":{"docs":{},"测":{"docs":{},"试":{"docs":{},"'":{"docs":{},",":{"docs":{"detailed/bi.button/tooltip.html":{"ref":"detailed/bi.button/tooltip.html","tf":0.011363636363636364}}}}}}}}}}}}},"#":{"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.010101010101010102},"detailed/text_input/bi.clear_editor.html":{"ref":"detailed/text_input/bi.clear_editor.html","tf":0.00980392156862745},"detailed/text_input/finetuning_number_editor.html":{"ref":"detailed/text_input/finetuning_number_editor.html","tf":0.037037037037037035},"detailed/year_combo.html":{"ref":"detailed/year_combo.html","tf":0.025},"detailed/month_combo.html":{"ref":"detailed/month_combo.html","tf":0.03571428571428571},"detailed/quarter_combo.html":{"ref":"detailed/quarter_combo.html","tf":0.03571428571428571},"detailed/down_list_combo.html":{"ref":"detailed/down_list_combo.html","tf":0.006578947368421052},"detailed/numeric_interval.html":{"ref":"detailed/numeric_interval.html","tf":0.017241379310344827},"detailed/multi_select_combo.html":{"ref":"detailed/multi_select_combo.html","tf":0.04}}}}}}}}}}}}},"[":{"0":{"docs":{},",":{"docs":{"base/table/table_view.html":{"ref":"base/table/table_view.html","tf":0.012578616352201259},"base/table/grid_table.html":{"ref":"base/table/grid_table.html","tf":0.008771929824561403},"case/table/adaptive_table.html":{"ref":"case/table/adaptive_table.html","tf":0.006060606060606061},"detailed/table/bi.responsive_table.html":{"ref":"detailed/table/bi.responsive_table.html","tf":0.005263157894736842}}}},"1":{"0":{"0":{"docs":{},",":{"docs":{"core/layout/table.html":{"ref":"core/layout/table.html","tf":0.012048192771084338},"base/table/table_view.html":{"ref":"base/table/table_view.html","tf":0.006289308176100629},"case/table/tree_table.html":{"ref":"case/table/tree_table.html","tf":0.01020408163265306},"case/table/layer_tree_table.html":{"ref":"case/table/layer_tree_table.html","tf":0.01020408163265306},"detailed/table/bi.preview_table.html":{"ref":"detailed/table/bi.preview_table.html","tf":0.006756756756756757}}}},"docs":{},",":{"docs":{"core/layout/table.html":{"ref":"core/layout/table.html","tf":0.012048192771084338}}}},"docs":{}},"2":{"0":{"0":{"docs":{},",":{"2":{"0":{"0":{"docs":{},"]":{"docs":{},",":{"docs":{"base/table/collection_table.html":{"ref":"base/table/collection_table.html","tf":0.006535947712418301},"base/table/resizable_table.html":{"ref":"base/table/resizable_table.html","tf":0.00625},"detailed/table/bi.excel_table.html":{"ref":"detailed/table/bi.excel_table.html","tf":0.0055248618784530384},"detailed/table/bi.page_table.html":{"ref":"detailed/table/bi.page_table.html","tf":0.004651162790697674}}}}},"docs":{}},"docs":{}},"docs":{"core/layout/table.html":{"ref":"core/layout/table.html","tf":0.012048192771084338},"core/layout/td.html":{"ref":"core/layout/td.html","tf":0.017857142857142856}}}},"docs":{},",":{"docs":{"core/layout/td.html":{"ref":"core/layout/td.html","tf":0.017857142857142856}}}},"docs":{}},"5":{"0":{"docs":{},",":{"5":{"0":{"docs":{},",":{"2":{"0":{"0":{"docs":{},",":{"2":{"5":{"0":{"docs":{},",":{"4":{"0":{"0":{"docs":{},"]":{"docs":{},",":{"docs":{"base/table/grid_table.html":{"ref":"base/table/grid_table.html","tf":0.008771929824561403},"case/table/adaptive_table.html":{"ref":"case/table/adaptive_table.html","tf":0.006060606060606061}}}}},"docs":{}},"docs":{}},"docs":{}}},"docs":{}},"docs":{}},"docs":{}}},"docs":{}},"docs":{}},"docs":{}}},"docs":{}},"docs":{}}},"docs":{}},"8":{"2":{"docs":{},",":{"docs":{"detailed/table/bi.excel_table.html":{"ref":"detailed/table/bi.excel_table.html","tf":0.0055248618784530384}}}},"docs":{}},"docs":{"core/layout/horizontal.html":{"ref":"core/layout/horizontal.html","tf":0.010752688172043012},"core/layout/htape.html":{"ref":"core/layout/htape.html","tf":0.008},"core/layout/vtape.html":{"ref":"core/layout/vtape.html","tf":0.008},"core/layout/center_adapt.html":{"ref":"core/layout/center_adapt.html","tf":0.011764705882352941},"core/layout/vertical_adapt.html":{"ref":"core/layout/vertical_adapt.html","tf":0.011494252873563218},"core/layout/left_right_vertical_adapt.html":{"ref":"core/layout/left_right_vertical_adapt.html","tf":0.01098901098901099},"core/layout/horizontal_adapt.html":{"ref":"core/layout/horizontal_adapt.html","tf":0.010869565217391304},"core/layout/horizontal_float.html":{"ref":"core/layout/horizontal_float.html","tf":0.013888888888888888},"core/layout/border.html":{"ref":"core/layout/border.html","tf":0.012987012987012988},"core/abstract/button_group.html":{"ref":"core/abstract/button_group.html","tf":0.007936507936507936},"core/abstract/virtual_group.html":{"ref":"core/abstract/virtual_group.html","tf":0.014492753623188406},"core/abstract/custom_tree.html":{"ref":"core/abstract/custom_tree.html","tf":0.007194244604316547},"core/abstract/grid_view.html":{"ref":"core/abstract/grid_view.html","tf":0.00641025641025641},"core/abstract/collection_view.html":{"ref":"core/abstract/collection_view.html","tf":0.0070921985815602835},"core/abstract/virtual_list.html":{"ref":"core/abstract/virtual_list.html","tf":0.0125},"core/combination/group_combo.html":{"ref":"core/combination/group_combo.html","tf":0.007874015748031496},"base/button/button.html":{"ref":"base/button/button.html","tf":0.005681818181818182},"base/table/collection_table.html":{"ref":"base/table/collection_table.html","tf":0.006535947712418301},"base/table/resizable_table.html":{"ref":"base/table/resizable_table.html","tf":0.00625},"case/layer/pane_list.html":{"ref":"case/layer/pane_list.html","tf":0.006802721088435374},"case/layer/panel.html":{"ref":"case/layer/panel.html","tf":0.015873015873015872},"case/combo/static_combo.html":{"ref":"case/combo/static_combo.html","tf":0.0125},"case/combo/text_value_downlist_combo.html":{"ref":"case/combo/text_value_downlist_combo.html","tf":0.013513513513513514},"case/segment.html":{"ref":"case/segment.html","tf":0.009345794392523364},"detailed/bi.button/tooltip.html":{"ref":"detailed/bi.button/tooltip.html","tf":0.011363636363636364},"detailed/bi.button/items.html":{"ref":"detailed/bi.button/items.html","tf":0.010638297872340425},"detailed/bi.button/node.html":{"ref":"detailed/bi.button/node.html","tf":0.009259259259259259},"detailed/bi.button/segment.html":{"ref":"detailed/bi.button/segment.html","tf":0.009345794392523364},"detailed/table/bi.excel_table.html":{"ref":"detailed/table/bi.excel_table.html","tf":0.0055248618784530384},"detailed/down_list_combo.html":{"ref":"detailed/down_list_combo.html","tf":0.006578947368421052},"detailed/path/path_chooser.html":{"ref":"detailed/path/path_chooser.html","tf":0.019230769230769232},"detailed/path/direction_path_chooser.html":{"ref":"detailed/path/direction_path_chooser.html","tf":0.02}},"{":{"docs":{"core/layout/vertical.html":{"ref":"core/layout/vertical.html","tf":0.01282051282051282},"core/layout/horizontal.html":{"ref":"core/layout/horizontal.html","tf":0.010752688172043012},"core/layout/center_adapt.html":{"ref":"core/layout/center_adapt.html","tf":0.011764705882352941},"core/layout/vertical_adapt.html":{"ref":"core/layout/vertical_adapt.html","tf":0.011494252873563218},"core/layout/left_right_vertical_adapt.html":{"ref":"core/layout/left_right_vertical_adapt.html","tf":0.02197802197802198},"core/layout/flow.html":{"ref":"core/layout/flow.html","tf":0.023076923076923078},"core/layout/center.html":{"ref":"core/layout/center.html","tf":0.012658227848101266},"core/layout/horizontal_adapt.html":{"ref":"core/layout/horizontal_adapt.html","tf":0.010869565217391304},"core/layout/horizontal_auto.html":{"ref":"core/layout/horizontal_auto.html","tf":0.012345679012345678},"core/layout/horizontal_float.html":{"ref":"core/layout/horizontal_float.html","tf":0.013888888888888888},"core/layout/float_center.html":{"ref":"core/layout/float_center.html","tf":0.012658227848101266},"core/layout/grid.html":{"ref":"core/layout/grid.html","tf":0.008928571428571428},"core/abstract/button_group.html":{"ref":"core/abstract/button_group.html","tf":0.015873015873015872},"core/abstract/button_tree.html":{"ref":"core/abstract/button_tree.html","tf":0.029850746268656716},"core/abstract/virtual_group.html":{"ref":"core/abstract/virtual_group.html","tf":0.014492753623188406},"core/abstract/custom_tree.html":{"ref":"core/abstract/custom_tree.html","tf":0.014388489208633094},"core/combination/bi.expander.html":{"ref":"core/combination/bi.expander.html","tf":0.005494505494505495},"core/combination/group_combo.html":{"ref":"core/combination/group_combo.html","tf":0.007874015748031496},"core/combination/navigation.html":{"ref":"core/combination/navigation.html","tf":0.007194244604316547},"core/combination/searcher.html":{"ref":"core/combination/searcher.html","tf":0.009216589861751152},"core/combination/tab.html":{"ref":"core/combination/tab.html","tf":0.00684931506849315},"core/layer/layer_popup.html":{"ref":"core/layer/layer_popup.html","tf":0.011764705882352941},"core/layer/layer_searcher.html":{"ref":"core/layer/layer_searcher.html","tf":0.027777777777777776},"base/table/collection_table.html":{"ref":"base/table/collection_table.html","tf":0.013071895424836602},"base/table/resizable_table.html":{"ref":"base/table/resizable_table.html","tf":0.0125},"case/button/multi_select_item.html":{"ref":"case/button/multi_select_item.html","tf":0.017543859649122806},"case/button/single_select_item.html":{"ref":"case/button/single_select_item.html","tf":0.016129032258064516},"case/button/single_select_radio_item.html":{"ref":"case/button/single_select_radio_item.html","tf":0.016129032258064516},"case/layer/panel.html":{"ref":"case/layer/panel.html","tf":0.015873015873015872},"case/list/list.select.html":{"ref":"case/list/list.select.html","tf":0.009433962264150943},"case/combo/bubble_combo.html":{"ref":"case/combo/bubble_combo.html","tf":0.005780346820809248},"case/combo/icon_combo.html":{"ref":"case/combo/icon_combo.html","tf":0.007751937984496124},"case/combo/static_combo.html":{"ref":"case/combo/static_combo.html","tf":0.0125},"case/combo/text_value_combo.html":{"ref":"case/combo/text_value_combo.html","tf":0.013513513513513514},"case/combo/text_value_downlist_combo.html":{"ref":"case/combo/text_value_downlist_combo.html","tf":0.04054054054054054},"case/tree/branch_tree.html":{"ref":"case/tree/branch_tree.html","tf":0.04},"case/tree/handstand_branch_tree.html":{"ref":"case/tree/handstand_branch_tree.html","tf":0.038461538461538464},"case/segment.html":{"ref":"case/segment.html","tf":0.018691588785046728},"detailed/bi.button/tooltip.html":{"ref":"detailed/bi.button/tooltip.html","tf":0.011363636363636364},"detailed/bi.button/items.html":{"ref":"detailed/bi.button/items.html","tf":0.010638297872340425},"detailed/bi.button/node.html":{"ref":"detailed/bi.button/node.html","tf":0.009259259259259259},"detailed/bi.button/segment.html":{"ref":"detailed/bi.button/segment.html","tf":0.018691588785046728},"detailed/tree/bi.multi_tree_combo.html":{"ref":"detailed/tree/bi.multi_tree_combo.html","tf":0.010869565217391304},"detailed/tree/bi.switch_tree.html":{"ref":"detailed/tree/bi.switch_tree.html","tf":0.013157894736842105},"detailed/table/bi.excel_table.html":{"ref":"detailed/table/bi.excel_table.html","tf":0.011049723756906077},"detailed/down_list_combo.html":{"ref":"detailed/down_list_combo.html","tf":0.02631578947368421},"detailed/relation_view.html":{"ref":"detailed/relation_view.html","tf":0.019230769230769232},"detailed/file_manager.html":{"ref":"detailed/file_manager.html","tf":0.023255813953488372}},"w":{"docs":{},"i":{"docs":{},"d":{"docs":{},"t":{"docs":{},"h":{"docs":{},":":{"docs":{"core/layout/htape.html":{"ref":"core/layout/htape.html","tf":0.008},"core/layout/table.html":{"ref":"core/layout/table.html","tf":0.012048192771084338}}}}}}}},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{},"e":{"docs":{},":":{"docs":{"core/abstract/button_group.html":{"ref":"core/abstract/button_group.html","tf":0.007936507936507936},"core/abstract/virtual_group.html":{"ref":"core/abstract/virtual_group.html","tf":0.014492753623188406},"core/abstract/custom_tree.html":{"ref":"core/abstract/custom_tree.html","tf":0.007194244604316547},"core/combination/group_combo.html":{"ref":"core/combination/group_combo.html","tf":0.007874015748031496},"core/layer/layer_popup.html":{"ref":"core/layer/layer_popup.html","tf":0.0058823529411764705}}}}}}}},"]":{"docs":{"core/layout/grid.html":{"ref":"core/layout/grid.html","tf":0.008928571428571428},"core/layout/td.html":{"ref":"core/layout/td.html","tf":0.017857142857142856},"core/combination/loader.html":{"ref":"core/combination/loader.html","tf":0.006289308176100629},"core/layer/layer_popup.html":{"ref":"core/layer/layer_popup.html","tf":0.011764705882352941},"base/table/table_view.html":{"ref":"base/table/table_view.html","tf":0.031446540880503145},"base/table/grid_table.html":{"ref":"base/table/grid_table.html","tf":0.043859649122807015},"base/table/collection_table.html":{"ref":"base/table/collection_table.html","tf":0.032679738562091505},"base/table/resizable_table.html":{"ref":"base/table/resizable_table.html","tf":0.05},"case/layer/pane_list.html":{"ref":"case/layer/pane_list.html","tf":0.006802721088435374},"case/list/list.select.html":{"ref":"case/list/list.select.html","tf":0.009433962264150943},"case/loader/list_loader.html":{"ref":"case/loader/list_loader.html","tf":0.010752688172043012},"case/loader/sort_list.html":{"ref":"case/loader/sort_list.html","tf":0.010752688172043012},"case/tree/branch_tree.html":{"ref":"case/tree/branch_tree.html","tf":0.02},"case/tree/handstand_branch_tree.html":{"ref":"case/tree/handstand_branch_tree.html","tf":0.019230769230769232},"case/tree/level_tree.html":{"ref":"case/tree/level_tree.html","tf":0.017857142857142856},"case/table/adaptive_table.html":{"ref":"case/table/adaptive_table.html","tf":0.06060606060606061},"case/table/tree_table.html":{"ref":"case/table/tree_table.html","tf":0.05102040816326531},"case/table/layer_tree_table.html":{"ref":"case/table/layer_tree_table.html","tf":0.05102040816326531},"detailed/tree/bi.switch_tree.html":{"ref":"detailed/tree/bi.switch_tree.html","tf":0.013157894736842105},"detailed/table/bi.preview_table.html":{"ref":"detailed/table/bi.preview_table.html","tf":0.02702702702702703},"detailed/table/bi.responsive_table.html":{"ref":"detailed/table/bi.responsive_table.html","tf":0.03684210526315789},"detailed/table/bi.excel_table.html":{"ref":"detailed/table/bi.excel_table.html","tf":0.016574585635359115},"detailed/table/bi.page_table.html":{"ref":"detailed/table/bi.page_table.html","tf":0.046511627906976744}},",":{"docs":{"core/layout/table.html":{"ref":"core/layout/table.html","tf":0.012048192771084338},"core/abstract/grid_view.html":{"ref":"core/abstract/grid_view.html","tf":0.00641025641025641},"core/abstract/collection_view.html":{"ref":"core/abstract/collection_view.html","tf":0.0070921985815602835},"core/layer/layer_popup.html":{"ref":"core/layer/layer_popup.html","tf":0.0058823529411764705},"core/layer/layer_searcher.html":{"ref":"core/layer/layer_searcher.html","tf":0.018518518518518517},"base/table/table_view.html":{"ref":"base/table/table_view.html","tf":0.006289308176100629},"case/tree/level_tree.html":{"ref":"case/tree/level_tree.html","tf":0.017857142857142856},"case/tree/branch_relation.html":{"ref":"case/tree/branch_relation.html","tf":0.02040816326530612},"case/table/adaptive_table.html":{"ref":"case/table/adaptive_table.html","tf":0.012121212121212121},"detailed/table/bi.page_table.html":{"ref":"detailed/table/bi.page_table.html","tf":0.004651162790697674},"detailed/multi_select_combo.html":{"ref":"detailed/multi_select_combo.html","tf":0.04},"detailed/combo/single_tree_combo.html":{"ref":"detailed/combo/single_tree_combo.html","tf":0.01694915254237288},"detailed/combo/multilayer_single_tree_combo.html":{"ref":"detailed/combo/multilayer_single_tree_combo.html","tf":0.018867924528301886},"detailed/combo/select_tree_combo.html":{"ref":"detailed/combo/select_tree_combo.html","tf":0.02040816326530612},"detailed/combo/multilayer_select_tree_combo.html":{"ref":"detailed/combo/multilayer_select_tree_combo.html","tf":0.02040816326530612}}}},"[":{"docs":{},"{":{"docs":{"detailed/table/bi.preview_table.html":{"ref":"detailed/table/bi.preview_table.html","tf":0.013513513513513514},"detailed/table/bi.responsive_table.html":{"ref":"detailed/table/bi.responsive_table.html","tf":0.010526315789473684},"detailed/path/path_chooser.html":{"ref":"detailed/path/path_chooser.html","tf":0.019230769230769232},"detailed/path/direction_path_chooser.html":{"ref":"detailed/path/direction_path_chooser.html","tf":0.02}},"e":{"docs":{},"l":{"docs":{},":":{"docs":{"core/layout/td.html":{"ref":"core/layout/td.html","tf":0.017857142857142856}}}}}}},"\"":{"docs":{},"\"":{"docs":{},",":{"docs":{"detailed/table/bi.responsive_table.html":{"ref":"detailed/table/bi.responsive_table.html","tf":0.005263157894736842}}}}}},"a":{"docs":{},"p":{"docs":{},"i":{"docs":{"core/layout/vertical.html":{"ref":"core/layout/vertical.html","tf":0.01282051282051282},"core/layout/horizontal.html":{"ref":"core/layout/horizontal.html","tf":0.010752688172043012},"core/layout/htape.html":{"ref":"core/layout/htape.html","tf":0.008},"core/layout/vtape.html":{"ref":"core/layout/vtape.html","tf":0.008},"core/layout/center_adapt.html":{"ref":"core/layout/center_adapt.html","tf":0.011764705882352941},"core/layout/vertical_adapt.html":{"ref":"core/layout/vertical_adapt.html","tf":0.011494252873563218},"core/layout/left_right_vertical_adapt.html":{"ref":"core/layout/left_right_vertical_adapt.html","tf":0.01098901098901099},"core/layout/flow.html":{"ref":"core/layout/flow.html","tf":0.007692307692307693},"core/layout/center.html":{"ref":"core/layout/center.html","tf":0.012658227848101266},"core/layout/horizontal_adapt.html":{"ref":"core/layout/horizontal_adapt.html","tf":0.010869565217391304},"core/layout/horizontal_auto.html":{"ref":"core/layout/horizontal_auto.html","tf":0.012345679012345678},"core/layout/horizontal_float.html":{"ref":"core/layout/horizontal_float.html","tf":0.013888888888888888},"core/layout/float_center.html":{"ref":"core/layout/float_center.html","tf":0.012658227848101266},"core/layout/border.html":{"ref":"core/layout/border.html","tf":0.012987012987012988},"core/layout/grid.html":{"ref":"core/layout/grid.html","tf":0.008928571428571428},"core/abstract/button_group.html":{"ref":"core/abstract/button_group.html","tf":0.007936507936507936},"core/abstract/virtual_group.html":{"ref":"core/abstract/virtual_group.html","tf":0.014492753623188406},"core/abstract/custom_tree.html":{"ref":"core/abstract/custom_tree.html","tf":0.007194244604316547},"core/abstract/grid_view.html":{"ref":"core/abstract/grid_view.html","tf":0.00641025641025641},"core/abstract/collection_view.html":{"ref":"core/abstract/collection_view.html","tf":0.0070921985815602835},"core/abstract/virtual_list.html":{"ref":"core/abstract/virtual_list.html","tf":0.0125},"core/combination/bi.combo.html":{"ref":"core/combination/bi.combo.html","tf":0.004807692307692308},"core/combination/bi.expander.html":{"ref":"core/combination/bi.expander.html","tf":0.005494505494505495},"core/combination/group_combo.html":{"ref":"core/combination/group_combo.html","tf":0.007874015748031496},"core/combination/loader.html":{"ref":"core/combination/loader.html","tf":0.006289308176100629},"core/combination/navigation.html":{"ref":"core/combination/navigation.html","tf":0.007194244604316547},"core/combination/searcher.html":{"ref":"core/combination/searcher.html","tf":0.004608294930875576},"core/combination/switcher.html":{"ref":"core/combination/switcher.html","tf":0.00625},"core/combination/tab.html":{"ref":"core/combination/tab.html","tf":0.00684931506849315},"core/layer/layer_float_box.html":{"ref":"core/layer/layer_float_box.html","tf":0.012345679012345678},"core/layer/layer_popup.html":{"ref":"core/layer/layer_popup.html","tf":0.0058823529411764705},"core/layer/layer_searcher.html":{"ref":"core/layer/layer_searcher.html","tf":0.009259259259259259},"core/widget.html":{"ref":"core/widget.html","tf":0.00510204081632653},"core/single.html":{"ref":"core/single.html","tf":0.013888888888888888},"core/basic_button.html":{"ref":"core/basic_button.html","tf":0.007936507936507936},"core/node_button.html":{"ref":"core/node_button.html","tf":0.02631578947368421},"core/pane.html":{"ref":"core/pane.html","tf":0.0196078431372549},"base/label.html":{"ref":"base/label.html","tf":0.006711409395973154},"base/bubble.html":{"ref":"base/bubble.html","tf":0.023255813953488372},"base/toast.html":{"ref":"base/toast.html","tf":0.020833333333333332},"base/button/button.html":{"ref":"base/button/button.html","tf":0.005681818181818182},"base/button/text_button.html":{"ref":"base/button/text_button.html","tf":0.009433962264150943},"base/button/icon_button.html":{"ref":"base/button/icon_button.html","tf":0.02564102564102564},"base/button/image_button.html":{"ref":"base/button/image_button.html","tf":0.014925373134328358},"base/editor/editor.html":{"ref":"base/editor/editor.html","tf":0.005405405405405406},"base/editor/code_editor.html":{"ref":"base/editor/code_editor.html","tf":0.012658227848101266},"base/editor/multifile_editor.html":{"ref":"base/editor/multifile_editor.html","tf":0.015384615384615385},"base/editor/textarea_editor.html":{"ref":"base/editor/textarea_editor.html","tf":0.021739130434782608},"base/editor/formula_editor.html":{"ref":"base/editor/formula_editor.html","tf":0.010101010101010102},"base/pager.html":{"ref":"base/pager.html","tf":0.006666666666666667},"case/button/multi_select_item.html":{"ref":"case/button/multi_select_item.html","tf":0.017543859649122806},"case/button/single_select_item.html":{"ref":"case/button/single_select_item.html","tf":0.016129032258064516},"case/button/single_select_radio_item.html":{"ref":"case/button/single_select_radio_item.html","tf":0.016129032258064516},"case/editor/shelter_editor.html":{"ref":"case/editor/shelter_editor.html","tf":0.0051813471502590676},"case/editor/sign_editor.html":{"ref":"case/editor/sign_editor.html","tf":0.005494505494505495},"case/editor/sign_initial_editor.html":{"ref":"case/editor/sign_initial_editor.html","tf":0.005154639175257732},"case/editor/state_editor.html":{"ref":"case/editor/state_editor.html","tf":0.005747126436781609},"case/layer/multi_popup_layer.html":{"ref":"case/layer/multi_popup_layer.html","tf":0.04},"case/layer/layer_panel.html":{"ref":"case/layer/layer_panel.html","tf":0.010752688172043012},"case/layer/pane_list.html":{"ref":"case/layer/pane_list.html","tf":0.006802721088435374},"case/layer/panel.html":{"ref":"case/layer/panel.html","tf":0.015873015873015872},"case/combo/bubble_combo.html":{"ref":"case/combo/bubble_combo.html","tf":0.005780346820809248},"case/combo/icon_combo.html":{"ref":"case/combo/icon_combo.html","tf":0.007751937984496124},"case/combo/static_combo.html":{"ref":"case/combo/static_combo.html","tf":0.0125},"case/combo/text_value_combo.html":{"ref":"case/combo/text_value_combo.html","tf":0.013513513513513514},"case/combo/text_value_downlist_combo.html":{"ref":"case/combo/text_value_downlist_combo.html","tf":0.013513513513513514},"case/segment.html":{"ref":"case/segment.html","tf":0.009345794392523364},"detailed/bi.button/tooltip.html":{"ref":"detailed/bi.button/tooltip.html","tf":0.011363636363636364},"detailed/bi.button/items.html":{"ref":"detailed/bi.button/items.html","tf":0.010638297872340425},"detailed/bi.button/node.html":{"ref":"detailed/bi.button/node.html","tf":0.009259259259259259},"detailed/bi.button/segment.html":{"ref":"detailed/bi.button/segment.html","tf":0.009345794392523364},"detailed/text_input/bi.text_editor.html":{"ref":"detailed/text_input/bi.text_editor.html","tf":0.010309278350515464},"detailed/text_input/bi.search_editor.html":{"ref":"detailed/text_input/bi.search_editor.html","tf":0.010101010101010102},"detailed/text_input/bi.clear_editor.html":{"ref":"detailed/text_input/bi.clear_editor.html","tf":0.00980392156862745}}}},"r":{"docs":{},"r":{"docs":{},"a":{"docs":{},"y":{"docs":{"core/layout/horizontal.html":{"ref":"core/layout/horizontal.html","tf":0.010752688172043012},"core/layout/htape.html":{"ref":"core/layout/htape.html","tf":0.008},"core/layout/vtape.html":{"ref":"core/layout/vtape.html","tf":0.008},"core/layout/center_adapt.html":{"ref":"core/layout/center_adapt.html","tf":0.011764705882352941},"core/layout/vertical_adapt.html":{"ref":"core/layout/vertical_adapt.html","tf":0.011494252873563218},"core/layout/left_right_vertical_adapt.html":{"ref":"core/layout/left_right_vertical_adapt.html","tf":0.01098901098901099},"core/layout/flow.html":{"ref":"core/layout/flow.html","tf":0.007692307692307693},"core/layout/horizontal_adapt.html":{"ref":"core/layout/horizontal_adapt.html","tf":0.010869565217391304},"core/layout/horizontal_float.html":{"ref":"core/layout/horizontal_float.html","tf":0.013888888888888888},"core/layout/grid.html":{"ref":"core/layout/grid.html","tf":0.008928571428571428},"core/layout/table.html":{"ref":"core/layout/table.html","tf":0.012048192771084338},"core/layout/td.html":{"ref":"core/layout/td.html","tf":0.03571428571428571},"core/abstract/button_group.html":{"ref":"core/abstract/button_group.html","tf":0.015873015873015872},"core/abstract/virtual_group.html":{"ref":"core/abstract/virtual_group.html","tf":0.028985507246376812},"core/abstract/custom_tree.html":{"ref":"core/abstract/custom_tree.html","tf":0.007194244604316547},"core/abstract/grid_view.html":{"ref":"core/abstract/grid_view.html","tf":0.00641025641025641},"core/abstract/collection_view.html":{"ref":"core/abstract/collection_view.html","tf":0.0070921985815602835},"core/abstract/virtual_list.html":{"ref":"core/abstract/virtual_list.html","tf":0.0125},"core/combination/group_combo.html":{"ref":"core/combination/group_combo.html","tf":0.007874015748031496},"core/combination/loader.html":{"ref":"core/combination/loader.html","tf":0.006289308176100629},"core/layer/layer_popup.html":{"ref":"core/layer/layer_popup.html","tf":0.011764705882352941},"base/button/button.html":{"ref":"base/button/button.html","tf":0.005681818181818182},"base/table/table_view.html":{"ref":"base/table/table_view.html","tf":0.03773584905660377},"base/table/grid_table.html":{"ref":"base/table/grid_table.html","tf":0.043859649122807015},"base/table/collection_table.html":{"ref":"base/table/collection_table.html","tf":0.032679738562091505},"base/table/resizable_table.html":{"ref":"base/table/resizable_table.html","tf":0.05},"base/pager.html":{"ref":"base/pager.html","tf":0.006666666666666667},"case/layer/multi_popup_layer.html":{"ref":"case/layer/multi_popup_layer.html","tf":0.04},"case/layer/pane_list.html":{"ref":"case/layer/pane_list.html","tf":0.006802721088435374},"case/layer/panel.html":{"ref":"case/layer/panel.html","tf":0.015873015873015872},"case/list/list.select.html":{"ref":"case/list/list.select.html","tf":0.009433962264150943},"case/loader/list_loader.html":{"ref":"case/loader/list_loader.html","tf":0.010752688172043012},"case/loader/sort_list.html":{"ref":"case/loader/sort_list.html","tf":0.010752688172043012},"case/combo/static_combo.html":{"ref":"case/combo/static_combo.html","tf":0.0125},"case/tree/branch_tree.html":{"ref":"case/tree/branch_tree.html","tf":0.02},"case/tree/handstand_branch_tree.html":{"ref":"case/tree/handstand_branch_tree.html","tf":0.019230769230769232},"case/tree/simple_tree.html":{"ref":"case/tree/simple_tree.html","tf":0.022222222222222223},"case/tree/level_tree.html":{"ref":"case/tree/level_tree.html","tf":0.017857142857142856},"case/tree/branch_relation.html":{"ref":"case/tree/branch_relation.html","tf":0.02040816326530612},"case/table/adaptive_table.html":{"ref":"case/table/adaptive_table.html","tf":0.06666666666666667},"case/table/tree_table.html":{"ref":"case/table/tree_table.html","tf":0.05612244897959184},"case/table/layer_tree_table.html":{"ref":"case/table/layer_tree_table.html","tf":0.05612244897959184},"case/segment.html":{"ref":"case/segment.html","tf":0.009345794392523364},"detailed/bi.button/tooltip.html":{"ref":"detailed/bi.button/tooltip.html","tf":0.011363636363636364},"detailed/bi.button/items.html":{"ref":"detailed/bi.button/items.html","tf":0.010638297872340425},"detailed/bi.button/node.html":{"ref":"detailed/bi.button/node.html","tf":0.009259259259259259},"detailed/bi.button/segment.html":{"ref":"detailed/bi.button/segment.html","tf":0.009345794392523364},"detailed/tree/bi.multi_tree_combo.html":{"ref":"detailed/tree/bi.multi_tree_combo.html","tf":0.010869565217391304},"detailed/tree/bi.switch_tree.html":{"ref":"detailed/tree/bi.switch_tree.html","tf":0.013157894736842105},"detailed/table/bi.preview_table.html":{"ref":"detailed/table/bi.preview_table.html","tf":0.02702702702702703},"detailed/table/bi.responsive_table.html":{"ref":"detailed/table/bi.responsive_table.html","tf":0.03684210526315789},"detailed/table/bi.excel_table.html":{"ref":"detailed/table/bi.excel_table.html","tf":0.022099447513812154},"detailed/table/bi.page_table.html":{"ref":"detailed/table/bi.page_table.html","tf":0.046511627906976744},"detailed/combo/single_tree_combo.html":{"ref":"detailed/combo/single_tree_combo.html","tf":0.01694915254237288},"detailed/combo/multilayer_single_tree_combo.html":{"ref":"detailed/combo/multilayer_single_tree_combo.html","tf":0.018867924528301886},"detailed/combo/select_tree_combo.html":{"ref":"detailed/combo/select_tree_combo.html","tf":0.02040816326530612},"detailed/combo/multilayer_select_tree_combo.html":{"ref":"detailed/combo/multilayer_select_tree_combo.html","tf":0.02040816326530612},"detailed/path/path_chooser.html":{"ref":"detailed/path/path_chooser.html","tf":0.019230769230769232},"detailed/path/direction_path_chooser.html":{"ref":"detailed/path/direction_path_chooser.html","tf":0.02}},"/":{"docs":{},"n":{"docs":{},"u":{"docs":{},"m":{"docs":{},"b":{"docs":{"core/layout/table.html":{"ref":"core/layout/table.html","tf":0.024096385542168676},"detailed/table/bi.preview_table.html":{"ref":"detailed/table/bi.preview_table.html","tf":0.006756756756756757}}}}}}}}}}},"d":{"docs":{},"a":{"docs":{},"p":{"docs":{},"t":{"docs":{"core/layout/center_adapt.html":{"ref":"core/layout/center_adapt.html","tf":0.023529411764705882},"core/combination/searcher.html":{"ref":"core/combination/searcher.html","tf":0.009216589861751152},"core/combination/switcher.html":{"ref":"core/combination/switcher.html","tf":0.0125}},"上":{"docs":{},"下":{"docs":{},"自":{"docs":{},"适":{"docs":{},"应":{"docs":{},"\"":{"docs":{},",":{"docs":{"core/layout/vertical_adapt.html":{"ref":"core/layout/vertical_adapt.html","tf":0.022988505747126436}}}}}}}}},"左":{"docs":{},"右":{"docs":{},"自":{"docs":{},"适":{"docs":{},"应":{"docs":{},"\"":{"docs":{},",":{"docs":{"core/layout/horizontal_adapt.html":{"ref":"core/layout/horizontal_adapt.html","tf":0.021739130434782608}}}}}}}}},"e":{"docs":{},"r":{"docs":{},":":{"docs":{"core/combination/searcher.html":{"ref":"core/combination/searcher.html","tf":0.004608294930875576},"core/combination/switcher.html":{"ref":"core/combination/switcher.html","tf":0.00625}}}}},"i":{"docs":{},"v":{"docs":{},"e":{"docs":{},"_":{"docs":{},"t":{"docs":{"case/table/adaptive_table.html":{"ref":"case/table/adaptive_table.html","tf":10}}}}}}}}}},"d":{"docs":{"base/svg.html":{"ref":"base/svg.html","tf":0.011235955056179775}},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{"core/layout/table.html":{"ref":"core/layout/table.html","tf":0.012048192771084338},"core/layout/td.html":{"ref":"core/layout/td.html","tf":0.017857142857142856},"core/abstract/button_group.html":{"ref":"core/abstract/button_group.html","tf":0.007936507936507936},"core/abstract/virtual_group.html":{"ref":"core/abstract/virtual_group.html","tf":0.014492753623188406},"core/abstract/custom_tree.html":{"ref":"core/abstract/custom_tree.html","tf":0.007194244604316547},"core/combination/loader.html":{"ref":"core/combination/loader.html","tf":0.006289308176100629},"case/layer/layer_panel.html":{"ref":"case/layer/layer_panel.html","tf":0.010752688172043012},"case/layer/pane_list.html":{"ref":"case/layer/pane_list.html","tf":0.006802721088435374},"case/list/list.select.html":{"ref":"case/list/list.select.html","tf":0.009433962264150943},"case/loader/lazy_loader.html":{"ref":"case/loader/lazy_loader.html","tf":0.01694915254237288},"case/loader/list_loader.html":{"ref":"case/loader/list_loader.html","tf":0.010752688172043012},"case/loader/sort_list.html":{"ref":"case/loader/sort_list.html","tf":0.010752688172043012}},"(":{"docs":{},"a":{"docs":{},"r":{"docs":{},"r":{"docs":{},")":{"docs":{"core/layout/table.html":{"ref":"core/layout/table.html","tf":0.012048192771084338},"core/layout/td.html":{"ref":"core/layout/td.html","tf":0.017857142857142856}}}}}}}}}}},"w":{"docs":{},"i":{"docs":{},"d":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{"core/widget.html":{"ref":"core/widget.html","tf":0.00510204081632653}}}}}}}}},"j":{"docs":{},"u":{"docs":{},"s":{"docs":{},"t":{"docs":{},"h":{"docs":{},"e":{"docs":{},"i":{"docs":{},"g":{"docs":{},"h":{"docs":{},"t":{"docs":{"core/combination/bi.combo.html":{"ref":"core/combination/bi.combo.html","tf":0.004807692307692308},"core/combination/searcher.html":{"ref":"core/combination/searcher.html","tf":0.004608294930875576}}}}}}}},"l":{"docs":{},"e":{"docs":{},"n":{"docs":{},"g":{"docs":{},"t":{"docs":{},"h":{"docs":{"core/combination/bi.combo.html":{"ref":"core/combination/bi.combo.html","tf":0.004807692307692308},"core/combination/bi.expander.html":{"ref":"core/combination/bi.expander.html","tf":0.005494505494505495},"core/combination/group_combo.html":{"ref":"core/combination/group_combo.html","tf":0.007874015748031496},"case/combo/icon_combo.html":{"ref":"case/combo/icon_combo.html","tf":0.007751937984496124},"detailed/down_list_combo.html":{"ref":"detailed/down_list_combo.html","tf":0.006578947368421052}},":":{"docs":{"core/combination/bi.combo.html":{"ref":"core/combination/bi.combo.html","tf":0.004807692307692308}}}}}}}}},"w":{"docs":{},"i":{"docs":{},"d":{"docs":{},"t":{"docs":{},"h":{"docs":{"core/combination/bi.combo.html":{"ref":"core/combination/bi.combo.html","tf":0.004807692307692308}}}}}}},"x":{"docs":{},"o":{"docs":{},"f":{"docs":{},"f":{"docs":{},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{"core/combination/bi.combo.html":{"ref":"core/combination/bi.combo.html","tf":0.004807692307692308},"case/combo/icon_combo.html":{"ref":"case/combo/icon_combo.html","tf":0.007751937984496124}}}}}}}}},"y":{"docs":{},"o":{"docs":{},"f":{"docs":{},"f":{"docs":{},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{"core/combination/bi.combo.html":{"ref":"core/combination/bi.combo.html","tf":0.004807692307692308},"case/combo/icon_combo.html":{"ref":"case/combo/icon_combo.html","tf":0.007751937984496124}}}}}}}}},"v":{"docs":{},"i":{"docs":{},"e":{"docs":{},"w":{"docs":{"core/combination/searcher.html":{"ref":"core/combination/searcher.html","tf":0.004608294930875576},"core/combination/switcher.html":{"ref":"core/combination/switcher.html","tf":0.00625}}}}}}}}}}},"u":{"docs":{},"t":{"docs":{},"o":{"docs":{},"左":{"docs":{},"右":{"docs":{},"自":{"docs":{},"适":{"docs":{},"应":{"docs":{},"\"":{"docs":{},",":{"docs":{"core/layout/horizontal_auto.html":{"ref":"core/layout/horizontal_auto.html","tf":0.024691358024691357}}}}}}}}}}}},"f":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"c":{"docs":{},"a":{"docs":{},"r":{"docs":{},"d":{"docs":{},"c":{"docs":{},"r":{"docs":{"core/combination/navigation.html":{"ref":"core/combination/navigation.html","tf":0.014388489208633094}}}},"s":{"docs":{},"h":{"docs":{},"o":{"docs":{},"w":{"docs":{"core/combination/navigation.html":{"ref":"core/combination/navigation.html","tf":0.014388489208633094}}}}}}}}},"o":{"docs":{},"p":{"docs":{},"i":{"docs":{"case/clipboard.html":{"ref":"case/clipboard.html","tf":0.03125}}},"y":{"docs":{},":":{"docs":{"case/clipboard.html":{"ref":"case/clipboard.html","tf":0.03125}}}}}}}}}}},"t":{"docs":{},"t":{"docs":{},"r":{"docs":{"core/widget.html":{"ref":"core/widget.html","tf":0.00510204081632653},"base/table/resizable_table.html":{"ref":"base/table/resizable_table.html","tf":0.00625},"base/pager.html":{"ref":"base/pager.html","tf":0.006666666666666667},"case/table/adaptive_table.html":{"ref":"case/table/adaptive_table.html","tf":0.006060606060606061},"case/table/tree_table.html":{"ref":"case/table/tree_table.html","tf":0.00510204081632653},"case/table/layer_tree_table.html":{"ref":"case/table/layer_tree_table.html","tf":0.00510204081632653},"detailed/table/bi.preview_table.html":{"ref":"detailed/table/bi.preview_table.html","tf":0.006756756756756757},"detailed/table/bi.responsive_table.html":{"ref":"detailed/table/bi.responsive_table.html","tf":0.005263157894736842},"detailed/table/bi.excel_table.html":{"ref":"detailed/table/bi.excel_table.html","tf":0.0055248618784530384},"detailed/table/bi.page_table.html":{"ref":"detailed/table/bi.page_table.html","tf":0.004651162790697674}},"i":{"docs":{},"b":{"docs":{},"u":{"docs":{},"t":{"docs":{"core/widget.html":{"ref":"core/widget.html","tf":0.00510204081632653}}}}}}}}},"l":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{"base/message.html":{"ref":"base/message.html","tf":0.02127659574468085}}}}},"l":{"docs":{},"o":{"docs":{},"w":{"docs":{},"b":{"docs":{},"l":{"docs":{},"a":{"docs":{},"n":{"docs":{},"k":{"docs":{"base/editor/editor.html":{"ref":"base/editor/editor.html","tf":0.005405405405405406},"case/editor/shelter_editor.html":{"ref":"case/editor/shelter_editor.html","tf":0.0051813471502590676},"case/editor/sign_editor.html":{"ref":"case/editor/sign_editor.html","tf":0.005494505494505495},"case/editor/sign_initial_editor.html":{"ref":"case/editor/sign_initial_editor.html","tf":0.005154639175257732},"case/editor/state_editor.html":{"ref":"case/editor/state_editor.html","tf":0.005747126436781609},"case/trigger/editor_trigger.html":{"ref":"case/trigger/editor_trigger.html","tf":0.02},"detailed/text_input/bi.text_editor.html":{"ref":"detailed/text_input/bi.text_editor.html","tf":0.010309278350515464},"detailed/text_input/bi.search_editor.html":{"ref":"detailed/text_input/bi.search_editor.html","tf":0.010101010101010102},"detailed/text_input/bi.clear_editor.html":{"ref":"detailed/text_input/bi.clear_editor.html","tf":0.00980392156862745}}}}}}}}},"_":{"docs":{},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{},"_":{"docs":{},"p":{"docs":{},"a":{"docs":{},"g":{"docs":{"case/pager/all_count_pager.html":{"ref":"case/pager/all_count_pager.html","tf":10}}}}}}}}}}}}},"i":{"docs":{},"g":{"docs":{},"n":{"docs":{"case/tree/branch_relation.html":{"ref":"case/tree/branch_relation.html","tf":0.02040816326530612}},":":{"docs":{"case/tree/branch_relation.html":{"ref":"case/tree/branch_relation.html","tf":0.02040816326530612}}}}}}},"c":{"docs":{},"c":{"docs":{},"e":{"docs":{},"p":{"docs":{},"t":{"docs":{"base/editor/multifile_editor.html":{"ref":"base/editor/multifile_editor.html","tf":0.015384615384615385}}}}}}}},"b":{"docs":{"core/abstract/grid_view.html":{"ref":"core/abstract/grid_view.html","tf":0.01282051282051282},"core/abstract/collection_view.html":{"ref":"core/abstract/collection_view.html","tf":0.014184397163120567},"core/basic_button.html":{"ref":"core/basic_button.html","tf":0.007936507936507936},"core/node_button.html":{"ref":"core/node_button.html","tf":0.02631578947368421},"base/editor/editor.html":{"ref":"base/editor/editor.html","tf":0.005405405405405406},"case/combo/bubble_combo.html":{"ref":"case/combo/bubble_combo.html","tf":0.005780346820809248}},"g":{"1":{"docs":{},"\"":{"docs":{"core/layout/htape.html":{"ref":"core/layout/htape.html","tf":0.008},"core/layout/vtape.html":{"ref":"core/layout/vtape.html","tf":0.008},"core/layout/grid.html":{"ref":"core/layout/grid.html","tf":0.008928571428571428}},",":{"docs":{"core/layout/vertical.html":{"ref":"core/layout/vertical.html","tf":0.01282051282051282},"core/layout/horizontal.html":{"ref":"core/layout/horizontal.html","tf":0.010752688172043012},"core/layout/center_adapt.html":{"ref":"core/layout/center_adapt.html","tf":0.011764705882352941},"core/layout/vertical_adapt.html":{"ref":"core/layout/vertical_adapt.html","tf":0.011494252873563218},"core/layout/left_right_vertical_adapt.html":{"ref":"core/layout/left_right_vertical_adapt.html","tf":0.02197802197802198},"core/layout/flow.html":{"ref":"core/layout/flow.html","tf":0.007692307692307693},"core/layout/center.html":{"ref":"core/layout/center.html","tf":0.012658227848101266},"core/layout/horizontal_adapt.html":{"ref":"core/layout/horizontal_adapt.html","tf":0.010869565217391304},"core/layout/horizontal_auto.html":{"ref":"core/layout/horizontal_auto.html","tf":0.012345679012345678},"core/layout/horizontal_float.html":{"ref":"core/layout/horizontal_float.html","tf":0.013888888888888888},"core/layout/float_center.html":{"ref":"core/layout/float_center.html","tf":0.012658227848101266},"base/table/collection_table.html":{"ref":"base/table/collection_table.html","tf":0.006535947712418301},"base/table/resizable_table.html":{"ref":"base/table/resizable_table.html","tf":0.00625},"detailed/table/bi.excel_table.html":{"ref":"detailed/table/bi.excel_table.html","tf":0.0055248618784530384}}}}},"2":{"docs":{},"\"":{"docs":{"core/layout/htape.html":{"ref":"core/layout/htape.html","tf":0.008},"core/layout/vtape.html":{"ref":"core/layout/vtape.html","tf":0.008},"core/layout/grid.html":{"ref":"core/layout/grid.html","tf":0.008928571428571428}},",":{"docs":{"core/layout/vertical.html":{"ref":"core/layout/vertical.html","tf":0.01282051282051282},"core/layout/horizontal.html":{"ref":"core/layout/horizontal.html","tf":0.010752688172043012},"core/layout/center_adapt.html":{"ref":"core/layout/center_adapt.html","tf":0.011764705882352941},"core/layout/vertical_adapt.html":{"ref":"core/layout/vertical_adapt.html","tf":0.011494252873563218},"core/layout/flow.html":{"ref":"core/layout/flow.html","tf":0.007692307692307693},"core/layout/center.html":{"ref":"core/layout/center.html","tf":0.012658227848101266},"core/layout/horizontal_adapt.html":{"ref":"core/layout/horizontal_adapt.html","tf":0.010869565217391304},"core/layout/horizontal_auto.html":{"ref":"core/layout/horizontal_auto.html","tf":0.012345679012345678},"core/layout/float_center.html":{"ref":"core/layout/float_center.html","tf":0.012658227848101266},"base/table/collection_table.html":{"ref":"base/table/collection_table.html","tf":0.006535947712418301},"base/table/resizable_table.html":{"ref":"base/table/resizable_table.html","tf":0.00625},"detailed/table/bi.excel_table.html":{"ref":"detailed/table/bi.excel_table.html","tf":0.0055248618784530384}}}}},"3":{"docs":{},"\"":{"docs":{"core/layout/htape.html":{"ref":"core/layout/htape.html","tf":0.008},"core/layout/vtape.html":{"ref":"core/layout/vtape.html","tf":0.008}},",":{"docs":{"core/layout/flow.html":{"ref":"core/layout/flow.html","tf":0.007692307692307693},"base/table/collection_table.html":{"ref":"base/table/collection_table.html","tf":0.006535947712418301},"base/table/resizable_table.html":{"ref":"base/table/resizable_table.html","tf":0.00625},"detailed/table/bi.excel_table.html":{"ref":"detailed/table/bi.excel_table.html","tf":0.0055248618784530384}}}}},"4":{"docs":{},"\"":{"docs":{},",":{"docs":{"core/layout/flow.html":{"ref":"core/layout/flow.html","tf":0.007692307692307693},"base/table/collection_table.html":{"ref":"base/table/collection_table.html","tf":0.006535947712418301},"base/table/resizable_table.html":{"ref":"base/table/resizable_table.html","tf":0.00625},"detailed/table/bi.excel_table.html":{"ref":"detailed/table/bi.excel_table.html","tf":0.0055248618784530384}}}}},"5":{"docs":{},"\"":{"docs":{"core/layout/grid.html":{"ref":"core/layout/grid.html","tf":0.008928571428571428}},",":{"docs":{"case/editor/sign_editor.html":{"ref":"case/editor/sign_editor.html","tf":0.005494505494505495},"case/editor/sign_initial_editor.html":{"ref":"case/editor/sign_initial_editor.html","tf":0.005154639175257732}}}}},"6":{"docs":{},"\"":{"docs":{"core/layout/grid.html":{"ref":"core/layout/grid.html","tf":0.008928571428571428}}}},"docs":{},"a":{"docs":{},"p":{"docs":{"core/layout/vertical.html":{"ref":"core/layout/vertical.html","tf":0.01282051282051282},"core/layout/horizontal.html":{"ref":"core/layout/horizontal.html","tf":0.010752688172043012},"core/layout/htape.html":{"ref":"core/layout/htape.html","tf":0.008},"core/layout/vtape.html":{"ref":"core/layout/vtape.html","tf":0.008},"core/layout/center_adapt.html":{"ref":"core/layout/center_adapt.html","tf":0.011764705882352941},"core/layout/vertical_adapt.html":{"ref":"core/layout/vertical_adapt.html","tf":0.011494252873563218},"core/layout/flow.html":{"ref":"core/layout/flow.html","tf":0.007692307692307693},"core/layout/center.html":{"ref":"core/layout/center.html","tf":0.012658227848101266},"core/layout/horizontal_adapt.html":{"ref":"core/layout/horizontal_adapt.html","tf":0.010869565217391304},"core/layout/horizontal_auto.html":{"ref":"core/layout/horizontal_auto.html","tf":0.012345679012345678},"core/layout/horizontal_float.html":{"ref":"core/layout/horizontal_float.html","tf":0.013888888888888888},"core/layout/float_center.html":{"ref":"core/layout/float_center.html","tf":0.012658227848101266},"core/combination/searcher.html":{"ref":"core/combination/searcher.html","tf":0.004608294930875576},"core/layer/layer_popup.html":{"ref":"core/layer/layer_popup.html","tf":0.0058823529411764705},"base/label.html":{"ref":"base/label.html","tf":0.006711409395973154},"base/button/button.html":{"ref":"base/button/button.html","tf":0.005681818181818182},"base/editor/editor.html":{"ref":"base/editor/editor.html","tf":0.005405405405405406},"case/editor/shelter_editor.html":{"ref":"case/editor/shelter_editor.html","tf":0.0051813471502590676},"case/editor/sign_editor.html":{"ref":"case/editor/sign_editor.html","tf":0.005494505494505495},"case/editor/sign_initial_editor.html":{"ref":"case/editor/sign_initial_editor.html","tf":0.005154639175257732},"case/editor/state_editor.html":{"ref":"case/editor/state_editor.html","tf":0.005747126436781609},"case/layer/pane_list.html":{"ref":"case/layer/pane_list.html","tf":0.006802721088435374},"case/segment.html":{"ref":"case/segment.html","tf":0.009345794392523364},"detailed/bi.button/tooltip.html":{"ref":"detailed/bi.button/tooltip.html","tf":0.011363636363636364},"detailed/bi.button/items.html":{"ref":"detailed/bi.button/items.html","tf":0.010638297872340425},"detailed/bi.button/node.html":{"ref":"detailed/bi.button/node.html","tf":0.009259259259259259},"detailed/bi.button/segment.html":{"ref":"detailed/bi.button/segment.html","tf":0.009345794392523364},"detailed/text_input/bi.text_editor.html":{"ref":"detailed/text_input/bi.text_editor.html","tf":0.010309278350515464},"detailed/text_input/bi.search_editor.html":{"ref":"detailed/text_input/bi.search_editor.html","tf":0.010101010101010102},"detailed/text_input/bi.clear_editor.html":{"ref":"detailed/text_input/bi.clear_editor.html","tf":0.00980392156862745}}}},"\"":{"docs":{"core/combination/navigation.html":{"ref":"core/combination/navigation.html","tf":0.007194244604316547}}}},"i":{"docs":{},".":{"docs":{},"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":{"core/layout/vertical.html":{"ref":"core/layout/vertical.html","tf":0.01282051282051282},"core/layout/horizontal.html":{"ref":"core/layout/horizontal.html","tf":0.010752688172043012},"core/layout/htape.html":{"ref":"core/layout/htape.html","tf":0.008},"core/layout/vtape.html":{"ref":"core/layout/vtape.html","tf":0.008},"core/layout/center_adapt.html":{"ref":"core/layout/center_adapt.html","tf":0.011764705882352941},"core/layout/vertical_adapt.html":{"ref":"core/layout/vertical_adapt.html","tf":0.011494252873563218},"core/layout/left_right_vertical_adapt.html":{"ref":"core/layout/left_right_vertical_adapt.html","tf":0.01098901098901099},"core/layout/flow.html":{"ref":"core/layout/flow.html","tf":0.007692307692307693},"core/layout/center.html":{"ref":"core/layout/center.html","tf":0.012658227848101266},"core/layout/horizontal_adapt.html":{"ref":"core/layout/horizontal_adapt.html","tf":0.010869565217391304},"core/layout/horizontal_auto.html":{"ref":"core/layout/horizontal_auto.html","tf":0.012345679012345678},"core/layout/horizontal_float.html":{"ref":"core/layout/horizontal_float.html","tf":0.013888888888888888},"core/layout/float_center.html":{"ref":"core/layout/float_center.html","tf":0.012658227848101266},"core/layout/border.html":{"ref":"core/layout/border.html","tf":0.012987012987012988},"core/layout/grid.html":{"ref":"core/layout/grid.html","tf":0.008928571428571428},"core/layout/table.html":{"ref":"core/layout/table.html","tf":0.012048192771084338},"core/layout/td.html":{"ref":"core/layout/td.html","tf":0.017857142857142856},"core/abstract/button_group.html":{"ref":"core/abstract/button_group.html","tf":0.007936507936507936},"core/abstract/button_tree.html":{"ref":"core/abstract/button_tree.html","tf":0.014925373134328358},"core/abstract/virtual_group.html":{"ref":"core/abstract/virtual_group.html","tf":0.014492753623188406},"core/abstract/custom_tree.html":{"ref":"core/abstract/custom_tree.html","tf":0.007194244604316547},"core/abstract/grid_view.html":{"ref":"core/abstract/grid_view.html","tf":0.00641025641025641},"core/abstract/collection_view.html":{"ref":"core/abstract/collection_view.html","tf":0.0070921985815602835},"core/abstract/virtual_list.html":{"ref":"core/abstract/virtual_list.html","tf":0.0125},"core/combination/bi.combo.html":{"ref":"core/combination/bi.combo.html","tf":0.004807692307692308},"core/combination/bi.expander.html":{"ref":"core/combination/bi.expander.html","tf":0.005494505494505495},"core/combination/group_combo.html":{"ref":"core/combination/group_combo.html","tf":0.007874015748031496},"core/combination/loader.html":{"ref":"core/combination/loader.html","tf":0.006289308176100629},"core/combination/navigation.html":{"ref":"core/combination/navigation.html","tf":0.014388489208633094},"core/combination/searcher.html":{"ref":"core/combination/searcher.html","tf":0.004608294930875576},"core/combination/switcher.html":{"ref":"core/combination/switcher.html","tf":0.00625},"core/combination/tab.html":{"ref":"core/combination/tab.html","tf":0.02054794520547945},"core/layer/layer_float_box.html":{"ref":"core/layer/layer_float_box.html","tf":0.012345679012345678},"core/layer/layer_popup.html":{"ref":"core/layer/layer_popup.html","tf":0.0058823529411764705},"core/layer/layer_searcher.html":{"ref":"core/layer/layer_searcher.html","tf":0.009259259259259259},"base/label.html":{"ref":"base/label.html","tf":0.006711409395973154},"base/bubble.html":{"ref":"base/bubble.html","tf":0.023255813953488372},"base/toast.html":{"ref":"base/toast.html","tf":0.020833333333333332},"base/message.html":{"ref":"base/message.html","tf":0.02127659574468085},"base/button/button.html":{"ref":"base/button/button.html","tf":0.005681818181818182},"base/button/text_button.html":{"ref":"base/button/text_button.html","tf":0.009433962264150943},"base/button/icon_button.html":{"ref":"base/button/icon_button.html","tf":0.02564102564102564},"base/button/image_button.html":{"ref":"base/button/image_button.html","tf":0.014925373134328358},"base/editor/editor.html":{"ref":"base/editor/editor.html","tf":0.005405405405405406},"base/editor/code_editor.html":{"ref":"base/editor/code_editor.html","tf":0.012658227848101266},"base/editor/multifile_editor.html":{"ref":"base/editor/multifile_editor.html","tf":0.015384615384615385},"base/editor/textarea_editor.html":{"ref":"base/editor/textarea_editor.html","tf":0.021739130434782608},"base/editor/formula_editor.html":{"ref":"base/editor/formula_editor.html","tf":0.010101010101010102},"base/table/table_view.html":{"ref":"base/table/table_view.html","tf":0.006289308176100629},"base/table/grid_table.html":{"ref":"base/table/grid_table.html","tf":0.008771929824561403},"base/table/collection_table.html":{"ref":"base/table/collection_table.html","tf":0.006535947712418301},"base/table/resizable_table.html":{"ref":"base/table/resizable_table.html","tf":0.00625},"base/pager.html":{"ref":"base/pager.html","tf":0.006666666666666667},"base/svg.html":{"ref":"base/svg.html","tf":0.011235955056179775},"base/canvas.html":{"ref":"base/canvas.html","tf":0.016666666666666666},"case/button/multi_select_item.html":{"ref":"case/button/multi_select_item.html","tf":0.017543859649122806},"case/button/single_select_item.html":{"ref":"case/button/single_select_item.html","tf":0.016129032258064516},"case/button/single_select_radio_item.html":{"ref":"case/button/single_select_radio_item.html","tf":0.016129032258064516},"case/editor/shelter_editor.html":{"ref":"case/editor/shelter_editor.html","tf":0.0051813471502590676},"case/editor/sign_editor.html":{"ref":"case/editor/sign_editor.html","tf":0.005494505494505495},"case/editor/sign_initial_editor.html":{"ref":"case/editor/sign_initial_editor.html","tf":0.005154639175257732},"case/editor/state_editor.html":{"ref":"case/editor/state_editor.html","tf":0.005747126436781609},"case/layer/multi_popup_layer.html":{"ref":"case/layer/multi_popup_layer.html","tf":0.04},"case/layer/layer_panel.html":{"ref":"case/layer/layer_panel.html","tf":0.010752688172043012},"case/layer/pane_list.html":{"ref":"case/layer/pane_list.html","tf":0.006802721088435374},"case/layer/panel.html":{"ref":"case/layer/panel.html","tf":0.015873015873015872},"case/list/list.select.html":{"ref":"case/list/list.select.html","tf":0.009433962264150943},"case/loader/lazy_loader.html":{"ref":"case/loader/lazy_loader.html","tf":0.01694915254237288},"case/loader/list_loader.html":{"ref":"case/loader/list_loader.html","tf":0.010752688172043012},"case/loader/sort_list.html":{"ref":"case/loader/sort_list.html","tf":0.010752688172043012},"case/trigger/editor_trigger.html":{"ref":"case/trigger/editor_trigger.html","tf":0.02},"case/trigger/icon_trigger.html":{"ref":"case/trigger/icon_trigger.html","tf":0.1111111111111111},"case/trigger/text_trigger.html":{"ref":"case/trigger/text_trigger.html","tf":0.05263157894736842},"case/combo/bubble_combo.html":{"ref":"case/combo/bubble_combo.html","tf":0.005780346820809248},"case/combo/icon_combo.html":{"ref":"case/combo/icon_combo.html","tf":0.007751937984496124},"case/combo/static_combo.html":{"ref":"case/combo/static_combo.html","tf":0.0125},"case/combo/text_value_combo.html":{"ref":"case/combo/text_value_combo.html","tf":0.013513513513513514},"case/combo/text_value_downlist_combo.html":{"ref":"case/combo/text_value_downlist_combo.html","tf":0.013513513513513514},"case/tree/branch_tree.html":{"ref":"case/tree/branch_tree.html","tf":0.02},"case/tree/handstand_branch_tree.html":{"ref":"case/tree/handstand_branch_tree.html","tf":0.019230769230769232},"case/tree/display_tree.html":{"ref":"case/tree/display_tree.html","tf":0.030303030303030304},"case/tree/simple_tree.html":{"ref":"case/tree/simple_tree.html","tf":0.022222222222222223},"case/tree/level_tree.html":{"ref":"case/tree/level_tree.html","tf":0.017857142857142856},"case/tree/branch_relation.html":{"ref":"case/tree/branch_relation.html","tf":0.02040816326530612},"case/table/adaptive_table.html":{"ref":"case/table/adaptive_table.html","tf":0.006060606060606061},"case/table/tree_table.html":{"ref":"case/table/tree_table.html","tf":0.00510204081632653},"case/table/layer_tree_table.html":{"ref":"case/table/layer_tree_table.html","tf":0.00510204081632653},"case/pager/all_count_pager.html":{"ref":"case/pager/all_count_pager.html","tf":0.014705882352941176},"case/pager/direction_pager.html":{"ref":"case/pager/direction_pager.html","tf":0.00819672131147541},"case/calendar.html":{"ref":"case/calendar.html","tf":0.013888888888888888},"case/clipboard.html":{"ref":"case/clipboard.html","tf":0.03125},"case/complex_canvas.html":{"ref":"case/complex_canvas.html","tf":0.020833333333333332},"case/color_chooser.html":{"ref":"case/color_chooser.html","tf":0.038461538461538464},"case/color_chooser_popup.html":{"ref":"case/color_chooser_popup.html","tf":0.029411764705882353},"case/segment.html":{"ref":"case/segment.html","tf":0.009345794392523364},"detailed/bi.button/tooltip.html":{"ref":"detailed/bi.button/tooltip.html","tf":0.011363636363636364},"detailed/bi.button/items.html":{"ref":"detailed/bi.button/items.html","tf":0.010638297872340425},"detailed/bi.button/node.html":{"ref":"detailed/bi.button/node.html","tf":0.009259259259259259},"detailed/bi.button/segment.html":{"ref":"detailed/bi.button/segment.html","tf":0.009345794392523364},"detailed/tree/bi.multi_tree_combo.html":{"ref":"detailed/tree/bi.multi_tree_combo.html","tf":0.010869565217391304},"detailed/tree/bi.switch_tree.html":{"ref":"detailed/tree/bi.switch_tree.html","tf":0.013157894736842105},"detailed/table/bi.preview_table.html":{"ref":"detailed/table/bi.preview_table.html","tf":0.006756756756756757},"detailed/table/bi.responsive_table.html":{"ref":"detailed/table/bi.responsive_table.html","tf":0.005263157894736842},"detailed/table/bi.excel_table.html":{"ref":"detailed/table/bi.excel_table.html","tf":0.0055248618784530384},"detailed/table/bi.page_table.html":{"ref":"detailed/table/bi.page_table.html","tf":0.004651162790697674},"detailed/text_input/bi.text_editor.html":{"ref":"detailed/text_input/bi.text_editor.html","tf":0.010309278350515464},"detailed/text_input/bi.search_editor.html":{"ref":"detailed/text_input/bi.search_editor.html","tf":0.010101010101010102},"detailed/text_input/bi.clear_editor.html":{"ref":"detailed/text_input/bi.clear_editor.html","tf":0.00980392156862745},"detailed/text_input/finetuning_number_editor.html":{"ref":"detailed/text_input/finetuning_number_editor.html","tf":0.037037037037037035},"detailed/year_combo.html":{"ref":"detailed/year_combo.html","tf":0.025},"detailed/month_combo.html":{"ref":"detailed/month_combo.html","tf":0.03571428571428571},"detailed/quarter_combo.html":{"ref":"detailed/quarter_combo.html","tf":0.03571428571428571},"detailed/down_list_combo.html":{"ref":"detailed/down_list_combo.html","tf":0.006578947368421052},"detailed/numeric_interval.html":{"ref":"detailed/numeric_interval.html","tf":0.017241379310344827},"detailed/multi_select_combo.html":{"ref":"detailed/multi_select_combo.html","tf":0.04},"detailed/date/date_combo.html":{"ref":"detailed/date/date_combo.html","tf":0.058823529411764705},"detailed/date/date_pane_widget.html":{"ref":"detailed/date/date_pane_widget.html","tf":0.02702702702702703},"detailed/date/year_month_combo.html":{"ref":"detailed/date/year_month_combo.html","tf":0.029411764705882353},"detailed/date/year_quarter_combo.html":{"ref":"detailed/date/year_quarter_combo.html","tf":0.03225806451612903},"detailed/date/custom_date_time.html":{"ref":"detailed/date/custom_date_time.html","tf":0.045454545454545456},"detailed/combo/single_tree_combo.html":{"ref":"detailed/combo/single_tree_combo.html","tf":0.01694915254237288},"detailed/combo/multilayer_single_tree_combo.html":{"ref":"detailed/combo/multilayer_single_tree_combo.html","tf":0.018867924528301886},"detailed/combo/select_tree_combo.html":{"ref":"detailed/combo/select_tree_combo.html","tf":0.02040816326530612},"detailed/combo/multilayer_select_tree_combo.html":{"ref":"detailed/combo/multilayer_select_tree_combo.html","tf":0.02040816326530612},"detailed/path/path_chooser.html":{"ref":"detailed/path/path_chooser.html","tf":0.019230769230769232},"detailed/path/direction_path_chooser.html":{"ref":"detailed/path/direction_path_chooser.html","tf":0.02},"detailed/relation_view.html":{"ref":"detailed/relation_view.html","tf":0.019230769230769232},"detailed/file_manager.html":{"ref":"detailed/file_manager.html","tf":0.023255813953488372},"detailed/slider.html":{"ref":"detailed/slider.html","tf":0.029411764705882353}}},")":{"docs":{},";":{"docs":{},"}":{"docs":{"core/combination/tab.html":{"ref":"core/combination/tab.html","tf":0.00684931506849315}}}}}}}}}}}}}}}}},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"core/layout/center.html":{"ref":"core/layout/center.html","tf":0.012658227848101266}},"e":{"docs":{},"r":{"docs":{},"_":{"docs":{},"a":{"docs":{},"d":{"docs":{},"a":{"docs":{},"p":{"docs":{},"t":{"docs":{"core/layout/center_adapt.html":{"ref":"core/layout/center_adapt.html","tf":0.011764705882352941}}}}}}}}}}}}},"u":{"docs":{},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"m":{"docs":{},"_":{"docs":{},"t":{"docs":{},"r":{"docs":{},"e":{"docs":{"core/abstract/custom_tree.html":{"ref":"core/abstract/custom_tree.html","tf":0.007194244604316547}}}}}},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"t":{"docs":{},"i":{"docs":{},"m":{"docs":{},"e":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"b":{"docs":{},"o":{"docs":{},".":{"docs":{},"e":{"docs":{},"v":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"_":{"docs":{},"c":{"docs":{},"a":{"docs":{},"n":{"docs":{},"c":{"docs":{},"e":{"docs":{},"l":{"docs":{"detailed/date/custom_date_time.html":{"ref":"detailed/date/custom_date_time.html","tf":0.045454545454545456}}}}}}},"o":{"docs":{},"n":{"docs":{},"f":{"docs":{},"i":{"docs":{},"r":{"docs":{},"m":{"docs":{"detailed/date/custom_date_time.html":{"ref":"detailed/date/custom_date_time.html","tf":0.045454545454545456}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"o":{"docs":{},"l":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"_":{"docs":{},"v":{"docs":{},"i":{"docs":{},"e":{"docs":{},"w":{"docs":{"core/abstract/collection_view.html":{"ref":"core/abstract/collection_view.html","tf":0.0070921985815602835}}}}}},"t":{"docs":{"base/table/collection_table.html":{"ref":"base/table/collection_table.html","tf":0.006535947712418301}}}},"v":{"docs":{},"i":{"docs":{},"e":{"docs":{},"w":{"docs":{},".":{"docs":{},"e":{"docs":{},"v":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"_":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"o":{"docs":{},"l":{"docs":{"core/abstract/collection_view.html":{"ref":"core/abstract/collection_view.html","tf":0.0070921985815602835}}}}}}}}}}}}}}}}}}}}}}}}},"o":{"docs":{},"r":{"docs":{},"_":{"docs":{},"c":{"docs":{},"h":{"docs":{},"o":{"docs":{},"o":{"docs":{},"s":{"docs":{"case/color_chooser.html":{"ref":"case/color_chooser.html","tf":0.038461538461538464}},"e":{"docs":{},"r":{"docs":{},"_":{"docs":{},"p":{"docs":{},"o":{"docs":{},"p":{"docs":{},"u":{"docs":{},"p":{"docs":{"case/color_chooser_popup.html":{"ref":"case/color_chooser_popup.html","tf":0.029411764705882353}}}}}}}}}}}}}}}}}}},"m":{"docs":{},"b":{"docs":{},"o":{"docs":{"core/combination/bi.combo.html":{"ref":"core/combination/bi.combo.html","tf":0.004807692307692308}},".":{"docs":{},"e":{"docs":{},"v":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"_":{"docs":{},"a":{"docs":{},"f":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"_":{"docs":{},"h":{"docs":{},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{},"v":{"docs":{},"i":{"docs":{},"e":{"docs":{},"w":{"docs":{"core/combination/bi.combo.html":{"ref":"core/combination/bi.combo.html","tf":0.004807692307692308}}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"i":{"docs":{},"t":{"docs":{"core/combination/bi.combo.html":{"ref":"core/combination/bi.combo.html","tf":0.004807692307692308}}}}}},"p":{"docs":{},"o":{"docs":{},"p":{"docs":{},"u":{"docs":{},"p":{"docs":{},"v":{"docs":{},"i":{"docs":{},"e":{"docs":{},"w":{"docs":{"core/combination/bi.combo.html":{"ref":"core/combination/bi.combo.html","tf":0.004807692307692308}}}}}}}}}}}}}}}}},"b":{"docs":{},"e":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"e":{"docs":{},"_":{"docs":{},"h":{"docs":{},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{},"v":{"docs":{},"i":{"docs":{},"e":{"docs":{},"w":{"docs":{"core/combination/bi.combo.html":{"ref":"core/combination/bi.combo.html","tf":0.004807692307692308}}}}}}}}}},"p":{"docs":{},"o":{"docs":{},"p":{"docs":{},"u":{"docs":{},"p":{"docs":{},"v":{"docs":{},"i":{"docs":{},"e":{"docs":{},"w":{"docs":{"core/combination/bi.combo.html":{"ref":"core/combination/bi.combo.html","tf":0.004807692307692308}}}}}}}}}}}}}}}}}},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{"core/combination/bi.combo.html":{"ref":"core/combination/bi.combo.html","tf":0.004807692307692308}}}}}},"o":{"docs":{},"l":{"docs":{},"l":{"docs":{},"a":{"docs":{},"p":{"docs":{},"s":{"docs":{"core/combination/bi.combo.html":{"ref":"core/combination/bi.combo.html","tf":0.004807692307692308}}}}}}}}},"e":{"docs":{},"x":{"docs":{},"p":{"docs":{},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{"core/combination/bi.combo.html":{"ref":"core/combination/bi.combo.html","tf":0.004807692307692308}}}}}}}},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"g":{"docs":{},"g":{"docs":{},"e":{"docs":{},"r":{"docs":{},"_":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{"core/combination/bi.combo.html":{"ref":"core/combination/bi.combo.html","tf":0.004807692307692308}}}}}}}}}}}}}}}}}}}}}},"_":{"docs":{},"g":{"docs":{},"r":{"docs":{},"o":{"docs":{},"u":{"docs":{},"p":{"docs":{"core/combination/group_combo.html":{"ref":"core/combination/group_combo.html","tf":0.007874015748031496}}}}}}}}}}},"d":{"docs":{},"e":{"docs":{},"_":{"docs":{},"e":{"docs":{},"d":{"docs":{},"i":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{"base/editor/code_editor.html":{"ref":"base/editor/code_editor.html","tf":0.012658227848101266}}}}}}}}}}}},"a":{"docs":{},"n":{"docs":{},"v":{"docs":{},"a":{"docs":{"base/canvas.html":{"ref":"base/canvas.html","tf":0.016666666666666666}}}}},"l":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{},"a":{"docs":{},"r":{"docs":{"case/calendar.html":{"ref":"case/calendar.html","tf":0.013888888888888888}}}}}}}}},"l":{"docs":{},"i":{"docs":{},"p":{"docs":{},"b":{"docs":{},"o":{"docs":{},"a":{"docs":{},"r":{"docs":{},"d":{"docs":{"case/clipboard.html":{"ref":"case/clipboard.html","tf":0.03125}}}}}}}}},"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.009803921568627}}}}}}}}},"e":{"docs":{},"d":{"docs":{},"i":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},".":{"docs":{},"e":{"docs":{},"v":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"_":{"docs":{},"c":{"docs":{},"l":{"docs":{},"e":{"docs":{},"a":{"docs":{},"r":{"docs":{"detailed/text_input/bi.clear_editor.html":{"ref":"detailed/text_input/bi.clear_editor.html","tf":0.00980392156862745}}}}}}}}}}}}}}}}}}}}}}}}},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{"core/layout/vertical.html":{"ref":"core/layout/vertical.html","tf":0.01282051282051282}},"i":{"docs":{},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{},"_":{"docs":{},"a":{"docs":{},"d":{"docs":{},"a":{"docs":{},"p":{"docs":{},"t":{"docs":{"core/layout/vertical_adapt.html":{"ref":"core/layout/vertical_adapt.html","tf":0.011494252873563218}}}}}}}},"a":{"docs":{},"l":{"docs":{},"i":{"docs":{},"g":{"docs":{},"n":{"docs":{},".":{"docs":{},"m":{"docs":{},"i":{"docs":{},"d":{"docs":{},"d":{"docs":{},"l":{"docs":{"core/layout/horizontal_adapt.html":{"ref":"core/layout/horizontal_adapt.html","tf":0.010869565217391304}}}}}}},"t":{"docs":{},"o":{"docs":{},"p":{"docs":{"case/tree/branch_relation.html":{"ref":"case/tree/branch_relation.html","tf":0.02040816326530612}}}}}}}}}}}}}}}}}},"t":{"docs":{},"a":{"docs":{},"p":{"docs":{"core/layout/vtape.html":{"ref":"core/layout/vtape.html","tf":0.008}}}}},"i":{"docs":{},"r":{"docs":{},"t":{"docs":{},"u":{"docs":{},"a":{"docs":{},"l":{"docs":{},"_":{"docs":{},"g":{"docs":{},"r":{"docs":{},"o":{"docs":{},"u":{"docs":{},"p":{"docs":{"core/abstract/virtual_group.html":{"ref":"core/abstract/virtual_group.html","tf":0.014492753623188406}}}}}}},"l":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{"core/abstract/virtual_list.html":{"ref":"core/abstract/virtual_list.html","tf":0.0125}}}}}}}}}}}}}},"h":{"docs":{},"o":{"docs":{},"r":{"docs":{},"i":{"docs":{},"z":{"docs":{},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{"core/layout/horizontal.html":{"ref":"core/layout/horizontal.html","tf":0.010752688172043012}},"a":{"docs":{},"l":{"docs":{},"_":{"docs":{},"a":{"docs":{},"d":{"docs":{},"a":{"docs":{},"p":{"docs":{},"t":{"docs":{"core/layout/horizontal_adapt.html":{"ref":"core/layout/horizontal_adapt.html","tf":0.010869565217391304}}}}}},"u":{"docs":{},"t":{"docs":{},"o":{"docs":{"core/layout/horizontal_auto.html":{"ref":"core/layout/horizontal_auto.html","tf":0.012345679012345678}}}}}},"f":{"docs":{},"l":{"docs":{},"o":{"docs":{},"a":{"docs":{},"t":{"docs":{"core/layout/horizontal_float.html":{"ref":"core/layout/horizontal_float.html","tf":0.013888888888888888}}}}}}}},"a":{"docs":{},"l":{"docs":{},"i":{"docs":{},"g":{"docs":{},"n":{"docs":{},".":{"docs":{},"r":{"docs":{},"i":{"docs":{},"g":{"docs":{},"h":{"docs":{},"t":{"docs":{},",":{"docs":{"case/tree/branch_relation.html":{"ref":"case/tree/branch_relation.html","tf":0.02040816326530612}}}}}}}}}}}}}}}}}}}}}}},"t":{"docs":{},"a":{"docs":{},"p":{"docs":{"core/layout/htape.html":{"ref":"core/layout/htape.html","tf":0.008}}}}},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{},"_":{"docs":{},"b":{"docs":{},"r":{"docs":{},"a":{"docs":{},"n":{"docs":{},"c":{"docs":{},"h":{"docs":{},"_":{"docs":{},"t":{"docs":{},"r":{"docs":{},"e":{"docs":{"case/tree/handstand_branch_tree.html":{"ref":"case/tree/handstand_branch_tree.html","tf":0.019230769230769232}}}}}}}}}}}}}}}}}}}}}},"l":{"docs":{},"e":{"docs":{},"f":{"docs":{},"t":{"docs":{},"_":{"docs":{},"r":{"docs":{},"i":{"docs":{},"g":{"docs":{},"h":{"docs":{},"t":{"docs":{},"_":{"docs":{},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"i":{"docs":{},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{},"_":{"docs":{},"a":{"docs":{},"d":{"docs":{},"a":{"docs":{},"p":{"docs":{},"t":{"docs":{"core/layout/left_right_vertical_adapt.html":{"ref":"core/layout/left_right_vertical_adapt.html","tf":0.01098901098901099}}}}}}}}}}}}}}}}}}}}}}}}},"v":{"docs":{},"e":{"docs":{},"l":{"docs":{},"_":{"docs":{},"t":{"docs":{},"r":{"docs":{},"e":{"docs":{"case/tree/level_tree.html":{"ref":"case/tree/level_tree.html","tf":0.017857142857142856}}}}}}}}}},"o":{"docs":{},"a":{"docs":{},"d":{"docs":{"core/combination/loader.html":{"ref":"core/combination/loader.html","tf":0.006289308176100629}}}}},"a":{"docs":{},"b":{"docs":{},"e":{"docs":{},"l":{"docs":{"base/label.html":{"ref":"base/label.html","tf":0.006711409395973154}}}}},"z":{"docs":{},"y":{"docs":{},"_":{"docs":{},"l":{"docs":{},"o":{"docs":{},"a":{"docs":{},"d":{"docs":{"case/loader/lazy_loader.html":{"ref":"case/loader/lazy_loader.html","tf":0.01694915254237288}}}}}}}}},"y":{"docs":{},"e":{"docs":{},"r":{"docs":{},"_":{"docs":{},"t":{"docs":{},"r":{"docs":{},"e":{"docs":{},"e":{"docs":{},"_":{"docs":{},"t":{"docs":{"case/table/layer_tree_table.html":{"ref":"case/table/layer_tree_table.html","tf":0.00510204081632653}}}}}}}}}}}}},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{},"_":{"docs":{},"p":{"docs":{},"a":{"docs":{},"n":{"docs":{"case/layer/pane_list.html":{"ref":"case/layer/pane_list.html","tf":0.006802721088435374}}}}},"l":{"docs":{},"o":{"docs":{},"a":{"docs":{},"d":{"docs":{"case/loader/list_loader.html":{"ref":"case/loader/list_loader.html","tf":0.010752688172043012}}}}}}}}}}},"f":{"docs":{},"l":{"docs":{},"o":{"docs":{},"w":{"docs":{"core/layout/flow.html":{"ref":"core/layout/flow.html","tf":0.007692307692307693}}},"a":{"docs":{},"t":{"docs":{},"_":{"docs":{},"c":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"core/layout/float_center.html":{"ref":"core/layout/float_center.html","tf":0.012658227848101266}}}}}},"b":{"docs":{},"o":{"docs":{},"x":{"docs":{"core/layer/layer_float_box.html":{"ref":"core/layer/layer_float_box.html","tf":0.012345679012345678}}}}}}}}}},"o":{"docs":{},"r":{"docs":{},"m":{"docs":{},"u":{"docs":{},"l":{"docs":{},"a":{"docs":{},"_":{"docs":{},"e":{"docs":{},"d":{"docs":{},"i":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{"base/editor/formula_editor.html":{"ref":"base/editor/formula_editor.html","tf":0.010101010101010102}}}}}}}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"e":{"docs":{},"t":{"docs":{},"u":{"docs":{},"n":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"n":{"docs":{},"u":{"docs":{},"m":{"docs":{},"b":{"docs":{},"e":{"docs":{},"r":{"docs":{},"e":{"docs":{},"d":{"docs":{},"i":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},".":{"docs":{},"e":{"docs":{},"v":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"_":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"f":{"docs":{},"i":{"docs":{},"r":{"docs":{},"m":{"docs":{"detailed/text_input/finetuning_number_editor.html":{"ref":"detailed/text_input/finetuning_number_editor.html","tf":0.037037037037037035}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"b":{"docs":{},"o":{"docs":{},"r":{"docs":{},"d":{"docs":{"core/layout/border.html":{"ref":"core/layout/border.html","tf":0.012987012987012988}}}}},"u":{"docs":{},"t":{"docs":{},"t":{"docs":{},"o":{"docs":{},"n":{"docs":{"base/button/button.html":{"ref":"base/button/button.html","tf":0.005681818181818182},"detailed/bi.button/general.html":{"ref":"detailed/bi.button/general.html","tf":0.5}},"_":{"docs":{},"g":{"docs":{},"r":{"docs":{},"o":{"docs":{},"u":{"docs":{},"p":{"docs":{"core/abstract/button_group.html":{"ref":"core/abstract/button_group.html","tf":0.007936507936507936}}}}}}},"t":{"docs":{},"r":{"docs":{},"e":{"docs":{"core/abstract/button_tree.html":{"ref":"core/abstract/button_tree.html","tf":0.014925373134328358}}}}}},"g":{"docs":{},"r":{"docs":{},"o":{"docs":{},"u":{"docs":{},"p":{"docs":{},".":{"docs":{},"c":{"docs":{},"h":{"docs":{},"o":{"docs":{},"o":{"docs":{},"s":{"docs":{},"e":{"docs":{},"_":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{},"e":{"docs":{},"_":{"docs":{},"s":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"l":{"docs":{"core/abstract/button_group.html":{"ref":"core/abstract/button_group.html","tf":0.007936507936507936},"case/combo/icon_combo.html":{"ref":"case/combo/icon_combo.html","tf":0.007751937984496124},"case/combo/static_combo.html":{"ref":"case/combo/static_combo.html","tf":0.0125},"case/combo/text_value_combo.html":{"ref":"case/combo/text_value_combo.html","tf":0.013513513513513514}},"e":{"docs":{},",":{"docs":{"core/abstract/button_group.html":{"ref":"core/abstract/button_group.html","tf":0.007936507936507936}}}}}}}}},"m":{"docs":{},"u":{"docs":{},"l":{"docs":{},"t":{"docs":{},"i":{"docs":{},",":{"docs":{"core/abstract/button_tree.html":{"ref":"core/abstract/button_tree.html","tf":0.014925373134328358},"core/abstract/virtual_group.html":{"ref":"core/abstract/virtual_group.html","tf":0.014492753623188406}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"b":{"docs":{},"b":{"docs":{},"l":{"docs":{"base/bubble.html":{"ref":"base/bubble.html","tf":0.023255813953488372}},"e":{"docs":{},"_":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"b":{"docs":{},"o":{"docs":{"case/combo/bubble_combo.html":{"ref":"case/combo/bubble_combo.html","tf":0.005780346820809248}}}}}}}}}}}}},"a":{"docs":{},"r":{"docs":{},"p":{"docs":{},"o":{"docs":{},"p":{"docs":{},"o":{"docs":{},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"(":{"docs":{},")":{"docs":{},")":{"docs":{},".":{"docs":{},"o":{"docs":{},"p":{"docs":{},"e":{"docs":{},"n":{"docs":{},"(":{"docs":{},"i":{"docs":{},"d":{"docs":{},")":{"docs":{},";":{"docs":{"core/layer/layer_float_box.html":{"ref":"core/layer/layer_float_box.html","tf":0.012345679012345678}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"i":{"docs":{},"c":{"docs":{},"_":{"docs":{},"b":{"docs":{},"u":{"docs":{},"t":{"docs":{},"t":{"docs":{},"o":{"docs":{},"n":{"docs":{"core/basic_button.html":{"ref":"core/basic_button.html","tf":0.007936507936507936}}}}}}}}},"b":{"docs":{},"u":{"docs":{},"t":{"docs":{},"t":{"docs":{},"o":{"docs":{},"n":{"docs":{"core/node_button.html":{"ref":"core/node_button.html","tf":0.02631578947368421}}}}}}}}}}}},"r":{"docs":{},"a":{"docs":{},"n":{"docs":{},"c":{"docs":{},"h":{"docs":{},"_":{"docs":{},"t":{"docs":{},"r":{"docs":{},"e":{"docs":{"case/tree/branch_tree.html":{"ref":"case/tree/branch_tree.html","tf":0.02}}}}},"r":{"docs":{},"e":{"docs":{},"l":{"docs":{"case/tree/branch_relation.html":{"ref":"case/tree/branch_relation.html","tf":0.02040816326530612}}}}}}}}}}}},"g":{"docs":{},"r":{"docs":{},"i":{"docs":{},"d":{"docs":{"core/layout/grid.html":{"ref":"core/layout/grid.html","tf":0.008928571428571428}},"_":{"docs":{},"v":{"docs":{},"i":{"docs":{},"e":{"docs":{},"w":{"docs":{"core/abstract/grid_view.html":{"ref":"core/abstract/grid_view.html","tf":0.00641025641025641}}}}}},"t":{"docs":{"base/table/grid_table.html":{"ref":"base/table/grid_table.html","tf":0.008771929824561403}}}},"v":{"docs":{},"i":{"docs":{},"e":{"docs":{},"w":{"docs":{},".":{"docs":{},"e":{"docs":{},"v":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"_":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"o":{"docs":{},"l":{"docs":{"core/abstract/grid_view.html":{"ref":"core/abstract/grid_view.html","tf":0.00641025641025641}}}}}}}}}}}}}}}}}}}}}},"t":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{"core/layout/table.html":{"ref":"core/layout/table.html","tf":0.012048192771084338}},"e":{"docs":{},".":{"docs":{},"e":{"docs":{},"v":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"_":{"docs":{},"t":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"_":{"docs":{},"a":{"docs":{},"f":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"_":{"docs":{},"i":{"docs":{},"n":{"docs":{},"i":{"docs":{},"t":{"docs":{"base/table/table_view.html":{"ref":"base/table/table_view.html","tf":0.006289308176100629}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{"base/table/table_view.html":{"ref":"base/table/table_view.html","tf":0.006289308176100629}}}}},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"o":{"docs":{},"l":{"docs":{"base/table/table_view.html":{"ref":"base/table/table_view.html","tf":0.006289308176100629}}}}}}}}}}}}}}}}}}}},"_":{"docs":{},"v":{"docs":{},"i":{"docs":{},"e":{"docs":{},"w":{"docs":{"base/table/table_view.html":{"ref":"base/table/table_view.html","tf":0.006289308176100629}}}}}}}}}}},"d":{"docs":{"core/layout/td.html":{"ref":"core/layout/td.html","tf":0.017857142857142856}}},"o":{"docs":{},"a":{"docs":{},"s":{"docs":{},"t":{"docs":{"base/toast.html":{"ref":"base/toast.html","tf":0.020833333333333332}}}}}},"e":{"docs":{},"x":{"docs":{},"t":{"docs":{},"_":{"docs":{},"b":{"docs":{},"u":{"docs":{},"t":{"docs":{},"t":{"docs":{},"o":{"docs":{},"n":{"docs":{"base/button/text_button.html":{"ref":"base/button/text_button.html","tf":0.009433962264150943}}}}}}}},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"g":{"docs":{},"g":{"docs":{"case/trigger/text_trigger.html":{"ref":"case/trigger/text_trigger.html","tf":0.05263157894736842}}}}}}},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{},"e":{"docs":{},"_":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"b":{"docs":{},"o":{"docs":{"case/combo/text_value_combo.html":{"ref":"case/combo/text_value_combo.html","tf":0.013513513513513514}}}}}}},"d":{"docs":{},"o":{"docs":{},"w":{"docs":{},"n":{"docs":{},"_":{"docs":{},"l":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{},"_":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"b":{"docs":{},"o":{"docs":{"case/combo/text_value_downlist_combo.html":{"ref":"case/combo/text_value_downlist_combo.html","tf":0.013513513513513514}}}}}}}}}}}}}}}}}}}}}}},"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.010309278350515}}}}}}}}},"a":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"_":{"docs":{},"e":{"docs":{},"d":{"docs":{},"i":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{"base/editor/textarea_editor.html":{"ref":"base/editor/textarea_editor.html","tf":0.021739130434782608}}}}}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"e":{"docs":{},"_":{"docs":{},"t":{"docs":{"case/table/tree_table.html":{"ref":"case/table/tree_table.html","tf":0.00510204081632653}}}}}}}},"e":{"docs":{},"x":{"docs":{},"t":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{},"(":{"docs":{},"{":{"docs":{},"}":{"docs":{},",":{"docs":{"core/abstract/virtual_list.html":{"ref":"core/abstract/virtual_list.html","tf":0.0125}}}}},"v":{"docs":{},",":{"docs":{"core/combination/loader.html":{"ref":"core/combination/loader.html","tf":0.006289308176100629}}}}}}}}},"p":{"docs":{},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{"core/combination/bi.expander.html":{"ref":"core/combination/bi.expander.html","tf":0.005494505494505495}},"e":{"docs":{},"r":{"docs":{},".":{"docs":{},"e":{"docs":{},"v":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"_":{"docs":{},"a":{"docs":{},"f":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"_":{"docs":{},"h":{"docs":{},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{},"v":{"docs":{},"i":{"docs":{},"e":{"docs":{},"w":{"docs":{"core/combination/bi.expander.html":{"ref":"core/combination/bi.expander.html","tf":0.005494505494505495}}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"i":{"docs":{},"t":{"docs":{"core/combination/bi.expander.html":{"ref":"core/combination/bi.expander.html","tf":0.005494505494505495}}}}}},"p":{"docs":{},"o":{"docs":{},"p":{"docs":{},"u":{"docs":{},"p":{"docs":{},"v":{"docs":{},"i":{"docs":{},"e":{"docs":{},"w":{"docs":{"core/combination/bi.expander.html":{"ref":"core/combination/bi.expander.html","tf":0.005494505494505495}}}}}}}}}}}}}}}}},"b":{"docs":{},"e":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"e":{"docs":{},"_":{"docs":{},"h":{"docs":{},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{},"v":{"docs":{},"i":{"docs":{},"e":{"docs":{},"w":{"docs":{"core/combination/bi.expander.html":{"ref":"core/combination/bi.expander.html","tf":0.005494505494505495}}}}}}}}}},"p":{"docs":{},"o":{"docs":{},"p":{"docs":{},"u":{"docs":{},"p":{"docs":{},"v":{"docs":{},"i":{"docs":{},"e":{"docs":{},"w":{"docs":{"core/combination/bi.expander.html":{"ref":"core/combination/bi.expander.html","tf":0.005494505494505495}}}}}}}}}}}}}}}}}},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{"core/combination/bi.expander.html":{"ref":"core/combination/bi.expander.html","tf":0.005494505494505495}}}}}},"o":{"docs":{},"l":{"docs":{},"l":{"docs":{},"a":{"docs":{},"p":{"docs":{},"s":{"docs":{"core/combination/bi.expander.html":{"ref":"core/combination/bi.expander.html","tf":0.005494505494505495}}}}}}}}},"e":{"docs":{},"x":{"docs":{},"p":{"docs":{},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{"core/combination/bi.expander.html":{"ref":"core/combination/bi.expander.html","tf":0.005494505494505495}}}}}}}},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"g":{"docs":{},"g":{"docs":{},"e":{"docs":{},"r":{"docs":{},"_":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{"core/combination/bi.expander.html":{"ref":"core/combination/bi.expander.html","tf":0.005494505494505495}}}}}}}}}}}}}}}}}}}}}}}}}}}},"c":{"docs":{},"e":{"docs":{},"l":{"docs":{},"_":{"docs":{},"t":{"docs":{"detailed/table/bi.excel_table.html":{"ref":"detailed/table/bi.excel_table.html","tf":0.0055248618784530384}}}}}}}},"m":{"docs":{},"p":{"docs":{},"t":{"docs":{},"y":{"docs":{},"f":{"docs":{},"n":{"docs":{"core/basic_button.html":{"ref":"core/basic_button.html","tf":0.007936507936507936},"case/list/list.select.html":{"ref":"case/list/list.select.html","tf":0.018867924528301886},"case/loader/list_loader.html":{"ref":"case/loader/list_loader.html","tf":0.03225806451612903},"case/loader/sort_list.html":{"ref":"case/loader/sort_list.html","tf":0.03225806451612903},"case/trigger/editor_trigger.html":{"ref":"case/trigger/editor_trigger.html","tf":0.04},"case/combo/bubble_combo.html":{"ref":"case/combo/bubble_combo.html","tf":0.005780346820809248},"case/tree/simple_tree.html":{"ref":"case/tree/simple_tree.html","tf":0.022222222222222223},"case/table/tree_table.html":{"ref":"case/table/tree_table.html","tf":0.015306122448979591},"case/table/layer_tree_table.html":{"ref":"case/table/layer_tree_table.html","tf":0.015306122448979591},"case/pager/direction_pager.html":{"ref":"case/pager/direction_pager.html","tf":0.02459016393442623},"case/clipboard.html":{"ref":"case/clipboard.html","tf":0.0625},"detailed/table/bi.page_table.html":{"ref":"detailed/table/bi.page_table.html","tf":0.03255813953488372},"detailed/combo/multilayer_single_tree_combo.html":{"ref":"detailed/combo/multilayer_single_tree_combo.html","tf":0.018867924528301886}}}}}}}},"d":{"docs":{},"i":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{"base/editor/editor.html":{"ref":"base/editor/editor.html","tf":0.005405405405405406}},".":{"docs":{},"e":{"docs":{},"v":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"_":{"docs":{},"b":{"docs":{},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{},"s":{"docs":{},"p":{"docs":{},"a":{"docs":{},"c":{"docs":{"base/editor/editor.html":{"ref":"base/editor/editor.html","tf":0.005405405405405406},"case/editor/shelter_editor.html":{"ref":"case/editor/shelter_editor.html","tf":0.0051813471502590676},"case/editor/sign_editor.html":{"ref":"case/editor/sign_editor.html","tf":0.005494505494505495},"case/editor/sign_initial_editor.html":{"ref":"case/editor/sign_initial_editor.html","tf":0.005154639175257732},"case/editor/state_editor.html":{"ref":"case/editor/state_editor.html","tf":0.005747126436781609}}}}}}}}},"l":{"docs":{},"u":{"docs":{},"r":{"docs":{"base/editor/editor.html":{"ref":"base/editor/editor.html","tf":0.005405405405405406},"case/editor/shelter_editor.html":{"ref":"case/editor/shelter_editor.html","tf":0.0051813471502590676},"case/editor/sign_editor.html":{"ref":"case/editor/sign_editor.html","tf":0.005494505494505495},"case/editor/sign_initial_editor.html":{"ref":"case/editor/sign_initial_editor.html","tf":0.005154639175257732},"case/editor/state_editor.html":{"ref":"case/editor/state_editor.html","tf":0.005747126436781609}}}}}},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{"base/editor/editor.html":{"ref":"base/editor/editor.html","tf":0.005405405405405406},"case/editor/shelter_editor.html":{"ref":"case/editor/shelter_editor.html","tf":0.0051813471502590676},"case/editor/sign_editor.html":{"ref":"case/editor/sign_editor.html","tf":0.005494505494505495},"case/editor/sign_initial_editor.html":{"ref":"case/editor/sign_initial_editor.html","tf":0.005154639175257732},"case/editor/state_editor.html":{"ref":"case/editor/state_editor.html","tf":0.005747126436781609}}}}}},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{},"k":{"docs":{"base/editor/editor.html":{"ref":"base/editor/editor.html","tf":0.005405405405405406},"case/editor/shelter_editor.html":{"ref":"case/editor/shelter_editor.html","tf":0.0051813471502590676},"case/editor/sign_editor.html":{"ref":"case/editor/sign_editor.html","tf":0.005494505494505495},"case/editor/sign_initial_editor.html":{"ref":"case/editor/sign_initial_editor.html","tf":0.005154639175257732},"case/editor/state_editor.html":{"ref":"case/editor/state_editor.html","tf":0.005747126436781609}}}}}},"o":{"docs":{},"n":{"docs":{},"f":{"docs":{},"i":{"docs":{},"r":{"docs":{},"m":{"docs":{"base/editor/editor.html":{"ref":"base/editor/editor.html","tf":0.005405405405405406},"case/editor/shelter_editor.html":{"ref":"case/editor/shelter_editor.html","tf":0.0051813471502590676},"case/editor/sign_editor.html":{"ref":"case/editor/sign_editor.html","tf":0.005494505494505495},"case/editor/sign_initial_editor.html":{"ref":"case/editor/sign_initial_editor.html","tf":0.005154639175257732},"case/editor/state_editor.html":{"ref":"case/editor/state_editor.html","tf":0.005747126436781609}}}}}}}}},"e":{"docs":{},"m":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{"base/editor/editor.html":{"ref":"base/editor/editor.html","tf":0.005405405405405406},"case/editor/shelter_editor.html":{"ref":"case/editor/shelter_editor.html","tf":0.0051813471502590676},"case/editor/sign_editor.html":{"ref":"case/editor/sign_editor.html","tf":0.005494505494505495},"case/editor/sign_initial_editor.html":{"ref":"case/editor/sign_initial_editor.html","tf":0.005154639175257732},"case/editor/state_editor.html":{"ref":"case/editor/state_editor.html","tf":0.005747126436781609}}}}}},"n":{"docs":{},"t":{"docs":{"base/editor/editor.html":{"ref":"base/editor/editor.html","tf":0.005405405405405406},"case/editor/shelter_editor.html":{"ref":"case/editor/shelter_editor.html","tf":0.0051813471502590676},"case/editor/sign_editor.html":{"ref":"case/editor/sign_editor.html","tf":0.005494505494505495},"case/editor/sign_initial_editor.html":{"ref":"case/editor/sign_initial_editor.html","tf":0.005154639175257732},"case/editor/state_editor.html":{"ref":"case/editor/state_editor.html","tf":0.005747126436781609}}}},"r":{"docs":{},"r":{"docs":{},"o":{"docs":{},"r":{"docs":{"base/editor/editor.html":{"ref":"base/editor/editor.html","tf":0.005405405405405406},"case/editor/shelter_editor.html":{"ref":"case/editor/shelter_editor.html","tf":0.0051813471502590676},"case/editor/sign_editor.html":{"ref":"case/editor/sign_editor.html","tf":0.005494505494505495},"case/editor/sign_initial_editor.html":{"ref":"case/editor/sign_initial_editor.html","tf":0.005154639175257732},"case/editor/state_editor.html":{"ref":"case/editor/state_editor.html","tf":0.005747126436781609}}}}}}},"f":{"docs":{},"o":{"docs":{},"c":{"docs":{},"u":{"docs":{"base/editor/editor.html":{"ref":"base/editor/editor.html","tf":0.005405405405405406},"case/editor/shelter_editor.html":{"ref":"case/editor/shelter_editor.html","tf":0.0051813471502590676},"case/editor/sign_editor.html":{"ref":"case/editor/sign_editor.html","tf":0.005494505494505495},"case/editor/sign_initial_editor.html":{"ref":"case/editor/sign_initial_editor.html","tf":0.005154639175257732},"case/editor/state_editor.html":{"ref":"case/editor/state_editor.html","tf":0.005747126436781609}}}}}},"k":{"docs":{},"e":{"docs":{},"y":{"docs":{},"_":{"docs":{},"d":{"docs":{},"o":{"docs":{},"w":{"docs":{},"n":{"docs":{"base/editor/editor.html":{"ref":"base/editor/editor.html","tf":0.005405405405405406},"case/editor/shelter_editor.html":{"ref":"case/editor/shelter_editor.html","tf":0.0051813471502590676},"case/editor/sign_editor.html":{"ref":"case/editor/sign_editor.html","tf":0.005494505494505495},"case/editor/sign_initial_editor.html":{"ref":"case/editor/sign_initial_editor.html","tf":0.005154639175257732},"case/editor/state_editor.html":{"ref":"case/editor/state_editor.html","tf":0.005747126436781609}}}}}}}}}},"p":{"docs":{},"a":{"docs":{},"u":{"docs":{},"s":{"docs":{"base/editor/editor.html":{"ref":"base/editor/editor.html","tf":0.005405405405405406},"case/editor/shelter_editor.html":{"ref":"case/editor/shelter_editor.html","tf":0.0051813471502590676},"case/editor/sign_editor.html":{"ref":"case/editor/sign_editor.html","tf":0.005494505494505495},"case/editor/sign_initial_editor.html":{"ref":"case/editor/sign_initial_editor.html","tf":0.005154639175257732},"case/editor/state_editor.html":{"ref":"case/editor/state_editor.html","tf":0.005747126436781609}}}}}},"r":{"docs":{},"e":{"docs":{},"m":{"docs":{},"o":{"docs":{},"v":{"docs":{"base/editor/editor.html":{"ref":"base/editor/editor.html","tf":0.005405405405405406},"case/editor/shelter_editor.html":{"ref":"case/editor/shelter_editor.html","tf":0.0051813471502590676},"case/editor/sign_editor.html":{"ref":"case/editor/sign_editor.html","tf":0.005494505494505495},"case/editor/sign_initial_editor.html":{"ref":"case/editor/sign_initial_editor.html","tf":0.005154639175257732},"case/editor/state_editor.html":{"ref":"case/editor/state_editor.html","tf":0.005747126436781609}}}}},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"c":{"docs":{},"t":{"docs":{"base/editor/editor.html":{"ref":"base/editor/editor.html","tf":0.005405405405405406},"case/editor/shelter_editor.html":{"ref":"case/editor/shelter_editor.html","tf":0.0051813471502590676},"case/editor/sign_editor.html":{"ref":"case/editor/sign_editor.html","tf":0.005494505494505495},"case/editor/sign_initial_editor.html":{"ref":"case/editor/sign_initial_editor.html","tf":0.005154639175257732},"case/editor/state_editor.html":{"ref":"case/editor/state_editor.html","tf":0.005747126436781609}}}}}}}}}},"s":{"docs":{},"p":{"docs":{},"a":{"docs":{},"c":{"docs":{"base/editor/editor.html":{"ref":"base/editor/editor.html","tf":0.005405405405405406},"case/editor/shelter_editor.html":{"ref":"case/editor/shelter_editor.html","tf":0.0051813471502590676},"case/editor/sign_editor.html":{"ref":"case/editor/sign_editor.html","tf":0.005494505494505495},"case/editor/sign_initial_editor.html":{"ref":"case/editor/sign_initial_editor.html","tf":0.005154639175257732},"case/editor/state_editor.html":{"ref":"case/editor/state_editor.html","tf":0.005747126436781609}}}}},"t":{"docs":{},"a":{"docs":{},"r":{"docs":{},"t":{"docs":{"base/editor/editor.html":{"ref":"base/editor/editor.html","tf":0.005405405405405406},"case/editor/shelter_editor.html":{"ref":"case/editor/shelter_editor.html","tf":0.0051813471502590676},"case/editor/sign_editor.html":{"ref":"case/editor/sign_editor.html","tf":0.005494505494505495},"case/editor/sign_initial_editor.html":{"ref":"case/editor/sign_initial_editor.html","tf":0.005154639175257732},"case/editor/state_editor.html":{"ref":"case/editor/state_editor.html","tf":0.005747126436781609}}}}},"o":{"docs":{},"p":{"docs":{"base/editor/editor.html":{"ref":"base/editor/editor.html","tf":0.005405405405405406},"case/editor/shelter_editor.html":{"ref":"case/editor/shelter_editor.html","tf":0.0051813471502590676},"case/editor/sign_editor.html":{"ref":"case/editor/sign_editor.html","tf":0.005494505494505495},"case/editor/sign_initial_editor.html":{"ref":"case/editor/sign_initial_editor.html","tf":0.005154639175257732},"case/editor/state_editor.html":{"ref":"case/editor/state_editor.html","tf":0.005747126436781609}}}}}},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"i":{"docs":{},"d":{"docs":{"base/editor/editor.html":{"ref":"base/editor/editor.html","tf":0.005405405405405406},"case/editor/shelter_editor.html":{"ref":"case/editor/shelter_editor.html","tf":0.0051813471502590676},"case/editor/sign_editor.html":{"ref":"case/editor/sign_editor.html","tf":0.005494505494505495},"case/editor/sign_initial_editor.html":{"ref":"case/editor/sign_initial_editor.html","tf":0.005154639175257732},"case/editor/state_editor.html":{"ref":"case/editor/state_editor.html","tf":0.005747126436781609}}}}}}}}}}}}}},"_":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"g":{"docs":{},"g":{"docs":{"case/trigger/editor_trigger.html":{"ref":"case/trigger/editor_trigger.html","tf":0.02}}}}}}}}}}}}}},"m":{"docs":{},"a":{"docs":{},"p":{"docs":{},"(":{"docs":{},"[":{"docs":{},"{":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{},"e":{"docs":{},":":{"docs":{"core/abstract/virtual_list.html":{"ref":"core/abstract/virtual_list.html","tf":0.0125}}}}}}}}}}}},"k":{"docs":{},"e":{"docs":{},"a":{"docs":{},"r":{"docs":{},"r":{"docs":{},"a":{"docs":{},"y":{"docs":{},"(":{"1":{"0":{"0":{"docs":{},",":{"docs":{"case/combo/bubble_combo.html":{"ref":"case/combo/bubble_combo.html","tf":0.005780346820809248}}}},"docs":{}},"docs":{}},"docs":{}}}}}}}}}},"s":{"docs":{},"g":{"docs":{"base/message.html":{"ref":"base/message.html","tf":0.02127659574468085}},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"f":{"docs":{},"i":{"docs":{},"r":{"docs":{},"m":{"docs":{},"(":{"docs":{},"'":{"docs":{},"测":{"docs":{},"试":{"docs":{},"消":{"docs":{},"息":{"docs":{},"框":{"docs":{},"'":{"docs":{},",":{"docs":{},"\"":{"docs":{},"我":{"docs":{},"是":{"docs":{},"测":{"docs":{},"试":{"docs":{},"消":{"docs":{},"息":{"docs":{},"框":{"docs":{},"的":{"docs":{},"内":{"docs":{},"容":{"docs":{},"\"":{"docs":{},")":{"docs":{},";":{"docs":{"base/message.html":{"ref":"base/message.html","tf":0.02127659574468085}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"t":{"docs":{},"o":{"docs":{},"a":{"docs":{},"s":{"docs":{},"t":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"这":{"docs":{},"是":{"docs":{},"一":{"docs":{},"条":{"docs":{},"简":{"docs":{},"单":{"docs":{},"的":{"docs":{},"数":{"docs":{},"据":{"docs":{},"\"":{"docs":{},")":{"docs":{},";":{"docs":{"detailed/bi.button/tooltip.html":{"ref":"detailed/bi.button/tooltip.html","tf":0.011363636363636364}}}}}}}}}}}}}}}}}}}}},"a":{"docs":{},"l":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"(":{"docs":{},"t":{"docs":{},"i":{"docs":{},"t":{"docs":{},"l":{"docs":{},"e":{"docs":{},",":{"docs":{"detailed/dialog.html":{"ref":"detailed/dialog.html","tf":0.043478260869565216}}}}}}}}}}}}}}}}},"u":{"docs":{},"l":{"docs":{},"t":{"docs":{},"i":{"docs":{},"f":{"docs":{},"i":{"docs":{},"l":{"docs":{},"e":{"docs":{},"_":{"docs":{},"e":{"docs":{},"d":{"docs":{},"i":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{"base/editor/multifile_editor.html":{"ref":"base/editor/multifile_editor.html","tf":0.015384615384615385}}}}}}}}},"e":{"docs":{},"d":{"docs":{},"i":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},".":{"docs":{},"e":{"docs":{},"v":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"_":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"g":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{"base/editor/multifile_editor.html":{"ref":"base/editor/multifile_editor.html","tf":0.015384615384615385}}}}}}}}}},"u":{"docs":{},"p":{"docs":{},"l":{"docs":{},"o":{"docs":{},"a":{"docs":{},"d":{"docs":{"base/editor/multifile_editor.html":{"ref":"base/editor/multifile_editor.html","tf":0.015384615384615385}},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"r":{"docs":{},"t":{"docs":{"base/editor/multifile_editor.html":{"ref":"base/editor/multifile_editor.html","tf":0.015384615384615385}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"_":{"docs":{},"s":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"_":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{"case/button/multi_select_item.html":{"ref":"case/button/multi_select_item.html","tf":0.017543859649122806}}}}}}}}}}}}},"p":{"docs":{},"o":{"docs":{},"p":{"docs":{},"u":{"docs":{},"p":{"docs":{},"_":{"docs":{},"v":{"docs":{},"i":{"docs":{},"e":{"docs":{},"w":{"docs":{"case/layer/multi_popup_layer.html":{"ref":"case/layer/multi_popup_layer.html","tf":0.04}}}}}}}}}}}},"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":0.010869565217391304}}}}}}}}}}}}},"t":{"docs":{},"r":{"docs":{},"e":{"docs":{},"e":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"b":{"docs":{},"o":{"docs":{},".":{"docs":{},"e":{"docs":{},"v":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"_":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"f":{"docs":{},"i":{"docs":{},"r":{"docs":{},"m":{"docs":{"detailed/tree/bi.multi_tree_combo.html":{"ref":"detailed/tree/bi.multi_tree_combo.html","tf":0.010869565217391304}}}}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"b":{"docs":{},"o":{"docs":{},".":{"docs":{},"e":{"docs":{},"v":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"_":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"f":{"docs":{},"i":{"docs":{},"r":{"docs":{},"m":{"docs":{"detailed/multi_select_combo.html":{"ref":"detailed/multi_select_combo.html","tf":0.04}}}}}}}}}}}}}}}}}}}}}}}}}}},"l":{"docs":{},"a":{"docs":{},"y":{"docs":{},"e":{"docs":{},"r":{"docs":{},"_":{"docs":{},"s":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"l":{"docs":{},"e":{"docs":{},"_":{"docs":{},"t":{"docs":{},"r":{"docs":{},"e":{"docs":{},"e":{"docs":{},"_":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"b":{"docs":{},"o":{"docs":{"detailed/combo/multilayer_single_tree_combo.html":{"ref":"detailed/combo/multilayer_single_tree_combo.html","tf":0.018867924528301886}}}}}}}}}}}}}}}}}},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"_":{"docs":{},"t":{"docs":{},"r":{"docs":{},"e":{"docs":{},"e":{"docs":{},"_":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"b":{"docs":{},"o":{"docs":{"detailed/combo/multilayer_select_tree_combo.html":{"ref":"detailed/combo/multilayer_select_tree_combo.html","tf":0.02040816326530612}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{},"h":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"b":{"docs":{},"o":{"docs":{},".":{"docs":{},"e":{"docs":{},"v":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"_":{"docs":{},"b":{"docs":{},"e":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"e":{"docs":{},"_":{"docs":{},"p":{"docs":{},"o":{"docs":{},"p":{"docs":{},"u":{"docs":{},"p":{"docs":{},"v":{"docs":{},"i":{"docs":{},"e":{"docs":{},"w":{"docs":{"detailed/month_combo.html":{"ref":"detailed/month_combo.html","tf":0.03571428571428571}}}}}}}}}}}}}}}}}},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"f":{"docs":{},"i":{"docs":{},"r":{"docs":{},"m":{"docs":{"detailed/month_combo.html":{"ref":"detailed/month_combo.html","tf":0.03571428571428571}}}}}}}}}}}}}}}}}}}}}}}}}},"u":{"docs":{},"u":{"docs":{},"i":{"docs":{},"d":{"docs":{},"(":{"docs":{},")":{"docs":{"core/combination/loader.html":{"ref":"core/combination/loader.html","tf":0.006289308176100629}},";":{"docs":{"core/layer/layer_float_box.html":{"ref":"core/layer/layer_float_box.html","tf":0.012345679012345678}}}}}}}}},"n":{"docs":{},"a":{"docs":{},"v":{"docs":{},"i":{"docs":{},"g":{"docs":{"core/combination/navigation.html":{"ref":"core/combination/navigation.html","tf":0.007194244604316547}}}}}},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{},"b":{"docs":{},"u":{"docs":{},"t":{"docs":{},"t":{"docs":{},"o":{"docs":{},"n":{"docs":{"core/node_button.html":{"ref":"core/node_button.html","tf":0.02631578947368421}}}}}}}}}}},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"r":{"docs":{},"i":{"docs":{},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},".":{"docs":{},"e":{"docs":{},"v":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"_":{"docs":{},"e":{"docs":{},"r":{"docs":{},"r":{"docs":{},"o":{"docs":{},"r":{"docs":{"detailed/numeric_interval.html":{"ref":"detailed/numeric_interval.html","tf":0.017241379310344827}}}}}}},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"i":{"docs":{},"d":{"docs":{"detailed/numeric_interval.html":{"ref":"detailed/numeric_interval.html","tf":0.017241379310344827}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{},"o":{"docs":{},"m":{"docs":{},"(":{"1":{"docs":{},",":{"docs":{"core/combination/navigation.html":{"ref":"core/combination/navigation.html","tf":0.007194244604316547}}}},"docs":{}}}}}}},"e":{"docs":{},"s":{"docs":{},"i":{"docs":{},"z":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"_":{"docs":{},"t":{"docs":{"base/table/resizable_table.html":{"ref":"base/table/resizable_table.html","tf":0.00625}}}}}}}}}},"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":0.005263157894736842}}}}}}}}}}}}}},"s":{"docs":{},"e":{"docs":{},"a":{"docs":{},"r":{"docs":{},"c":{"docs":{},"h":{"docs":{"core/combination/searcher.html":{"ref":"core/combination/searcher.html","tf":0.004608294930875576}},"e":{"docs":{},"r":{"docs":{},".":{"docs":{},"e":{"docs":{},"v":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"_":{"docs":{},"a":{"docs":{},"f":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"_":{"docs":{},"i":{"docs":{},"n":{"docs":{},"i":{"docs":{},"t":{"docs":{"core/combination/searcher.html":{"ref":"core/combination/searcher.html","tf":0.004608294930875576}}}}}}}}}}}},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{"core/combination/searcher.html":{"ref":"core/combination/searcher.html","tf":0.004608294930875576}}}}}}},"p":{"docs":{},"a":{"docs":{},"u":{"docs":{},"s":{"docs":{"core/combination/searcher.html":{"ref":"core/combination/searcher.html","tf":0.004608294930875576}}}}}},"s":{"docs":{},"e":{"docs":{},"a":{"docs":{},"r":{"docs":{},"c":{"docs":{},"h":{"docs":{"core/combination/searcher.html":{"ref":"core/combination/searcher.html","tf":0.004608294930875576}}}}}}},"t":{"docs":{},"a":{"docs":{},"r":{"docs":{},"t":{"docs":{"core/combination/searcher.html":{"ref":"core/combination/searcher.html","tf":0.004608294930875576}}}}},"o":{"docs":{},"p":{"docs":{"core/combination/searcher.html":{"ref":"core/combination/searcher.html","tf":0.004608294930875576}}}}}}}}}}}}},"_":{"docs":{},"v":{"docs":{},"i":{"docs":{},"e":{"docs":{},"w":{"docs":{"core/layer/layer_searcher.html":{"ref":"core/layer/layer_searcher.html","tf":0.009259259259259259}}}}}}}},"d":{"docs":{},"i":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},".":{"docs":{},"e":{"docs":{},"v":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"_":{"docs":{},"c":{"docs":{},"l":{"docs":{},"e":{"docs":{},"a":{"docs":{},"r":{"docs":{"detailed/text_input/bi.search_editor.html":{"ref":"detailed/text_input/bi.search_editor.html","tf":0.010101010101010102}}}}}}}}}}}}}}}}}}}},"_":{"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.01010101010101}}}}}}}}}}}}},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},".":{"docs":{},"s":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"l":{"docs":{"core/layer/layer_searcher.html":{"ref":"core/layer/layer_searcher.html","tf":0.009259259259259259}}}}}}}}}}},"_":{"docs":{},"l":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{"case/list/list.select.html":{"ref":"case/list/list.select.html","tf":0.009433962264150943}}}}}},"t":{"docs":{},"r":{"docs":{},"e":{"docs":{},"e":{"docs":{},"_":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"b":{"docs":{},"o":{"docs":{"detailed/combo/select_tree_combo.html":{"ref":"detailed/combo/select_tree_combo.html","tf":0.02040816326530612}}}}}}}}}}}}}}}}}},"w":{"docs":{},"i":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{"core/combination/switcher.html":{"ref":"core/combination/switcher.html","tf":0.00625},"core/combination/tab.html":{"ref":"core/combination/tab.html","tf":0.00684931506849315}},"_":{"docs":{},"t":{"docs":{},"r":{"docs":{},"e":{"docs":{"detailed/tree/bi.switch_tree.html":{"ref":"detailed/tree/bi.switch_tree.html","tf":0.013157894736842105}}}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"l":{"docs":{"core/single.html":{"ref":"core/single.html","tf":0.013888888888888888}},"e":{"docs":{},"_":{"docs":{},"s":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"_":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{"case/button/single_select_item.html":{"ref":"case/button/single_select_item.html","tf":0.016129032258064516}}}}}},"r":{"docs":{},"a":{"docs":{},"d":{"docs":{},"i":{"docs":{},"o":{"docs":{},"_":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{"case/button/single_select_radio_item.html":{"ref":"case/button/single_select_radio_item.html","tf":0.016129032258064516}}}}}}}}}}}}}}}}}}},"t":{"docs":{},"r":{"docs":{},"e":{"docs":{},"e":{"docs":{},"_":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"b":{"docs":{},"o":{"docs":{"detailed/combo/single_tree_combo.html":{"ref":"detailed/combo/single_tree_combo.html","tf":0.01694915254237288}}}}}}}}}}}}},"t":{"docs":{},"r":{"docs":{},"e":{"docs":{},"e":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"b":{"docs":{},"o":{"docs":{},".":{"docs":{},"e":{"docs":{},"v":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"_":{"docs":{},"b":{"docs":{},"e":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"e":{"docs":{},"_":{"docs":{},"p":{"docs":{},"o":{"docs":{},"p":{"docs":{},"u":{"docs":{},"p":{"docs":{},"v":{"docs":{},"i":{"docs":{},"e":{"docs":{},"w":{"docs":{"detailed/combo/single_tree_combo.html":{"ref":"detailed/combo/single_tree_combo.html","tf":0.01694915254237288}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"g":{"docs":{},"n":{"docs":{},"_":{"docs":{},"e":{"docs":{},"d":{"docs":{},"i":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{"case/editor/sign_editor.html":{"ref":"case/editor/sign_editor.html","tf":0.005494505494505495}}}}}}}},"i":{"docs":{},"n":{"docs":{},"i":{"docs":{},"t":{"docs":{},"i":{"docs":{},"a":{"docs":{},"l":{"docs":{},"_":{"docs":{},"e":{"docs":{},"d":{"docs":{},"i":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{"case/editor/sign_initial_editor.html":{"ref":"case/editor/sign_initial_editor.html","tf":0.005154639175257732}}}}}}}}}}}}}}}}}}},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{},"e":{"docs":{},"_":{"docs":{},"t":{"docs":{},"r":{"docs":{},"e":{"docs":{"case/tree/simple_tree.html":{"ref":"case/tree/simple_tree.html","tf":0.022222222222222223}}}}}}}}}}},"v":{"docs":{},"g":{"docs":{"base/svg.html":{"ref":"base/svg.html","tf":0.011235955056179775}}}},"h":{"docs":{},"e":{"docs":{},"l":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"_":{"docs":{},"e":{"docs":{},"d":{"docs":{},"i":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{"case/editor/shelter_editor.html":{"ref":"case/editor/shelter_editor.html","tf":0.0051813471502590676}}}}}}}}}}}}}}},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"_":{"docs":{},"e":{"docs":{},"d":{"docs":{},"i":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{"case/editor/state_editor.html":{"ref":"case/editor/state_editor.html","tf":0.005747126436781609}}}}}}}}}},"i":{"docs":{},"c":{"docs":{},"_":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"b":{"docs":{},"o":{"docs":{"case/combo/static_combo.html":{"ref":"case/combo/static_combo.html","tf":0.0125}}}}}}}}}}}}},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{},"_":{"docs":{},"l":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{"case/loader/sort_list.html":{"ref":"case/loader/sort_list.html","tf":0.010752688172043012}}}}}}}}}},"g":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"case/segment.html":{"ref":"case/segment.html","tf":0.009345794392523364},"detailed/bi.button/segment.html":{"ref":"detailed/bi.button/segment.html","tf":0.009345794392523364}}}}}}}},"l":{"docs":{},"i":{"docs":{},"d":{"docs":{"detailed/slider.html":{"ref":"detailed/slider.html","tf":0.029411764705882353}}}}}},"d":{"docs":{},"i":{"docs":{},"r":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},".":{"docs":{},"t":{"docs":{},"o":{"docs":{},"p":{"docs":{"core/combination/switcher.html":{"ref":"core/combination/switcher.html","tf":0.00625},"core/layer/layer_popup.html":{"ref":"core/layer/layer_popup.html","tf":0.0058823529411764705},"case/list/list.select.html":{"ref":"case/list/list.select.html","tf":0.009433962264150943}}}}},"b":{"docs":{},"o":{"docs":{},"t":{"docs":{},"t":{"docs":{},"o":{"docs":{},"m":{"docs":{"case/tree/branch_relation.html":{"ref":"case/tree/branch_relation.html","tf":0.02040816326530612}}}}}}}},"r":{"docs":{},"i":{"docs":{},"g":{"docs":{},"h":{"docs":{},"t":{"docs":{},",":{"docs":{"case/tree/branch_relation.html":{"ref":"case/tree/branch_relation.html","tf":0.02040816326530612}}}}}}}}},"_":{"docs":{},"p":{"docs":{},"a":{"docs":{},"g":{"docs":{"case/pager/direction_pager.html":{"ref":"case/pager/direction_pager.html","tf":0.00819672131147541}}}}}}}}}}}}},"s":{"docs":{},"p":{"docs":{},"l":{"docs":{},"a":{"docs":{},"y":{"docs":{},"_":{"docs":{},"t":{"docs":{},"r":{"docs":{},"e":{"docs":{"case/tree/display_tree.html":{"ref":"case/tree/display_tree.html","tf":0.030303030303030304}}}}}}}}}}}},"o":{"docs":{},"w":{"docs":{},"n":{"docs":{},"l":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"b":{"docs":{},"o":{"docs":{},".":{"docs":{},"e":{"docs":{},"v":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"_":{"docs":{},"b":{"docs":{},"e":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"e":{"docs":{},"_":{"docs":{},"p":{"docs":{},"o":{"docs":{},"p":{"docs":{},"u":{"docs":{},"p":{"docs":{},"v":{"docs":{},"i":{"docs":{},"e":{"docs":{},"w":{"docs":{"detailed/down_list_combo.html":{"ref":"detailed/down_list_combo.html","tf":0.006578947368421052}}}}}}}}}}}}}}}}}},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{"detailed/down_list_combo.html":{"ref":"detailed/down_list_combo.html","tf":0.006578947368421052}}}}}}},"s":{"docs":{},"o":{"docs":{},"n":{"docs":{},"_":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{},"e":{"docs":{},"_":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{"detailed/down_list_combo.html":{"ref":"detailed/down_list_combo.html","tf":0.006578947368421052}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"p":{"docs":{},"o":{"docs":{},"p":{"docs":{},"o":{"docs":{},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},".":{"docs":{},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"(":{"docs":{},"i":{"docs":{},"d":{"docs":{},",":{"docs":{"core/layer/layer_float_box.html":{"ref":"core/layer/layer_float_box.html","tf":0.012345679012345678}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"m":{"docs":{},"o":{"docs":{},"v":{"docs":{},"e":{"docs":{},"(":{"docs":{},"i":{"docs":{},"d":{"docs":{},")":{"docs":{},";":{"docs":{"core/layer/layer_float_box.html":{"ref":"core/layer/layer_float_box.html","tf":0.012345679012345678}}}}}}}}}}}}}}}}}}},"u":{"docs":{},"p":{"docs":{},"_":{"docs":{},"v":{"docs":{},"i":{"docs":{},"e":{"docs":{},"w":{"docs":{"core/layer/layer_popup.html":{"ref":"core/layer/layer_popup.html","tf":0.0058823529411764705}}}}}},"p":{"docs":{},"a":{"docs":{},"n":{"docs":{},"e":{"docs":{},"l":{"docs":{"case/layer/layer_panel.html":{"ref":"case/layer/layer_panel.html","tf":0.010752688172043012}}}}}}}},"p":{"docs":{},"a":{"docs":{},"n":{"docs":{},"e":{"docs":{},"l":{"docs":{},".":{"docs":{},"e":{"docs":{},"v":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"_":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{"case/layer/layer_panel.html":{"ref":"case/layer/layer_panel.html","tf":0.010752688172043012}}}}}},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{},"k":{"docs":{},"_":{"docs":{},"t":{"docs":{},"o":{"docs":{},"o":{"docs":{},"l":{"docs":{},"b":{"docs":{},"a":{"docs":{},"r":{"docs":{},"_":{"docs":{},"b":{"docs":{},"u":{"docs":{},"t":{"docs":{},"t":{"docs":{},"o":{"docs":{},"n":{"docs":{"case/layer/layer_panel.html":{"ref":"case/layer/layer_panel.html","tf":0.010752688172043012}}}}}}}}}}}}}}}}}}}},"o":{"docs":{},"s":{"docs":{"case/layer/layer_panel.html":{"ref":"case/layer/layer_panel.html","tf":0.010752688172043012}}}}}}}}}}}}}}}}}}}}}},"a":{"docs":{},"n":{"docs":{"core/pane.html":{"ref":"core/pane.html","tf":0.0196078431372549}},"e":{"docs":{},"l":{"docs":{"case/layer/panel.html":{"ref":"case/layer/panel.html","tf":0.015873015873015872}}}}},"g":{"docs":{"base/pager.html":{"ref":"base/pager.html","tf":0.006666666666666667}},"e":{"docs":{},"r":{"docs":{},".":{"docs":{},"e":{"docs":{},"v":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"_":{"docs":{},"a":{"docs":{},"f":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"_":{"docs":{},"p":{"docs":{},"o":{"docs":{},"p":{"docs":{},"u":{"docs":{},"l":{"docs":{"base/pager.html":{"ref":"base/pager.html","tf":0.006666666666666667}}}}}}}}}}}}}}}}}}}}},"_":{"docs":{},"t":{"docs":{"detailed/table/bi.page_table.html":{"ref":"detailed/table/bi.page_table.html","tf":0.004651162790697674}}}}}}},"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":0.006756756756756757}}}}}}}}}}},"i":{"1":{"8":{"docs":{},"n":{"docs":{},"t":{"docs":{},"e":{"docs":{},"x":{"docs":{},"t":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"b":{"docs":{},"i":{"docs":{"core/layer/layer_searcher.html":{"ref":"core/layer/layer_searcher.html","tf":0.009259259259259259},"core/pane.html":{"ref":"core/pane.html","tf":0.0196078431372549},"case/layer/multi_popup_layer.html":{"ref":"case/layer/multi_popup_layer.html","tf":0.04}}}}}}}}}}}},"docs":{}},"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"_":{"docs":{},"b":{"docs":{},"u":{"docs":{},"t":{"docs":{},"t":{"docs":{},"o":{"docs":{},"n":{"docs":{"base/button/icon_button.html":{"ref":"base/button/icon_button.html","tf":0.02564102564102564}}}}}}}},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"g":{"docs":{},"g":{"docs":{"case/trigger/icon_trigger.html":{"ref":"case/trigger/icon_trigger.html","tf":0.1111111111111111}}}}}}},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"b":{"docs":{},"o":{"docs":{"case/combo/icon_combo.html":{"ref":"case/combo/icon_combo.html","tf":0.007751937984496124}}}}}}}}}}},"m":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"_":{"docs":{},"b":{"docs":{},"u":{"docs":{},"t":{"docs":{},"t":{"docs":{},"o":{"docs":{},"n":{"docs":{"base/button/image_button.html":{"ref":"base/button/image_button.html","tf":0.014925373134328358}}}}}}}}}}}}}},"w":{"docs":{},"i":{"docs":{},"d":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{"core/widget.html":{"ref":"core/widget.html","tf":0.00510204081632653},"core/pane.html":{"ref":"core/pane.html","tf":0.0196078431372549}}}}}}}},"a":{"docs":{},"d":{"docs":{},"a":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"v":{"docs":{},"e":{"docs":{},"_":{"docs":{},"t":{"docs":{"case/table/adaptive_table.html":{"ref":"case/table/adaptive_table.html","tf":0.006060606060606061}}}}}}}}}}},"l":{"docs":{},"l":{"docs":{},"_":{"docs":{},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{},"_":{"docs":{},"p":{"docs":{},"a":{"docs":{},"g":{"docs":{"case/pager/all_count_pager.html":{"ref":"case/pager/all_count_pager.html","tf":0.014705882352941176}}}}}}}}}}}}}}},"y":{"docs":{},"e":{"docs":{},"a":{"docs":{},"r":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"b":{"docs":{},"o":{"docs":{},".":{"docs":{},"e":{"docs":{},"v":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"_":{"docs":{},"b":{"docs":{},"e":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"e":{"docs":{},"_":{"docs":{},"p":{"docs":{},"o":{"docs":{},"p":{"docs":{},"u":{"docs":{},"p":{"docs":{},"v":{"docs":{},"i":{"docs":{},"e":{"docs":{},"w":{"docs":{"detailed/year_combo.html":{"ref":"detailed/year_combo.html","tf":0.025}}}}}}}}}}}}}}}}}},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"f":{"docs":{},"i":{"docs":{},"r":{"docs":{},"m":{"docs":{"detailed/year_combo.html":{"ref":"detailed/year_combo.html","tf":0.025}}}}}}}}}}}}}}}}}}}}},"m":{"docs":{},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{},"h":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"b":{"docs":{},"o":{"docs":{},".":{"docs":{},"e":{"docs":{},"v":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"_":{"docs":{},"b":{"docs":{},"e":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"e":{"docs":{},"_":{"docs":{},"p":{"docs":{},"o":{"docs":{},"p":{"docs":{},"u":{"docs":{},"p":{"docs":{},"v":{"docs":{},"i":{"docs":{},"e":{"docs":{},"w":{"docs":{"detailed/date/year_month_combo.html":{"ref":"detailed/date/year_month_combo.html","tf":0.029411764705882353}}}}}}}}}}}}}}}}}},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"f":{"docs":{},"i":{"docs":{},"r":{"docs":{},"m":{"docs":{"detailed/date/year_month_combo.html":{"ref":"detailed/date/year_month_combo.html","tf":0.029411764705882353}}}}}}}}}}}}}}}}}}}}}}}}}},"q":{"docs":{},"u":{"docs":{},"a":{"docs":{},"r":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"b":{"docs":{},"o":{"docs":{},".":{"docs":{},"e":{"docs":{},"v":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"_":{"docs":{},"b":{"docs":{},"e":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"e":{"docs":{},"_":{"docs":{},"p":{"docs":{},"o":{"docs":{},"p":{"docs":{},"u":{"docs":{},"p":{"docs":{},"v":{"docs":{},"i":{"docs":{},"e":{"docs":{},"w":{"docs":{"detailed/date/year_quarter_combo.html":{"ref":"detailed/date/year_quarter_combo.html","tf":0.03225806451612903}}}}}}}}}}}}}}}}}},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"f":{"docs":{},"i":{"docs":{},"r":{"docs":{},"m":{"docs":{"detailed/date/year_quarter_combo.html":{"ref":"detailed/date/year_quarter_combo.html","tf":0.03225806451612903}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"q":{"docs":{},"u":{"docs":{},"a":{"docs":{},"r":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"b":{"docs":{},"o":{"docs":{},".":{"docs":{},"e":{"docs":{},"v":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"_":{"docs":{},"b":{"docs":{},"e":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"e":{"docs":{},"_":{"docs":{},"p":{"docs":{},"o":{"docs":{},"p":{"docs":{},"u":{"docs":{},"p":{"docs":{},"v":{"docs":{},"i":{"docs":{},"e":{"docs":{},"w":{"docs":{"detailed/quarter_combo.html":{"ref":"detailed/quarter_combo.html","tf":0.03571428571428571}}}}}}}}}}}}}}}}}},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"f":{"docs":{},"i":{"docs":{},"r":{"docs":{},"m":{"docs":{"detailed/quarter_combo.html":{"ref":"detailed/quarter_combo.html","tf":0.03571428571428571}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"v":{"docs":{"core/basic_button.html":{"ref":"core/basic_button.html","tf":0.007936507936507936},"case/combo/bubble_combo.html":{"ref":"case/combo/bubble_combo.html","tf":0.005780346820809248}}}}}}},"o":{"docs":{},"o":{"docs":{},"l":{"docs":{},"e":{"docs":{},"a":{"docs":{},"n":{"docs":{"core/layout/vertical.html":{"ref":"core/layout/vertical.html","tf":0.01282051282051282},"core/layout/horizontal.html":{"ref":"core/layout/horizontal.html","tf":0.010752688172043012},"core/layout/table.html":{"ref":"core/layout/table.html","tf":0.012048192771084338},"core/abstract/grid_view.html":{"ref":"core/abstract/grid_view.html","tf":0.01282051282051282},"core/abstract/collection_view.html":{"ref":"core/abstract/collection_view.html","tf":0.014184397163120567},"core/combination/bi.combo.html":{"ref":"core/combination/bi.combo.html","tf":0.03365384615384615},"core/combination/bi.expander.html":{"ref":"core/combination/bi.expander.html","tf":0.01098901098901099},"core/combination/group_combo.html":{"ref":"core/combination/group_combo.html","tf":0.023622047244094488},"core/combination/loader.html":{"ref":"core/combination/loader.html","tf":0.0440251572327044},"core/combination/navigation.html":{"ref":"core/combination/navigation.html","tf":0.02158273381294964},"core/combination/searcher.html":{"ref":"core/combination/searcher.html","tf":0.013824884792626729},"core/combination/switcher.html":{"ref":"core/combination/switcher.html","tf":0.00625},"core/combination/tab.html":{"ref":"core/combination/tab.html","tf":0.0136986301369863},"core/layer/layer_popup.html":{"ref":"core/layer/layer_popup.html","tf":0.01764705882352941},"core/widget.html":{"ref":"core/widget.html","tf":0.02040816326530612},"core/single.html":{"ref":"core/single.html","tf":0.013888888888888888},"core/basic_button.html":{"ref":"core/basic_button.html","tf":0.07142857142857142},"core/node_button.html":{"ref":"core/node_button.html","tf":0.02631578947368421},"core/pane.html":{"ref":"core/pane.html","tf":0.0196078431372549},"base/label.html":{"ref":"base/label.html","tf":0.013422818791946308},"base/button/button.html":{"ref":"base/button/button.html","tf":0.03409090909090909},"base/button/text_button.html":{"ref":"base/button/text_button.html","tf":0.009433962264150943},"base/editor/editor.html":{"ref":"base/editor/editor.html","tf":0.005405405405405406},"base/editor/code_editor.html":{"ref":"base/editor/code_editor.html","tf":0.012658227848101266},"base/editor/multifile_editor.html":{"ref":"base/editor/multifile_editor.html","tf":0.015384615384615385},"base/editor/formula_editor.html":{"ref":"base/editor/formula_editor.html","tf":0.010101010101010102},"base/table/table_view.html":{"ref":"base/table/table_view.html","tf":0.006289308176100629},"base/table/grid_table.html":{"ref":"base/table/grid_table.html","tf":0.008771929824561403},"base/table/collection_table.html":{"ref":"base/table/collection_table.html","tf":0.013071895424836602},"base/table/resizable_table.html":{"ref":"base/table/resizable_table.html","tf":0.025},"base/pager.html":{"ref":"base/pager.html","tf":0.04},"case/editor/shelter_editor.html":{"ref":"case/editor/shelter_editor.html","tf":0.0051813471502590676},"case/editor/sign_editor.html":{"ref":"case/editor/sign_editor.html","tf":0.005494505494505495},"case/editor/sign_initial_editor.html":{"ref":"case/editor/sign_initial_editor.html","tf":0.005154639175257732},"case/editor/state_editor.html":{"ref":"case/editor/state_editor.html","tf":0.005747126436781609},"case/list/list.select.html":{"ref":"case/list/list.select.html","tf":0.018867924528301886},"case/trigger/editor_trigger.html":{"ref":"case/trigger/editor_trigger.html","tf":0.02},"case/combo/bubble_combo.html":{"ref":"case/combo/bubble_combo.html","tf":0.05202312138728324},"case/table/adaptive_table.html":{"ref":"case/table/adaptive_table.html","tf":0.01818181818181818},"case/table/tree_table.html":{"ref":"case/table/tree_table.html","tf":0.02040816326530612},"case/table/layer_tree_table.html":{"ref":"case/table/layer_tree_table.html","tf":0.02040816326530612},"detailed/table/bi.preview_table.html":{"ref":"detailed/table/bi.preview_table.html","tf":0.006756756756756757},"detailed/table/bi.responsive_table.html":{"ref":"detailed/table/bi.responsive_table.html","tf":0.021052631578947368},"detailed/table/bi.excel_table.html":{"ref":"detailed/table/bi.excel_table.html","tf":0.016574585635359115},"detailed/table/bi.page_table.html":{"ref":"detailed/table/bi.page_table.html","tf":0.013953488372093023},"detailed/text_input/bi.text_editor.html":{"ref":"detailed/text_input/bi.text_editor.html","tf":0.010309278350515464},"detailed/text_input/bi.search_editor.html":{"ref":"detailed/text_input/bi.search_editor.html","tf":0.010101010101010102},"detailed/text_input/bi.clear_editor.html":{"ref":"detailed/text_input/bi.clear_editor.html","tf":0.00980392156862745},"detailed/numeric_interval.html":{"ref":"detailed/numeric_interval.html","tf":0.034482758620689655}}}}}}},"r":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{"core/layout/border.html":{"ref":"core/layout/border.html","tf":10}},"\"":{"docs":{},",":{"docs":{"core/combination/searcher.html":{"ref":"core/combination/searcher.html","tf":0.004608294930875576},"base/editor/code_editor.html":{"ref":"base/editor/code_editor.html","tf":0.012658227848101266},"base/editor/formula_editor.html":{"ref":"base/editor/formula_editor.html","tf":0.010101010101010102},"case/editor/shelter_editor.html":{"ref":"case/editor/shelter_editor.html","tf":0.0051813471502590676},"case/layer/pane_list.html":{"ref":"case/layer/pane_list.html","tf":0.006802721088435374},"detailed/text_input/bi.clear_editor.html":{"ref":"detailed/text_input/bi.clear_editor.html","tf":0.00980392156862745}}}}}}}},"t":{"docs":{},"t":{"docs":{},"o":{"docs":{},"m":{"docs":{"core/combination/bi.combo.html":{"ref":"core/combination/bi.combo.html","tf":0.004807692307692308},"core/combination/bi.expander.html":{"ref":"core/combination/bi.expander.html","tf":0.005494505494505495},"core/combination/group_combo.html":{"ref":"core/combination/group_combo.html","tf":0.007874015748031496},"detailed/down_list_combo.html":{"ref":"detailed/down_list_combo.html","tf":0.013157894736842105}},":":{"docs":{"core/layout/border.html":{"ref":"core/layout/border.html","tf":0.012987012987012988}}},",":{"docs":{},"l":{"docs":{},"e":{"docs":{},"f":{"docs":{},"t":{"docs":{"core/combination/bi.combo.html":{"ref":"core/combination/bi.combo.html","tf":0.004807692307692308},"core/combination/bi.expander.html":{"ref":"core/combination/bi.expander.html","tf":0.005494505494505495},"core/combination/group_combo.html":{"ref":"core/combination/group_combo.html","tf":0.007874015748031496},"detailed/down_list_combo.html":{"ref":"detailed/down_list_combo.html","tf":0.006578947368421052}}}}}},"r":{"docs":{},"i":{"docs":{},"g":{"docs":{},"h":{"docs":{},"t":{"docs":{"core/combination/bi.combo.html":{"ref":"core/combination/bi.combo.html","tf":0.004807692307692308},"core/combination/bi.expander.html":{"ref":"core/combination/bi.expander.html","tf":0.005494505494505495},"core/combination/group_combo.html":{"ref":"core/combination/group_combo.html","tf":0.007874015748031496},"detailed/down_list_combo.html":{"ref":"detailed/down_list_combo.html","tf":0.006578947368421052}}}}}}}}}}}}},"e":{"docs":{},"h":{"docs":{},"a":{"docs":{},"v":{"docs":{},"i":{"docs":{},"o":{"docs":{},"r":{"docs":{"core/abstract/button_group.html":{"ref":"core/abstract/button_group.html","tf":0.007936507936507936},"base/pager.html":{"ref":"base/pager.html","tf":0.006666666666666667},"detailed/year_combo.html":{"ref":"detailed/year_combo.html","tf":0.025},"detailed/month_combo.html":{"ref":"detailed/month_combo.html","tf":0.03571428571428571},"detailed/quarter_combo.html":{"ref":"detailed/quarter_combo.html","tf":0.03571428571428571}}}}}}}},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"e":{"docs":{},"c":{"docs":{},"r":{"docs":{"core/widget.html":{"ref":"core/widget.html","tf":0.00510204081632653}}},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{},"k":{"docs":{"core/basic_button.html":{"ref":"core/basic_button.html","tf":0.007936507936507936},"case/combo/bubble_combo.html":{"ref":"case/combo/bubble_combo.html","tf":0.005780346820809248}}}}}}},"d":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"o":{"docs":{},"y":{"docs":{"core/widget.html":{"ref":"core/widget.html","tf":0.00510204081632653}}}}}}}}},"m":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{"core/widget.html":{"ref":"core/widget.html","tf":0.00510204081632653}}}}}}}}}}}},"u":{"docs":{},"t":{"docs":{},"t":{"docs":{},"o":{"docs":{},"n":{"docs":{"core/layer/layer_popup.html":{"ref":"core/layer/layer_popup.html","tf":0.0058823529411764705},"base/button/button.html":{"ref":"base/button/button.html","tf":10},"case/layer/multi_popup_layer.html":{"ref":"case/layer/multi_popup_layer.html","tf":0.04}},"_":{"docs":{},"g":{"docs":{},"r":{"docs":{},"o":{"docs":{},"u":{"docs":{},"p":{"docs":{"core/abstract/button_group.html":{"ref":"core/abstract/button_group.html","tf":10}}}}}}},"t":{"docs":{},"r":{"docs":{},"e":{"docs":{"core/abstract/button_tree.html":{"ref":"core/abstract/button_tree.html","tf":10}}}}}},"的":{"docs":{},"选":{"docs":{},"中":{"docs":{},"状":{"docs":{},"态":{"docs":{"core/basic_button.html":{"ref":"core/basic_button.html","tf":0.007936507936507936},"case/combo/bubble_combo.html":{"ref":"case/combo/bubble_combo.html","tf":0.005780346820809248}}}}}}}}}}},"b":{"docs":{},"b":{"docs":{},"l":{"docs":{"base/bubble.html":{"ref":"base/bubble.html","tf":10}},"e":{"docs":{},"_":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"b":{"docs":{},"o":{"docs":{"case/combo/bubble_combo.html":{"ref":"case/combo/bubble_combo.html","tf":10}}}}}}}}}}}}},"l":{"docs":{},"o":{"docs":{},"c":{"docs":{},"k":{"docs":{"base/button/button.html":{"ref":"base/button/button.html","tf":0.005681818181818182}},"s":{"docs":{},"i":{"docs":{},"z":{"docs":{"core/abstract/virtual_list.html":{"ref":"core/abstract/virtual_list.html","tf":0.0125}}}}}}}},"u":{"docs":{},"r":{"docs":{"base/editor/editor.html":{"ref":"base/editor/editor.html","tf":0.005405405405405406},"base/editor/code_editor.html":{"ref":"base/editor/code_editor.html","tf":0.012658227848101266},"base/editor/textarea_editor.html":{"ref":"base/editor/textarea_editor.html","tf":0.021739130434782608},"case/editor/shelter_editor.html":{"ref":"case/editor/shelter_editor.html","tf":0.0051813471502590676},"case/editor/sign_editor.html":{"ref":"case/editor/sign_editor.html","tf":0.005494505494505495},"case/editor/sign_initial_editor.html":{"ref":"case/editor/sign_initial_editor.html","tf":0.005154639175257732},"case/editor/state_editor.html":{"ref":"case/editor/state_editor.html","tf":0.005747126436781609}},"事":{"docs":{},"件":{"docs":{"base/editor/editor.html":{"ref":"base/editor/editor.html","tf":0.005405405405405406},"case/editor/shelter_editor.html":{"ref":"case/editor/shelter_editor.html","tf":0.0051813471502590676},"case/editor/sign_editor.html":{"ref":"case/editor/sign_editor.html","tf":0.005494505494505495},"case/editor/sign_initial_editor.html":{"ref":"case/editor/sign_initial_editor.html","tf":0.005154639175257732},"case/editor/state_editor.html":{"ref":"case/editor/state_editor.html","tf":0.005747126436781609}}}}}}},"a":{"docs":{},"s":{"docs":{},"e":{"docs":{},"c":{"docs":{},"l":{"docs":{"core/widget.html":{"ref":"core/widget.html","tf":0.00510204081632653}}}}},"i":{"docs":{},"c":{"docs":{},"_":{"docs":{},"b":{"docs":{},"u":{"docs":{},"t":{"docs":{},"t":{"docs":{},"o":{"docs":{},"n":{"docs":{"core/basic_button.html":{"ref":"core/basic_button.html","tf":10}}}}}}}},"s":{"docs":{},"u":{"docs":{},"r":{"docs":{},"e":{"docs":{},"\"":{"docs":{},")":{"docs":{"case/layer/multi_popup_layer.html":{"ref":"case/layer/multi_popup_layer.html","tf":0.04}}}}}}}}}}}}},":":{"docs":{"case/list/list.select.html":{"ref":"case/list/list.select.html","tf":0.009433962264150943}}},"r":{"docs":{},"a":{"docs":{},"n":{"docs":{},"c":{"docs":{},"h":{"docs":{"case/complex_canvas.html":{"ref":"case/complex_canvas.html","tf":0.020833333333333332}},"_":{"docs":{},"e":{"docs":{},"x":{"docs":{},"p":{"docs":{},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{},"组":{"docs":{},"件":{"docs":{},"配":{"docs":{},"置":{"docs":{},"项":{"docs":{"case/tree/branch_tree.html":{"ref":"case/tree/branch_tree.html","tf":0.02},"case/tree/handstand_branch_tree.html":{"ref":"case/tree/handstand_branch_tree.html","tf":0.019230769230769232}}}}}}},"配":{"docs":{},"置":{"docs":{"case/tree/level_tree.html":{"ref":"case/tree/level_tree.html","tf":0.017857142857142856}}}}}}}}}}}},"t":{"docs":{},"r":{"docs":{},"e":{"docs":{"case/tree/branch_tree.html":{"ref":"case/tree/branch_tree.html","tf":10}}}}},"r":{"docs":{},"e":{"docs":{},"l":{"docs":{"case/tree/branch_relation.html":{"ref":"case/tree/branch_relation.html","tf":10}}}}}}}}}}}},"e":{"docs":{"detailed/down_list_combo.html":{"ref":"detailed/down_list_combo.html","tf":0.046052631578947366}},"l":{"docs":{"core/layout/htape.html":{"ref":"core/layout/htape.html","tf":0.024},"core/layout/vtape.html":{"ref":"core/layout/vtape.html","tf":0.024},"core/abstract/custom_tree.html":{"ref":"core/abstract/custom_tree.html","tf":0.007194244604316547},"core/combination/bi.combo.html":{"ref":"core/combination/bi.combo.html","tf":0.004807692307692308},"core/combination/bi.expander.html":{"ref":"core/combination/bi.expander.html","tf":0.005494505494505495},"core/combination/group_combo.html":{"ref":"core/combination/group_combo.html","tf":0.007874015748031496},"core/combination/searcher.html":{"ref":"core/combination/searcher.html","tf":0.004608294930875576},"core/combination/switcher.html":{"ref":"core/combination/switcher.html","tf":0.00625},"core/layer/layer_popup.html":{"ref":"core/layer/layer_popup.html","tf":0.0058823529411764705},"case/layer/pane_list.html":{"ref":"case/layer/pane_list.html","tf":0.006802721088435374},"case/layer/panel.html":{"ref":"case/layer/panel.html","tf":0.015873015873015872},"case/combo/icon_combo.html":{"ref":"case/combo/icon_combo.html","tf":0.007751937984496124},"case/combo/static_combo.html":{"ref":"case/combo/static_combo.html","tf":0.0125},"case/combo/text_value_combo.html":{"ref":"case/combo/text_value_combo.html","tf":0.013513513513513514},"case/tree/branch_tree.html":{"ref":"case/tree/branch_tree.html","tf":0.02},"case/tree/handstand_branch_tree.html":{"ref":"case/tree/handstand_branch_tree.html","tf":0.019230769230769232},"detailed/down_list_combo.html":{"ref":"detailed/down_list_combo.html","tf":0.006578947368421052}},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},":":{"docs":{"core/layout/vertical.html":{"ref":"core/layout/vertical.html","tf":0.01282051282051282},"core/layout/horizontal.html":{"ref":"core/layout/horizontal.html","tf":0.010752688172043012},"core/layout/htape.html":{"ref":"core/layout/htape.html","tf":0.008},"core/layout/vtape.html":{"ref":"core/layout/vtape.html","tf":0.008},"core/layout/center_adapt.html":{"ref":"core/layout/center_adapt.html","tf":0.011764705882352941},"core/layout/vertical_adapt.html":{"ref":"core/layout/vertical_adapt.html","tf":0.011494252873563218},"core/layout/left_right_vertical_adapt.html":{"ref":"core/layout/left_right_vertical_adapt.html","tf":0.01098901098901099},"core/layout/flow.html":{"ref":"core/layout/flow.html","tf":0.007692307692307693},"core/layout/center.html":{"ref":"core/layout/center.html","tf":0.012658227848101266},"core/layout/horizontal_adapt.html":{"ref":"core/layout/horizontal_adapt.html","tf":0.010869565217391304},"core/layout/horizontal_auto.html":{"ref":"core/layout/horizontal_auto.html","tf":0.012345679012345678},"core/layout/horizontal_float.html":{"ref":"core/layout/horizontal_float.html","tf":0.013888888888888888},"core/layout/float_center.html":{"ref":"core/layout/float_center.html","tf":0.012658227848101266},"core/layout/border.html":{"ref":"core/layout/border.html","tf":0.012987012987012988},"core/layout/grid.html":{"ref":"core/layout/grid.html","tf":0.008928571428571428},"core/layout/table.html":{"ref":"core/layout/table.html","tf":0.012048192771084338},"core/layout/td.html":{"ref":"core/layout/td.html","tf":0.017857142857142856},"core/abstract/button_group.html":{"ref":"core/abstract/button_group.html","tf":0.007936507936507936},"core/abstract/button_tree.html":{"ref":"core/abstract/button_tree.html","tf":0.014925373134328358},"core/abstract/virtual_group.html":{"ref":"core/abstract/virtual_group.html","tf":0.014492753623188406},"core/combination/bi.combo.html":{"ref":"core/combination/bi.combo.html","tf":0.004807692307692308},"core/combination/bi.expander.html":{"ref":"core/combination/bi.expander.html","tf":0.005494505494505495},"core/combination/group_combo.html":{"ref":"core/combination/group_combo.html","tf":0.007874015748031496},"core/combination/loader.html":{"ref":"core/combination/loader.html","tf":0.006289308176100629},"core/combination/navigation.html":{"ref":"core/combination/navigation.html","tf":0.007194244604316547},"core/combination/switcher.html":{"ref":"core/combination/switcher.html","tf":0.00625},"core/combination/tab.html":{"ref":"core/combination/tab.html","tf":0.00684931506849315},"core/layer/layer_float_box.html":{"ref":"core/layer/layer_float_box.html","tf":0.012345679012345678},"core/layer/layer_popup.html":{"ref":"core/layer/layer_popup.html","tf":0.0058823529411764705},"core/layer/layer_searcher.html":{"ref":"core/layer/layer_searcher.html","tf":0.009259259259259259},"base/bubble.html":{"ref":"base/bubble.html","tf":0.023255813953488372},"base/toast.html":{"ref":"base/toast.html","tf":0.020833333333333332},"base/message.html":{"ref":"base/message.html","tf":0.02127659574468085},"base/button/button.html":{"ref":"base/button/button.html","tf":0.005681818181818182},"base/editor/editor.html":{"ref":"base/editor/editor.html","tf":0.005405405405405406},"base/table/table_view.html":{"ref":"base/table/table_view.html","tf":0.006289308176100629},"base/table/grid_table.html":{"ref":"base/table/grid_table.html","tf":0.008771929824561403},"base/table/collection_table.html":{"ref":"base/table/collection_table.html","tf":0.006535947712418301},"base/table/resizable_table.html":{"ref":"base/table/resizable_table.html","tf":0.00625},"base/canvas.html":{"ref":"base/canvas.html","tf":0.016666666666666666},"case/button/multi_select_item.html":{"ref":"case/button/multi_select_item.html","tf":0.017543859649122806},"case/button/single_select_item.html":{"ref":"case/button/single_select_item.html","tf":0.016129032258064516},"case/button/single_select_radio_item.html":{"ref":"case/button/single_select_radio_item.html","tf":0.016129032258064516},"case/editor/shelter_editor.html":{"ref":"case/editor/shelter_editor.html","tf":0.0051813471502590676},"case/editor/sign_editor.html":{"ref":"case/editor/sign_editor.html","tf":0.005494505494505495},"case/editor/sign_initial_editor.html":{"ref":"case/editor/sign_initial_editor.html","tf":0.005154639175257732},"case/editor/state_editor.html":{"ref":"case/editor/state_editor.html","tf":0.005747126436781609},"case/layer/multi_popup_layer.html":{"ref":"case/layer/multi_popup_layer.html","tf":0.04},"case/layer/layer_panel.html":{"ref":"case/layer/layer_panel.html","tf":0.010752688172043012},"case/layer/pane_list.html":{"ref":"case/layer/pane_list.html","tf":0.006802721088435374},"case/layer/panel.html":{"ref":"case/layer/panel.html","tf":0.015873015873015872},"case/loader/lazy_loader.html":{"ref":"case/loader/lazy_loader.html","tf":0.01694915254237288},"case/loader/list_loader.html":{"ref":"case/loader/list_loader.html","tf":0.010752688172043012},"case/loader/sort_list.html":{"ref":"case/loader/sort_list.html","tf":0.010752688172043012},"case/trigger/editor_trigger.html":{"ref":"case/trigger/editor_trigger.html","tf":0.02},"case/trigger/icon_trigger.html":{"ref":"case/trigger/icon_trigger.html","tf":0.1111111111111111},"case/trigger/text_trigger.html":{"ref":"case/trigger/text_trigger.html","tf":0.05263157894736842},"case/combo/icon_combo.html":{"ref":"case/combo/icon_combo.html","tf":0.007751937984496124},"case/combo/static_combo.html":{"ref":"case/combo/static_combo.html","tf":0.0125},"case/combo/text_value_combo.html":{"ref":"case/combo/text_value_combo.html","tf":0.013513513513513514},"case/combo/text_value_downlist_combo.html":{"ref":"case/combo/text_value_downlist_combo.html","tf":0.013513513513513514},"case/tree/branch_tree.html":{"ref":"case/tree/branch_tree.html","tf":0.02},"case/tree/handstand_branch_tree.html":{"ref":"case/tree/handstand_branch_tree.html","tf":0.019230769230769232},"case/tree/display_tree.html":{"ref":"case/tree/display_tree.html","tf":0.030303030303030304},"case/tree/simple_tree.html":{"ref":"case/tree/simple_tree.html","tf":0.022222222222222223},"case/tree/level_tree.html":{"ref":"case/tree/level_tree.html","tf":0.017857142857142856},"case/tree/branch_relation.html":{"ref":"case/tree/branch_relation.html","tf":0.02040816326530612},"case/table/adaptive_table.html":{"ref":"case/table/adaptive_table.html","tf":0.006060606060606061},"case/table/tree_table.html":{"ref":"case/table/tree_table.html","tf":0.00510204081632653},"case/table/layer_tree_table.html":{"ref":"case/table/layer_tree_table.html","tf":0.00510204081632653},"case/pager/direction_pager.html":{"ref":"case/pager/direction_pager.html","tf":0.00819672131147541},"case/color_chooser.html":{"ref":"case/color_chooser.html","tf":0.038461538461538464},"case/segment.html":{"ref":"case/segment.html","tf":0.009345794392523364},"detailed/bi.button/tooltip.html":{"ref":"detailed/bi.button/tooltip.html","tf":0.011363636363636364},"detailed/bi.button/items.html":{"ref":"detailed/bi.button/items.html","tf":0.010638297872340425},"detailed/bi.button/node.html":{"ref":"detailed/bi.button/node.html","tf":0.009259259259259259},"detailed/bi.button/segment.html":{"ref":"detailed/bi.button/segment.html","tf":0.009345794392523364},"detailed/table/bi.preview_table.html":{"ref":"detailed/table/bi.preview_table.html","tf":0.006756756756756757},"detailed/table/bi.responsive_table.html":{"ref":"detailed/table/bi.responsive_table.html","tf":0.005263157894736842},"detailed/table/bi.excel_table.html":{"ref":"detailed/table/bi.excel_table.html","tf":0.0055248618784530384},"detailed/table/bi.page_table.html":{"ref":"detailed/table/bi.page_table.html","tf":0.004651162790697674},"detailed/text_input/bi.text_editor.html":{"ref":"detailed/text_input/bi.text_editor.html","tf":0.010309278350515464},"detailed/text_input/bi.search_editor.html":{"ref":"detailed/text_input/bi.search_editor.html","tf":0.010101010101010102},"detailed/text_input/bi.clear_editor.html":{"ref":"detailed/text_input/bi.clear_editor.html","tf":0.00980392156862745},"detailed/text_input/finetuning_number_editor.html":{"ref":"detailed/text_input/finetuning_number_editor.html","tf":0.037037037037037035},"detailed/year_combo.html":{"ref":"detailed/year_combo.html","tf":0.025},"detailed/month_combo.html":{"ref":"detailed/month_combo.html","tf":0.03571428571428571},"detailed/quarter_combo.html":{"ref":"detailed/quarter_combo.html","tf":0.03571428571428571},"detailed/down_list_combo.html":{"ref":"detailed/down_list_combo.html","tf":0.006578947368421052},"detailed/numeric_interval.html":{"ref":"detailed/numeric_interval.html","tf":0.017241379310344827},"detailed/multi_select_combo.html":{"ref":"detailed/multi_select_combo.html","tf":0.04},"detailed/date/date_combo.html":{"ref":"detailed/date/date_combo.html","tf":0.058823529411764705},"detailed/date/date_pane_widget.html":{"ref":"detailed/date/date_pane_widget.html","tf":0.02702702702702703},"detailed/date/custom_date_time.html":{"ref":"detailed/date/custom_date_time.html","tf":0.045454545454545456},"detailed/combo/single_tree_combo.html":{"ref":"detailed/combo/single_tree_combo.html","tf":0.01694915254237288},"detailed/combo/multilayer_single_tree_combo.html":{"ref":"detailed/combo/multilayer_single_tree_combo.html","tf":0.018867924528301886},"detailed/combo/select_tree_combo.html":{"ref":"detailed/combo/select_tree_combo.html","tf":0.02040816326530612},"detailed/combo/multilayer_select_tree_combo.html":{"ref":"detailed/combo/multilayer_select_tree_combo.html","tf":0.02040816326530612},"detailed/path/path_chooser.html":{"ref":"detailed/path/path_chooser.html","tf":0.019230769230769232},"detailed/path/direction_path_chooser.html":{"ref":"detailed/path/direction_path_chooser.html","tf":0.02}},"\"":{"docs":{},"#":{"docs":{},"w":{"docs":{},"r":{"docs":{},"a":{"docs":{},"p":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"\"":{"docs":{},",":{"docs":{"core/abstract/collection_view.html":{"ref":"core/abstract/collection_view.html","tf":0.0070921985815602835},"core/combination/searcher.html":{"ref":"core/combination/searcher.html","tf":0.004608294930875576},"case/combo/bubble_combo.html":{"ref":"case/combo/bubble_combo.html","tf":0.005780346820809248}}}}}}}}}}}},"b":{"docs":{},"o":{"docs":{},"d":{"docs":{},"y":{"docs":{},"\"":{"docs":{},",":{"docs":{"core/abstract/virtual_list.html":{"ref":"core/abstract/virtual_list.html","tf":0.0125}}}}}}}}}}}}}}},":":{"docs":{"core/layout/border.html":{"ref":"core/layout/border.html","tf":0.05194805194805195},"core/layout/grid.html":{"ref":"core/layout/grid.html","tf":0.03571428571428571},"core/layout/td.html":{"ref":"core/layout/td.html","tf":0.03571428571428571},"core/abstract/button_group.html":{"ref":"core/abstract/button_group.html","tf":0.007936507936507936},"core/abstract/custom_tree.html":{"ref":"core/abstract/custom_tree.html","tf":0.007194244604316547},"core/combination/bi.combo.html":{"ref":"core/combination/bi.combo.html","tf":0.004807692307692308},"core/combination/bi.expander.html":{"ref":"core/combination/bi.expander.html","tf":0.005494505494505495},"core/combination/group_combo.html":{"ref":"core/combination/group_combo.html","tf":0.007874015748031496},"core/combination/switcher.html":{"ref":"core/combination/switcher.html","tf":0.00625},"core/layer/layer_popup.html":{"ref":"core/layer/layer_popup.html","tf":0.0058823529411764705},"case/layer/panel.html":{"ref":"case/layer/panel.html","tf":0.015873015873015872},"case/combo/bubble_combo.html":{"ref":"case/combo/bubble_combo.html","tf":0.011560693641618497},"case/combo/text_value_downlist_combo.html":{"ref":"case/combo/text_value_downlist_combo.html","tf":0.013513513513513514},"case/tree/branch_tree.html":{"ref":"case/tree/branch_tree.html","tf":0.04},"case/tree/handstand_branch_tree.html":{"ref":"case/tree/handstand_branch_tree.html","tf":0.057692307692307696},"detailed/bi.button/tooltip.html":{"ref":"detailed/bi.button/tooltip.html","tf":0.011363636363636364},"detailed/down_list_combo.html":{"ref":"detailed/down_list_combo.html","tf":0.013157894736842105}}},"l":{"docs":{},"i":{"docs":{},"p":{"docs":{},"s":{"docs":{"base/svg.html":{"ref":"base/svg.html","tf":0.011235955056179775}}}}}}},"a":{"docs":{},"s":{"docs":{},"t":{"docs":{},":":{"docs":{"core/layout/border.html":{"ref":"core/layout/border.html","tf":0.012987012987012988}}}}}},"m":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{"core/abstract/button_group.html":{"ref":"core/abstract/button_group.html","tf":0.007936507936507936},"core/abstract/custom_tree.html":{"ref":"core/abstract/custom_tree.html","tf":0.007194244604316547},"core/combination/loader.html":{"ref":"core/combination/loader.html","tf":0.006289308176100629},"core/combination/navigation.html":{"ref":"core/combination/navigation.html","tf":0.007194244604316547},"core/combination/searcher.html":{"ref":"core/combination/searcher.html","tf":0.004608294930875576},"core/combination/switcher.html":{"ref":"core/combination/switcher.html","tf":0.00625},"core/combination/tab.html":{"ref":"core/combination/tab.html","tf":0.00684931506849315},"core/layer/layer_searcher.html":{"ref":"core/layer/layer_searcher.html","tf":0.009259259259259259},"core/widget.html":{"ref":"core/widget.html","tf":0.00510204081632653},"core/basic_button.html":{"ref":"core/basic_button.html","tf":0.007936507936507936},"core/pane.html":{"ref":"core/pane.html","tf":0.0196078431372549},"case/layer/layer_panel.html":{"ref":"case/layer/layer_panel.html","tf":0.010752688172043012},"case/layer/pane_list.html":{"ref":"case/layer/pane_list.html","tf":0.006802721088435374},"case/list/list.select.html":{"ref":"case/list/list.select.html","tf":0.009433962264150943},"case/loader/lazy_loader.html":{"ref":"case/loader/lazy_loader.html","tf":0.01694915254237288},"case/loader/list_loader.html":{"ref":"case/loader/list_loader.html","tf":0.010752688172043012},"case/loader/sort_list.html":{"ref":"case/loader/sort_list.html","tf":0.010752688172043012},"case/combo/bubble_combo.html":{"ref":"case/combo/bubble_combo.html","tf":0.005780346820809248},"case/tree/simple_tree.html":{"ref":"case/tree/simple_tree.html","tf":0.022222222222222223}}}}}},"x":{"docs":{},"p":{"docs":{},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{"core/abstract/custom_tree.html":{"ref":"core/abstract/custom_tree.html","tf":0.007194244604316547},"core/combination/bi.expander.html":{"ref":"core/combination/bi.expander.html","tf":10.010989010989011},"case/tree/branch_tree.html":{"ref":"case/tree/branch_tree.html","tf":0.02},"case/tree/handstand_branch_tree.html":{"ref":"case/tree/handstand_branch_tree.html","tf":0.019230769230769232},"case/tree/level_tree.html":{"ref":"case/tree/level_tree.html","tf":0.017857142857142856}},"e":{"docs":{},"r":{"docs":{},"c":{"docs":{},"l":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{"core/combination/bi.expander.html":{"ref":"core/combination/bi.expander.html","tf":0.005494505494505495}}}}}}},"初":{"docs":{},"始":{"docs":{},"化":{"docs":{},"后":{"docs":{},"触":{"docs":{},"发":{"docs":{"core/combination/bi.expander.html":{"ref":"core/combination/bi.expander.html","tf":0.005494505494505495}}}}}}}},"展":{"docs":{},"开":{"docs":{},"触":{"docs":{},"发":{"docs":{"core/combination/bi.expander.html":{"ref":"core/combination/bi.expander.html","tf":0.005494505494505495}}}}}},"收":{"docs":{},"起":{"docs":{},"触":{"docs":{},"发":{"docs":{"core/combination/bi.expander.html":{"ref":"core/combination/bi.expander.html","tf":0.005494505494505495}}}}}}}}}}}},"t":{"docs":{},"r":{"docs":{},"a":{"docs":{},"c":{"docs":{},"l":{"docs":{"core/widget.html":{"ref":"core/widget.html","tf":0.00510204081632653}}}}}}},"c":{"docs":{},"e":{"docs":{},"l":{"docs":{},"_":{"docs":{},"t":{"docs":{"detailed/table/bi.excel_table.html":{"ref":"detailed/table/bi.excel_table.html","tf":10}}}}}}}},"s":{"docs":{},"t":{"docs":{},"i":{"docs":{},"m":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},"u":{"docs":{},"m":{"docs":{},"n":{"docs":{},"s":{"docs":{"core/abstract/grid_view.html":{"ref":"core/abstract/grid_view.html","tf":0.00641025641025641}},"i":{"docs":{},"z":{"docs":{},"e":{"docs":{},":":{"docs":{"core/abstract/grid_view.html":{"ref":"core/abstract/grid_view.html","tf":0.00641025641025641}}}}}}}}}}}}},"r":{"docs":{},"o":{"docs":{},"w":{"docs":{},"s":{"docs":{"core/abstract/grid_view.html":{"ref":"core/abstract/grid_view.html","tf":0.00641025641025641}},"i":{"docs":{},"z":{"docs":{},"e":{"docs":{},":":{"docs":{"core/abstract/grid_view.html":{"ref":"core/abstract/grid_view.html","tf":0.00641025641025641}}}}}}}}}}}}}}}}}},"v":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"_":{"docs":{},"a":{"docs":{},"f":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"_":{"docs":{},"i":{"docs":{},"n":{"docs":{},"i":{"docs":{},"t":{"docs":{"core/combination/searcher.html":{"ref":"core/combination/searcher.html","tf":0.004608294930875576},"core/combination/switcher.html":{"ref":"core/combination/switcher.html","tf":0.00625}}}}}},"h":{"docs":{},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{},"v":{"docs":{},"i":{"docs":{},"e":{"docs":{},"w":{"docs":{"core/combination/switcher.html":{"ref":"core/combination/switcher.html","tf":0.00625}}}}}}}}}},"p":{"docs":{},"o":{"docs":{},"p":{"docs":{},"u":{"docs":{},"p":{"docs":{},"v":{"docs":{},"i":{"docs":{},"e":{"docs":{},"w":{"docs":{"core/combination/switcher.html":{"ref":"core/combination/switcher.html","tf":0.00625}}}}}}}}}}}}}}}}},"p":{"docs":{},"a":{"docs":{},"u":{"docs":{},"s":{"docs":{"core/combination/searcher.html":{"ref":"core/combination/searcher.html","tf":0.004608294930875576}}}}}},"s":{"docs":{},"e":{"docs":{},"a":{"docs":{},"r":{"docs":{},"c":{"docs":{},"h":{"docs":{"core/combination/searcher.html":{"ref":"core/combination/searcher.html","tf":0.004608294930875576}}}}}}},"t":{"docs":{},"a":{"docs":{},"r":{"docs":{},"t":{"docs":{"core/combination/searcher.html":{"ref":"core/combination/searcher.html","tf":0.004608294930875576}}}}},"o":{"docs":{},"p":{"docs":{"core/combination/searcher.html":{"ref":"core/combination/searcher.html","tf":0.004608294930875576}}}}}},"b":{"docs":{},"e":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"e":{"docs":{},"_":{"docs":{},"h":{"docs":{},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{},"v":{"docs":{},"i":{"docs":{},"e":{"docs":{},"w":{"docs":{"core/combination/switcher.html":{"ref":"core/combination/switcher.html","tf":0.00625}}}}}}}}}},"p":{"docs":{},"o":{"docs":{},"p":{"docs":{},"u":{"docs":{},"p":{"docs":{},"v":{"docs":{},"i":{"docs":{},"e":{"docs":{},"w":{"docs":{"core/combination/switcher.html":{"ref":"core/combination/switcher.html","tf":0.00625}}}}}}}}}}}}}}}}}},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},"l":{"docs":{},"a":{"docs":{},"p":{"docs":{},"s":{"docs":{"core/combination/switcher.html":{"ref":"core/combination/switcher.html","tf":0.00625}}}}}}}}},"e":{"docs":{},"x":{"docs":{},"p":{"docs":{},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{"core/combination/switcher.html":{"ref":"core/combination/switcher.html","tf":0.00625}}}}}}}},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"g":{"docs":{},"g":{"docs":{},"e":{"docs":{},"r":{"docs":{},"_":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{"core/combination/switcher.html":{"ref":"core/combination/switcher.html","tf":0.00625}}}}}}}}}}}}}}},"f":{"docs":{},"l":{"docs":{},"o":{"docs":{},"a":{"docs":{},"t":{"docs":{},"_":{"docs":{},"b":{"docs":{},"o":{"docs":{},"x":{"docs":{},"_":{"docs":{},"c":{"docs":{},"l":{"docs":{},"o":{"docs":{},"s":{"docs":{"core/layer/layer_float_box.html":{"ref":"core/layer/layer_float_box.html","tf":0.024691358024691357}}}}}}}}}}}}}}}},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{},"e":{"docs":{},"_":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{"case/color_chooser_popup.html":{"ref":"case/color_chooser_popup.html","tf":0.029411764705882353}}}}}}}}}}}}}}}}}},"n":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{"core/widget.html":{"ref":"core/widget.html","tf":0.01020408163265306}},"e":{"docs":{},"h":{"docs":{},"o":{"docs":{},"v":{"docs":{"core/single.html":{"ref":"core/single.html","tf":0.013888888888888888}}}}},"e":{"docs":{},"r":{"docs":{},"r":{"docs":{},"o":{"docs":{},"r":{"docs":{"base/editor/editor.html":{"ref":"base/editor/editor.html","tf":0.005405405405405406}}}}}}},"w":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"m":{"docs":{},"a":{"docs":{},"r":{"docs":{},"k":{"docs":{"base/editor/editor.html":{"ref":"base/editor/editor.html","tf":0.005405405405405406}}}}}}}}}}}}}}},"d":{"docs":{},")":{"docs":{"base/canvas.html":{"ref":"base/canvas.html","tf":0.016666666666666666}}}}},"d":{"docs":{},"i":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{"base/editor/editor.html":{"ref":"base/editor/editor.html","tf":10}},"的":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{},"e":{"docs":{},"发":{"docs":{},"生":{"docs":{},"改":{"docs":{},"变":{"docs":{},"触":{"docs":{},"发":{"docs":{"base/editor/editor.html":{"ref":"base/editor/editor.html","tf":0.005405405405405406},"case/editor/shelter_editor.html":{"ref":"case/editor/shelter_editor.html","tf":0.0051813471502590676},"case/editor/sign_editor.html":{"ref":"case/editor/sign_editor.html","tf":0.005494505494505495},"case/editor/sign_initial_editor.html":{"ref":"case/editor/sign_initial_editor.html","tf":0.005154639175257732},"case/editor/state_editor.html":{"ref":"case/editor/state_editor.html","tf":0.005747126436781609}}}}}}}}}}}}}},"_":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"g":{"docs":{},"g":{"docs":{"case/trigger/editor_trigger.html":{"ref":"case/trigger/editor_trigger.html","tf":10}}}}}}}}}}}}},"r":{"docs":{},"r":{"docs":{},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{},"e":{"docs":{},"x":{"docs":{},"t":{"docs":{"base/editor/editor.html":{"ref":"base/editor/editor.html","tf":0.005405405405405406},"case/editor/shelter_editor.html":{"ref":"case/editor/shelter_editor.html","tf":0.0051813471502590676},"case/editor/sign_editor.html":{"ref":"case/editor/sign_editor.html","tf":0.005494505494505495},"case/editor/sign_initial_editor.html":{"ref":"case/editor/sign_initial_editor.html","tf":0.005154639175257732},"case/editor/state_editor.html":{"ref":"case/editor/state_editor.html","tf":0.005747126436781609},"case/trigger/editor_trigger.html":{"ref":"case/trigger/editor_trigger.html","tf":0.02},"detailed/text_input/bi.text_editor.html":{"ref":"detailed/text_input/bi.text_editor.html","tf":0.010309278350515464},"detailed/text_input/bi.search_editor.html":{"ref":"detailed/text_input/bi.search_editor.html","tf":0.010101010101010102},"detailed/text_input/bi.clear_editor.html":{"ref":"detailed/text_input/bi.clear_editor.html","tf":0.00980392156862745}},":":{"docs":{"base/editor/editor.html":{"ref":"base/editor/editor.html","tf":0.005405405405405406}}}}}}}}}}}},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{"core/layout/htape.html":{"ref":"core/layout/htape.html","tf":0.016},"core/layout/vtape.html":{"ref":"core/layout/vtape.html","tf":0.016},"core/layout/left_right_vertical_adapt.html":{"ref":"core/layout/left_right_vertical_adapt.html","tf":0.01098901098901099},"core/layout/flow.html":{"ref":"core/layout/flow.html","tf":0.007692307692307693},"core/layout/horizontal_float.html":{"ref":"core/layout/horizontal_float.html","tf":0.013888888888888888},"core/layout/border.html":{"ref":"core/layout/border.html","tf":0.012987012987012988},"core/layout/grid.html":{"ref":"core/layout/grid.html","tf":0.008928571428571428},"core/layout/table.html":{"ref":"core/layout/table.html","tf":0.012048192771084338},"core/layout/td.html":{"ref":"core/layout/td.html","tf":0.017857142857142856},"core/abstract/button_group.html":{"ref":"core/abstract/button_group.html","tf":0.031746031746031744},"core/abstract/virtual_group.html":{"ref":"core/abstract/virtual_group.html","tf":0.057971014492753624},"core/abstract/custom_tree.html":{"ref":"core/abstract/custom_tree.html","tf":0.02158273381294964},"core/abstract/grid_view.html":{"ref":"core/abstract/grid_view.html","tf":0.01282051282051282},"core/abstract/collection_view.html":{"ref":"core/abstract/collection_view.html","tf":0.014184397163120567},"core/abstract/virtual_list.html":{"ref":"core/abstract/virtual_list.html","tf":0.025},"core/combination/bi.combo.html":{"ref":"core/combination/bi.combo.html","tf":0.004807692307692308},"core/combination/bi.expander.html":{"ref":"core/combination/bi.expander.html","tf":0.005494505494505495},"core/combination/group_combo.html":{"ref":"core/combination/group_combo.html","tf":0.007874015748031496},"core/combination/loader.html":{"ref":"core/combination/loader.html","tf":0.025157232704402517},"core/combination/navigation.html":{"ref":"core/combination/navigation.html","tf":0.007194244604316547},"core/combination/switcher.html":{"ref":"core/combination/switcher.html","tf":0.00625},"core/combination/tab.html":{"ref":"core/combination/tab.html","tf":0.00684931506849315},"core/layer/layer_popup.html":{"ref":"core/layer/layer_popup.html","tf":0.0058823529411764705},"core/single.html":{"ref":"core/single.html","tf":0.013888888888888888},"core/pane.html":{"ref":"core/pane.html","tf":0.0196078431372549},"base/button/button.html":{"ref":"base/button/button.html","tf":0.005681818181818182},"base/table/table_view.html":{"ref":"base/table/table_view.html","tf":0.006289308176100629},"base/table/grid_table.html":{"ref":"base/table/grid_table.html","tf":0.008771929824561403},"base/table/collection_table.html":{"ref":"base/table/collection_table.html","tf":0.006535947712418301},"base/table/resizable_table.html":{"ref":"base/table/resizable_table.html","tf":0.00625},"case/layer/layer_panel.html":{"ref":"case/layer/layer_panel.html","tf":0.03225806451612903},"case/layer/pane_list.html":{"ref":"case/layer/pane_list.html","tf":0.027210884353741496},"case/list/list.select.html":{"ref":"case/list/list.select.html","tf":0.03773584905660377},"case/loader/lazy_loader.html":{"ref":"case/loader/lazy_loader.html","tf":0.03389830508474576},"case/loader/list_loader.html":{"ref":"case/loader/list_loader.html","tf":0.03225806451612903},"case/loader/sort_list.html":{"ref":"case/loader/sort_list.html","tf":0.03225806451612903},"case/combo/icon_combo.html":{"ref":"case/combo/icon_combo.html","tf":0.007751937984496124},"case/combo/static_combo.html":{"ref":"case/combo/static_combo.html","tf":0.025},"case/combo/text_value_combo.html":{"ref":"case/combo/text_value_combo.html","tf":0.013513513513513514},"case/combo/text_value_downlist_combo.html":{"ref":"case/combo/text_value_downlist_combo.html","tf":0.013513513513513514},"case/tree/branch_tree.html":{"ref":"case/tree/branch_tree.html","tf":0.02},"case/tree/handstand_branch_tree.html":{"ref":"case/tree/handstand_branch_tree.html","tf":0.019230769230769232},"case/tree/simple_tree.html":{"ref":"case/tree/simple_tree.html","tf":0.022222222222222223},"case/tree/level_tree.html":{"ref":"case/tree/level_tree.html","tf":0.017857142857142856},"case/tree/branch_relation.html":{"ref":"case/tree/branch_relation.html","tf":0.02040816326530612},"case/table/adaptive_table.html":{"ref":"case/table/adaptive_table.html","tf":0.006060606060606061},"case/table/tree_table.html":{"ref":"case/table/tree_table.html","tf":0.00510204081632653},"case/table/layer_tree_table.html":{"ref":"case/table/layer_tree_table.html","tf":0.00510204081632653},"case/segment.html":{"ref":"case/segment.html","tf":0.009345794392523364},"detailed/bi.button/tooltip.html":{"ref":"detailed/bi.button/tooltip.html","tf":0.011363636363636364},"detailed/bi.button/items.html":{"ref":"detailed/bi.button/items.html","tf":0.010638297872340425},"detailed/bi.button/node.html":{"ref":"detailed/bi.button/node.html","tf":0.009259259259259259},"detailed/bi.button/segment.html":{"ref":"detailed/bi.button/segment.html","tf":0.009345794392523364},"detailed/tree/bi.multi_tree_combo.html":{"ref":"detailed/tree/bi.multi_tree_combo.html","tf":0.043478260869565216},"detailed/tree/bi.switch_tree.html":{"ref":"detailed/tree/bi.switch_tree.html","tf":0.039473684210526314},"detailed/table/bi.preview_table.html":{"ref":"detailed/table/bi.preview_table.html","tf":0.006756756756756757},"detailed/table/bi.responsive_table.html":{"ref":"detailed/table/bi.responsive_table.html","tf":0.005263157894736842},"detailed/table/bi.excel_table.html":{"ref":"detailed/table/bi.excel_table.html","tf":0.0055248618784530384},"detailed/table/bi.page_table.html":{"ref":"detailed/table/bi.page_table.html","tf":0.004651162790697674},"detailed/combo/single_tree_combo.html":{"ref":"detailed/combo/single_tree_combo.html","tf":0.01694915254237288},"detailed/combo/multilayer_single_tree_combo.html":{"ref":"detailed/combo/multilayer_single_tree_combo.html","tf":0.018867924528301886},"detailed/combo/select_tree_combo.html":{"ref":"detailed/combo/select_tree_combo.html","tf":0.02040816326530612},"detailed/combo/multilayer_select_tree_combo.html":{"ref":"detailed/combo/multilayer_select_tree_combo.html","tf":0.02040816326530612},"detailed/path/path_chooser.html":{"ref":"detailed/path/path_chooser.html","tf":0.019230769230769232},"detailed/path/direction_path_chooser.html":{"ref":"detailed/path/direction_path_chooser.html","tf":0.02}},"s":{"docs":{},":":{"docs":{"core/layout/vertical.html":{"ref":"core/layout/vertical.html","tf":0.01282051282051282},"core/layout/horizontal.html":{"ref":"core/layout/horizontal.html","tf":0.010752688172043012},"core/layout/center_adapt.html":{"ref":"core/layout/center_adapt.html","tf":0.011764705882352941},"core/layout/vertical_adapt.html":{"ref":"core/layout/vertical_adapt.html","tf":0.011494252873563218},"core/layout/left_right_vertical_adapt.html":{"ref":"core/layout/left_right_vertical_adapt.html","tf":0.01098901098901099},"core/layout/flow.html":{"ref":"core/layout/flow.html","tf":0.023076923076923078},"core/layout/center.html":{"ref":"core/layout/center.html","tf":0.012658227848101266},"core/layout/horizontal_adapt.html":{"ref":"core/layout/horizontal_adapt.html","tf":0.010869565217391304},"core/layout/horizontal_auto.html":{"ref":"core/layout/horizontal_auto.html","tf":0.012345679012345678},"core/layout/horizontal_float.html":{"ref":"core/layout/horizontal_float.html","tf":0.013888888888888888},"core/layout/float_center.html":{"ref":"core/layout/float_center.html","tf":0.012658227848101266},"core/layout/border.html":{"ref":"core/layout/border.html","tf":0.012987012987012988},"core/layout/grid.html":{"ref":"core/layout/grid.html","tf":0.008928571428571428},"core/layout/table.html":{"ref":"core/layout/table.html","tf":0.012048192771084338},"core/layout/td.html":{"ref":"core/layout/td.html","tf":0.017857142857142856},"core/abstract/button_group.html":{"ref":"core/abstract/button_group.html","tf":0.007936507936507936},"core/abstract/button_tree.html":{"ref":"core/abstract/button_tree.html","tf":0.014925373134328358},"core/abstract/custom_tree.html":{"ref":"core/abstract/custom_tree.html","tf":0.007194244604316547},"core/abstract/grid_view.html":{"ref":"core/abstract/grid_view.html","tf":0.00641025641025641},"core/abstract/collection_view.html":{"ref":"core/abstract/collection_view.html","tf":0.0070921985815602835},"core/abstract/virtual_list.html":{"ref":"core/abstract/virtual_list.html","tf":0.0125},"core/combination/bi.expander.html":{"ref":"core/combination/bi.expander.html","tf":0.005494505494505495},"core/combination/navigation.html":{"ref":"core/combination/navigation.html","tf":0.007194244604316547},"core/combination/searcher.html":{"ref":"core/combination/searcher.html","tf":0.004608294930875576},"core/combination/tab.html":{"ref":"core/combination/tab.html","tf":0.00684931506849315},"core/layer/layer_popup.html":{"ref":"core/layer/layer_popup.html","tf":0.0058823529411764705},"core/layer/layer_searcher.html":{"ref":"core/layer/layer_searcher.html","tf":0.009259259259259259},"base/table/table_view.html":{"ref":"base/table/table_view.html","tf":0.006289308176100629},"base/table/grid_table.html":{"ref":"base/table/grid_table.html","tf":0.008771929824561403},"base/table/collection_table.html":{"ref":"base/table/collection_table.html","tf":0.006535947712418301},"base/table/resizable_table.html":{"ref":"base/table/resizable_table.html","tf":0.00625},"case/button/multi_select_item.html":{"ref":"case/button/multi_select_item.html","tf":0.017543859649122806},"case/button/single_select_item.html":{"ref":"case/button/single_select_item.html","tf":0.016129032258064516},"case/button/single_select_radio_item.html":{"ref":"case/button/single_select_radio_item.html","tf":0.016129032258064516},"case/layer/pane_list.html":{"ref":"case/layer/pane_list.html","tf":0.006802721088435374},"case/list/list.select.html":{"ref":"case/list/list.select.html","tf":0.009433962264150943},"case/loader/lazy_loader.html":{"ref":"case/loader/lazy_loader.html","tf":0.01694915254237288},"case/loader/list_loader.html":{"ref":"case/loader/list_loader.html","tf":0.010752688172043012},"case/loader/sort_list.html":{"ref":"case/loader/sort_list.html","tf":0.010752688172043012},"case/combo/bubble_combo.html":{"ref":"case/combo/bubble_combo.html","tf":0.005780346820809248},"case/combo/icon_combo.html":{"ref":"case/combo/icon_combo.html","tf":0.007751937984496124},"case/combo/static_combo.html":{"ref":"case/combo/static_combo.html","tf":0.0125},"case/combo/text_value_combo.html":{"ref":"case/combo/text_value_combo.html","tf":0.013513513513513514},"case/combo/text_value_downlist_combo.html":{"ref":"case/combo/text_value_downlist_combo.html","tf":0.013513513513513514},"case/tree/branch_tree.html":{"ref":"case/tree/branch_tree.html","tf":0.02},"case/tree/handstand_branch_tree.html":{"ref":"case/tree/handstand_branch_tree.html","tf":0.019230769230769232},"case/tree/simple_tree.html":{"ref":"case/tree/simple_tree.html","tf":0.022222222222222223},"case/tree/level_tree.html":{"ref":"case/tree/level_tree.html","tf":0.03571428571428571},"case/tree/branch_relation.html":{"ref":"case/tree/branch_relation.html","tf":0.04081632653061224},"case/table/adaptive_table.html":{"ref":"case/table/adaptive_table.html","tf":0.012121212121212121},"case/table/tree_table.html":{"ref":"case/table/tree_table.html","tf":0.01020408163265306},"case/table/layer_tree_table.html":{"ref":"case/table/layer_tree_table.html","tf":0.01020408163265306},"case/segment.html":{"ref":"case/segment.html","tf":0.018691588785046728},"detailed/bi.button/tooltip.html":{"ref":"detailed/bi.button/tooltip.html","tf":0.011363636363636364},"detailed/bi.button/items.html":{"ref":"detailed/bi.button/items.html","tf":0.010638297872340425},"detailed/bi.button/node.html":{"ref":"detailed/bi.button/node.html","tf":0.009259259259259259},"detailed/bi.button/segment.html":{"ref":"detailed/bi.button/segment.html","tf":0.018691588785046728},"detailed/tree/bi.multi_tree_combo.html":{"ref":"detailed/tree/bi.multi_tree_combo.html","tf":0.010869565217391304},"detailed/tree/bi.switch_tree.html":{"ref":"detailed/tree/bi.switch_tree.html","tf":0.013157894736842105},"detailed/table/bi.preview_table.html":{"ref":"detailed/table/bi.preview_table.html","tf":0.006756756756756757},"detailed/table/bi.responsive_table.html":{"ref":"detailed/table/bi.responsive_table.html","tf":0.005263157894736842},"detailed/table/bi.excel_table.html":{"ref":"detailed/table/bi.excel_table.html","tf":0.0055248618784530384},"detailed/table/bi.page_table.html":{"ref":"detailed/table/bi.page_table.html","tf":0.004651162790697674},"detailed/down_list_combo.html":{"ref":"detailed/down_list_combo.html","tf":0.006578947368421052},"detailed/multi_select_combo.html":{"ref":"detailed/multi_select_combo.html","tf":0.04},"detailed/combo/single_tree_combo.html":{"ref":"detailed/combo/single_tree_combo.html","tf":0.03389830508474576},"detailed/combo/multilayer_single_tree_combo.html":{"ref":"detailed/combo/multilayer_single_tree_combo.html","tf":0.03773584905660377},"detailed/combo/select_tree_combo.html":{"ref":"detailed/combo/select_tree_combo.html","tf":0.04081632653061224},"detailed/combo/multilayer_select_tree_combo.html":{"ref":"detailed/combo/multilayer_select_tree_combo.html","tf":0.04081632653061224},"detailed/path/path_chooser.html":{"ref":"detailed/path/path_chooser.html","tf":0.019230769230769232},"detailed/path/direction_path_chooser.html":{"ref":"detailed/path/direction_path_chooser.html","tf":0.02},"detailed/relation_view.html":{"ref":"detailed/relation_view.html","tf":0.019230769230769232},"detailed/file_manager.html":{"ref":"detailed/file_manager.html","tf":0.023255813953488372}},"[":{"docs":{},"]":{"docs":{"core/abstract/virtual_group.html":{"ref":"core/abstract/virtual_group.html","tf":0.014492753623188406}}}}},"c":{"docs":{},"r":{"docs":{"core/abstract/custom_tree.html":{"ref":"core/abstract/custom_tree.html","tf":0.007194244604316547},"core/combination/loader.html":{"ref":"core/combination/loader.html","tf":0.006289308176100629},"case/layer/pane_list.html":{"ref":"case/layer/pane_list.html","tf":0.006802721088435374},"case/list/list.select.html":{"ref":"case/list/list.select.html","tf":0.009433962264150943},"case/loader/list_loader.html":{"ref":"case/loader/list_loader.html","tf":0.010752688172043012},"case/loader/sort_list.html":{"ref":"case/loader/sort_list.html","tf":0.010752688172043012},"case/tree/simple_tree.html":{"ref":"case/tree/simple_tree.html","tf":0.022222222222222223},"detailed/tree/bi.multi_tree_combo.html":{"ref":"detailed/tree/bi.multi_tree_combo.html","tf":0.010869565217391304},"detailed/table/bi.page_table.html":{"ref":"detailed/table/bi.page_table.html","tf":0.004651162790697674},"detailed/combo/multilayer_single_tree_combo.html":{"ref":"detailed/combo/multilayer_single_tree_combo.html","tf":0.018867924528301886}},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},":":{"docs":{"core/combination/loader.html":{"ref":"core/combination/loader.html","tf":0.006289308176100629},"detailed/tree/bi.multi_tree_combo.html":{"ref":"detailed/tree/bi.multi_tree_combo.html","tf":0.010869565217391304},"detailed/multi_select_combo.html":{"ref":"detailed/multi_select_combo.html","tf":0.04}}}}}}}}}},",":{"docs":{"core/combination/searcher.html":{"ref":"core/combination/searcher.html","tf":0.004608294930875576},"base/table/grid_table.html":{"ref":"base/table/grid_table.html","tf":0.008771929824561403},"case/loader/lazy_loader.html":{"ref":"case/loader/lazy_loader.html","tf":0.01694915254237288},"case/loader/list_loader.html":{"ref":"case/loader/list_loader.html","tf":0.010752688172043012},"case/loader/sort_list.html":{"ref":"case/loader/sort_list.html","tf":0.010752688172043012},"case/table/tree_table.html":{"ref":"case/table/tree_table.html","tf":0.00510204081632653},"case/table/layer_tree_table.html":{"ref":"case/table/layer_tree_table.html","tf":0.00510204081632653},"detailed/tree/bi.switch_tree.html":{"ref":"detailed/tree/bi.switch_tree.html","tf":0.013157894736842105}}},"构":{"docs":{},"造":{"docs":{},"器":{"docs":{"case/tree/simple_tree.html":{"ref":"case/tree/simple_tree.html","tf":0.022222222222222223}}}}}},")":{"docs":{"core/abstract/virtual_list.html":{"ref":"core/abstract/virtual_list.html","tf":0.0125}}},",":{"docs":{"core/abstract/virtual_list.html":{"ref":"core/abstract/virtual_list.html","tf":0.0125}}},".":{"docs":{},"t":{"docs":{},"e":{"docs":{},"x":{"docs":{},"t":{"docs":{},",":{"docs":{"core/abstract/virtual_list.html":{"ref":"core/abstract/virtual_list.html","tf":0.0125}}}}}}}}}}},"d":{"docs":{"core/abstract/button_group.html":{"ref":"core/abstract/button_group.html","tf":0.007936507936507936},"core/abstract/button_tree.html":{"ref":"core/abstract/button_tree.html","tf":0.014925373134328358},"core/abstract/custom_tree.html":{"ref":"core/abstract/custom_tree.html","tf":0.007194244604316547},"core/combination/bi.expander.html":{"ref":"core/combination/bi.expander.html","tf":0.005494505494505495},"core/combination/loader.html":{"ref":"core/combination/loader.html","tf":0.006289308176100629},"core/combination/switcher.html":{"ref":"core/combination/switcher.html","tf":0.00625},"core/layer/layer_float_box.html":{"ref":"core/layer/layer_float_box.html","tf":0.012345679012345678},"base/svg.html":{"ref":"base/svg.html","tf":0.011235955056179775},"case/layer/layer_panel.html":{"ref":"case/layer/layer_panel.html","tf":0.010752688172043012},"case/layer/pane_list.html":{"ref":"case/layer/pane_list.html","tf":0.006802721088435374},"case/list/list.select.html":{"ref":"case/list/list.select.html","tf":0.009433962264150943},"case/loader/lazy_loader.html":{"ref":"case/loader/lazy_loader.html","tf":0.01694915254237288},"case/loader/list_loader.html":{"ref":"case/loader/list_loader.html","tf":0.010752688172043012},"case/loader/sort_list.html":{"ref":"case/loader/sort_list.html","tf":0.010752688172043012},"case/tree/level_tree.html":{"ref":"case/tree/level_tree.html","tf":0.03571428571428571}},":":{"docs":{"core/abstract/custom_tree.html":{"ref":"core/abstract/custom_tree.html","tf":0.02158273381294964},"case/tree/display_tree.html":{"ref":"case/tree/display_tree.html","tf":0.030303030303030304},"detailed/tree/bi.multi_tree_combo.html":{"ref":"detailed/tree/bi.multi_tree_combo.html","tf":0.03260869565217391},"detailed/tree/bi.switch_tree.html":{"ref":"detailed/tree/bi.switch_tree.html","tf":0.039473684210526314},"detailed/file_manager.html":{"ref":"detailed/file_manager.html","tf":0.06976744186046512}}}},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"x":{"docs":{"core/abstract/button_group.html":{"ref":"core/abstract/button_group.html","tf":0.007936507936507936},"core/abstract/collection_view.html":{"ref":"core/abstract/collection_view.html","tf":0.0070921985815602835},"core/layer/layer_float_box.html":{"ref":"core/layer/layer_float_box.html","tf":0.024691358024691357},"core/layer/layer_popup.html":{"ref":"core/layer/layer_popup.html","tf":0.011764705882352941},"case/layer/layer_panel.html":{"ref":"case/layer/layer_panel.html","tf":0.010752688172043012},"case/layer/pane_list.html":{"ref":"case/layer/pane_list.html","tf":0.006802721088435374}}}}},"i":{"docs":{},"t":{"docs":{},"t":{"docs":{},"r":{"docs":{},"e":{"docs":{"core/abstract/custom_tree.html":{"ref":"core/abstract/custom_tree.html","tf":0.007194244604316547},"case/tree/display_tree.html":{"ref":"case/tree/display_tree.html","tf":0.030303030303030304},"case/tree/level_tree.html":{"ref":"case/tree/level_tree.html","tf":0.017857142857142856}}}}}}},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"i":{"docs":{},"d":{"docs":{"core/widget.html":{"ref":"core/widget.html","tf":0.01020408163265306}}}}}},"i":{"docs":{},"s":{"docs":{"core/widget.html":{"ref":"core/widget.html","tf":0.01020408163265306}}}}},"p":{"docs":{},"u":{"docs":{},"t":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{"base/editor/editor.html":{"ref":"base/editor/editor.html","tf":0.005405405405405406}}}}}}}},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"p":{"docs":{},"a":{"docs":{},"r":{"docs":{},"a":{"docs":{},"m":{"docs":{"base/editor/code_editor.html":{"ref":"base/editor/code_editor.html","tf":0.012658227848101266}}}}}}},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"base/editor/code_editor.html":{"ref":"base/editor/code_editor.html","tf":0.012658227848101266},"base/editor/formula_editor.html":{"ref":"base/editor/formula_editor.html","tf":0.010101010101010102}}}}},"f":{"docs":{},"i":{"docs":{},"e":{"docs":{},"l":{"docs":{},"d":{"docs":{"base/editor/formula_editor.html":{"ref":"base/editor/formula_editor.html","tf":0.010101010101010102}}}}}},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{},"t":{"docs":{"base/editor/formula_editor.html":{"ref":"base/editor/formula_editor.html","tf":0.010101010101010102}}}}}}},"o":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{"base/editor/formula_editor.html":{"ref":"base/editor/formula_editor.html","tf":0.010101010101010102}}}}}}}}}}},"s":{"docs":{},"d":{"docs":{},"e":{"docs":{},"f":{"docs":{},"a":{"docs":{},"u":{"docs":{},"l":{"docs":{},"t":{"docs":{},"i":{"docs":{},"n":{"docs":{},"i":{"docs":{},"t":{"docs":{"core/combination/bi.combo.html":{"ref":"core/combination/bi.combo.html","tf":0.004807692307692308},"core/combination/bi.expander.html":{"ref":"core/combination/bi.expander.html","tf":0.005494505494505495},"core/combination/group_combo.html":{"ref":"core/combination/group_combo.html","tf":0.007874015748031496},"core/combination/loader.html":{"ref":"core/combination/loader.html","tf":0.006289308176100629},"core/combination/searcher.html":{"ref":"core/combination/searcher.html","tf":0.004608294930875576}}}}}}}}}}}},"i":{"docs":{},"s":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"s":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"core/basic_button.html":{"ref":"core/basic_button.html","tf":0.007936507936507936},"case/combo/bubble_combo.html":{"ref":"case/combo/bubble_combo.html","tf":0.005780346820809248}}}}}}}}}}}}}}},"n":{"docs":{},"e":{"docs":{},"e":{"docs":{},"d":{"docs":{},"a":{"docs":{},"d":{"docs":{},"j":{"docs":{},"u":{"docs":{},"s":{"docs":{},"t":{"docs":{},"h":{"docs":{},"e":{"docs":{},"i":{"docs":{},"g":{"docs":{},"h":{"docs":{},"t":{"docs":{"core/combination/bi.combo.html":{"ref":"core/combination/bi.combo.html","tf":0.004807692307692308},"core/combination/group_combo.html":{"ref":"core/combination/group_combo.html","tf":0.007874015748031496}}}}}}}},"w":{"docs":{},"i":{"docs":{},"d":{"docs":{},"t":{"docs":{},"h":{"docs":{"core/combination/bi.combo.html":{"ref":"core/combination/bi.combo.html","tf":0.004807692307692308},"core/combination/group_combo.html":{"ref":"core/combination/group_combo.html","tf":0.007874015748031496}}}}}}}}}}}}},"f":{"docs":{},"r":{"docs":{},"e":{"docs":{},"e":{"docs":{},"z":{"docs":{"base/table/grid_table.html":{"ref":"base/table/grid_table.html","tf":0.008771929824561403},"base/table/collection_table.html":{"ref":"base/table/collection_table.html","tf":0.006535947712418301},"base/table/resizable_table.html":{"ref":"base/table/resizable_table.html","tf":0.00625},"case/table/adaptive_table.html":{"ref":"case/table/adaptive_table.html","tf":0.006060606060606061},"case/table/tree_table.html":{"ref":"case/table/tree_table.html","tf":0.00510204081632653},"case/table/layer_tree_table.html":{"ref":"case/table/layer_tree_table.html","tf":0.00510204081632653},"detailed/table/bi.preview_table.html":{"ref":"detailed/table/bi.preview_table.html","tf":0.006756756756756757},"detailed/table/bi.responsive_table.html":{"ref":"detailed/table/bi.responsive_table.html","tf":0.005263157894736842},"detailed/table/bi.page_table.html":{"ref":"detailed/table/bi.page_table.html","tf":0.004651162790697674}},"e":{"docs":{},":":{"docs":{"base/table/table_view.html":{"ref":"base/table/table_view.html","tf":0.006289308176100629},"base/table/grid_table.html":{"ref":"base/table/grid_table.html","tf":0.008771929824561403},"case/table/adaptive_table.html":{"ref":"case/table/adaptive_table.html","tf":0.006060606060606061},"detailed/table/bi.responsive_table.html":{"ref":"detailed/table/bi.responsive_table.html","tf":0.005263157894736842}}}}}}}}},"m":{"docs":{},"e":{"docs":{},"r":{"docs":{},"g":{"docs":{"base/table/table_view.html":{"ref":"base/table/table_view.html","tf":0.006289308176100629},"base/table/collection_table.html":{"ref":"base/table/collection_table.html","tf":0.006535947712418301},"base/table/resizable_table.html":{"ref":"base/table/resizable_table.html","tf":0.00625},"case/table/adaptive_table.html":{"ref":"case/table/adaptive_table.html","tf":0.006060606060606061},"case/table/tree_table.html":{"ref":"case/table/tree_table.html","tf":0.00510204081632653},"case/table/layer_tree_table.html":{"ref":"case/table/layer_tree_table.html","tf":0.00510204081632653},"detailed/table/bi.responsive_table.html":{"ref":"detailed/table/bi.responsive_table.html","tf":0.005263157894736842},"detailed/table/bi.excel_table.html":{"ref":"detailed/table/bi.excel_table.html","tf":0.0055248618784530384},"detailed/table/bi.page_table.html":{"ref":"detailed/table/bi.page_table.html","tf":0.004651162790697674}},"e":{"docs":{},":":{"docs":{"base/table/table_view.html":{"ref":"base/table/table_view.html","tf":0.006289308176100629},"detailed/table/bi.responsive_table.html":{"ref":"detailed/table/bi.responsive_table.html","tf":0.005263157894736842}}}}}}}},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{"base/table/resizable_table.html":{"ref":"base/table/resizable_table.html","tf":0.00625},"case/table/adaptive_table.html":{"ref":"case/table/adaptive_table.html","tf":0.006060606060606061},"case/table/tree_table.html":{"ref":"case/table/tree_table.html","tf":0.00510204081632653},"case/table/layer_tree_table.html":{"ref":"case/table/layer_tree_table.html","tf":0.00510204081632653},"detailed/table/bi.excel_table.html":{"ref":"detailed/table/bi.excel_table.html","tf":0.0055248618784530384}},"i":{"docs":{},"z":{"docs":{},"e":{"docs":{},":":{"docs":{"base/table/grid_table.html":{"ref":"base/table/grid_table.html","tf":0.008771929824561403},"case/table/adaptive_table.html":{"ref":"case/table/adaptive_table.html","tf":0.006060606060606061}}}}}}}}}}}}},"v":{"docs":{},"i":{"docs":{},"e":{"docs":{},"w":{"docs":{},"v":{"docs":{},"i":{"docs":{},"s":{"docs":{"core/combination/bi.combo.html":{"ref":"core/combination/bi.combo.html","tf":0.004807692307692308},"core/combination/bi.expander.html":{"ref":"core/combination/bi.expander.html","tf":0.005494505494505495},"core/combination/searcher.html":{"ref":"core/combination/searcher.html","tf":0.004608294930875576},"core/combination/switcher.html":{"ref":"core/combination/switcher.html","tf":0.00625},"case/color_chooser.html":{"ref":"case/color_chooser.html","tf":0.038461538461538464}}}}}}},"s":{"docs":{"core/widget.html":{"ref":"core/widget.html","tf":0.00510204081632653}}}},"a":{"docs":{},"l":{"docs":{},"i":{"docs":{},"d":{"docs":{"core/widget.html":{"ref":"core/widget.html","tf":0.00510204081632653},"base/editor/editor.html":{"ref":"base/editor/editor.html","tf":0.005405405405405406},"case/editor/shelter_editor.html":{"ref":"case/editor/shelter_editor.html","tf":0.0051813471502590676},"case/editor/sign_editor.html":{"ref":"case/editor/sign_editor.html","tf":0.005494505494505495},"case/editor/sign_initial_editor.html":{"ref":"case/editor/sign_initial_editor.html","tf":0.005154639175257732},"case/editor/state_editor.html":{"ref":"case/editor/state_editor.html","tf":0.005747126436781609}}}}}}},"e":{"docs":{},"x":{"docs":{},"p":{"docs":{},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{"core/combination/bi.expander.html":{"ref":"core/combination/bi.expander.html","tf":0.005494505494505495},"core/combination/switcher.html":{"ref":"core/combination/switcher.html","tf":0.00625}}}}}}},"n":{"docs":{"core/widget.html":{"ref":"core/widget.html","tf":0.00510204081632653}}},"d":{"docs":{},"i":{"docs":{},"t":{"docs":{"base/editor/editor.html":{"ref":"base/editor/editor.html","tf":0.005405405405405406},"case/editor/shelter_editor.html":{"ref":"case/editor/shelter_editor.html","tf":0.0051813471502590676},"case/editor/sign_editor.html":{"ref":"case/editor/sign_editor.html","tf":0.005494505494505495},"case/editor/sign_initial_editor.html":{"ref":"case/editor/sign_initial_editor.html","tf":0.005154639175257732},"case/editor/state_editor.html":{"ref":"case/editor/state_editor.html","tf":0.005747126436781609}}}}}},"a":{"docs":{},"u":{"docs":{},"t":{"docs":{},"o":{"docs":{},"s":{"docs":{},"e":{"docs":{},"a":{"docs":{},"r":{"docs":{},"c":{"docs":{},"h":{"docs":{"core/combination/searcher.html":{"ref":"core/combination/searcher.html","tf":0.004608294930875576}},"为":{"docs":{},"f":{"docs":{},"a":{"docs":{},"l":{"docs":{},"s":{"docs":{},"e":{"docs":{},"时":{"docs":{},"启":{"docs":{},"用":{"docs":{"core/combination/searcher.html":{"ref":"core/combination/searcher.html","tf":0.004608294930875576}}}}}}}}}}}}}}}},"y":{"docs":{},"n":{"docs":{},"c":{"docs":{"core/combination/searcher.html":{"ref":"core/combination/searcher.html","tf":0.004608294930875576}}}}}}}}},"l":{"docs":{},"l":{"docs":{},"s":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"case/list/list.select.html":{"ref":"case/list/list.select.html","tf":0.009433962264150943}}}}}}}}}}},"s":{"docs":{},"e":{"docs":{},"a":{"docs":{},"r":{"docs":{},"c":{"docs":{},"h":{"docs":{"core/combination/searcher.html":{"ref":"core/combination/searcher.html","tf":0.004608294930875576}}}}}},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"core/basic_button.html":{"ref":"core/basic_button.html","tf":0.007936507936507936},"case/combo/bubble_combo.html":{"ref":"case/combo/bubble_combo.html","tf":0.005780346820809248}}}}}}},"h":{"docs":{},"a":{"docs":{},"d":{"docs":{},"o":{"docs":{},"w":{"docs":{},"s":{"docs":{},"h":{"docs":{},"o":{"docs":{},"w":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"core/basic_button.html":{"ref":"core/basic_button.html","tf":0.007936507936507936},"base/button/button.html":{"ref":"base/button/button.html","tf":0.005681818181818182},"case/combo/bubble_combo.html":{"ref":"case/combo/bubble_combo.html","tf":0.005780346820809248}}}}}}}}}}}}}}}}}}}}}},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"i":{"docs":{},"d":{"docs":{},"(":{"docs":{},")":{"docs":{"detailed/numeric_interval.html":{"ref":"detailed/numeric_interval.html","tf":0.017241379310344827}}}}}}}}}}}}}},"m":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{"core/widget.html":{"ref":"core/widget.html","tf":0.00510204081632653}}}}}}},"o":{"docs":{},"l":{"docs":{"core/widget.html":{"ref":"core/widget.html","tf":0.00510204081632653}}},"n":{"docs":{},"c":{"docs":{"core/basic_button.html":{"ref":"core/basic_button.html","tf":0.007936507936507936},"core/node_button.html":{"ref":"core/node_button.html","tf":0.02631578947368421},"case/combo/bubble_combo.html":{"ref":"case/combo/bubble_combo.html","tf":0.005780346820809248}}}},"p":{"docs":{},"e":{"docs":{},"n":{"docs":{"core/node_button.html":{"ref":"core/node_button.html","tf":0.02631578947368421}}}}}},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"d":{"docs":{},"o":{"docs":{},"n":{"docs":{},"l":{"docs":{},"i":{"docs":{"core/single.html":{"ref":"core/single.html","tf":0.013888888888888888}}}}}}}},"s":{"docs":{},"i":{"docs":{},"z":{"docs":{},"e":{"docs":{},"a":{"docs":{},"d":{"docs":{},"a":{"docs":{},"p":{"docs":{},"t":{"docs":{"base/table/resizable_table.html":{"ref":"base/table/resizable_table.html","tf":0.00625},"case/table/tree_table.html":{"ref":"case/table/tree_table.html","tf":0.00510204081632653},"case/table/layer_tree_table.html":{"ref":"case/table/layer_tree_table.html","tf":0.00510204081632653},"detailed/table/bi.excel_table.html":{"ref":"detailed/table/bi.excel_table.html","tf":0.0055248618784530384}},":":{"docs":{"base/table/grid_table.html":{"ref":"base/table/grid_table.html","tf":0.008771929824561403},"case/table/adaptive_table.html":{"ref":"case/table/adaptive_table.html","tf":0.006060606060606061}}}}}}}}}}}}}},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"c":{"docs":{},"e":{"docs":{},"n":{"docs":{},"o":{"docs":{},"t":{"docs":{},"s":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"core/basic_button.html":{"ref":"core/basic_button.html","tf":0.007936507936507936},"case/combo/bubble_combo.html":{"ref":"case/combo/bubble_combo.html","tf":0.005780346820809248}}}}}}}}}}},"s":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"core/basic_button.html":{"ref":"core/basic_button.html","tf":0.007936507936507936},"case/combo/bubble_combo.html":{"ref":"case/combo/bubble_combo.html","tf":0.005780346820809248}}}}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"a":{"docs":{},"l":{"docs":{},"d":{"docs":{"case/calendar.html":{"ref":"case/calendar.html","tf":0.013888888888888888}}}}}}},"r":{"docs":{},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{},"d":{"docs":{"case/calendar.html":{"ref":"case/calendar.html","tf":0.013888888888888888}}}}}}}}},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"c":{"docs":{},"l":{"docs":{},"s":{"1":{"docs":{},":":{"docs":{"detailed/down_list_combo.html":{"ref":"detailed/down_list_combo.html","tf":0.013157894736842105}}}},"docs":{},":":{"docs":{"core/combination/group_combo.html":{"ref":"core/combination/group_combo.html","tf":0.007874015748031496}}}},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{"base/button/button.html":{"ref":"base/button/button.html","tf":0.005681818181818182},"case/combo/icon_combo.html":{"ref":"case/combo/icon_combo.html","tf":0.007751937984496124}},":":{"docs":{"case/combo/icon_combo.html":{"ref":"case/combo/icon_combo.html","tf":0.031007751937984496}}}}}}}},"_":{"docs":{},"b":{"docs":{},"u":{"docs":{},"t":{"docs":{},"t":{"docs":{},"o":{"docs":{},"n":{"docs":{"base/button/icon_button.html":{"ref":"base/button/icon_button.html","tf":10}}}}}}}},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"g":{"docs":{},"g":{"docs":{"case/trigger/icon_trigger.html":{"ref":"case/trigger/icon_trigger.html","tf":10}}}}}}},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"b":{"docs":{},"o":{"docs":{"case/combo/icon_combo.html":{"ref":"case/combo/icon_combo.html","tf":10}}}}}}}},"h":{"docs":{},"e":{"docs":{},"i":{"docs":{},"g":{"docs":{},"h":{"docs":{},"t":{"docs":{"base/button/icon_button.html":{"ref":"base/button/icon_button.html","tf":0.02564102564102564},"base/button/image_button.html":{"ref":"base/button/image_button.html","tf":0.014925373134328358}}}}}}}},"w":{"docs":{},"i":{"docs":{},"d":{"docs":{},"t":{"docs":{},"h":{"docs":{"base/button/icon_button.html":{"ref":"base/button/icon_button.html","tf":0.02564102564102564},"base/button/image_button.html":{"ref":"base/button/image_button.html","tf":0.014925373134328358}}}}}}},"的":{"docs":{},"类":{"docs":{},"名":{"docs":{"case/combo/icon_combo.html":{"ref":"case/combo/icon_combo.html","tf":0.007751937984496124}}}}}}}},"m":{"docs":{},"a":{"docs":{},"g":{"docs":{"base/svg.html":{"ref":"base/svg.html","tf":0.011235955056179775}},"e":{"docs":{},"_":{"docs":{},"b":{"docs":{},"u":{"docs":{},"t":{"docs":{},"t":{"docs":{},"o":{"docs":{},"n":{"docs":{"base/button/image_button.html":{"ref":"base/button/image_button.html","tf":10}}}}}}}}}}}}}},"l":{"docs":{},"g":{"docs":{},"a":{"docs":{},"p":{"docs":{"core/layout/vertical.html":{"ref":"core/layout/vertical.html","tf":0.01282051282051282},"core/layout/horizontal.html":{"ref":"core/layout/horizontal.html","tf":0.010752688172043012},"core/layout/htape.html":{"ref":"core/layout/htape.html","tf":0.008},"core/layout/vtape.html":{"ref":"core/layout/vtape.html","tf":0.008},"core/layout/center_adapt.html":{"ref":"core/layout/center_adapt.html","tf":0.011764705882352941},"core/layout/vertical_adapt.html":{"ref":"core/layout/vertical_adapt.html","tf":0.011494252873563218},"core/layout/flow.html":{"ref":"core/layout/flow.html","tf":0.007692307692307693},"core/layout/center.html":{"ref":"core/layout/center.html","tf":0.012658227848101266},"core/layout/horizontal_adapt.html":{"ref":"core/layout/horizontal_adapt.html","tf":0.010869565217391304},"core/layout/horizontal_auto.html":{"ref":"core/layout/horizontal_auto.html","tf":0.012345679012345678},"core/layout/horizontal_float.html":{"ref":"core/layout/horizontal_float.html","tf":0.013888888888888888},"core/layout/float_center.html":{"ref":"core/layout/float_center.html","tf":0.012658227848101266},"core/combination/searcher.html":{"ref":"core/combination/searcher.html","tf":0.004608294930875576},"core/layer/layer_popup.html":{"ref":"core/layer/layer_popup.html","tf":0.0058823529411764705},"base/label.html":{"ref":"base/label.html","tf":0.006711409395973154},"base/button/button.html":{"ref":"base/button/button.html","tf":0.005681818181818182},"base/button/text_button.html":{"ref":"base/button/text_button.html","tf":0.009433962264150943},"base/editor/editor.html":{"ref":"base/editor/editor.html","tf":0.005405405405405406},"case/editor/shelter_editor.html":{"ref":"case/editor/shelter_editor.html","tf":0.0051813471502590676},"case/editor/sign_editor.html":{"ref":"case/editor/sign_editor.html","tf":0.005494505494505495},"case/editor/sign_initial_editor.html":{"ref":"case/editor/sign_initial_editor.html","tf":0.005154639175257732},"case/editor/state_editor.html":{"ref":"case/editor/state_editor.html","tf":0.005747126436781609},"case/layer/pane_list.html":{"ref":"case/layer/pane_list.html","tf":0.006802721088435374},"case/segment.html":{"ref":"case/segment.html","tf":0.009345794392523364},"detailed/bi.button/tooltip.html":{"ref":"detailed/bi.button/tooltip.html","tf":0.011363636363636364},"detailed/bi.button/items.html":{"ref":"detailed/bi.button/items.html","tf":0.010638297872340425},"detailed/bi.button/node.html":{"ref":"detailed/bi.button/node.html","tf":0.009259259259259259},"detailed/bi.button/segment.html":{"ref":"detailed/bi.button/segment.html","tf":0.009345794392523364},"detailed/text_input/bi.text_editor.html":{"ref":"detailed/text_input/bi.text_editor.html","tf":0.010309278350515464},"detailed/text_input/bi.search_editor.html":{"ref":"detailed/text_input/bi.search_editor.html","tf":0.010101010101010102},"detailed/text_input/bi.clear_editor.html":{"ref":"detailed/text_input/bi.clear_editor.html","tf":0.00980392156862745}}}}},"e":{"docs":{},"f":{"docs":{},"t":{"docs":{"core/combination/bi.combo.html":{"ref":"core/combination/bi.combo.html","tf":0.004807692307692308},"core/combination/bi.expander.html":{"ref":"core/combination/bi.expander.html","tf":0.005494505494505495},"core/combination/group_combo.html":{"ref":"core/combination/group_combo.html","tf":0.007874015748031496},"detailed/down_list_combo.html":{"ref":"detailed/down_list_combo.html","tf":0.006578947368421052}},":":{"docs":{"core/layout/left_right_vertical_adapt.html":{"ref":"core/layout/left_right_vertical_adapt.html","tf":0.01098901098901099},"core/layout/border.html":{"ref":"core/layout/border.html","tf":0.03896103896103896}}},"_":{"docs":{},"r":{"docs":{},"i":{"docs":{},"g":{"docs":{},"h":{"docs":{},"t":{"docs":{},"_":{"docs":{},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"i":{"docs":{},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{},"_":{"docs":{},"a":{"docs":{},"d":{"docs":{},"a":{"docs":{},"p":{"docs":{},"t":{"docs":{"core/layout/left_right_vertical_adapt.html":{"ref":"core/layout/left_right_vertical_adapt.html","tf":10}}}}}}}}}}}}}}}}}}}}}}},",":{"docs":{},"r":{"docs":{},"i":{"docs":{},"g":{"docs":{},"h":{"docs":{},"t":{"docs":{},",":{"docs":{},"c":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"core/combination/bi.combo.html":{"ref":"core/combination/bi.combo.html","tf":0.004807692307692308},"case/combo/icon_combo.html":{"ref":"case/combo/icon_combo.html","tf":0.007751937984496124}}}}}}}}}}}},"c":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},",":{"docs":{},"r":{"docs":{},"i":{"docs":{},"g":{"docs":{},"h":{"docs":{},"t":{"docs":{"base/label.html":{"ref":"base/label.html","tf":0.006711409395973154},"base/button/button.html":{"ref":"base/button/button.html","tf":0.005681818181818182},"base/button/text_button.html":{"ref":"base/button/text_button.html","tf":0.009433962264150943},"case/button/single_select_item.html":{"ref":"case/button/single_select_item.html","tf":0.016129032258064516},"case/button/single_select_radio_item.html":{"ref":"case/button/single_select_radio_item.html","tf":0.016129032258064516},"case/editor/shelter_editor.html":{"ref":"case/editor/shelter_editor.html","tf":0.0051813471502590676}}}}}}}}}}}}}}}}},"v":{"docs":{},"e":{"docs":{},"l":{"docs":{"base/toast.html":{"ref":"base/toast.html","tf":0.020833333333333332},"base/button/button.html":{"ref":"base/button/button.html","tf":0.005681818181818182}},":":{"docs":{"base/toast.html":{"ref":"base/toast.html","tf":0.020833333333333332},"base/button/button.html":{"ref":"base/button/button.html","tf":0.005681818181818182}}},",":{"docs":{"base/message.html":{"ref":"base/message.html","tf":0.02127659574468085}}},"_":{"docs":{},"t":{"docs":{},"r":{"docs":{},"e":{"docs":{"case/tree/level_tree.html":{"ref":"case/tree/level_tree.html","tf":10}}}}}}}}},"t":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"_":{"docs":{},"s":{"docs":{},"p":{"docs":{},"a":{"docs":{},"c":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},",":{"docs":{"base/svg.html":{"ref":"base/svg.html","tf":0.011235955056179775}}}}}}}}}}}}}}}},"h":{"docs":{},"g":{"docs":{},"a":{"docs":{},"p":{"docs":{"core/layout/left_right_vertical_adapt.html":{"ref":"core/layout/left_right_vertical_adapt.html","tf":0.01098901098901099}},":":{"docs":{"core/layout/left_right_vertical_adapt.html":{"ref":"core/layout/left_right_vertical_adapt.html","tf":0.01098901098901099}}}}}}},"l":{"docs":{},"g":{"docs":{},"a":{"docs":{},"p":{"docs":{"core/layout/left_right_vertical_adapt.html":{"ref":"core/layout/left_right_vertical_adapt.html","tf":0.01098901098901099}}}}}},"r":{"docs":{},"g":{"docs":{},"a":{"docs":{},"p":{"docs":{"core/layout/left_right_vertical_adapt.html":{"ref":"core/layout/left_right_vertical_adapt.html","tf":0.01098901098901099}}}}}},"a":{"docs":{},"y":{"docs":{},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{"core/abstract/button_group.html":{"ref":"core/abstract/button_group.html","tf":0.007936507936507936},"core/abstract/virtual_group.html":{"ref":"core/abstract/virtual_group.html","tf":0.014492753623188406},"base/pager.html":{"ref":"base/pager.html","tf":0.006666666666666667}},"s":{"docs":{},":":{"docs":{"core/abstract/button_group.html":{"ref":"core/abstract/button_group.html","tf":0.007936507936507936},"core/abstract/button_tree.html":{"ref":"core/abstract/button_tree.html","tf":0.014925373134328358},"core/abstract/virtual_group.html":{"ref":"core/abstract/virtual_group.html","tf":0.014492753623188406},"core/abstract/custom_tree.html":{"ref":"core/abstract/custom_tree.html","tf":0.007194244604316547},"core/combination/searcher.html":{"ref":"core/combination/searcher.html","tf":0.004608294930875576},"core/layer/layer_popup.html":{"ref":"core/layer/layer_popup.html","tf":0.0058823529411764705},"core/layer/layer_searcher.html":{"ref":"core/layer/layer_searcher.html","tf":0.018518518518518517},"case/combo/bubble_combo.html":{"ref":"case/combo/bubble_combo.html","tf":0.005780346820809248}}}}}}},"e":{"docs":{},"r":{"docs":{},"_":{"docs":{},"p":{"docs":{},"a":{"docs":{},"n":{"docs":{},"e":{"docs":{},"l":{"docs":{"case/layer/layer_panel.html":{"ref":"case/layer/layer_panel.html","tf":10}}}}}}},"t":{"docs":{},"r":{"docs":{},"e":{"docs":{},"e":{"docs":{},"_":{"docs":{},"t":{"docs":{"case/table/layer_tree_table.html":{"ref":"case/table/layer_tree_table.html","tf":10}}}}}}}}}}}},"b":{"docs":{},"e":{"docs":{},"l":{"docs":{"base/label.html":{"ref":"base/label.html","tf":10}}}}},"s":{"docs":{},"t":{"docs":{"base/pager.html":{"ref":"base/pager.html","tf":0.006666666666666667}},":":{"docs":{"base/pager.html":{"ref":"base/pager.html","tf":0.006666666666666667}}},"p":{"docs":{},"a":{"docs":{},"g":{"docs":{"base/pager.html":{"ref":"base/pager.html","tf":0.006666666666666667},"case/pager/direction_pager.html":{"ref":"case/pager/direction_pager.html","tf":0.00819672131147541},"detailed/table/bi.page_table.html":{"ref":"detailed/table/bi.page_table.html","tf":0.004651162790697674}},"e":{"docs":{},":":{"docs":{"case/pager/direction_pager.html":{"ref":"case/pager/direction_pager.html","tf":0.01639344262295082}}}}}}}}},"z":{"docs":{},"y":{"docs":{},"_":{"docs":{},"l":{"docs":{},"o":{"docs":{},"a":{"docs":{},"d":{"docs":{"case/loader/lazy_loader.html":{"ref":"case/loader/lazy_loader.html","tf":10}}}}}}}}}},"o":{"docs":{},"a":{"docs":{},"d":{"docs":{"core/pane.html":{"ref":"core/pane.html","tf":0.0392156862745098}},"e":{"docs":{},"r":{"docs":{"core/combination/loader.html":{"ref":"core/combination/loader.html","tf":10}}}}}},"g":{"docs":{},"i":{"docs":{},"c":{"docs":{"core/combination/loader.html":{"ref":"core/combination/loader.html","tf":0.006289308176100629},"core/combination/navigation.html":{"ref":"core/combination/navigation.html","tf":0.007194244604316547},"core/combination/tab.html":{"ref":"core/combination/tab.html","tf":0.00684931506849315},"core/layer/layer_popup.html":{"ref":"core/layer/layer_popup.html","tf":0.0058823529411764705},"case/button/multi_select_item.html":{"ref":"case/button/multi_select_item.html","tf":0.017543859649122806},"case/layer/pane_list.html":{"ref":"case/layer/pane_list.html","tf":0.006802721088435374},"case/layer/panel.html":{"ref":"case/layer/panel.html","tf":0.015873015873015872}},":":{"docs":{"case/layer/panel.html":{"ref":"case/layer/panel.html","tf":0.015873015873015872}}}}}}},"c":{"docs":{},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{},"k":{"docs":{"core/basic_button.html":{"ref":"core/basic_button.html","tf":0.007936507936507936},"case/combo/bubble_combo.html":{"ref":"case/combo/bubble_combo.html","tf":0.005780346820809248}}}}}}},"i":{"docs":{},"n":{"docs":{},"e":{"docs":{"base/canvas.html":{"ref":"base/canvas.html","tf":0.016666666666666666}},"h":{"docs":{},"e":{"docs":{},"i":{"docs":{},"g":{"docs":{},"h":{"docs":{},"t":{"docs":{"base/editor/code_editor.html":{"ref":"base/editor/code_editor.html","tf":0.012658227848101266},"base/editor/formula_editor.html":{"ref":"base/editor/formula_editor.html","tf":0.010101010101010102}}}}}}}},"_":{"docs":{},"s":{"docs":{},"p":{"docs":{},"a":{"docs":{},"c":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},")":{"docs":{"base/svg.html":{"ref":"base/svg.html","tf":0.011235955056179775}}}}}}}}}}},"w":{"docs":{},"i":{"docs":{},"d":{"docs":{},"t":{"docs":{},"h":{"docs":{},":":{"docs":{"case/complex_canvas.html":{"ref":"case/complex_canvas.html","tf":0.020833333333333332}}}}}}}}}},"s":{"docs":{},"t":{"docs":{},"面":{"docs":{},"板":{"docs":{},",":{"docs":{},"基":{"docs":{},"类":{"docs":{},"b":{"docs":{},"i":{"docs":{},".":{"docs":{},"w":{"docs":{},"i":{"docs":{},"d":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{"case/layer/pane_list.html":{"ref":"case/layer/pane_list.html","tf":0.006802721088435374}}}}}}}}}}}}}}}},"_":{"docs":{},"l":{"docs":{},"o":{"docs":{},"a":{"docs":{},"d":{"docs":{"case/loader/list_loader.html":{"ref":"case/loader/list_loader.html","tf":10}}}}}}}}}}},"n":{"docs":{},"u":{"docs":{},"m":{"docs":{},"b":{"docs":{},"e":{"docs":{},"r":{"docs":{"core/layout/vertical.html":{"ref":"core/layout/vertical.html","tf":0.07692307692307693},"core/layout/horizontal.html":{"ref":"core/layout/horizontal.html","tf":0.06451612903225806},"core/layout/htape.html":{"ref":"core/layout/htape.html","tf":0.048},"core/layout/vtape.html":{"ref":"core/layout/vtape.html","tf":0.048},"core/layout/center_adapt.html":{"ref":"core/layout/center_adapt.html","tf":0.07058823529411765},"core/layout/vertical_adapt.html":{"ref":"core/layout/vertical_adapt.html","tf":0.06896551724137931},"core/layout/left_right_vertical_adapt.html":{"ref":"core/layout/left_right_vertical_adapt.html","tf":0.06593406593406594},"core/layout/flow.html":{"ref":"core/layout/flow.html","tf":0.046153846153846156},"core/layout/center.html":{"ref":"core/layout/center.html","tf":0.0759493670886076},"core/layout/horizontal_adapt.html":{"ref":"core/layout/horizontal_adapt.html","tf":0.06521739130434782},"core/layout/horizontal_auto.html":{"ref":"core/layout/horizontal_auto.html","tf":0.07407407407407407},"core/layout/horizontal_float.html":{"ref":"core/layout/horizontal_float.html","tf":0.08333333333333333},"core/layout/float_center.html":{"ref":"core/layout/float_center.html","tf":0.0759493670886076},"core/layout/grid.html":{"ref":"core/layout/grid.html","tf":0.017857142857142856},"core/layout/table.html":{"ref":"core/layout/table.html","tf":0.024096385542168676},"core/layout/td.html":{"ref":"core/layout/td.html","tf":0.03571428571428571},"core/abstract/grid_view.html":{"ref":"core/abstract/grid_view.html","tf":0.038461538461538464},"core/abstract/collection_view.html":{"ref":"core/abstract/collection_view.html","tf":0.0425531914893617},"core/abstract/virtual_list.html":{"ref":"core/abstract/virtual_list.html","tf":0.0375},"core/combination/bi.combo.html":{"ref":"core/combination/bi.combo.html","tf":0.014423076923076924},"core/combination/bi.expander.html":{"ref":"core/combination/bi.expander.html","tf":0.005494505494505495},"core/combination/group_combo.html":{"ref":"core/combination/group_combo.html","tf":0.007874015748031496},"core/combination/searcher.html":{"ref":"core/combination/searcher.html","tf":0.027649769585253458},"core/layer/layer_float_box.html":{"ref":"core/layer/layer_float_box.html","tf":0.024691358024691357},"core/layer/layer_popup.html":{"ref":"core/layer/layer_popup.html","tf":0.047058823529411764},"base/label.html":{"ref":"base/label.html","tf":0.053691275167785234},"base/bubble.html":{"ref":"base/bubble.html","tf":0.023255813953488372},"base/toast.html":{"ref":"base/toast.html","tf":0.020833333333333332},"base/button/button.html":{"ref":"base/button/button.html","tf":0.0625},"base/button/text_button.html":{"ref":"base/button/text_button.html","tf":0.04716981132075472},"base/button/icon_button.html":{"ref":"base/button/icon_button.html","tf":0.05128205128205128},"base/editor/editor.html":{"ref":"base/editor/editor.html","tf":0.032432432432432434},"base/editor/code_editor.html":{"ref":"base/editor/code_editor.html","tf":0.012658227848101266},"base/editor/multifile_editor.html":{"ref":"base/editor/multifile_editor.html","tf":0.015384615384615385},"base/editor/formula_editor.html":{"ref":"base/editor/formula_editor.html","tf":0.010101010101010102},"base/table/table_view.html":{"ref":"base/table/table_view.html","tf":0.018867924528301886},"base/table/grid_table.html":{"ref":"base/table/grid_table.html","tf":0.017543859649122806},"base/table/collection_table.html":{"ref":"base/table/collection_table.html","tf":0.013071895424836602},"base/table/resizable_table.html":{"ref":"base/table/resizable_table.html","tf":0.0125},"base/pager.html":{"ref":"base/pager.html","tf":0.013333333333333334},"case/button/multi_select_item.html":{"ref":"case/button/multi_select_item.html","tf":0.017543859649122806},"case/button/single_select_item.html":{"ref":"case/button/single_select_item.html","tf":0.03225806451612903},"case/button/single_select_radio_item.html":{"ref":"case/button/single_select_radio_item.html","tf":0.03225806451612903},"case/editor/shelter_editor.html":{"ref":"case/editor/shelter_editor.html","tf":0.03626943005181347},"case/editor/sign_editor.html":{"ref":"case/editor/sign_editor.html","tf":0.038461538461538464},"case/editor/sign_initial_editor.html":{"ref":"case/editor/sign_initial_editor.html","tf":0.03608247422680412},"case/editor/state_editor.html":{"ref":"case/editor/state_editor.html","tf":0.040229885057471264},"case/layer/pane_list.html":{"ref":"case/layer/pane_list.html","tf":0.04081632653061224},"case/loader/list_loader.html":{"ref":"case/loader/list_loader.html","tf":0.010752688172043012},"case/loader/sort_list.html":{"ref":"case/loader/sort_list.html","tf":0.010752688172043012},"case/trigger/editor_trigger.html":{"ref":"case/trigger/editor_trigger.html","tf":0.02},"case/combo/icon_combo.html":{"ref":"case/combo/icon_combo.html","tf":0.05426356589147287},"case/combo/static_combo.html":{"ref":"case/combo/static_combo.html","tf":0.0125},"case/combo/text_value_combo.html":{"ref":"case/combo/text_value_combo.html","tf":0.013513513513513514},"case/combo/text_value_downlist_combo.html":{"ref":"case/combo/text_value_downlist_combo.html","tf":0.013513513513513514},"case/tree/branch_relation.html":{"ref":"case/tree/branch_relation.html","tf":0.02040816326530612},"case/table/adaptive_table.html":{"ref":"case/table/adaptive_table.html","tf":0.012121212121212121},"case/table/tree_table.html":{"ref":"case/table/tree_table.html","tf":0.01020408163265306},"case/table/layer_tree_table.html":{"ref":"case/table/layer_tree_table.html","tf":0.01020408163265306},"case/pager/all_count_pager.html":{"ref":"case/pager/all_count_pager.html","tf":0.058823529411764705},"case/pager/direction_pager.html":{"ref":"case/pager/direction_pager.html","tf":0.02459016393442623},"case/calendar.html":{"ref":"case/calendar.html","tf":0.041666666666666664},"case/color_chooser_popup.html":{"ref":"case/color_chooser_popup.html","tf":0.029411764705882353},"case/segment.html":{"ref":"case/segment.html","tf":0.07476635514018691},"detailed/bi.button/tooltip.html":{"ref":"detailed/bi.button/tooltip.html","tf":0.09090909090909091},"detailed/bi.button/items.html":{"ref":"detailed/bi.button/items.html","tf":0.0851063829787234},"detailed/bi.button/node.html":{"ref":"detailed/bi.button/node.html","tf":0.07407407407407407},"detailed/bi.button/segment.html":{"ref":"detailed/bi.button/segment.html","tf":0.07476635514018691},"detailed/tree/bi.multi_tree_combo.html":{"ref":"detailed/tree/bi.multi_tree_combo.html","tf":0.021739130434782608},"detailed/table/bi.preview_table.html":{"ref":"detailed/table/bi.preview_table.html","tf":0.006756756756756757},"detailed/table/bi.responsive_table.html":{"ref":"detailed/table/bi.responsive_table.html","tf":0.015789473684210527},"detailed/table/bi.excel_table.html":{"ref":"detailed/table/bi.excel_table.html","tf":0.016574585635359115},"detailed/table/bi.page_table.html":{"ref":"detailed/table/bi.page_table.html","tf":0.018604651162790697},"detailed/text_input/bi.text_editor.html":{"ref":"detailed/text_input/bi.text_editor.html","tf":0.08247422680412371},"detailed/text_input/bi.search_editor.html":{"ref":"detailed/text_input/bi.search_editor.html","tf":0.08080808080808081},"detailed/text_input/bi.clear_editor.html":{"ref":"detailed/text_input/bi.clear_editor.html","tf":0.0784313725490196},"detailed/text_input/finetuning_number_editor.html":{"ref":"detailed/text_input/finetuning_number_editor.html","tf":0.037037037037037035},"detailed/down_list_combo.html":{"ref":"detailed/down_list_combo.html","tf":0.006578947368421052},"detailed/numeric_interval.html":{"ref":"detailed/numeric_interval.html","tf":0.034482758620689655},"detailed/combo/single_tree_combo.html":{"ref":"detailed/combo/single_tree_combo.html","tf":0.01694915254237288},"detailed/combo/multilayer_single_tree_combo.html":{"ref":"detailed/combo/multilayer_single_tree_combo.html","tf":0.018867924528301886},"detailed/combo/select_tree_combo.html":{"ref":"detailed/combo/select_tree_combo.html","tf":0.02040816326530612},"detailed/combo/multilayer_select_tree_combo.html":{"ref":"detailed/combo/multilayer_select_tree_combo.html","tf":0.02040816326530612},"detailed/slider.html":{"ref":"detailed/slider.html","tf":0.058823529411764705}},",":{"docs":{},"f":{"docs":{},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{},"t":{"docs":{"core/abstract/grid_view.html":{"ref":"core/abstract/grid_view.html","tf":0.02564102564102564}}}}}}}},"/":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"core/layer/layer_popup.html":{"ref":"core/layer/layer_popup.html","tf":0.011764705882352941},"base/button/image_button.html":{"ref":"base/button/image_button.html","tf":0.029850746268656716}}}}},"b":{"docs":{},"o":{"docs":{},"o":{"docs":{},"l":{"docs":{},"e":{"docs":{},"a":{"docs":{},"n":{"docs":{"case/pager/direction_pager.html":{"ref":"case/pager/direction_pager.html","tf":0.00819672131147541}}}}}}}}},"f":{"docs":{},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{},"t":{"docs":{"case/pager/direction_pager.html":{"ref":"case/pager/direction_pager.html","tf":0.00819672131147541},"detailed/table/bi.page_table.html":{"ref":"detailed/table/bi.page_table.html","tf":0.004651162790697674}}}}}}}}}}},"e":{"docs":{},"r":{"docs":{},"i":{"docs":{},"c":{"docs":{},"_":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{"detailed/numeric_interval.html":{"ref":"detailed/numeric_interval.html","tf":10.017241379310345}}}}}}}}}}}}}},"l":{"docs":{},"l":{"docs":{"core/layout/grid.html":{"ref":"core/layout/grid.html","tf":0.017857142857142856},"core/combination/searcher.html":{"ref":"core/combination/searcher.html","tf":0.004608294930875576},"core/combination/switcher.html":{"ref":"core/combination/switcher.html","tf":0.00625},"core/widget.html":{"ref":"core/widget.html","tf":0.01020408163265306},"core/single.html":{"ref":"core/single.html","tf":0.05555555555555555},"core/basic_button.html":{"ref":"core/basic_button.html","tf":0.015873015873015872},"base/label.html":{"ref":"base/label.html","tf":0.013422818791946308},"base/button/button.html":{"ref":"base/button/button.html","tf":0.011363636363636364},"base/button/text_button.html":{"ref":"base/button/text_button.html","tf":0.018867924528301886},"base/button/icon_button.html":{"ref":"base/button/icon_button.html","tf":0.05128205128205128},"case/combo/bubble_combo.html":{"ref":"case/combo/bubble_combo.html","tf":0.005780346820809248},"case/tree/simple_tree.html":{"ref":"case/tree/simple_tree.html","tf":0.022222222222222223},"case/tree/branch_relation.html":{"ref":"case/tree/branch_relation.html","tf":0.02040816326530612},"detailed/tree/bi.multi_tree_combo.html":{"ref":"detailed/tree/bi.multi_tree_combo.html","tf":0.010869565217391304},"detailed/table/bi.preview_table.html":{"ref":"detailed/table/bi.preview_table.html","tf":0.006756756756756757},"detailed/text_input/bi.text_editor.html":{"ref":"detailed/text_input/bi.text_editor.html","tf":0.020618556701030927},"detailed/text_input/bi.search_editor.html":{"ref":"detailed/text_input/bi.search_editor.html","tf":0.020202020202020204},"detailed/text_input/bi.clear_editor.html":{"ref":"detailed/text_input/bi.clear_editor.html","tf":0.0196078431372549},"detailed/combo/single_tree_combo.html":{"ref":"detailed/combo/single_tree_combo.html","tf":0.01694915254237288},"detailed/combo/multilayer_single_tree_combo.html":{"ref":"detailed/combo/multilayer_single_tree_combo.html","tf":0.018867924528301886},"detailed/combo/select_tree_combo.html":{"ref":"detailed/combo/select_tree_combo.html","tf":0.02040816326530612},"detailed/combo/multilayer_select_tree_combo.html":{"ref":"detailed/combo/multilayer_select_tree_combo.html","tf":0.02040816326530612}},")":{"docs":{},",":{"docs":{"core/combination/loader.html":{"ref":"core/combination/loader.html","tf":0.006289308176100629}}}}}}},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{},"h":{"docs":{},",":{"docs":{},"e":{"docs":{},"a":{"docs":{},"s":{"docs":{},"t":{"docs":{},",":{"docs":{},"w":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},",":{"docs":{},"s":{"docs":{},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{},"h":{"docs":{},",":{"docs":{},"c":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"core/layout/border.html":{"ref":"core/layout/border.html","tf":0.012987012987012988}}}}}}}}}}}}}}}}}}}}}}},":":{"docs":{"core/layout/border.html":{"ref":"core/layout/border.html","tf":0.012987012987012988}}}}},"m":{"docs":{},"a":{"docs":{},"l":{"docs":{},",":{"docs":{},"n":{"docs":{},"o":{"docs":{},"w":{"docs":{},"r":{"docs":{},"a":{"docs":{},"p":{"docs":{"base/label.html":{"ref":"base/label.html","tf":0.006711409395973154},"base/button/button.html":{"ref":"base/button/button.html","tf":0.005681818181818182},"base/button/text_button.html":{"ref":"base/button/text_button.html","tf":0.009433962264150943}}}}}}}}}}}}},"d":{"docs":{},"e":{"docs":{"core/abstract/custom_tree.html":{"ref":"core/abstract/custom_tree.html","tf":0.02158273381294964},"case/tree/level_tree.html":{"ref":"case/tree/level_tree.html","tf":0.03571428571428571}},"_":{"docs":{},"b":{"docs":{},"u":{"docs":{},"t":{"docs":{},"t":{"docs":{},"o":{"docs":{},"n":{"docs":{"core/node_button.html":{"ref":"core/node_button.html","tf":10}}}}}}}}},":":{"docs":{"case/tree/display_tree.html":{"ref":"case/tree/display_tree.html","tf":0.030303030303030304}}}}},"_":{"docs":{},"s":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"\"":{"docs":{},")":{"docs":{"core/layer/layer_searcher.html":{"ref":"core/layer/layer_searcher.html","tf":0.009259259259259259}}}},"e":{"docs":{},"d":{"docs":{},"_":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"\"":{"docs":{},")":{"docs":{"core/pane.html":{"ref":"core/pane.html","tf":0.0196078431372549}}}}}}}}}}}}}}}}}},"w":{"docs":{},"r":{"docs":{},"a":{"docs":{},"p":{"docs":{"base/label.html":{"ref":"base/label.html","tf":0.006711409395973154},"base/button/button.html":{"ref":"base/button/button.html","tf":0.005681818181818182},"base/button/text_button.html":{"ref":"base/button/text_button.html","tf":0.009433962264150943}}}}}}},"e":{"docs":{},"x":{"docs":{},"t":{"docs":{"core/combination/loader.html":{"ref":"core/combination/loader.html","tf":0.006289308176100629},"base/pager.html":{"ref":"base/pager.html","tf":0.006666666666666667},"case/loader/list_loader.html":{"ref":"case/loader/list_loader.html","tf":0.010752688172043012},"case/loader/sort_list.html":{"ref":"case/loader/sort_list.html","tf":0.010752688172043012}}}},"w":{"docs":{"core/layer/layer_float_box.html":{"ref":"core/layer/layer_float_box.html","tf":0.012345679012345678}}}},"a":{"docs":{},"v":{"docs":{},"i":{"docs":{},"g":{"docs":{"core/combination/navigation.html":{"ref":"core/combination/navigation.html","tf":10}}}}},"m":{"docs":{},"e":{"docs":{"core/widget.html":{"ref":"core/widget.html","tf":0.01020408163265306}},",":{"docs":{},"w":{"docs":{},"i":{"docs":{},"d":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{"core/widget.html":{"ref":"core/widget.html","tf":0.00510204081632653}}}}}}}}},"o":{"docs":{},"r":{"docs":{},"w":{"docs":{},"i":{"docs":{},"d":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{"core/widget.html":{"ref":"core/widget.html","tf":0.00510204081632653}}}}}}}}}}}}}},"r":{"docs":{},"g":{"docs":{},"a":{"docs":{},"p":{"docs":{"core/layout/vertical.html":{"ref":"core/layout/vertical.html","tf":0.01282051282051282},"core/layout/horizontal.html":{"ref":"core/layout/horizontal.html","tf":0.010752688172043012},"core/layout/htape.html":{"ref":"core/layout/htape.html","tf":0.008},"core/layout/vtape.html":{"ref":"core/layout/vtape.html","tf":0.008},"core/layout/center_adapt.html":{"ref":"core/layout/center_adapt.html","tf":0.011764705882352941},"core/layout/vertical_adapt.html":{"ref":"core/layout/vertical_adapt.html","tf":0.011494252873563218},"core/layout/flow.html":{"ref":"core/layout/flow.html","tf":0.007692307692307693},"core/layout/center.html":{"ref":"core/layout/center.html","tf":0.012658227848101266},"core/layout/horizontal_adapt.html":{"ref":"core/layout/horizontal_adapt.html","tf":0.010869565217391304},"core/layout/horizontal_auto.html":{"ref":"core/layout/horizontal_auto.html","tf":0.012345679012345678},"core/layout/horizontal_float.html":{"ref":"core/layout/horizontal_float.html","tf":0.013888888888888888},"core/layout/float_center.html":{"ref":"core/layout/float_center.html","tf":0.012658227848101266},"core/combination/searcher.html":{"ref":"core/combination/searcher.html","tf":0.004608294930875576},"core/layer/layer_popup.html":{"ref":"core/layer/layer_popup.html","tf":0.0058823529411764705},"base/label.html":{"ref":"base/label.html","tf":0.006711409395973154},"base/button/button.html":{"ref":"base/button/button.html","tf":0.005681818181818182},"base/button/text_button.html":{"ref":"base/button/text_button.html","tf":0.009433962264150943},"base/editor/editor.html":{"ref":"base/editor/editor.html","tf":0.005405405405405406},"case/editor/shelter_editor.html":{"ref":"case/editor/shelter_editor.html","tf":0.0051813471502590676},"case/editor/sign_editor.html":{"ref":"case/editor/sign_editor.html","tf":0.005494505494505495},"case/editor/sign_initial_editor.html":{"ref":"case/editor/sign_initial_editor.html","tf":0.005154639175257732},"case/editor/state_editor.html":{"ref":"case/editor/state_editor.html","tf":0.005747126436781609},"case/layer/pane_list.html":{"ref":"case/layer/pane_list.html","tf":0.006802721088435374},"case/segment.html":{"ref":"case/segment.html","tf":0.009345794392523364},"detailed/bi.button/tooltip.html":{"ref":"detailed/bi.button/tooltip.html","tf":0.011363636363636364},"detailed/bi.button/items.html":{"ref":"detailed/bi.button/items.html","tf":0.010638297872340425},"detailed/bi.button/node.html":{"ref":"detailed/bi.button/node.html","tf":0.009259259259259259},"detailed/bi.button/segment.html":{"ref":"detailed/bi.button/segment.html","tf":0.009345794392523364},"detailed/text_input/bi.text_editor.html":{"ref":"detailed/text_input/bi.text_editor.html","tf":0.010309278350515464},"detailed/text_input/bi.search_editor.html":{"ref":"detailed/text_input/bi.search_editor.html","tf":0.010101010101010102},"detailed/text_input/bi.clear_editor.html":{"ref":"detailed/text_input/bi.clear_editor.html","tf":0.00980392156862745}}}}},"h":{"docs":{},"g":{"docs":{},"a":{"docs":{},"p":{"docs":{"core/layout/left_right_vertical_adapt.html":{"ref":"core/layout/left_right_vertical_adapt.html","tf":0.02197802197802198}},":":{"docs":{"core/layout/left_right_vertical_adapt.html":{"ref":"core/layout/left_right_vertical_adapt.html","tf":0.01098901098901099}}}}}}},"i":{"docs":{},"g":{"docs":{},"h":{"docs":{},"t":{"docs":{"core/combination/bi.combo.html":{"ref":"core/combination/bi.combo.html","tf":0.004807692307692308},"core/combination/bi.expander.html":{"ref":"core/combination/bi.expander.html","tf":0.01098901098901099},"core/combination/group_combo.html":{"ref":"core/combination/group_combo.html","tf":0.007874015748031496},"detailed/down_list_combo.html":{"ref":"detailed/down_list_combo.html","tf":0.006578947368421052}},":":{"docs":{"core/layout/left_right_vertical_adapt.html":{"ref":"core/layout/left_right_vertical_adapt.html","tf":0.01098901098901099},"core/layout/border.html":{"ref":"core/layout/border.html","tf":0.03896103896103896}}}}}}},"r":{"docs":{},"g":{"docs":{},"a":{"docs":{},"p":{"docs":{"core/layout/left_right_vertical_adapt.html":{"ref":"core/layout/left_right_vertical_adapt.html","tf":0.01098901098901099}}}}}},"o":{"docs":{},"w":{"2":{"docs":{"base/table/table_view.html":{"ref":"base/table/table_view.html","tf":0.006289308176100629},"base/table/collection_table.html":{"ref":"base/table/collection_table.html","tf":0.006535947712418301},"case/table/adaptive_table.html":{"ref":"case/table/adaptive_table.html","tf":0.006060606060606061},"case/table/tree_table.html":{"ref":"case/table/tree_table.html","tf":0.00510204081632653},"case/table/layer_tree_table.html":{"ref":"case/table/layer_tree_table.html","tf":0.00510204081632653},"detailed/table/bi.excel_table.html":{"ref":"detailed/table/bi.excel_table.html","tf":0.0055248618784530384},"detailed/table/bi.page_table.html":{"ref":"detailed/table/bi.page_table.html","tf":0.004651162790697674}},")":{"docs":{"base/table/table_view.html":{"ref":"base/table/table_view.html","tf":0.006289308176100629},"base/table/collection_table.html":{"ref":"base/table/collection_table.html","tf":0.006535947712418301},"case/table/adaptive_table.html":{"ref":"case/table/adaptive_table.html","tf":0.006060606060606061},"case/table/tree_table.html":{"ref":"case/table/tree_table.html","tf":0.00510204081632653},"case/table/layer_tree_table.html":{"ref":"case/table/layer_tree_table.html","tf":0.00510204081632653},"detailed/table/bi.responsive_table.html":{"ref":"detailed/table/bi.responsive_table.html","tf":0.005263157894736842},"detailed/table/bi.excel_table.html":{"ref":"detailed/table/bi.excel_table.html","tf":0.0055248618784530384},"detailed/table/bi.page_table.html":{"ref":"detailed/table/bi.page_table.html","tf":0.004651162790697674}}}},"docs":{"core/layout/grid.html":{"ref":"core/layout/grid.html","tf":0.044642857142857144},"base/table/table_view.html":{"ref":"base/table/table_view.html","tf":0.006289308176100629},"base/table/grid_table.html":{"ref":"base/table/grid_table.html","tf":0.008771929824561403},"base/table/collection_table.html":{"ref":"base/table/collection_table.html","tf":0.006535947712418301},"base/table/resizable_table.html":{"ref":"base/table/resizable_table.html","tf":0.00625},"detailed/table/bi.preview_table.html":{"ref":"detailed/table/bi.preview_table.html","tf":0.006756756756756757},"detailed/table/bi.responsive_table.html":{"ref":"detailed/table/bi.responsive_table.html","tf":0.005263157894736842},"detailed/table/bi.excel_table.html":{"ref":"detailed/table/bi.excel_table.html","tf":0.0055248618784530384}},":":{"docs":{"core/layout/grid.html":{"ref":"core/layout/grid.html","tf":0.03571428571428571}}},"s":{"docs":{},":":{"docs":{"core/layout/grid.html":{"ref":"core/layout/grid.html","tf":0.008928571428571428}}},"i":{"docs":{},"z":{"docs":{"core/layout/table.html":{"ref":"core/layout/table.html","tf":0.012048192771084338},"base/table/table_view.html":{"ref":"base/table/table_view.html","tf":0.006289308176100629},"base/table/grid_table.html":{"ref":"base/table/grid_table.html","tf":0.008771929824561403},"base/table/collection_table.html":{"ref":"base/table/collection_table.html","tf":0.006535947712418301},"base/table/resizable_table.html":{"ref":"base/table/resizable_table.html","tf":0.00625},"case/table/adaptive_table.html":{"ref":"case/table/adaptive_table.html","tf":0.006060606060606061},"case/table/tree_table.html":{"ref":"case/table/tree_table.html","tf":0.00510204081632653},"case/table/layer_tree_table.html":{"ref":"case/table/layer_tree_table.html","tf":0.00510204081632653},"detailed/table/bi.preview_table.html":{"ref":"detailed/table/bi.preview_table.html","tf":0.006756756756756757},"detailed/table/bi.responsive_table.html":{"ref":"detailed/table/bi.responsive_table.html","tf":0.005263157894736842},"detailed/table/bi.excel_table.html":{"ref":"detailed/table/bi.excel_table.html","tf":0.0055248618784530384},"detailed/table/bi.page_table.html":{"ref":"detailed/table/bi.page_table.html","tf":0.004651162790697674}},"e":{"docs":{},":":{"docs":{"core/layout/table.html":{"ref":"core/layout/table.html","tf":0.012048192771084338}}}}}}},"h":{"docs":{},"e":{"docs":{},"i":{"docs":{},"g":{"docs":{},"h":{"docs":{},"t":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"t":{"docs":{"core/abstract/grid_view.html":{"ref":"core/abstract/grid_view.html","tf":0.00641025641025641}},"e":{"docs":{},"r":{"docs":{},":":{"docs":{"core/abstract/grid_view.html":{"ref":"core/abstract/grid_view.html","tf":0.00641025641025641}}}}}}}}}}}}}}}},"o":{"docs":{},"t":{"docs":{"core/widget.html":{"ref":"core/widget.html","tf":0.00510204081632653}}}}},"e":{"docs":{},"m":{"docs":{},"o":{"docs":{},"v":{"docs":{"base/svg.html":{"ref":"base/svg.html","tf":0.011235955056179775}},"e":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{"core/abstract/button_group.html":{"ref":"core/abstract/button_group.html","tf":0.007936507936507936}},"a":{"docs":{},"t":{"docs":{"core/abstract/button_group.html":{"ref":"core/abstract/button_group.html","tf":0.007936507936507936},"case/layer/layer_panel.html":{"ref":"case/layer/layer_panel.html","tf":0.010752688172043012},"case/layer/pane_list.html":{"ref":"case/layer/pane_list.html","tf":0.006802721088435374}}}}}}}},"t":{"docs":{},"a":{"docs":{},"b":{"docs":{"core/combination/tab.html":{"ref":"core/combination/tab.html","tf":0.00684931506849315}}}}},"w":{"docs":{},"i":{"docs":{},"d":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{"core/widget.html":{"ref":"core/widget.html","tf":0.00510204081632653}}}}}}}}}}}},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{"core/abstract/virtual_group.html":{"ref":"core/abstract/virtual_group.html","tf":0.014492753623188406},"core/abstract/custom_tree.html":{"ref":"core/abstract/custom_tree.html","tf":0.007194244604316547},"core/abstract/virtual_list.html":{"ref":"core/abstract/virtual_list.html","tf":0.0125},"core/combination/navigation.html":{"ref":"core/combination/navigation.html","tf":0.007194244604316547},"core/combination/tab.html":{"ref":"core/combination/tab.html","tf":0.00684931506849315},"core/widget.html":{"ref":"core/widget.html","tf":0.00510204081632653}}}}}},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{"core/abstract/grid_view.html":{"ref":"core/abstract/grid_view.html","tf":0.00641025641025641},"core/abstract/collection_view.html":{"ref":"core/abstract/collection_view.html","tf":0.0070921985815602835},"core/abstract/virtual_list.html":{"ref":"core/abstract/virtual_list.html","tf":0.0125},"base/table/grid_table.html":{"ref":"base/table/grid_table.html","tf":0.008771929824561403},"base/table/collection_table.html":{"ref":"base/table/collection_table.html","tf":0.006535947712418301},"base/table/resizable_table.html":{"ref":"base/table/resizable_table.html","tf":0.00625},"case/table/adaptive_table.html":{"ref":"case/table/adaptive_table.html","tf":0.006060606060606061},"case/table/tree_table.html":{"ref":"case/table/tree_table.html","tf":0.00510204081632653},"case/table/layer_tree_table.html":{"ref":"case/table/layer_tree_table.html","tf":0.00510204081632653}}}}},"e":{"docs":{},"t":{"docs":{"base/editor/multifile_editor.html":{"ref":"base/editor/multifile_editor.html","tf":0.015384615384615385},"base/canvas.html":{"ref":"base/canvas.html","tf":0.016666666666666666}},"l":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{},"h":{"docs":{},"e":{"docs":{},"i":{"docs":{},"g":{"docs":{},"h":{"docs":{},"t":{"docs":{"core/combination/bi.combo.html":{"ref":"core/combination/bi.combo.html","tf":0.004807692307692308}}}}}}}},"w":{"docs":{},"i":{"docs":{},"d":{"docs":{},"t":{"docs":{},"h":{"docs":{"core/combination/bi.combo.html":{"ref":"core/combination/bi.combo.html","tf":0.004807692307692308}}}}}}}}}},"a":{"docs":{},"s":{"docs":{},"t":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"i":{"docs":{},"d":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{"base/editor/editor.html":{"ref":"base/editor/editor.html","tf":0.005405405405405406}}}}}}}}}}}}}}},"h":{"docs":{},"e":{"docs":{},"i":{"docs":{},"g":{"docs":{},"h":{"docs":{},"t":{"docs":{"core/layer/layer_popup.html":{"ref":"core/layer/layer_popup.html","tf":0.0058823529411764705},"case/list/list.select.html":{"ref":"case/list/list.select.html","tf":0.009433962264150943},"case/loader/list_loader.html":{"ref":"case/loader/list_loader.html","tf":0.010752688172043012},"case/loader/sort_list.html":{"ref":"case/loader/sort_list.html","tf":0.010752688172043012}}}}}}}},"w":{"docs":{},"i":{"docs":{},"d":{"docs":{},"t":{"docs":{},"h":{"docs":{"core/layer/layer_popup.html":{"ref":"core/layer/layer_popup.html","tf":0.0058823529411764705}}}}}}}}},"u":{"docs":{},"l":{"docs":{},"t":{"docs":{},",":{"docs":{"core/combination/searcher.html":{"ref":"core/combination/searcher.html","tf":0.004608294930875576}}}}}},"i":{"docs":{},"z":{"docs":{"base/table/table_view.html":{"ref":"base/table/table_view.html","tf":0.006289308176100629},"detailed/table/bi.preview_table.html":{"ref":"detailed/table/bi.preview_table.html","tf":0.006756756756756757},"detailed/table/bi.responsive_table.html":{"ref":"detailed/table/bi.responsive_table.html","tf":0.005263157894736842},"detailed/table/bi.excel_table.html":{"ref":"detailed/table/bi.excel_table.html","tf":0.0055248618784530384}},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"_":{"docs":{},"t":{"docs":{"base/table/resizable_table.html":{"ref":"base/table/resizable_table.html","tf":10}}}}}}}},"e":{"docs":{},"h":{"docs":{},"e":{"docs":{},"a":{"docs":{},"d":{"docs":{"detailed/table/bi.preview_table.html":{"ref":"detailed/table/bi.preview_table.html","tf":0.006756756756756757},"detailed/table/bi.responsive_table.html":{"ref":"detailed/table/bi.responsive_table.html","tf":0.005263157894736842},"detailed/table/bi.excel_table.html":{"ref":"detailed/table/bi.excel_table.html","tf":0.0055248618784530384}}}}}}}}},"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":10}}}}}}}}}}}},"t":{"docs":{},"u":{"docs":{},"r":{"docs":{},"n":{"docs":{"core/abstract/grid_view.html":{"ref":"core/abstract/grid_view.html","tf":0.01282051282051282},"core/abstract/collection_view.html":{"ref":"core/abstract/collection_view.html","tf":0.0070921985815602835},"core/abstract/virtual_list.html":{"ref":"core/abstract/virtual_list.html","tf":0.0125},"core/combination/loader.html":{"ref":"core/combination/loader.html","tf":0.018867924528301886},"core/combination/navigation.html":{"ref":"core/combination/navigation.html","tf":0.007194244604316547},"core/combination/searcher.html":{"ref":"core/combination/searcher.html","tf":0.004608294930875576},"core/combination/tab.html":{"ref":"core/combination/tab.html","tf":0.0136986301369863},"core/layer/layer_searcher.html":{"ref":"core/layer/layer_searcher.html","tf":0.009259259259259259},"base/pager.html":{"ref":"base/pager.html","tf":0.006666666666666667},"detailed/multi_select_combo.html":{"ref":"detailed/multi_select_combo.html","tf":0.04}}}}}},"d":{"docs":{},"m":{"docs":{},"a":{"docs":{},"r":{"docs":{},"k":{"docs":{},":":{"docs":{"core/layer/layer_searcher.html":{"ref":"core/layer/layer_searcher.html","tf":0.009259259259259259}}}}}}}},"a":{"docs":{},"d":{"docs":{},"o":{"docs":{},"n":{"docs":{},"l":{"docs":{},"i":{"docs":{"core/single.html":{"ref":"core/single.html","tf":0.013888888888888888},"base/button/button.html":{"ref":"base/button/button.html","tf":0.005681818181818182},"base/editor/code_editor.html":{"ref":"base/editor/code_editor.html","tf":0.012658227848101266}}}}}}}},"f":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"h":{"docs":{"base/editor/code_editor.html":{"ref":"base/editor/code_editor.html","tf":0.012658227848101266},"base/editor/formula_editor.html":{"ref":"base/editor/formula_editor.html","tf":0.010101010101010102}}}}}}},"g":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},"u":{"docs":{},"m":{"docs":{},"n":{"docs":{},"s":{"docs":{"base/table/table_view.html":{"ref":"base/table/table_view.html","tf":0.006289308176100629},"base/table/grid_table.html":{"ref":"base/table/grid_table.html","tf":0.008771929824561403},"base/table/collection_table.html":{"ref":"base/table/collection_table.html","tf":0.006535947712418301},"base/table/resizable_table.html":{"ref":"base/table/resizable_table.html","tf":0.00625},"case/table/adaptive_table.html":{"ref":"case/table/adaptive_table.html","tf":0.006060606060606061},"case/table/tree_table.html":{"ref":"case/table/tree_table.html","tf":0.00510204081632653},"case/table/layer_tree_table.html":{"ref":"case/table/layer_tree_table.html","tf":0.00510204081632653},"detailed/table/bi.responsive_table.html":{"ref":"detailed/table/bi.responsive_table.html","tf":0.005263157894736842},"detailed/table/bi.excel_table.html":{"ref":"detailed/table/bi.excel_table.html","tf":0.0055248618784530384},"detailed/table/bi.page_table.html":{"ref":"detailed/table/bi.page_table.html","tf":0.004651162790697674}}}}}}}}},":":{"docs":{"detailed/relation_view.html":{"ref":"detailed/relation_view.html","tf":0.019230769230769232}}},"t":{"docs":{},"e":{"docs":{},"x":{"docs":{},"t":{"docs":{},":":{"docs":{"detailed/relation_view.html":{"ref":"detailed/relation_view.html","tf":0.019230769230769232}}}}}}}}}}},"c":{"docs":{},"t":{"docs":{"base/svg.html":{"ref":"base/svg.html","tf":0.011235955056179775},"base/canvas.html":{"ref":"base/canvas.html","tf":0.016666666666666666}}}},"l":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"_":{"docs":{},"v":{"docs":{},"i":{"docs":{},"e":{"docs":{},"w":{"docs":{"detailed/relation_view.html":{"ref":"detailed/relation_view.html","tf":10.01923076923077}}}}}}}}}}}}}},"a":{"docs":{},"d":{"docs":{},"i":{"docs":{},"u":{"docs":{},"s":{"docs":{},"大":{"docs":{},"小":{"docs":{"base/svg.html":{"ref":"base/svg.html","tf":0.011235955056179775}}}},",":{"docs":{"base/canvas.html":{"ref":"base/canvas.html","tf":0.016666666666666666}}}}}}}}},"t":{"docs":{},"e":{"docs":{},"x":{"docs":{},"t":{"docs":{"core/layout/htape.html":{"ref":"core/layout/htape.html","tf":0.024},"core/layout/vtape.html":{"ref":"core/layout/vtape.html","tf":0.024},"core/widget.html":{"ref":"core/widget.html","tf":0.00510204081632653},"base/label.html":{"ref":"base/label.html","tf":0.006711409395973154},"base/bubble.html":{"ref":"base/bubble.html","tf":0.023255813953488372},"base/toast.html":{"ref":"base/toast.html","tf":0.020833333333333332},"base/message.html":{"ref":"base/message.html","tf":0.02127659574468085},"base/button/text_button.html":{"ref":"base/button/text_button.html","tf":0.009433962264150943},"base/editor/editor.html":{"ref":"base/editor/editor.html","tf":0.005405405405405406},"base/svg.html":{"ref":"base/svg.html","tf":0.011235955056179775},"case/editor/shelter_editor.html":{"ref":"case/editor/shelter_editor.html","tf":0.0051813471502590676},"case/editor/sign_editor.html":{"ref":"case/editor/sign_editor.html","tf":0.005494505494505495},"case/editor/sign_initial_editor.html":{"ref":"case/editor/sign_initial_editor.html","tf":0.010309278350515464},"case/editor/state_editor.html":{"ref":"case/editor/state_editor.html","tf":0.005747126436781609},"case/trigger/editor_trigger.html":{"ref":"case/trigger/editor_trigger.html","tf":0.02},"case/combo/bubble_combo.html":{"ref":"case/combo/bubble_combo.html","tf":0.005780346820809248},"case/combo/static_combo.html":{"ref":"case/combo/static_combo.html","tf":0.0125},"case/combo/text_value_combo.html":{"ref":"case/combo/text_value_combo.html","tf":0.013513513513513514},"case/combo/text_value_downlist_combo.html":{"ref":"case/combo/text_value_downlist_combo.html","tf":0.013513513513513514},"detailed/combo/single_tree_combo.html":{"ref":"detailed/combo/single_tree_combo.html","tf":0.01694915254237288},"detailed/combo/multilayer_single_tree_combo.html":{"ref":"detailed/combo/multilayer_single_tree_combo.html","tf":0.018867924528301886},"detailed/combo/select_tree_combo.html":{"ref":"detailed/combo/select_tree_combo.html","tf":0.02040816326530612},"detailed/combo/multilayer_select_tree_combo.html":{"ref":"detailed/combo/multilayer_select_tree_combo.html","tf":0.02040816326530612}},":":{"docs":{"core/layout/vertical.html":{"ref":"core/layout/vertical.html","tf":0.02564102564102564},"core/layout/horizontal.html":{"ref":"core/layout/horizontal.html","tf":0.021505376344086023},"core/layout/htape.html":{"ref":"core/layout/htape.html","tf":0.024},"core/layout/vtape.html":{"ref":"core/layout/vtape.html","tf":0.024},"core/layout/center_adapt.html":{"ref":"core/layout/center_adapt.html","tf":0.023529411764705882},"core/layout/vertical_adapt.html":{"ref":"core/layout/vertical_adapt.html","tf":0.022988505747126436},"core/layout/left_right_vertical_adapt.html":{"ref":"core/layout/left_right_vertical_adapt.html","tf":0.02197802197802198},"core/layout/flow.html":{"ref":"core/layout/flow.html","tf":0.03076923076923077},"core/layout/center.html":{"ref":"core/layout/center.html","tf":0.02531645569620253},"core/layout/horizontal_adapt.html":{"ref":"core/layout/horizontal_adapt.html","tf":0.021739130434782608},"core/layout/horizontal_auto.html":{"ref":"core/layout/horizontal_auto.html","tf":0.024691358024691357},"core/layout/horizontal_float.html":{"ref":"core/layout/horizontal_float.html","tf":0.013888888888888888},"core/layout/float_center.html":{"ref":"core/layout/float_center.html","tf":0.02531645569620253},"core/layout/grid.html":{"ref":"core/layout/grid.html","tf":0.03571428571428571},"core/layout/table.html":{"ref":"core/layout/table.html","tf":0.03614457831325301},"core/abstract/button_group.html":{"ref":"core/abstract/button_group.html","tf":0.007936507936507936},"core/abstract/button_tree.html":{"ref":"core/abstract/button_tree.html","tf":0.014925373134328358},"core/abstract/virtual_list.html":{"ref":"core/abstract/virtual_list.html","tf":0.0125},"core/combination/bi.combo.html":{"ref":"core/combination/bi.combo.html","tf":0.004807692307692308},"core/combination/bi.expander.html":{"ref":"core/combination/bi.expander.html","tf":0.016483516483516484},"core/combination/group_combo.html":{"ref":"core/combination/group_combo.html","tf":0.023622047244094488},"core/combination/loader.html":{"ref":"core/combination/loader.html","tf":0.006289308176100629},"core/combination/navigation.html":{"ref":"core/combination/navigation.html","tf":0.02158273381294964},"core/combination/switcher.html":{"ref":"core/combination/switcher.html","tf":0.00625},"core/combination/tab.html":{"ref":"core/combination/tab.html","tf":0.0273972602739726},"core/layer/layer_float_box.html":{"ref":"core/layer/layer_float_box.html","tf":0.012345679012345678},"core/layer/layer_popup.html":{"ref":"core/layer/layer_popup.html","tf":0.011764705882352941},"core/layer/layer_searcher.html":{"ref":"core/layer/layer_searcher.html","tf":0.027777777777777776},"base/label.html":{"ref":"base/label.html","tf":0.006711409395973154},"base/bubble.html":{"ref":"base/bubble.html","tf":0.023255813953488372},"base/toast.html":{"ref":"base/toast.html","tf":0.020833333333333332},"base/button/button.html":{"ref":"base/button/button.html","tf":0.005681818181818182},"base/button/text_button.html":{"ref":"base/button/text_button.html","tf":0.009433962264150943},"base/table/collection_table.html":{"ref":"base/table/collection_table.html","tf":0.026143790849673203},"base/table/resizable_table.html":{"ref":"base/table/resizable_table.html","tf":0.025},"case/button/multi_select_item.html":{"ref":"case/button/multi_select_item.html","tf":0.03508771929824561},"case/button/single_select_item.html":{"ref":"case/button/single_select_item.html","tf":0.03225806451612903},"case/button/single_select_radio_item.html":{"ref":"case/button/single_select_radio_item.html","tf":0.03225806451612903},"case/editor/sign_editor.html":{"ref":"case/editor/sign_editor.html","tf":0.005494505494505495},"case/editor/sign_initial_editor.html":{"ref":"case/editor/sign_initial_editor.html","tf":0.005154639175257732},"case/editor/state_editor.html":{"ref":"case/editor/state_editor.html","tf":0.005747126436781609},"case/layer/panel.html":{"ref":"case/layer/panel.html","tf":0.015873015873015872},"case/list/list.select.html":{"ref":"case/list/list.select.html","tf":0.018867924528301886},"case/combo/bubble_combo.html":{"ref":"case/combo/bubble_combo.html","tf":0.011560693641618497},"case/combo/static_combo.html":{"ref":"case/combo/static_combo.html","tf":0.05},"case/combo/text_value_combo.html":{"ref":"case/combo/text_value_combo.html","tf":0.05405405405405406},"case/combo/text_value_downlist_combo.html":{"ref":"case/combo/text_value_downlist_combo.html","tf":0.06756756756756757},"case/tree/display_tree.html":{"ref":"case/tree/display_tree.html","tf":0.030303030303030304},"case/segment.html":{"ref":"case/segment.html","tf":0.037383177570093455},"detailed/bi.button/tooltip.html":{"ref":"detailed/bi.button/tooltip.html","tf":0.011363636363636364},"detailed/bi.button/items.html":{"ref":"detailed/bi.button/items.html","tf":0.0425531914893617},"detailed/bi.button/node.html":{"ref":"detailed/bi.button/node.html","tf":0.05555555555555555},"detailed/bi.button/segment.html":{"ref":"detailed/bi.button/segment.html","tf":0.037383177570093455},"detailed/tree/bi.multi_tree_combo.html":{"ref":"detailed/tree/bi.multi_tree_combo.html","tf":0.03260869565217391},"detailed/tree/bi.switch_tree.html":{"ref":"detailed/tree/bi.switch_tree.html","tf":0.039473684210526314},"detailed/table/bi.preview_table.html":{"ref":"detailed/table/bi.preview_table.html","tf":0.04054054054054054},"detailed/table/bi.responsive_table.html":{"ref":"detailed/table/bi.responsive_table.html","tf":0.031578947368421054},"detailed/table/bi.excel_table.html":{"ref":"detailed/table/bi.excel_table.html","tf":0.022099447513812154},"detailed/down_list_combo.html":{"ref":"detailed/down_list_combo.html","tf":0.039473684210526314},"detailed/combo/single_tree_combo.html":{"ref":"detailed/combo/single_tree_combo.html","tf":0.01694915254237288},"detailed/combo/multilayer_single_tree_combo.html":{"ref":"detailed/combo/multilayer_single_tree_combo.html","tf":0.018867924528301886},"detailed/combo/select_tree_combo.html":{"ref":"detailed/combo/select_tree_combo.html","tf":0.02040816326530612},"detailed/combo/multilayer_select_tree_combo.html":{"ref":"detailed/combo/multilayer_select_tree_combo.html","tf":0.02040816326530612},"detailed/relation_view.html":{"ref":"detailed/relation_view.html","tf":0.07692307692307693},"detailed/file_manager.html":{"ref":"detailed/file_manager.html","tf":0.06976744186046512}}},"a":{"docs":{},"l":{"docs":{},"i":{"docs":{},"g":{"docs":{},"n":{"docs":{"base/label.html":{"ref":"base/label.html","tf":0.006711409395973154},"base/button/button.html":{"ref":"base/button/button.html","tf":0.005681818181818182},"base/button/text_button.html":{"ref":"base/button/text_button.html","tf":0.009433962264150943},"case/button/single_select_item.html":{"ref":"case/button/single_select_item.html","tf":0.016129032258064516},"case/button/single_select_radio_item.html":{"ref":"case/button/single_select_radio_item.html","tf":0.016129032258064516},"case/editor/shelter_editor.html":{"ref":"case/editor/shelter_editor.html","tf":0.0051813471502590676}}}}}},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"_":{"docs":{},"e":{"docs":{},"d":{"docs":{},"i":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{"base/editor/textarea_editor.html":{"ref":"base/editor/textarea_editor.html","tf":10}}}}}}}}}}}}},"h":{"docs":{},"e":{"docs":{},"i":{"docs":{},"g":{"docs":{},"h":{"docs":{},"t":{"docs":{"base/label.html":{"ref":"base/label.html","tf":0.006711409395973154},"base/button/button.html":{"ref":"base/button/button.html","tf":0.005681818181818182},"base/button/text_button.html":{"ref":"base/button/text_button.html","tf":0.009433962264150943}},":":{"docs":{"base/label.html":{"ref":"base/label.html","tf":0.006711409395973154}}}}}}}}},"w":{"docs":{},"i":{"docs":{},"d":{"docs":{},"t":{"docs":{},"h":{"docs":{"base/label.html":{"ref":"base/label.html","tf":0.006711409395973154},"base/button/button.html":{"ref":"base/button/button.html","tf":0.005681818181818182},"base/button/text_button.html":{"ref":"base/button/text_button.html","tf":0.009433962264150943}},":":{"docs":{"base/label.html":{"ref":"base/label.html","tf":0.006711409395973154}}}}}}}},"_":{"docs":{},"b":{"docs":{},"u":{"docs":{},"t":{"docs":{},"t":{"docs":{},"o":{"docs":{},"n":{"docs":{"base/button/text_button.html":{"ref":"base/button/text_button.html","tf":10}}}}}}}},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"g":{"docs":{},"g":{"docs":{"case/trigger/text_trigger.html":{"ref":"case/trigger/text_trigger.html","tf":10}}}}}}},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{},"e":{"docs":{},"_":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"b":{"docs":{},"o":{"docs":{"case/combo/text_value_combo.html":{"ref":"case/combo/text_value_combo.html","tf":10}}}}}}},"d":{"docs":{},"o":{"docs":{},"w":{"docs":{},"n":{"docs":{},"l":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{},"_":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"b":{"docs":{},"o":{"docs":{"case/combo/text_value_downlist_combo.html":{"ref":"case/combo/text_value_downlist_combo.html","tf":10}}}}}}}}}}}}}}}}}}}}}}}}}},"g":{"docs":{},"a":{"docs":{},"p":{"docs":{"core/layout/vertical.html":{"ref":"core/layout/vertical.html","tf":0.01282051282051282},"core/layout/horizontal.html":{"ref":"core/layout/horizontal.html","tf":0.010752688172043012},"core/layout/htape.html":{"ref":"core/layout/htape.html","tf":0.008},"core/layout/vtape.html":{"ref":"core/layout/vtape.html","tf":0.008},"core/layout/center_adapt.html":{"ref":"core/layout/center_adapt.html","tf":0.011764705882352941},"core/layout/vertical_adapt.html":{"ref":"core/layout/vertical_adapt.html","tf":0.011494252873563218},"core/layout/flow.html":{"ref":"core/layout/flow.html","tf":0.007692307692307693},"core/layout/center.html":{"ref":"core/layout/center.html","tf":0.012658227848101266},"core/layout/horizontal_adapt.html":{"ref":"core/layout/horizontal_adapt.html","tf":0.010869565217391304},"core/layout/horizontal_auto.html":{"ref":"core/layout/horizontal_auto.html","tf":0.012345679012345678},"core/layout/horizontal_float.html":{"ref":"core/layout/horizontal_float.html","tf":0.013888888888888888},"core/layout/float_center.html":{"ref":"core/layout/float_center.html","tf":0.012658227848101266},"core/combination/searcher.html":{"ref":"core/combination/searcher.html","tf":0.004608294930875576},"core/layer/layer_popup.html":{"ref":"core/layer/layer_popup.html","tf":0.0058823529411764705},"base/label.html":{"ref":"base/label.html","tf":0.006711409395973154},"base/button/button.html":{"ref":"base/button/button.html","tf":0.005681818181818182},"base/editor/editor.html":{"ref":"base/editor/editor.html","tf":0.005405405405405406},"case/editor/shelter_editor.html":{"ref":"case/editor/shelter_editor.html","tf":0.0051813471502590676},"case/editor/sign_editor.html":{"ref":"case/editor/sign_editor.html","tf":0.005494505494505495},"case/editor/sign_initial_editor.html":{"ref":"case/editor/sign_initial_editor.html","tf":0.005154639175257732},"case/editor/state_editor.html":{"ref":"case/editor/state_editor.html","tf":0.005747126436781609},"case/layer/pane_list.html":{"ref":"case/layer/pane_list.html","tf":0.006802721088435374},"case/segment.html":{"ref":"case/segment.html","tf":0.009345794392523364},"detailed/bi.button/tooltip.html":{"ref":"detailed/bi.button/tooltip.html","tf":0.011363636363636364},"detailed/bi.button/items.html":{"ref":"detailed/bi.button/items.html","tf":0.010638297872340425},"detailed/bi.button/node.html":{"ref":"detailed/bi.button/node.html","tf":0.009259259259259259},"detailed/bi.button/segment.html":{"ref":"detailed/bi.button/segment.html","tf":0.009345794392523364},"detailed/text_input/bi.text_editor.html":{"ref":"detailed/text_input/bi.text_editor.html","tf":0.010309278350515464},"detailed/text_input/bi.search_editor.html":{"ref":"detailed/text_input/bi.search_editor.html","tf":0.010101010101010102},"detailed/text_input/bi.clear_editor.html":{"ref":"detailed/text_input/bi.clear_editor.html","tf":0.00980392156862745}}}}},"r":{"docs":{},"u":{"docs":{},"e":{"docs":{"core/layout/vertical.html":{"ref":"core/layout/vertical.html","tf":0.01282051282051282},"core/layout/horizontal.html":{"ref":"core/layout/horizontal.html","tf":0.010752688172043012},"core/layout/table.html":{"ref":"core/layout/table.html","tf":0.012048192771084338},"core/abstract/grid_view.html":{"ref":"core/abstract/grid_view.html","tf":0.01282051282051282},"core/abstract/collection_view.html":{"ref":"core/abstract/collection_view.html","tf":0.014184397163120567},"core/combination/bi.combo.html":{"ref":"core/combination/bi.combo.html","tf":0.014423076923076924},"core/combination/bi.expander.html":{"ref":"core/combination/bi.expander.html","tf":0.005494505494505495},"core/combination/loader.html":{"ref":"core/combination/loader.html","tf":0.006289308176100629},"core/combination/navigation.html":{"ref":"core/combination/navigation.html","tf":0.02158273381294964},"core/combination/searcher.html":{"ref":"core/combination/searcher.html","tf":0.009216589861751152},"core/combination/switcher.html":{"ref":"core/combination/switcher.html","tf":0.00625},"core/pane.html":{"ref":"core/pane.html","tf":0.0196078431372549},"base/label.html":{"ref":"base/label.html","tf":0.006711409395973154},"base/button/button.html":{"ref":"base/button/button.html","tf":0.017045454545454544},"base/editor/formula_editor.html":{"ref":"base/editor/formula_editor.html","tf":0.010101010101010102},"base/table/resizable_table.html":{"ref":"base/table/resizable_table.html","tf":0.00625},"base/pager.html":{"ref":"base/pager.html","tf":0.006666666666666667},"case/editor/shelter_editor.html":{"ref":"case/editor/shelter_editor.html","tf":0.0051813471502590676},"case/editor/sign_editor.html":{"ref":"case/editor/sign_editor.html","tf":0.005494505494505495},"case/editor/sign_initial_editor.html":{"ref":"case/editor/sign_initial_editor.html","tf":0.005154639175257732},"case/editor/state_editor.html":{"ref":"case/editor/state_editor.html","tf":0.005747126436781609},"case/layer/panel.html":{"ref":"case/layer/panel.html","tf":0.015873015873015872},"case/table/adaptive_table.html":{"ref":"case/table/adaptive_table.html","tf":0.006060606060606061},"case/table/tree_table.html":{"ref":"case/table/tree_table.html","tf":0.00510204081632653},"case/table/layer_tree_table.html":{"ref":"case/table/layer_tree_table.html","tf":0.00510204081632653},"case/segment.html":{"ref":"case/segment.html","tf":0.009345794392523364},"detailed/bi.button/segment.html":{"ref":"detailed/bi.button/segment.html","tf":0.009345794392523364},"detailed/table/bi.excel_table.html":{"ref":"detailed/table/bi.excel_table.html","tf":0.0055248618784530384},"detailed/down_list_combo.html":{"ref":"detailed/down_list_combo.html","tf":0.006578947368421052},"detailed/numeric_interval.html":{"ref":"detailed/numeric_interval.html","tf":0.034482758620689655}},",":{"docs":{"core/abstract/custom_tree.html":{"ref":"core/abstract/custom_tree.html","tf":0.007194244604316547},"base/table/table_view.html":{"ref":"base/table/table_view.html","tf":0.012578616352201259},"base/table/grid_table.html":{"ref":"base/table/grid_table.html","tf":0.02631578947368421},"case/tree/display_tree.html":{"ref":"case/tree/display_tree.html","tf":0.030303030303030304},"case/table/adaptive_table.html":{"ref":"case/table/adaptive_table.html","tf":0.01818181818181818},"case/segment.html":{"ref":"case/segment.html","tf":0.009345794392523364},"detailed/bi.button/segment.html":{"ref":"detailed/bi.button/segment.html","tf":0.009345794392523364},"detailed/table/bi.responsive_table.html":{"ref":"detailed/table/bi.responsive_table.html","tf":0.010526315789473684},"detailed/down_list_combo.html":{"ref":"detailed/down_list_combo.html","tf":0.006578947368421052}},"f":{"docs":{},"a":{"docs":{},"l":{"docs":{},"s":{"docs":{"core/layout/vertical.html":{"ref":"core/layout/vertical.html","tf":0.01282051282051282},"core/layout/horizontal.html":{"ref":"core/layout/horizontal.html","tf":0.010752688172043012},"core/abstract/grid_view.html":{"ref":"core/abstract/grid_view.html","tf":0.01282051282051282},"core/abstract/collection_view.html":{"ref":"core/abstract/collection_view.html","tf":0.014184397163120567},"core/combination/bi.combo.html":{"ref":"core/combination/bi.combo.html","tf":0.03365384615384615},"core/combination/bi.expander.html":{"ref":"core/combination/bi.expander.html","tf":0.01098901098901099},"core/combination/group_combo.html":{"ref":"core/combination/group_combo.html","tf":0.023622047244094488},"core/combination/loader.html":{"ref":"core/combination/loader.html","tf":0.025157232704402517},"core/combination/navigation.html":{"ref":"core/combination/navigation.html","tf":0.02158273381294964},"core/combination/searcher.html":{"ref":"core/combination/searcher.html","tf":0.013824884792626729},"core/combination/switcher.html":{"ref":"core/combination/switcher.html","tf":0.00625},"core/combination/tab.html":{"ref":"core/combination/tab.html","tf":0.0136986301369863},"core/layer/layer_popup.html":{"ref":"core/layer/layer_popup.html","tf":0.01764705882352941},"core/widget.html":{"ref":"core/widget.html","tf":0.02040816326530612},"core/single.html":{"ref":"core/single.html","tf":0.013888888888888888},"core/basic_button.html":{"ref":"core/basic_button.html","tf":0.07142857142857142},"core/node_button.html":{"ref":"core/node_button.html","tf":0.02631578947368421},"core/pane.html":{"ref":"core/pane.html","tf":0.0196078431372549},"base/label.html":{"ref":"base/label.html","tf":0.013422818791946308},"base/button/button.html":{"ref":"base/button/button.html","tf":0.03409090909090909},"base/button/text_button.html":{"ref":"base/button/text_button.html","tf":0.009433962264150943},"base/editor/editor.html":{"ref":"base/editor/editor.html","tf":0.005405405405405406},"base/editor/code_editor.html":{"ref":"base/editor/code_editor.html","tf":0.012658227848101266},"base/editor/multifile_editor.html":{"ref":"base/editor/multifile_editor.html","tf":0.015384615384615385},"base/editor/formula_editor.html":{"ref":"base/editor/formula_editor.html","tf":0.010101010101010102},"base/pager.html":{"ref":"base/pager.html","tf":0.04},"case/editor/shelter_editor.html":{"ref":"case/editor/shelter_editor.html","tf":0.0051813471502590676},"case/editor/sign_editor.html":{"ref":"case/editor/sign_editor.html","tf":0.005494505494505495},"case/editor/sign_initial_editor.html":{"ref":"case/editor/sign_initial_editor.html","tf":0.005154639175257732},"case/editor/state_editor.html":{"ref":"case/editor/state_editor.html","tf":0.005747126436781609},"case/combo/bubble_combo.html":{"ref":"case/combo/bubble_combo.html","tf":0.05202312138728324},"detailed/text_input/bi.text_editor.html":{"ref":"detailed/text_input/bi.text_editor.html","tf":0.010309278350515464},"detailed/text_input/bi.search_editor.html":{"ref":"detailed/text_input/bi.search_editor.html","tf":0.010101010101010102},"detailed/text_input/bi.clear_editor.html":{"ref":"detailed/text_input/bi.clear_editor.html","tf":0.00980392156862745}}}}}}},";":{"docs":{},"}":{"docs":{"core/layer/layer_searcher.html":{"ref":"core/layer/layer_searcher.html","tf":0.009259259259259259}},"}":{"docs":{},",":{"docs":{"core/layer/layer_searcher.html":{"ref":"core/layer/layer_searcher.html","tf":0.009259259259259259}}}}}},"/":{"docs":{},"f":{"docs":{},"a":{"docs":{},"l":{"docs":{},"s":{"docs":{"case/pager/all_count_pager.html":{"ref":"case/pager/all_count_pager.html","tf":0.014705882352941176}}}}}}}}},"i":{"docs":{},"g":{"docs":{},"g":{"docs":{},"e":{"docs":{},"r":{"docs":{"core/combination/bi.combo.html":{"ref":"core/combination/bi.combo.html","tf":0.004807692307692308},"core/combination/bi.expander.html":{"ref":"core/combination/bi.expander.html","tf":0.005494505494505495},"core/combination/group_combo.html":{"ref":"core/combination/group_combo.html","tf":0.007874015748031496},"core/combination/switcher.html":{"ref":"core/combination/switcher.html","tf":0.00625},"core/basic_button.html":{"ref":"core/basic_button.html","tf":0.007936507936507936},"case/combo/bubble_combo.html":{"ref":"case/combo/bubble_combo.html","tf":0.005780346820809248},"detailed/down_list_combo.html":{"ref":"detailed/down_list_combo.html","tf":0.006578947368421052},"detailed/combo/single_tree_combo.html":{"ref":"detailed/combo/single_tree_combo.html","tf":0.01694915254237288}},"发":{"docs":{},"生":{"docs":{},"改":{"docs":{},"变":{"docs":{},"触":{"docs":{},"发":{"docs":{"core/combination/bi.combo.html":{"ref":"core/combination/bi.combo.html","tf":0.004807692307692308},"core/combination/bi.expander.html":{"ref":"core/combination/bi.expander.html","tf":0.005494505494505495}}}}}}}},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},"l":{"docs":{},"a":{"docs":{},"p":{"docs":{},"s":{"docs":{"core/node_button.html":{"ref":"core/node_button.html","tf":0.02631578947368421}}}}}}}}},"e":{"docs":{},"x":{"docs":{},"p":{"docs":{},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{"core/node_button.html":{"ref":"core/node_button.html","tf":0.02631578947368421}}}}}}}},"w":{"docs":{},"i":{"docs":{},"d":{"docs":{},"t":{"docs":{},"h":{"docs":{"case/trigger/editor_trigger.html":{"ref":"case/trigger/editor_trigger.html","tf":0.02}}}}}}}}}}}},"e":{"docs":{},"e":{"docs":{"case/tree/display_tree.html":{"ref":"case/tree/display_tree.html","tf":0.030303030303030304},"case/tree/simple_tree.html":{"ref":"case/tree/simple_tree.html","tf":0.022222222222222223},"case/tree/level_tree.html":{"ref":"case/tree/level_tree.html","tf":0.017857142857142856},"case/tree/branch_relation.html":{"ref":"case/tree/branch_relation.html","tf":0.02040816326530612},"detailed/tree/bi.switch_tree.html":{"ref":"detailed/tree/bi.switch_tree.html","tf":0.013157894736842105},"detailed/combo/single_tree_combo.html":{"ref":"detailed/combo/single_tree_combo.html","tf":0.01694915254237288},"detailed/combo/multilayer_single_tree_combo.html":{"ref":"detailed/combo/multilayer_single_tree_combo.html","tf":0.018867924528301886},"detailed/combo/select_tree_combo.html":{"ref":"detailed/combo/select_tree_combo.html","tf":0.02040816326530612},"detailed/combo/multilayer_select_tree_combo.html":{"ref":"detailed/combo/multilayer_select_tree_combo.html","tf":0.02040816326530612}},".":{"docs":{},"i":{"docs":{},"n":{"docs":{},"i":{"docs":{},"t":{"docs":{},"t":{"docs":{},"r":{"docs":{},"e":{"docs":{},"e":{"docs":{},"(":{"docs":{},"{":{"docs":{"case/tree/display_tree.html":{"ref":"case/tree/display_tree.html","tf":0.030303030303030304}}}}}}}}}}}},"p":{"docs":{},"o":{"docs":{},"p":{"docs":{},"u":{"docs":{},"l":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"(":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"s":{"docs":{},")":{"docs":{},";":{"docs":{"case/tree/simple_tree.html":{"ref":"case/tree/simple_tree.html","tf":0.022222222222222223}}}}}}}}}}}}}}}}}}},"_":{"docs":{},"t":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{"case/table/tree_table.html":{"ref":"case/table/tree_table.html","tf":10}}}}}}}}}},"y":{"docs":{},"p":{"docs":{},"e":{"docs":{"core/layout/htape.html":{"ref":"core/layout/htape.html","tf":0.024},"core/layout/vtape.html":{"ref":"core/layout/vtape.html","tf":0.024},"detailed/down_list_combo.html":{"ref":"detailed/down_list_combo.html","tf":0.006578947368421052}},":":{"docs":{"core/layout/vertical.html":{"ref":"core/layout/vertical.html","tf":0.038461538461538464},"core/layout/horizontal.html":{"ref":"core/layout/horizontal.html","tf":0.03225806451612903},"core/layout/htape.html":{"ref":"core/layout/htape.html","tf":0.008},"core/layout/vtape.html":{"ref":"core/layout/vtape.html","tf":0.008},"core/layout/center_adapt.html":{"ref":"core/layout/center_adapt.html","tf":0.03529411764705882},"core/layout/vertical_adapt.html":{"ref":"core/layout/vertical_adapt.html","tf":0.034482758620689655},"core/layout/left_right_vertical_adapt.html":{"ref":"core/layout/left_right_vertical_adapt.html","tf":0.03296703296703297},"core/layout/flow.html":{"ref":"core/layout/flow.html","tf":0.05384615384615385},"core/layout/center.html":{"ref":"core/layout/center.html","tf":0.0379746835443038},"core/layout/horizontal_adapt.html":{"ref":"core/layout/horizontal_adapt.html","tf":0.03260869565217391},"core/layout/horizontal_auto.html":{"ref":"core/layout/horizontal_auto.html","tf":0.037037037037037035},"core/layout/horizontal_float.html":{"ref":"core/layout/horizontal_float.html","tf":0.027777777777777776},"core/layout/float_center.html":{"ref":"core/layout/float_center.html","tf":0.0379746835443038},"core/layout/border.html":{"ref":"core/layout/border.html","tf":0.012987012987012988},"core/layout/grid.html":{"ref":"core/layout/grid.html","tf":0.044642857142857144},"core/layout/table.html":{"ref":"core/layout/table.html","tf":0.012048192771084338},"core/layout/td.html":{"ref":"core/layout/td.html","tf":0.017857142857142856},"core/abstract/button_group.html":{"ref":"core/abstract/button_group.html","tf":0.023809523809523808},"core/abstract/button_tree.html":{"ref":"core/abstract/button_tree.html","tf":0.04477611940298507},"core/abstract/virtual_group.html":{"ref":"core/abstract/virtual_group.html","tf":0.043478260869565216},"core/abstract/custom_tree.html":{"ref":"core/abstract/custom_tree.html","tf":0.04316546762589928},"core/abstract/grid_view.html":{"ref":"core/abstract/grid_view.html","tf":0.00641025641025641},"core/abstract/collection_view.html":{"ref":"core/abstract/collection_view.html","tf":0.0070921985815602835},"core/abstract/virtual_list.html":{"ref":"core/abstract/virtual_list.html","tf":0.025},"core/combination/bi.combo.html":{"ref":"core/combination/bi.combo.html","tf":0.009615384615384616},"core/combination/bi.expander.html":{"ref":"core/combination/bi.expander.html","tf":0.02197802197802198},"core/combination/group_combo.html":{"ref":"core/combination/group_combo.html","tf":0.023622047244094488},"core/combination/loader.html":{"ref":"core/combination/loader.html","tf":0.012578616352201259},"core/combination/navigation.html":{"ref":"core/combination/navigation.html","tf":0.014388489208633094},"core/combination/searcher.html":{"ref":"core/combination/searcher.html","tf":0.018433179723502304},"core/combination/switcher.html":{"ref":"core/combination/switcher.html","tf":0.0125},"core/combination/tab.html":{"ref":"core/combination/tab.html","tf":0.0273972602739726},"core/layer/layer_float_box.html":{"ref":"core/layer/layer_float_box.html","tf":0.012345679012345678},"core/layer/layer_popup.html":{"ref":"core/layer/layer_popup.html","tf":0.023529411764705882},"core/layer/layer_searcher.html":{"ref":"core/layer/layer_searcher.html","tf":0.027777777777777776},"base/label.html":{"ref":"base/label.html","tf":0.006711409395973154},"base/bubble.html":{"ref":"base/bubble.html","tf":0.023255813953488372},"base/toast.html":{"ref":"base/toast.html","tf":0.020833333333333332},"base/message.html":{"ref":"base/message.html","tf":0.02127659574468085},"base/button/button.html":{"ref":"base/button/button.html","tf":0.005681818181818182},"base/button/text_button.html":{"ref":"base/button/text_button.html","tf":0.009433962264150943},"base/button/icon_button.html":{"ref":"base/button/icon_button.html","tf":0.02564102564102564},"base/button/image_button.html":{"ref":"base/button/image_button.html","tf":0.014925373134328358},"base/editor/editor.html":{"ref":"base/editor/editor.html","tf":0.005405405405405406},"base/editor/code_editor.html":{"ref":"base/editor/code_editor.html","tf":0.012658227848101266},"base/editor/multifile_editor.html":{"ref":"base/editor/multifile_editor.html","tf":0.015384615384615385},"base/editor/textarea_editor.html":{"ref":"base/editor/textarea_editor.html","tf":0.021739130434782608},"base/editor/formula_editor.html":{"ref":"base/editor/formula_editor.html","tf":0.010101010101010102},"base/table/table_view.html":{"ref":"base/table/table_view.html","tf":0.006289308176100629},"base/table/grid_table.html":{"ref":"base/table/grid_table.html","tf":0.008771929824561403},"base/table/collection_table.html":{"ref":"base/table/collection_table.html","tf":0.032679738562091505},"base/table/resizable_table.html":{"ref":"base/table/resizable_table.html","tf":0.03125},"base/pager.html":{"ref":"base/pager.html","tf":0.006666666666666667},"base/svg.html":{"ref":"base/svg.html","tf":0.011235955056179775},"base/canvas.html":{"ref":"base/canvas.html","tf":0.016666666666666666},"case/button/multi_select_item.html":{"ref":"case/button/multi_select_item.html","tf":0.05263157894736842},"case/button/single_select_item.html":{"ref":"case/button/single_select_item.html","tf":0.04838709677419355},"case/button/single_select_radio_item.html":{"ref":"case/button/single_select_radio_item.html","tf":0.04838709677419355},"case/editor/shelter_editor.html":{"ref":"case/editor/shelter_editor.html","tf":0.0051813471502590676},"case/editor/sign_editor.html":{"ref":"case/editor/sign_editor.html","tf":0.005494505494505495},"case/editor/sign_initial_editor.html":{"ref":"case/editor/sign_initial_editor.html","tf":0.005154639175257732},"case/editor/state_editor.html":{"ref":"case/editor/state_editor.html","tf":0.005747126436781609},"case/layer/multi_popup_layer.html":{"ref":"case/layer/multi_popup_layer.html","tf":0.04},"case/layer/layer_panel.html":{"ref":"case/layer/layer_panel.html","tf":0.010752688172043012},"case/layer/pane_list.html":{"ref":"case/layer/pane_list.html","tf":0.006802721088435374},"case/layer/panel.html":{"ref":"case/layer/panel.html","tf":0.031746031746031744},"case/list/list.select.html":{"ref":"case/list/list.select.html","tf":0.009433962264150943},"case/loader/lazy_loader.html":{"ref":"case/loader/lazy_loader.html","tf":0.01694915254237288},"case/loader/list_loader.html":{"ref":"case/loader/list_loader.html","tf":0.010752688172043012},"case/loader/sort_list.html":{"ref":"case/loader/sort_list.html","tf":0.010752688172043012},"case/trigger/editor_trigger.html":{"ref":"case/trigger/editor_trigger.html","tf":0.02},"case/trigger/icon_trigger.html":{"ref":"case/trigger/icon_trigger.html","tf":0.1111111111111111},"case/trigger/text_trigger.html":{"ref":"case/trigger/text_trigger.html","tf":0.05263157894736842},"case/combo/bubble_combo.html":{"ref":"case/combo/bubble_combo.html","tf":0.028901734104046242},"case/combo/icon_combo.html":{"ref":"case/combo/icon_combo.html","tf":0.007751937984496124},"case/combo/static_combo.html":{"ref":"case/combo/static_combo.html","tf":0.0125},"case/combo/text_value_combo.html":{"ref":"case/combo/text_value_combo.html","tf":0.013513513513513514},"case/combo/text_value_downlist_combo.html":{"ref":"case/combo/text_value_downlist_combo.html","tf":0.013513513513513514},"case/tree/branch_tree.html":{"ref":"case/tree/branch_tree.html","tf":0.02},"case/tree/handstand_branch_tree.html":{"ref":"case/tree/handstand_branch_tree.html","tf":0.019230769230769232},"case/tree/display_tree.html":{"ref":"case/tree/display_tree.html","tf":0.030303030303030304},"case/tree/simple_tree.html":{"ref":"case/tree/simple_tree.html","tf":0.022222222222222223},"case/tree/level_tree.html":{"ref":"case/tree/level_tree.html","tf":0.017857142857142856},"case/tree/branch_relation.html":{"ref":"case/tree/branch_relation.html","tf":0.02040816326530612},"case/table/adaptive_table.html":{"ref":"case/table/adaptive_table.html","tf":0.006060606060606061},"case/table/tree_table.html":{"ref":"case/table/tree_table.html","tf":0.00510204081632653},"case/table/layer_tree_table.html":{"ref":"case/table/layer_tree_table.html","tf":0.00510204081632653},"case/pager/all_count_pager.html":{"ref":"case/pager/all_count_pager.html","tf":0.014705882352941176},"case/pager/direction_pager.html":{"ref":"case/pager/direction_pager.html","tf":0.00819672131147541},"case/calendar.html":{"ref":"case/calendar.html","tf":0.013888888888888888},"case/clipboard.html":{"ref":"case/clipboard.html","tf":0.03125},"case/complex_canvas.html":{"ref":"case/complex_canvas.html","tf":0.020833333333333332},"case/color_chooser.html":{"ref":"case/color_chooser.html","tf":0.038461538461538464},"case/color_chooser_popup.html":{"ref":"case/color_chooser_popup.html","tf":0.029411764705882353},"case/segment.html":{"ref":"case/segment.html","tf":0.028037383177570093},"detailed/bi.button/tooltip.html":{"ref":"detailed/bi.button/tooltip.html","tf":0.022727272727272728},"detailed/bi.button/items.html":{"ref":"detailed/bi.button/items.html","tf":0.05319148936170213},"detailed/bi.button/node.html":{"ref":"detailed/bi.button/node.html","tf":0.06481481481481481},"detailed/bi.button/segment.html":{"ref":"detailed/bi.button/segment.html","tf":0.028037383177570093},"detailed/tree/bi.multi_tree_combo.html":{"ref":"detailed/tree/bi.multi_tree_combo.html","tf":0.010869565217391304},"detailed/tree/bi.switch_tree.html":{"ref":"detailed/tree/bi.switch_tree.html","tf":0.013157894736842105},"detailed/table/bi.preview_table.html":{"ref":"detailed/table/bi.preview_table.html","tf":0.006756756756756757},"detailed/table/bi.responsive_table.html":{"ref":"detailed/table/bi.responsive_table.html","tf":0.005263157894736842},"detailed/table/bi.excel_table.html":{"ref":"detailed/table/bi.excel_table.html","tf":0.027624309392265192},"detailed/table/bi.page_table.html":{"ref":"detailed/table/bi.page_table.html","tf":0.004651162790697674},"detailed/text_input/bi.text_editor.html":{"ref":"detailed/text_input/bi.text_editor.html","tf":0.010309278350515464},"detailed/text_input/bi.search_editor.html":{"ref":"detailed/text_input/bi.search_editor.html","tf":0.010101010101010102},"detailed/text_input/bi.clear_editor.html":{"ref":"detailed/text_input/bi.clear_editor.html","tf":0.00980392156862745},"detailed/text_input/finetuning_number_editor.html":{"ref":"detailed/text_input/finetuning_number_editor.html","tf":0.037037037037037035},"detailed/year_combo.html":{"ref":"detailed/year_combo.html","tf":0.025},"detailed/month_combo.html":{"ref":"detailed/month_combo.html","tf":0.03571428571428571},"detailed/quarter_combo.html":{"ref":"detailed/quarter_combo.html","tf":0.03571428571428571},"detailed/down_list_combo.html":{"ref":"detailed/down_list_combo.html","tf":0.019736842105263157},"detailed/numeric_interval.html":{"ref":"detailed/numeric_interval.html","tf":0.017241379310344827},"detailed/multi_select_combo.html":{"ref":"detailed/multi_select_combo.html","tf":0.04},"detailed/date/date_combo.html":{"ref":"detailed/date/date_combo.html","tf":0.058823529411764705},"detailed/date/date_pane_widget.html":{"ref":"detailed/date/date_pane_widget.html","tf":0.02702702702702703},"detailed/date/year_month_combo.html":{"ref":"detailed/date/year_month_combo.html","tf":0.029411764705882353},"detailed/date/year_quarter_combo.html":{"ref":"detailed/date/year_quarter_combo.html","tf":0.03225806451612903},"detailed/date/custom_date_time.html":{"ref":"detailed/date/custom_date_time.html","tf":0.045454545454545456},"detailed/combo/single_tree_combo.html":{"ref":"detailed/combo/single_tree_combo.html","tf":0.01694915254237288},"detailed/combo/multilayer_single_tree_combo.html":{"ref":"detailed/combo/multilayer_single_tree_combo.html","tf":0.018867924528301886},"detailed/combo/select_tree_combo.html":{"ref":"detailed/combo/select_tree_combo.html","tf":0.02040816326530612},"detailed/combo/multilayer_select_tree_combo.html":{"ref":"detailed/combo/multilayer_select_tree_combo.html","tf":0.02040816326530612},"detailed/path/path_chooser.html":{"ref":"detailed/path/path_chooser.html","tf":0.019230769230769232},"detailed/path/direction_path_chooser.html":{"ref":"detailed/path/direction_path_chooser.html","tf":0.02},"detailed/relation_view.html":{"ref":"detailed/relation_view.html","tf":0.019230769230769232},"detailed/file_manager.html":{"ref":"detailed/file_manager.html","tf":0.023255813953488372},"detailed/slider.html":{"ref":"detailed/slider.html","tf":0.029411764705882353}}}}}},"o":{"docs":{},"p":{"docs":{"core/combination/bi.combo.html":{"ref":"core/combination/bi.combo.html","tf":0.004807692307692308},"core/combination/bi.expander.html":{"ref":"core/combination/bi.expander.html","tf":0.005494505494505495},"core/combination/group_combo.html":{"ref":"core/combination/group_combo.html","tf":0.007874015748031496},"detailed/down_list_combo.html":{"ref":"detailed/down_list_combo.html","tf":0.006578947368421052}},":":{"docs":{"core/layout/border.html":{"ref":"core/layout/border.html","tf":0.012987012987012988}}},",":{"docs":{},"l":{"docs":{},"e":{"docs":{},"f":{"docs":{},"t":{"docs":{"core/combination/bi.combo.html":{"ref":"core/combination/bi.combo.html","tf":0.004807692307692308},"core/combination/bi.expander.html":{"ref":"core/combination/bi.expander.html","tf":0.005494505494505495},"core/combination/group_combo.html":{"ref":"core/combination/group_combo.html","tf":0.007874015748031496},"detailed/down_list_combo.html":{"ref":"detailed/down_list_combo.html","tf":0.006578947368421052}}}}}},"r":{"docs":{},"i":{"docs":{},"g":{"docs":{},"h":{"docs":{},"t":{"docs":{"core/combination/bi.combo.html":{"ref":"core/combination/bi.combo.html","tf":0.004807692307692308},"core/combination/bi.expander.html":{"ref":"core/combination/bi.expander.html","tf":0.005494505494505495},"core/combination/group_combo.html":{"ref":"core/combination/group_combo.html","tf":0.007874015748031496},"detailed/down_list_combo.html":{"ref":"detailed/down_list_combo.html","tf":0.006578947368421052}}}}}}},"b":{"docs":{},"o":{"docs":{},"t":{"docs":{},"t":{"docs":{},"o":{"docs":{},"m":{"docs":{},",":{"docs":{},"l":{"docs":{},"e":{"docs":{},"f":{"docs":{},"t":{"docs":{},",":{"docs":{},"r":{"docs":{},"i":{"docs":{},"g":{"docs":{},"h":{"docs":{},"t":{"docs":{},",":{"docs":{},"(":{"docs":{},"t":{"docs":{},"o":{"docs":{},"p":{"docs":{},",":{"docs":{},"l":{"docs":{},"e":{"docs":{},"f":{"docs":{},"t":{"docs":{},")":{"docs":{},",":{"docs":{},"(":{"docs":{},"t":{"docs":{},"o":{"docs":{},"p":{"docs":{},",":{"docs":{},"r":{"docs":{},"i":{"docs":{},"g":{"docs":{},"h":{"docs":{},"t":{"docs":{},")":{"docs":{},",":{"docs":{},"(":{"docs":{},"b":{"docs":{},"o":{"docs":{},"t":{"docs":{},"t":{"docs":{},"o":{"docs":{},"m":{"docs":{},",":{"docs":{},"l":{"docs":{},"e":{"docs":{},"f":{"docs":{},"t":{"docs":{},")":{"docs":{},",":{"docs":{},"(":{"docs":{},"b":{"docs":{},"o":{"docs":{},"t":{"docs":{},"t":{"docs":{},"o":{"docs":{},"m":{"docs":{},",":{"docs":{},"r":{"docs":{},"i":{"docs":{},"g":{"docs":{},"h":{"docs":{},"t":{"docs":{},")":{"docs":{"core/combination/loader.html":{"ref":"core/combination/loader.html","tf":0.006289308176100629}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"c":{"docs":{},"u":{"docs":{},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"m":{"docs":{"core/combination/navigation.html":{"ref":"core/combination/navigation.html","tf":0.007194244604316547},"core/combination/tab.html":{"ref":"core/combination/tab.html","tf":0.00684931506849315}}}}}}}}}}}}}}}}}}}}}}}}}}}},"g":{"docs":{},"g":{"docs":{},"l":{"docs":{"core/combination/bi.combo.html":{"ref":"core/combination/bi.combo.html","tf":0.009615384615384616},"core/combination/bi.expander.html":{"ref":"core/combination/bi.expander.html","tf":0.005494505494505495},"core/combination/switcher.html":{"ref":"core/combination/switcher.html","tf":0.00625}}}}},"o":{"docs":{},"l":{"docs":{"core/layer/layer_popup.html":{"ref":"core/layer/layer_popup.html","tf":0.0058823529411764705}},"b":{"docs":{},"a":{"docs":{},"r":{"docs":{},"栏":{"docs":{"core/layer/layer_popup.html":{"ref":"core/layer/layer_popup.html","tf":0.0058823529411764705}}},"位":{"docs":{},"置":{"docs":{"case/list/list.select.html":{"ref":"case/list/list.select.html","tf":0.009433962264150943}}}}}}}}},"a":{"docs":{},"s":{"docs":{},"t":{"docs":{"base/toast.html":{"ref":"base/toast.html","tf":10},"base/message.html":{"ref":"base/message.html","tf":0.02127659574468085},"detailed/bi.button/tooltip.html":{"ref":"detailed/bi.button/tooltip.html","tf":0.011363636363636364}},"提":{"docs":{},"示":{"docs":{"base/toast.html":{"ref":"base/toast.html","tf":0.020833333333333332},"base/message.html":{"ref":"base/message.html","tf":0.02127659574468085}}}}}}}},"a":{"docs":{},"b":{"docs":{"core/combination/navigation.html":{"ref":"core/combination/navigation.html","tf":0.007194244604316547},"core/combination/tab.html":{"ref":"core/combination/tab.html","tf":10.006849315068493},"core/layer/layer_popup.html":{"ref":"core/layer/layer_popup.html","tf":0.0058823529411764705}},"l":{"docs":{"core/layout/table.html":{"ref":"core/layout/table.html","tf":10},"case/table/tree_table.html":{"ref":"case/table/tree_table.html","tf":0.00510204081632653},"case/table/layer_tree_table.html":{"ref":"case/table/layer_tree_table.html","tf":0.00510204081632653}},"e":{"docs":{},"作":{"docs":{},"为":{"docs":{},"一":{"docs":{},"个":{"docs":{},"列":{"docs":{},"表":{"docs":{},"集":{"docs":{},"合":{"docs":{},"存":{"docs":{},"在":{"docs":{},",":{"docs":{},"继":{"docs":{},"承":{"docs":{},"b":{"docs":{},"i":{"docs":{},".":{"docs":{},"w":{"docs":{},"i":{"docs":{},"d":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{"core/layout/table.html":{"ref":"core/layout/table.html","tf":0.012048192771084338}}}}}}}}}}}}}}}}}}}}}}}},"_":{"docs":{},"v":{"docs":{},"i":{"docs":{},"e":{"docs":{},"w":{"docs":{"base/table/table_view.html":{"ref":"base/table/table_view.html","tf":10}}}}}}},"初":{"docs":{},"始":{"docs":{},"化":{"docs":{},"完":{"docs":{},"成":{"docs":{},"后":{"docs":{},"触":{"docs":{},"发":{"docs":{"base/table/table_view.html":{"ref":"base/table/table_view.html","tf":0.006289308176100629}}}}}}}}}},"大":{"docs":{},"小":{"docs":{},"调":{"docs":{},"整":{"docs":{},"时":{"docs":{},"触":{"docs":{},"发":{"docs":{},"(":{"docs":{},"窗":{"docs":{},"口":{"docs":{},"变":{"docs":{},"化":{"docs":{},"等":{"docs":{},")":{"docs":{"base/table/table_view.html":{"ref":"base/table/table_view.html","tf":0.006289308176100629}}}}}}}}}}}}}}}}}},":":{"docs":{"core/combination/navigation.html":{"ref":"core/combination/navigation.html","tf":0.007194244604316547},"core/combination/tab.html":{"ref":"core/combination/tab.html","tf":0.00684931506849315}}},"页":{"docs":{},"元":{"docs":{},"素":{"docs":{"core/combination/navigation.html":{"ref":"core/combination/navigation.html","tf":0.007194244604316547}}}}},"标":{"docs":{},"签":{"docs":{},"页":{"docs":{"core/combination/tab.html":{"ref":"core/combination/tab.html","tf":0.00684931506849315}}}}}},"g":{"docs":{"core/widget.html":{"ref":"core/widget.html","tf":0.00510204081632653}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"core/widget.html":{"ref":"core/widget.html","tf":0.00510204081632653}}}}}}},"d":{"docs":{"core/layout/td.html":{"ref":"core/layout/td.html","tf":10}}},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{},"e":{"docs":{},"x":{"docs":{},"t":{"docs":{"core/layer/layer_searcher.html":{"ref":"core/layer/layer_searcher.html","tf":0.009259259259259259},"core/pane.html":{"ref":"core/pane.html","tf":0.0196078431372549}}}}},"y":{"docs":{},"p":{"docs":{"core/single.html":{"ref":"core/single.html","tf":0.013888888888888888},"base/editor/editor.html":{"ref":"base/editor/editor.html","tf":0.005405405405405406}}}}}},"t":{"docs":{},"l":{"docs":{"core/single.html":{"ref":"core/single.html","tf":0.027777777777777776},"base/label.html":{"ref":"base/label.html","tf":0.006711409395973154},"case/editor/shelter_editor.html":{"ref":"case/editor/shelter_editor.html","tf":0.010362694300518135},"case/editor/sign_editor.html":{"ref":"case/editor/sign_editor.html","tf":0.01098901098901099},"case/editor/sign_initial_editor.html":{"ref":"case/editor/sign_initial_editor.html","tf":0.010309278350515464},"case/layer/layer_panel.html":{"ref":"case/layer/layer_panel.html","tf":0.010752688172043012},"case/layer/panel.html":{"ref":"case/layer/panel.html","tf":0.031746031746031744},"detailed/dialog.html":{"ref":"detailed/dialog.html","tf":0.043478260869565216}},"e":{"docs":{},"文":{"docs":{},"本":{"docs":{"core/layer/layer_searcher.html":{"ref":"core/layer/layer_searcher.html","tf":0.009259259259259259},"core/pane.html":{"ref":"core/pane.html","tf":0.0196078431372549}}}},",":{"docs":{"base/message.html":{"ref":"base/message.html","tf":0.06382978723404255}},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{"core/single.html":{"ref":"core/single.html","tf":0.027777777777777776}}}}}},"类":{"docs":{},"型":{"docs":{"core/single.html":{"ref":"core/single.html","tf":0.013888888888888888}}}},":":{"docs":{"case/layer/layer_panel.html":{"ref":"case/layer/layer_panel.html","tf":0.010752688172043012},"case/layer/panel.html":{"ref":"case/layer/panel.html","tf":0.015873015873015872},"detailed/relation_view.html":{"ref":"detailed/relation_view.html","tf":0.019230769230769232}}},"b":{"docs":{},"u":{"docs":{},"t":{"docs":{},"t":{"docs":{},"o":{"docs":{},"n":{"docs":{"case/layer/panel.html":{"ref":"case/layer/panel.html","tf":0.015873015873015872}},"s":{"docs":{},":":{"docs":{"case/layer/panel.html":{"ref":"case/layer/panel.html","tf":0.015873015873015872}}}}}}}}}}}}}},"h":{"docs":{},"i":{"docs":{},"s":{"docs":{},".":{"docs":{},"b":{"docs":{},"u":{"docs":{},"t":{"docs":{},"t":{"docs":{},"o":{"docs":{},"n":{"docs":{},"_":{"docs":{},"g":{"docs":{},"r":{"docs":{},"o":{"docs":{},"u":{"docs":{},"p":{"docs":{},",":{"docs":{"case/layer/panel.html":{"ref":"case/layer/panel.html","tf":0.015873015873015872}}}}}}}}}}}}}}}}}}}},"v":{"docs":{"core/combination/bi.combo.html":{"ref":"core/combination/bi.combo.html","tf":0.004807692307692308},"core/combination/bi.expander.html":{"ref":"core/combination/bi.expander.html","tf":0.005494505494505495},"core/combination/group_combo.html":{"ref":"core/combination/group_combo.html","tf":0.007874015748031496},"core/combination/navigation.html":{"ref":"core/combination/navigation.html","tf":0.03597122302158273},"core/combination/tab.html":{"ref":"core/combination/tab.html","tf":0.0136986301369863},"base/editor/formula_editor.html":{"ref":"base/editor/formula_editor.html","tf":0.010101010101010102},"base/pager.html":{"ref":"base/pager.html","tf":0.02},"base/svg.html":{"ref":"base/svg.html","tf":0.011235955056179775},"case/button/multi_select_item.html":{"ref":"case/button/multi_select_item.html","tf":0.017543859649122806},"case/button/single_select_item.html":{"ref":"case/button/single_select_item.html","tf":0.016129032258064516},"case/button/single_select_radio_item.html":{"ref":"case/button/single_select_radio_item.html","tf":0.016129032258064516},"case/tree/simple_tree.html":{"ref":"case/tree/simple_tree.html","tf":0.022222222222222223},"case/tree/level_tree.html":{"ref":"case/tree/level_tree.html","tf":0.017857142857142856},"case/pager/all_count_pager.html":{"ref":"case/pager/all_count_pager.html","tf":0.04411764705882353},"case/pager/direction_pager.html":{"ref":"case/pager/direction_pager.html","tf":0.01639344262295082},"detailed/tree/bi.multi_tree_combo.html":{"ref":"detailed/tree/bi.multi_tree_combo.html","tf":0.010869565217391304},"detailed/tree/bi.switch_tree.html":{"ref":"detailed/tree/bi.switch_tree.html","tf":0.039473684210526314}},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"i":{"docs":{},"c":{"docs":{"core/layout/vertical.html":{"ref":"core/layout/vertical.html","tf":10},"case/pager/direction_pager.html":{"ref":"case/pager/direction_pager.html","tf":0.00819672131147541},"detailed/table/bi.page_table.html":{"ref":"detailed/table/bi.page_table.html","tf":0.004651162790697674}},"a":{"docs":{},"l":{"docs":{},"a":{"docs":{},"l":{"docs":{},"i":{"docs":{},"g":{"docs":{},"n":{"docs":{"core/layout/horizontal.html":{"ref":"core/layout/horizontal.html","tf":0.010752688172043012},"core/layout/horizontal_adapt.html":{"ref":"core/layout/horizontal_adapt.html","tf":0.010869565217391304}}}}}}},"_":{"docs":{},"a":{"docs":{},"d":{"docs":{},"a":{"docs":{},"p":{"docs":{},"t":{"docs":{"core/layout/vertical_adapt.html":{"ref":"core/layout/vertical_adapt.html","tf":10}}}}}}}},"o":{"docs":{},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"c":{"docs":{},"a":{"docs":{},"n":{"docs":{},"s":{"docs":{"core/abstract/collection_view.html":{"ref":"core/abstract/collection_view.html","tf":0.0070921985815602835}}}}}}}}}}},":":{"docs":{"case/pager/direction_pager.html":{"ref":"case/pager/direction_pager.html","tf":0.00819672131147541},"detailed/table/bi.page_table.html":{"ref":"detailed/table/bi.page_table.html","tf":0.004651162790697674}}}}}}}}}},"g":{"docs":{},"a":{"docs":{},"p":{"docs":{"core/layout/vertical.html":{"ref":"core/layout/vertical.html","tf":0.01282051282051282},"core/layout/horizontal.html":{"ref":"core/layout/horizontal.html","tf":0.010752688172043012},"core/layout/htape.html":{"ref":"core/layout/htape.html","tf":0.008},"core/layout/vtape.html":{"ref":"core/layout/vtape.html","tf":0.008},"core/layout/center_adapt.html":{"ref":"core/layout/center_adapt.html","tf":0.011764705882352941},"core/layout/vertical_adapt.html":{"ref":"core/layout/vertical_adapt.html","tf":0.011494252873563218},"core/layout/flow.html":{"ref":"core/layout/flow.html","tf":0.007692307692307693},"core/layout/center.html":{"ref":"core/layout/center.html","tf":0.012658227848101266},"core/layout/horizontal_adapt.html":{"ref":"core/layout/horizontal_adapt.html","tf":0.010869565217391304},"core/layout/horizontal_auto.html":{"ref":"core/layout/horizontal_auto.html","tf":0.012345679012345678},"core/layout/horizontal_float.html":{"ref":"core/layout/horizontal_float.html","tf":0.013888888888888888},"core/layout/float_center.html":{"ref":"core/layout/float_center.html","tf":0.012658227848101266},"core/layout/table.html":{"ref":"core/layout/table.html","tf":0.012048192771084338},"core/layout/td.html":{"ref":"core/layout/td.html","tf":0.017857142857142856},"core/combination/searcher.html":{"ref":"core/combination/searcher.html","tf":0.004608294930875576},"core/layer/layer_popup.html":{"ref":"core/layer/layer_popup.html","tf":0.0058823529411764705},"base/label.html":{"ref":"base/label.html","tf":0.006711409395973154},"base/button/button.html":{"ref":"base/button/button.html","tf":0.005681818181818182},"base/editor/editor.html":{"ref":"base/editor/editor.html","tf":0.005405405405405406},"case/editor/shelter_editor.html":{"ref":"case/editor/shelter_editor.html","tf":0.0051813471502590676},"case/editor/sign_editor.html":{"ref":"case/editor/sign_editor.html","tf":0.005494505494505495},"case/editor/sign_initial_editor.html":{"ref":"case/editor/sign_initial_editor.html","tf":0.005154639175257732},"case/editor/state_editor.html":{"ref":"case/editor/state_editor.html","tf":0.005747126436781609},"case/layer/pane_list.html":{"ref":"case/layer/pane_list.html","tf":0.006802721088435374},"case/segment.html":{"ref":"case/segment.html","tf":0.009345794392523364},"detailed/bi.button/tooltip.html":{"ref":"detailed/bi.button/tooltip.html","tf":0.011363636363636364},"detailed/bi.button/items.html":{"ref":"detailed/bi.button/items.html","tf":0.010638297872340425},"detailed/bi.button/node.html":{"ref":"detailed/bi.button/node.html","tf":0.009259259259259259},"detailed/bi.button/segment.html":{"ref":"detailed/bi.button/segment.html","tf":0.009345794392523364},"detailed/text_input/bi.text_editor.html":{"ref":"detailed/text_input/bi.text_editor.html","tf":0.010309278350515464},"detailed/text_input/bi.search_editor.html":{"ref":"detailed/text_input/bi.search_editor.html","tf":0.010101010101010102},"detailed/text_input/bi.clear_editor.html":{"ref":"detailed/text_input/bi.clear_editor.html","tf":0.00980392156862745}},":":{"1":{"0":{"docs":{"core/abstract/button_tree.html":{"ref":"core/abstract/button_tree.html","tf":0.014925373134328358}}},"docs":{}},"docs":{"core/layout/vertical_adapt.html":{"ref":"core/layout/vertical_adapt.html","tf":0.011494252873563218},"core/layout/flow.html":{"ref":"core/layout/flow.html","tf":0.015384615384615385},"core/layout/center.html":{"ref":"core/layout/center.html","tf":0.012658227848101266},"core/layout/horizontal_adapt.html":{"ref":"core/layout/horizontal_adapt.html","tf":0.010869565217391304},"core/layout/horizontal_auto.html":{"ref":"core/layout/horizontal_auto.html","tf":0.012345679012345678},"core/layout/horizontal_float.html":{"ref":"core/layout/horizontal_float.html","tf":0.013888888888888888},"core/layout/float_center.html":{"ref":"core/layout/float_center.html","tf":0.012658227848101266},"core/layout/table.html":{"ref":"core/layout/table.html","tf":0.012048192771084338},"case/segment.html":{"ref":"case/segment.html","tf":0.009345794392523364},"detailed/bi.button/tooltip.html":{"ref":"detailed/bi.button/tooltip.html","tf":0.011363636363636364},"detailed/bi.button/segment.html":{"ref":"detailed/bi.button/segment.html","tf":0.009345794392523364}}}}}},"t":{"docs":{},"a":{"docs":{},"p":{"docs":{},"e":{"docs":{"core/layout/vtape.html":{"ref":"core/layout/vtape.html","tf":10}}}}}},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{"core/abstract/button_group.html":{"ref":"core/abstract/button_group.html","tf":0.023809523809523808},"core/abstract/button_tree.html":{"ref":"core/abstract/button_tree.html","tf":0.029850746268656716},"core/abstract/custom_tree.html":{"ref":"core/abstract/custom_tree.html","tf":0.007194244604316547},"core/combination/bi.expander.html":{"ref":"core/combination/bi.expander.html","tf":0.005494505494505495},"core/combination/loader.html":{"ref":"core/combination/loader.html","tf":0.012578616352201259},"core/combination/navigation.html":{"ref":"core/combination/navigation.html","tf":0.007194244604316547},"core/combination/searcher.html":{"ref":"core/combination/searcher.html","tf":0.004608294930875576},"core/combination/switcher.html":{"ref":"core/combination/switcher.html","tf":0.0125},"core/combination/tab.html":{"ref":"core/combination/tab.html","tf":0.00684931506849315},"core/layer/layer_popup.html":{"ref":"core/layer/layer_popup.html","tf":0.0058823529411764705},"core/layer/layer_searcher.html":{"ref":"core/layer/layer_searcher.html","tf":0.009259259259259259},"core/widget.html":{"ref":"core/widget.html","tf":0.00510204081632653},"core/single.html":{"ref":"core/single.html","tf":0.027777777777777776},"core/basic_button.html":{"ref":"core/basic_button.html","tf":0.007936507936507936},"base/editor/editor.html":{"ref":"base/editor/editor.html","tf":0.010810810810810811},"base/editor/code_editor.html":{"ref":"base/editor/code_editor.html","tf":0.0379746835443038},"base/editor/textarea_editor.html":{"ref":"base/editor/textarea_editor.html","tf":0.043478260869565216},"base/editor/formula_editor.html":{"ref":"base/editor/formula_editor.html","tf":0.020202020202020204},"case/editor/shelter_editor.html":{"ref":"case/editor/shelter_editor.html","tf":0.0051813471502590676},"case/editor/sign_editor.html":{"ref":"case/editor/sign_editor.html","tf":0.005494505494505495},"case/editor/sign_initial_editor.html":{"ref":"case/editor/sign_initial_editor.html","tf":0.010309278350515464},"case/editor/state_editor.html":{"ref":"case/editor/state_editor.html","tf":0.005747126436781609},"case/layer/layer_panel.html":{"ref":"case/layer/layer_panel.html","tf":0.021505376344086023},"case/layer/pane_list.html":{"ref":"case/layer/pane_list.html","tf":0.013605442176870748},"case/list/list.select.html":{"ref":"case/list/list.select.html","tf":0.018867924528301886},"case/loader/lazy_loader.html":{"ref":"case/loader/lazy_loader.html","tf":0.03389830508474576},"case/loader/list_loader.html":{"ref":"case/loader/list_loader.html","tf":0.021505376344086023},"case/loader/sort_list.html":{"ref":"case/loader/sort_list.html","tf":0.021505376344086023},"case/trigger/editor_trigger.html":{"ref":"case/trigger/editor_trigger.html","tf":0.02},"case/trigger/text_trigger.html":{"ref":"case/trigger/text_trigger.html","tf":0.05263157894736842},"case/combo/bubble_combo.html":{"ref":"case/combo/bubble_combo.html","tf":0.005780346820809248},"detailed/text_input/bi.text_editor.html":{"ref":"detailed/text_input/bi.text_editor.html","tf":0.010309278350515464},"detailed/text_input/bi.search_editor.html":{"ref":"detailed/text_input/bi.search_editor.html","tf":0.010101010101010102},"detailed/text_input/bi.clear_editor.html":{"ref":"detailed/text_input/bi.clear_editor.html","tf":0.00980392156862745},"detailed/text_input/finetuning_number_editor.html":{"ref":"detailed/text_input/finetuning_number_editor.html","tf":0.037037037037037035},"detailed/slider.html":{"ref":"detailed/slider.html","tf":0.029411764705882353}},"e":{"docs":{},",":{"docs":{"base/message.html":{"ref":"base/message.html","tf":0.02127659574468085}},"可":{"docs":{},"以":{"docs":{},"是":{"docs":{},"单":{"docs":{},"个":{"docs":{},"值":{"docs":{},"也":{"docs":{},"可":{"docs":{},"以":{"docs":{},"是":{"docs":{},"个":{"docs":{},"数":{"docs":{},"组":{"docs":{"core/abstract/button_group.html":{"ref":"core/abstract/button_group.html","tf":0.023809523809523808},"core/abstract/button_tree.html":{"ref":"core/abstract/button_tree.html","tf":0.04477611940298507},"core/abstract/virtual_group.html":{"ref":"core/abstract/virtual_group.html","tf":0.014492753623188406},"core/abstract/custom_tree.html":{"ref":"core/abstract/custom_tree.html","tf":0.007194244604316547},"core/combination/loader.html":{"ref":"core/combination/loader.html","tf":0.012578616352201259},"case/layer/layer_panel.html":{"ref":"case/layer/layer_panel.html","tf":0.021505376344086023},"case/layer/pane_list.html":{"ref":"case/layer/pane_list.html","tf":0.013605442176870748}}}}}}}}}}}}}}}},":":{"docs":{"core/abstract/button_tree.html":{"ref":"core/abstract/button_tree.html","tf":0.014925373134328358},"core/abstract/custom_tree.html":{"ref":"core/abstract/custom_tree.html","tf":0.02158273381294964},"core/combination/bi.expander.html":{"ref":"core/combination/bi.expander.html","tf":0.01098901098901099},"core/combination/group_combo.html":{"ref":"core/combination/group_combo.html","tf":0.023622047244094488},"core/combination/loader.html":{"ref":"core/combination/loader.html","tf":0.006289308176100629},"core/combination/navigation.html":{"ref":"core/combination/navigation.html","tf":0.014388489208633094},"core/combination/searcher.html":{"ref":"core/combination/searcher.html","tf":0.004608294930875576},"core/combination/tab.html":{"ref":"core/combination/tab.html","tf":0.0136986301369863},"core/layer/layer_popup.html":{"ref":"core/layer/layer_popup.html","tf":0.011764705882352941},"core/layer/layer_searcher.html":{"ref":"core/layer/layer_searcher.html","tf":0.027777777777777776},"base/editor/formula_editor.html":{"ref":"base/editor/formula_editor.html","tf":0.010101010101010102},"case/editor/sign_editor.html":{"ref":"case/editor/sign_editor.html","tf":0.005494505494505495},"case/editor/state_editor.html":{"ref":"case/editor/state_editor.html","tf":0.005747126436781609},"case/combo/icon_combo.html":{"ref":"case/combo/icon_combo.html","tf":0.023255813953488372},"case/combo/static_combo.html":{"ref":"case/combo/static_combo.html","tf":0.0375},"case/combo/text_value_combo.html":{"ref":"case/combo/text_value_combo.html","tf":0.04054054054054054},"case/combo/text_value_downlist_combo.html":{"ref":"case/combo/text_value_downlist_combo.html","tf":0.05405405405405406},"case/table/adaptive_table.html":{"ref":"case/table/adaptive_table.html","tf":0.006060606060606061},"case/table/tree_table.html":{"ref":"case/table/tree_table.html","tf":0.00510204081632653},"case/table/layer_tree_table.html":{"ref":"case/table/layer_tree_table.html","tf":0.00510204081632653},"case/segment.html":{"ref":"case/segment.html","tf":0.028037383177570093},"detailed/bi.button/segment.html":{"ref":"detailed/bi.button/segment.html","tf":0.028037383177570093},"detailed/tree/bi.multi_tree_combo.html":{"ref":"detailed/tree/bi.multi_tree_combo.html","tf":0.03260869565217391},"detailed/tree/bi.switch_tree.html":{"ref":"detailed/tree/bi.switch_tree.html","tf":0.039473684210526314},"detailed/table/bi.page_table.html":{"ref":"detailed/table/bi.page_table.html","tf":0.004651162790697674},"detailed/down_list_combo.html":{"ref":"detailed/down_list_combo.html","tf":0.039473684210526314},"detailed/relation_view.html":{"ref":"detailed/relation_view.html","tf":0.07692307692307693},"detailed/file_manager.html":{"ref":"detailed/file_manager.html","tf":0.06976744186046512}}},"值":{"docs":{"core/combination/bi.combo.html":{"ref":"core/combination/bi.combo.html","tf":0.009615384615384616},"core/combination/bi.expander.html":{"ref":"core/combination/bi.expander.html","tf":0.01098901098901099},"core/combination/group_combo.html":{"ref":"core/combination/group_combo.html","tf":0.015748031496062992}}},")":{"docs":{},"{":{"docs":{"core/combination/loader.html":{"ref":"core/combination/loader.html","tf":0.006289308176100629}}}}}},"i":{"docs":{},"d":{"docs":{"core/widget.html":{"ref":"core/widget.html","tf":0.01020408163265306}},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"c":{"docs":{},"h":{"docs":{},"e":{"docs":{},"c":{"docs":{},"k":{"docs":{"base/editor/editor.html":{"ref":"base/editor/editor.html","tf":0.005405405405405406},"case/editor/shelter_editor.html":{"ref":"case/editor/shelter_editor.html","tf":0.0051813471502590676},"case/editor/sign_editor.html":{"ref":"case/editor/sign_editor.html","tf":0.005494505494505495},"case/editor/sign_initial_editor.html":{"ref":"case/editor/sign_initial_editor.html","tf":0.005154639175257732},"case/editor/state_editor.html":{"ref":"case/editor/state_editor.html","tf":0.005747126436781609},"case/trigger/editor_trigger.html":{"ref":"case/trigger/editor_trigger.html","tf":0.02},"detailed/text_input/bi.text_editor.html":{"ref":"detailed/text_input/bi.text_editor.html","tf":0.010309278350515464},"detailed/text_input/bi.search_editor.html":{"ref":"detailed/text_input/bi.search_editor.html","tf":0.010101010101010102},"detailed/text_input/bi.clear_editor.html":{"ref":"detailed/text_input/bi.clear_editor.html","tf":0.00980392156862745}}}}}}}}}}}}}}},"r":{"docs":{"core/layer/layer_float_box.html":{"ref":"core/layer/layer_float_box.html","tf":0.012345679012345678},"core/layer/layer_searcher.html":{"ref":"core/layer/layer_searcher.html","tf":0.009259259259259259},"base/svg.html":{"ref":"base/svg.html","tf":0.011235955056179775},"base/canvas.html":{"ref":"base/canvas.html","tf":0.016666666666666666},"case/tree/display_tree.html":{"ref":"case/tree/display_tree.html","tf":0.030303030303030304},"case/tree/simple_tree.html":{"ref":"case/tree/simple_tree.html","tf":0.022222222222222223},"case/tree/level_tree.html":{"ref":"case/tree/level_tree.html","tf":0.017857142857142856},"case/tree/branch_relation.html":{"ref":"case/tree/branch_relation.html","tf":0.02040816326530612},"case/table/tree_table.html":{"ref":"case/table/tree_table.html","tf":0.00510204081632653},"case/table/layer_tree_table.html":{"ref":"case/table/layer_tree_table.html","tf":0.00510204081632653},"case/pager/direction_pager.html":{"ref":"case/pager/direction_pager.html","tf":0.00819672131147541},"case/complex_canvas.html":{"ref":"case/complex_canvas.html","tf":0.020833333333333332},"detailed/bi.button/tooltip.html":{"ref":"detailed/bi.button/tooltip.html","tf":0.011363636363636364},"detailed/tree/bi.multi_tree_combo.html":{"ref":"detailed/tree/bi.multi_tree_combo.html","tf":0.010869565217391304},"detailed/tree/bi.switch_tree.html":{"ref":"detailed/tree/bi.switch_tree.html","tf":0.02631578947368421},"detailed/combo/single_tree_combo.html":{"ref":"detailed/combo/single_tree_combo.html","tf":0.01694915254237288},"detailed/combo/multilayer_single_tree_combo.html":{"ref":"detailed/combo/multilayer_single_tree_combo.html","tf":0.018867924528301886},"detailed/combo/select_tree_combo.html":{"ref":"detailed/combo/select_tree_combo.html","tf":0.02040816326530612},"detailed/combo/multilayer_select_tree_combo.html":{"ref":"detailed/combo/multilayer_select_tree_combo.html","tf":0.02040816326530612}}}},"i":{"docs":{},"r":{"docs":{},"t":{"docs":{},"u":{"docs":{},"a":{"docs":{},"l":{"docs":{},"_":{"docs":{},"g":{"docs":{},"r":{"docs":{},"o":{"docs":{},"u":{"docs":{},"p":{"docs":{"core/abstract/virtual_group.html":{"ref":"core/abstract/virtual_group.html","tf":10}}}}}}},"l":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{"core/abstract/virtual_list.html":{"ref":"core/abstract/virtual_list.html","tf":10}}}}}}}}}}}},"s":{"docs":{},"i":{"docs":{},"b":{"docs":{},"l":{"docs":{"core/widget.html":{"ref":"core/widget.html","tf":0.01020408163265306}}}}}}},")":{"docs":{"core/combination/loader.html":{"ref":"core/combination/loader.html","tf":0.006289308176100629}}},":":{"docs":{"case/list/list.select.html":{"ref":"case/list/list.select.html","tf":0.009433962264150943},"detailed/table/bi.page_table.html":{"ref":"detailed/table/bi.page_table.html","tf":0.009302325581395349}}}},"{":{"docs":{"core/layout/vertical.html":{"ref":"core/layout/vertical.html","tf":0.01282051282051282},"core/layout/horizontal.html":{"ref":"core/layout/horizontal.html","tf":0.010752688172043012},"core/layout/htape.html":{"ref":"core/layout/htape.html","tf":0.048},"core/layout/vtape.html":{"ref":"core/layout/vtape.html","tf":0.048},"core/layout/center_adapt.html":{"ref":"core/layout/center_adapt.html","tf":0.011764705882352941},"core/layout/vertical_adapt.html":{"ref":"core/layout/vertical_adapt.html","tf":0.011494252873563218},"core/layout/left_right_vertical_adapt.html":{"ref":"core/layout/left_right_vertical_adapt.html","tf":0.01098901098901099},"core/layout/flow.html":{"ref":"core/layout/flow.html","tf":0.023076923076923078},"core/layout/horizontal_adapt.html":{"ref":"core/layout/horizontal_adapt.html","tf":0.010869565217391304},"core/layout/horizontal_auto.html":{"ref":"core/layout/horizontal_auto.html","tf":0.012345679012345678},"core/layout/float_center.html":{"ref":"core/layout/float_center.html","tf":0.012658227848101266},"core/layout/border.html":{"ref":"core/layout/border.html","tf":0.06493506493506493},"core/layout/grid.html":{"ref":"core/layout/grid.html","tf":0.0625},"core/abstract/button_group.html":{"ref":"core/abstract/button_group.html","tf":0.015873015873015872},"core/abstract/virtual_group.html":{"ref":"core/abstract/virtual_group.html","tf":0.014492753623188406},"core/abstract/custom_tree.html":{"ref":"core/abstract/custom_tree.html","tf":0.02877697841726619},"core/abstract/grid_view.html":{"ref":"core/abstract/grid_view.html","tf":0.01282051282051282},"core/abstract/collection_view.html":{"ref":"core/abstract/collection_view.html","tf":0.014184397163120567},"core/abstract/virtual_list.html":{"ref":"core/abstract/virtual_list.html","tf":0.025},"core/combination/bi.combo.html":{"ref":"core/combination/bi.combo.html","tf":0.014423076923076924},"core/combination/bi.expander.html":{"ref":"core/combination/bi.expander.html","tf":0.027472527472527472},"core/combination/group_combo.html":{"ref":"core/combination/group_combo.html","tf":0.007874015748031496},"core/combination/loader.html":{"ref":"core/combination/loader.html","tf":0.031446540880503145},"core/combination/navigation.html":{"ref":"core/combination/navigation.html","tf":0.02158273381294964},"core/combination/searcher.html":{"ref":"core/combination/searcher.html","tf":0.013824884792626729},"core/combination/switcher.html":{"ref":"core/combination/switcher.html","tf":0.0375},"core/combination/tab.html":{"ref":"core/combination/tab.html","tf":0.03424657534246575},"core/layer/layer_float_box.html":{"ref":"core/layer/layer_float_box.html","tf":0.012345679012345678},"core/layer/layer_popup.html":{"ref":"core/layer/layer_popup.html","tf":0.01764705882352941},"core/layer/layer_searcher.html":{"ref":"core/layer/layer_searcher.html","tf":0.018518518518518517},"base/message.html":{"ref":"base/message.html","tf":0.02127659574468085},"base/table/collection_table.html":{"ref":"base/table/collection_table.html","tf":0.013071895424836602},"base/table/resizable_table.html":{"ref":"base/table/resizable_table.html","tf":0.0125},"case/button/multi_select_item.html":{"ref":"case/button/multi_select_item.html","tf":0.017543859649122806},"case/button/single_select_item.html":{"ref":"case/button/single_select_item.html","tf":0.016129032258064516},"case/button/single_select_radio_item.html":{"ref":"case/button/single_select_radio_item.html","tf":0.016129032258064516},"case/layer/pane_list.html":{"ref":"case/layer/pane_list.html","tf":0.006802721088435374},"case/layer/panel.html":{"ref":"case/layer/panel.html","tf":0.047619047619047616},"case/list/list.select.html":{"ref":"case/list/list.select.html","tf":0.009433962264150943},"case/combo/bubble_combo.html":{"ref":"case/combo/bubble_combo.html","tf":0.023121387283236993},"case/combo/icon_combo.html":{"ref":"case/combo/icon_combo.html","tf":0.031007751937984496},"case/combo/static_combo.html":{"ref":"case/combo/static_combo.html","tf":0.0375},"case/combo/text_value_combo.html":{"ref":"case/combo/text_value_combo.html","tf":0.04054054054054054},"case/combo/text_value_downlist_combo.html":{"ref":"case/combo/text_value_downlist_combo.html","tf":0.02702702702702703},"case/pager/direction_pager.html":{"ref":"case/pager/direction_pager.html","tf":0.01639344262295082},"case/complex_canvas.html":{"ref":"case/complex_canvas.html","tf":0.020833333333333332},"case/segment.html":{"ref":"case/segment.html","tf":0.028037383177570093},"detailed/bi.button/tooltip.html":{"ref":"detailed/bi.button/tooltip.html","tf":0.022727272727272728},"detailed/bi.button/items.html":{"ref":"detailed/bi.button/items.html","tf":0.031914893617021274},"detailed/bi.button/node.html":{"ref":"detailed/bi.button/node.html","tf":0.046296296296296294},"detailed/bi.button/segment.html":{"ref":"detailed/bi.button/segment.html","tf":0.028037383177570093},"detailed/tree/bi.multi_tree_combo.html":{"ref":"detailed/tree/bi.multi_tree_combo.html","tf":0.03260869565217391},"detailed/tree/bi.switch_tree.html":{"ref":"detailed/tree/bi.switch_tree.html","tf":0.02631578947368421},"detailed/table/bi.preview_table.html":{"ref":"detailed/table/bi.preview_table.html","tf":0.02702702702702703},"detailed/table/bi.responsive_table.html":{"ref":"detailed/table/bi.responsive_table.html","tf":0.021052631578947368},"detailed/table/bi.excel_table.html":{"ref":"detailed/table/bi.excel_table.html","tf":0.011049723756906077},"detailed/table/bi.page_table.html":{"ref":"detailed/table/bi.page_table.html","tf":0.004651162790697674},"detailed/down_list_combo.html":{"ref":"detailed/down_list_combo.html","tf":0.02631578947368421},"detailed/multi_select_combo.html":{"ref":"detailed/multi_select_combo.html","tf":0.04},"detailed/date/year_month_combo.html":{"ref":"detailed/date/year_month_combo.html","tf":0.058823529411764705},"detailed/date/year_quarter_combo.html":{"ref":"detailed/date/year_quarter_combo.html","tf":0.03225806451612903},"detailed/path/path_chooser.html":{"ref":"detailed/path/path_chooser.html","tf":0.038461538461538464},"detailed/path/direction_path_chooser.html":{"ref":"detailed/path/direction_path_chooser.html","tf":0.04},"detailed/relation_view.html":{"ref":"detailed/relation_view.html","tf":0.038461538461538464},"detailed/file_manager.html":{"ref":"detailed/file_manager.html","tf":0.046511627906976744}},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{},"e":{"docs":{},":":{"docs":{"core/layout/htape.html":{"ref":"core/layout/htape.html","tf":0.024},"core/layout/vtape.html":{"ref":"core/layout/vtape.html","tf":0.024},"core/layout/border.html":{"ref":"core/layout/border.html","tf":0.06493506493506493},"core/layout/table.html":{"ref":"core/layout/table.html","tf":0.03614457831325301},"core/abstract/custom_tree.html":{"ref":"core/abstract/custom_tree.html","tf":0.014388489208633094},"core/combination/group_combo.html":{"ref":"core/combination/group_combo.html","tf":0.015748031496062992},"core/combination/searcher.html":{"ref":"core/combination/searcher.html","tf":0.009216589861751152},"core/layer/layer_searcher.html":{"ref":"core/layer/layer_searcher.html","tf":0.018518518518518517},"case/layer/pane_list.html":{"ref":"case/layer/pane_list.html","tf":0.006802721088435374}},"\"":{"docs":{},"b":{"docs":{},"i":{"docs":{},".":{"docs":{},"h":{"docs":{},"o":{"docs":{},"r":{"docs":{},"i":{"docs":{},"z":{"docs":{},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{},"a":{"docs":{},"l":{"docs":{},"\"":{"docs":{},",":{"docs":{},"h":{"docs":{},"g":{"docs":{},"a":{"docs":{},"p":{"docs":{},":":{"1":{"0":{"docs":{},",":{"docs":{},"v":{"docs":{},"g":{"docs":{},"a":{"docs":{},"p":{"docs":{},":":{"0":{"docs":{},"}":{"docs":{"base/pager.html":{"ref":"base/pager.html","tf":0.006666666666666667}}}},"docs":{}}}}}}}},"docs":{}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}},"e":{"docs":{},"x":{"docs":{},"t":{"docs":{},":":{"docs":{"core/layout/td.html":{"ref":"core/layout/td.html","tf":0.05357142857142857}}}}}}},"h":{"docs":{},"e":{"docs":{},"i":{"docs":{},"g":{"docs":{},"h":{"docs":{},"t":{"docs":{},":":{"docs":{"core/layout/vtape.html":{"ref":"core/layout/vtape.html","tf":0.008}}}}}}}}},"e":{"docs":{},"l":{"docs":{},":":{"docs":{"core/layout/border.html":{"ref":"core/layout/border.html","tf":0.012987012987012988},"core/abstract/custom_tree.html":{"ref":"core/abstract/custom_tree.html","tf":0.007194244604316547},"core/combination/group_combo.html":{"ref":"core/combination/group_combo.html","tf":0.007874015748031496}}}}},"}":{"docs":{"core/combination/bi.combo.html":{"ref":"core/combination/bi.combo.html","tf":0.004807692307692308},"base/editor/formula_editor.html":{"ref":"base/editor/formula_editor.html","tf":0.010101010101010102},"base/pager.html":{"ref":"base/pager.html","tf":0.006666666666666667},"case/loader/list_loader.html":{"ref":"case/loader/list_loader.html","tf":0.010752688172043012},"case/loader/sort_list.html":{"ref":"case/loader/sort_list.html","tf":0.010752688172043012},"case/tree/branch_tree.html":{"ref":"case/tree/branch_tree.html","tf":0.04},"case/tree/handstand_branch_tree.html":{"ref":"case/tree/handstand_branch_tree.html","tf":0.038461538461538464},"case/tree/level_tree.html":{"ref":"case/tree/level_tree.html","tf":0.017857142857142856},"case/clipboard.html":{"ref":"case/clipboard.html","tf":0.03125},"detailed/tree/bi.multi_tree_combo.html":{"ref":"detailed/tree/bi.multi_tree_combo.html","tf":0.010869565217391304},"detailed/table/bi.page_table.html":{"ref":"detailed/table/bi.page_table.html","tf":0.004651162790697674},"detailed/year_combo.html":{"ref":"detailed/year_combo.html","tf":0.025},"detailed/month_combo.html":{"ref":"detailed/month_combo.html","tf":0.03571428571428571},"detailed/quarter_combo.html":{"ref":"detailed/quarter_combo.html","tf":0.03571428571428571},"detailed/combo/single_tree_combo.html":{"ref":"detailed/combo/single_tree_combo.html","tf":0.01694915254237288}},",":{"docs":{"case/tree/branch_tree.html":{"ref":"case/tree/branch_tree.html","tf":0.06},"case/tree/handstand_branch_tree.html":{"ref":"case/tree/handstand_branch_tree.html","tf":0.07692307692307693},"case/clipboard.html":{"ref":"case/clipboard.html","tf":0.03125},"detailed/table/bi.page_table.html":{"ref":"detailed/table/bi.page_table.html","tf":0.004651162790697674}},"p":{"docs":{},"o":{"docs":{},"p":{"docs":{},"u":{"docs":{},"p":{"docs":{},":":{"docs":{"core/abstract/custom_tree.html":{"ref":"core/abstract/custom_tree.html","tf":0.007194244604316547}}}}}}}},"l":{"docs":{},"a":{"docs":{},"y":{"docs":{},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{},"s":{"docs":{},":":{"docs":{"core/layer/layer_popup.html":{"ref":"core/layer/layer_popup.html","tf":0.0058823529411764705}}}}}}}}}}},"}":{"docs":{"core/combination/searcher.html":{"ref":"core/combination/searcher.html","tf":0.004608294930875576}}}},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"o":{"docs":{},"l":{"docs":{},"l":{"docs":{},"l":{"docs":{},"e":{"docs":{},"f":{"docs":{},"t":{"docs":{},":":{"docs":{"core/abstract/grid_view.html":{"ref":"core/abstract/grid_view.html","tf":0.00641025641025641},"core/abstract/collection_view.html":{"ref":"core/abstract/collection_view.html","tf":0.0070921985815602835}}}}}}}}}}}}},"d":{"docs":{},"y":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"i":{"docs":{},"c":{"docs":{},":":{"docs":{},"t":{"docs":{},"r":{"docs":{},"u":{"docs":{},"e":{"docs":{},",":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"o":{"docs":{},"l":{"docs":{},"l":{"docs":{},"y":{"docs":{},":":{"docs":{},"t":{"docs":{},"r":{"docs":{},"u":{"docs":{},"e":{"docs":{},"}":{"docs":{"core/combination/loader.html":{"ref":"core/combination/loader.html","tf":0.006289308176100629}}}}}}}}}}}}}}}},"}":{"docs":{"core/combination/navigation.html":{"ref":"core/combination/navigation.html","tf":0.007194244604316547},"core/layer/layer_popup.html":{"ref":"core/layer/layer_popup.html","tf":0.0058823529411764705}}}}}}},"f":{"docs":{},"a":{"docs":{},"l":{"docs":{},"s":{"docs":{},"e":{"docs":{},"}":{"docs":{"core/combination/tab.html":{"ref":"core/combination/tab.html","tf":0.00684931506849315},"case/button/multi_select_item.html":{"ref":"case/button/multi_select_item.html","tf":0.017543859649122806}}}}}}}}}}}}}}}},"o":{"docs":{},"f":{"docs":{},"f":{"docs":{},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{},":":{"docs":{"core/combination/searcher.html":{"ref":"core/combination/searcher.html","tf":0.004608294930875576}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"t":{"docs":{},"u":{"docs":{},"r":{"docs":{},"n":{"docs":{"core/combination/tab.html":{"ref":"core/combination/tab.html","tf":0.00684931506849315},"core/layer/layer_searcher.html":{"ref":"core/layer/layer_searcher.html","tf":0.009259259259259259}}}}}},"d":{"docs":{},"m":{"docs":{},"a":{"docs":{},"r":{"docs":{},"k":{"docs":{},":":{"docs":{"core/layer/layer_searcher.html":{"ref":"core/layer/layer_searcher.html","tf":0.009259259259259259}}}}}}}},"g":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},":":{"docs":{"detailed/relation_view.html":{"ref":"detailed/relation_view.html","tf":0.057692307692307696}}}}}}}}},"y":{"docs":{},"e":{"docs":{},"a":{"docs":{},"r":{"docs":{},",":{"docs":{"case/calendar.html":{"ref":"case/calendar.html","tf":0.013888888888888888}}}}}}}},"}":{"docs":{"core/layout/htape.html":{"ref":"core/layout/htape.html","tf":0.032},"core/layout/vtape.html":{"ref":"core/layout/vtape.html","tf":0.032},"core/layout/left_right_vertical_adapt.html":{"ref":"core/layout/left_right_vertical_adapt.html","tf":0.01098901098901099},"core/layout/border.html":{"ref":"core/layout/border.html","tf":0.012987012987012988},"core/layout/grid.html":{"ref":"core/layout/grid.html","tf":0.044642857142857144},"core/abstract/button_group.html":{"ref":"core/abstract/button_group.html","tf":0.007936507936507936},"core/abstract/custom_tree.html":{"ref":"core/abstract/custom_tree.html","tf":0.007194244604316547},"core/abstract/grid_view.html":{"ref":"core/abstract/grid_view.html","tf":0.00641025641025641},"core/abstract/collection_view.html":{"ref":"core/abstract/collection_view.html","tf":0.014184397163120567},"core/combination/bi.combo.html":{"ref":"core/combination/bi.combo.html","tf":0.009615384615384616},"core/combination/bi.expander.html":{"ref":"core/combination/bi.expander.html","tf":0.016483516483516484},"core/combination/navigation.html":{"ref":"core/combination/navigation.html","tf":0.007194244604316547},"core/combination/searcher.html":{"ref":"core/combination/searcher.html","tf":0.004608294930875576},"core/combination/switcher.html":{"ref":"core/combination/switcher.html","tf":0.025},"core/combination/tab.html":{"ref":"core/combination/tab.html","tf":0.02054794520547945},"core/layer/layer_float_box.html":{"ref":"core/layer/layer_float_box.html","tf":0.012345679012345678},"core/layer/layer_popup.html":{"ref":"core/layer/layer_popup.html","tf":0.0058823529411764705},"base/message.html":{"ref":"base/message.html","tf":0.02127659574468085},"case/layer/pane_list.html":{"ref":"case/layer/pane_list.html","tf":0.006802721088435374},"case/layer/panel.html":{"ref":"case/layer/panel.html","tf":0.031746031746031744},"case/combo/bubble_combo.html":{"ref":"case/combo/bubble_combo.html","tf":0.005780346820809248},"case/combo/icon_combo.html":{"ref":"case/combo/icon_combo.html","tf":0.015503875968992248},"case/combo/static_combo.html":{"ref":"case/combo/static_combo.html","tf":0.0125},"case/combo/text_value_combo.html":{"ref":"case/combo/text_value_combo.html","tf":0.013513513513513514},"detailed/bi.button/tooltip.html":{"ref":"detailed/bi.button/tooltip.html","tf":0.022727272727272728},"detailed/table/bi.page_table.html":{"ref":"detailed/table/bi.page_table.html","tf":0.004651162790697674},"detailed/multi_select_combo.html":{"ref":"detailed/multi_select_combo.html","tf":0.08},"detailed/date/year_month_combo.html":{"ref":"detailed/date/year_month_combo.html","tf":0.058823529411764705},"detailed/date/year_quarter_combo.html":{"ref":"detailed/date/year_quarter_combo.html","tf":0.03225806451612903}},")":{"docs":{"core/layout/center_adapt.html":{"ref":"core/layout/center_adapt.html","tf":0.011764705882352941},"core/layout/vertical_adapt.html":{"ref":"core/layout/vertical_adapt.html","tf":0.011494252873563218},"core/layout/horizontal_adapt.html":{"ref":"core/layout/horizontal_adapt.html","tf":0.010869565217391304},"core/layout/horizontal_auto.html":{"ref":"core/layout/horizontal_auto.html","tf":0.012345679012345678},"core/layout/horizontal_float.html":{"ref":"core/layout/horizontal_float.html","tf":0.013888888888888888},"core/abstract/button_group.html":{"ref":"core/abstract/button_group.html","tf":0.007936507936507936},"core/abstract/button_tree.html":{"ref":"core/abstract/button_tree.html","tf":0.014925373134328358},"core/abstract/virtual_group.html":{"ref":"core/abstract/virtual_group.html","tf":0.014492753623188406},"core/abstract/virtual_list.html":{"ref":"core/abstract/virtual_list.html","tf":0.025},"core/combination/loader.html":{"ref":"core/combination/loader.html","tf":0.006289308176100629},"core/combination/navigation.html":{"ref":"core/combination/navigation.html","tf":0.014388489208633094},"core/combination/searcher.html":{"ref":"core/combination/searcher.html","tf":0.004608294930875576},"core/combination/switcher.html":{"ref":"core/combination/switcher.html","tf":0.00625},"core/combination/tab.html":{"ref":"core/combination/tab.html","tf":0.02054794520547945},"core/layer/layer_float_box.html":{"ref":"core/layer/layer_float_box.html","tf":0.012345679012345678},"core/layer/layer_popup.html":{"ref":"core/layer/layer_popup.html","tf":0.0058823529411764705},"base/bubble.html":{"ref":"base/bubble.html","tf":0.023255813953488372},"base/toast.html":{"ref":"base/toast.html","tf":0.020833333333333332},"case/combo/bubble_combo.html":{"ref":"case/combo/bubble_combo.html","tf":0.005780346820809248},"detailed/tree/bi.multi_tree_combo.html":{"ref":"detailed/tree/bi.multi_tree_combo.html","tf":0.010869565217391304},"detailed/file_manager.html":{"ref":"detailed/file_manager.html","tf":0.023255813953488372}},";":{"docs":{"core/layout/vertical.html":{"ref":"core/layout/vertical.html","tf":0.01282051282051282},"core/layout/horizontal.html":{"ref":"core/layout/horizontal.html","tf":0.010752688172043012},"core/layout/htape.html":{"ref":"core/layout/htape.html","tf":0.008},"core/layout/vtape.html":{"ref":"core/layout/vtape.html","tf":0.008},"core/layout/left_right_vertical_adapt.html":{"ref":"core/layout/left_right_vertical_adapt.html","tf":0.01098901098901099},"core/layout/flow.html":{"ref":"core/layout/flow.html","tf":0.007692307692307693},"core/layout/center.html":{"ref":"core/layout/center.html","tf":0.012658227848101266},"core/layout/float_center.html":{"ref":"core/layout/float_center.html","tf":0.012658227848101266},"core/layout/border.html":{"ref":"core/layout/border.html","tf":0.012987012987012988},"core/layout/grid.html":{"ref":"core/layout/grid.html","tf":0.008928571428571428},"core/layout/table.html":{"ref":"core/layout/table.html","tf":0.012048192771084338},"core/layout/td.html":{"ref":"core/layout/td.html","tf":0.017857142857142856},"core/abstract/custom_tree.html":{"ref":"core/abstract/custom_tree.html","tf":0.007194244604316547},"core/abstract/grid_view.html":{"ref":"core/abstract/grid_view.html","tf":0.00641025641025641},"core/abstract/collection_view.html":{"ref":"core/abstract/collection_view.html","tf":0.0070921985815602835},"core/abstract/virtual_list.html":{"ref":"core/abstract/virtual_list.html","tf":0.0125},"core/combination/bi.combo.html":{"ref":"core/combination/bi.combo.html","tf":0.004807692307692308},"core/combination/bi.expander.html":{"ref":"core/combination/bi.expander.html","tf":0.005494505494505495},"core/combination/group_combo.html":{"ref":"core/combination/group_combo.html","tf":0.007874015748031496},"core/layer/layer_searcher.html":{"ref":"core/layer/layer_searcher.html","tf":0.009259259259259259},"base/label.html":{"ref":"base/label.html","tf":0.006711409395973154},"base/message.html":{"ref":"base/message.html","tf":0.02127659574468085},"base/button/button.html":{"ref":"base/button/button.html","tf":0.005681818181818182},"base/button/text_button.html":{"ref":"base/button/text_button.html","tf":0.009433962264150943},"base/button/icon_button.html":{"ref":"base/button/icon_button.html","tf":0.02564102564102564},"base/button/image_button.html":{"ref":"base/button/image_button.html","tf":0.014925373134328358},"base/editor/editor.html":{"ref":"base/editor/editor.html","tf":0.005405405405405406},"base/editor/code_editor.html":{"ref":"base/editor/code_editor.html","tf":0.012658227848101266},"base/editor/multifile_editor.html":{"ref":"base/editor/multifile_editor.html","tf":0.015384615384615385},"base/editor/textarea_editor.html":{"ref":"base/editor/textarea_editor.html","tf":0.021739130434782608},"base/editor/formula_editor.html":{"ref":"base/editor/formula_editor.html","tf":0.010101010101010102},"base/table/table_view.html":{"ref":"base/table/table_view.html","tf":0.006289308176100629},"base/table/grid_table.html":{"ref":"base/table/grid_table.html","tf":0.008771929824561403},"base/table/collection_table.html":{"ref":"base/table/collection_table.html","tf":0.006535947712418301},"base/table/resizable_table.html":{"ref":"base/table/resizable_table.html","tf":0.00625},"base/pager.html":{"ref":"base/pager.html","tf":0.006666666666666667},"base/svg.html":{"ref":"base/svg.html","tf":0.011235955056179775},"base/canvas.html":{"ref":"base/canvas.html","tf":0.016666666666666666},"case/button/multi_select_item.html":{"ref":"case/button/multi_select_item.html","tf":0.017543859649122806},"case/button/single_select_item.html":{"ref":"case/button/single_select_item.html","tf":0.016129032258064516},"case/button/single_select_radio_item.html":{"ref":"case/button/single_select_radio_item.html","tf":0.016129032258064516},"case/editor/shelter_editor.html":{"ref":"case/editor/shelter_editor.html","tf":0.0051813471502590676},"case/editor/sign_editor.html":{"ref":"case/editor/sign_editor.html","tf":0.005494505494505495},"case/editor/sign_initial_editor.html":{"ref":"case/editor/sign_initial_editor.html","tf":0.005154639175257732},"case/editor/state_editor.html":{"ref":"case/editor/state_editor.html","tf":0.005747126436781609},"case/layer/multi_popup_layer.html":{"ref":"case/layer/multi_popup_layer.html","tf":0.04},"case/layer/layer_panel.html":{"ref":"case/layer/layer_panel.html","tf":0.010752688172043012},"case/layer/pane_list.html":{"ref":"case/layer/pane_list.html","tf":0.006802721088435374},"case/layer/panel.html":{"ref":"case/layer/panel.html","tf":0.015873015873015872},"case/list/list.select.html":{"ref":"case/list/list.select.html","tf":0.009433962264150943},"case/loader/lazy_loader.html":{"ref":"case/loader/lazy_loader.html","tf":0.01694915254237288},"case/loader/list_loader.html":{"ref":"case/loader/list_loader.html","tf":0.010752688172043012},"case/loader/sort_list.html":{"ref":"case/loader/sort_list.html","tf":0.010752688172043012},"case/trigger/editor_trigger.html":{"ref":"case/trigger/editor_trigger.html","tf":0.02},"case/trigger/icon_trigger.html":{"ref":"case/trigger/icon_trigger.html","tf":0.1111111111111111},"case/trigger/text_trigger.html":{"ref":"case/trigger/text_trigger.html","tf":0.05263157894736842},"case/combo/icon_combo.html":{"ref":"case/combo/icon_combo.html","tf":0.007751937984496124},"case/combo/static_combo.html":{"ref":"case/combo/static_combo.html","tf":0.0125},"case/combo/text_value_combo.html":{"ref":"case/combo/text_value_combo.html","tf":0.013513513513513514},"case/combo/text_value_downlist_combo.html":{"ref":"case/combo/text_value_downlist_combo.html","tf":0.013513513513513514},"case/tree/branch_tree.html":{"ref":"case/tree/branch_tree.html","tf":0.02},"case/tree/handstand_branch_tree.html":{"ref":"case/tree/handstand_branch_tree.html","tf":0.019230769230769232},"case/tree/display_tree.html":{"ref":"case/tree/display_tree.html","tf":0.06060606060606061},"case/tree/simple_tree.html":{"ref":"case/tree/simple_tree.html","tf":0.022222222222222223},"case/tree/level_tree.html":{"ref":"case/tree/level_tree.html","tf":0.017857142857142856},"case/tree/branch_relation.html":{"ref":"case/tree/branch_relation.html","tf":0.02040816326530612},"case/table/adaptive_table.html":{"ref":"case/table/adaptive_table.html","tf":0.006060606060606061},"case/table/tree_table.html":{"ref":"case/table/tree_table.html","tf":0.00510204081632653},"case/table/layer_tree_table.html":{"ref":"case/table/layer_tree_table.html","tf":0.00510204081632653},"case/pager/all_count_pager.html":{"ref":"case/pager/all_count_pager.html","tf":0.014705882352941176},"case/pager/direction_pager.html":{"ref":"case/pager/direction_pager.html","tf":0.00819672131147541},"case/calendar.html":{"ref":"case/calendar.html","tf":0.013888888888888888},"case/clipboard.html":{"ref":"case/clipboard.html","tf":0.03125},"case/complex_canvas.html":{"ref":"case/complex_canvas.html","tf":0.041666666666666664},"case/color_chooser.html":{"ref":"case/color_chooser.html","tf":0.038461538461538464},"case/color_chooser_popup.html":{"ref":"case/color_chooser_popup.html","tf":0.029411764705882353},"case/segment.html":{"ref":"case/segment.html","tf":0.009345794392523364},"detailed/bi.button/tooltip.html":{"ref":"detailed/bi.button/tooltip.html","tf":0.011363636363636364},"detailed/bi.button/items.html":{"ref":"detailed/bi.button/items.html","tf":0.010638297872340425},"detailed/bi.button/node.html":{"ref":"detailed/bi.button/node.html","tf":0.009259259259259259},"detailed/bi.button/segment.html":{"ref":"detailed/bi.button/segment.html","tf":0.009345794392523364},"detailed/tree/bi.multi_tree_combo.html":{"ref":"detailed/tree/bi.multi_tree_combo.html","tf":0.010869565217391304},"detailed/tree/bi.switch_tree.html":{"ref":"detailed/tree/bi.switch_tree.html","tf":0.013157894736842105},"detailed/table/bi.preview_table.html":{"ref":"detailed/table/bi.preview_table.html","tf":0.006756756756756757},"detailed/table/bi.responsive_table.html":{"ref":"detailed/table/bi.responsive_table.html","tf":0.005263157894736842},"detailed/table/bi.excel_table.html":{"ref":"detailed/table/bi.excel_table.html","tf":0.0055248618784530384},"detailed/table/bi.page_table.html":{"ref":"detailed/table/bi.page_table.html","tf":0.004651162790697674},"detailed/text_input/bi.text_editor.html":{"ref":"detailed/text_input/bi.text_editor.html","tf":0.010309278350515464},"detailed/text_input/bi.search_editor.html":{"ref":"detailed/text_input/bi.search_editor.html","tf":0.010101010101010102},"detailed/text_input/bi.clear_editor.html":{"ref":"detailed/text_input/bi.clear_editor.html","tf":0.00980392156862745},"detailed/text_input/finetuning_number_editor.html":{"ref":"detailed/text_input/finetuning_number_editor.html","tf":0.037037037037037035},"detailed/year_combo.html":{"ref":"detailed/year_combo.html","tf":0.025},"detailed/month_combo.html":{"ref":"detailed/month_combo.html","tf":0.03571428571428571},"detailed/quarter_combo.html":{"ref":"detailed/quarter_combo.html","tf":0.03571428571428571},"detailed/down_list_combo.html":{"ref":"detailed/down_list_combo.html","tf":0.006578947368421052},"detailed/numeric_interval.html":{"ref":"detailed/numeric_interval.html","tf":0.017241379310344827},"detailed/multi_select_combo.html":{"ref":"detailed/multi_select_combo.html","tf":0.04},"detailed/date/date_combo.html":{"ref":"detailed/date/date_combo.html","tf":0.058823529411764705},"detailed/date/date_pane_widget.html":{"ref":"detailed/date/date_pane_widget.html","tf":0.02702702702702703},"detailed/date/year_month_combo.html":{"ref":"detailed/date/year_month_combo.html","tf":0.029411764705882353},"detailed/date/year_quarter_combo.html":{"ref":"detailed/date/year_quarter_combo.html","tf":0.03225806451612903},"detailed/date/custom_date_time.html":{"ref":"detailed/date/custom_date_time.html","tf":0.045454545454545456},"detailed/combo/single_tree_combo.html":{"ref":"detailed/combo/single_tree_combo.html","tf":0.01694915254237288},"detailed/combo/multilayer_single_tree_combo.html":{"ref":"detailed/combo/multilayer_single_tree_combo.html","tf":0.018867924528301886},"detailed/combo/select_tree_combo.html":{"ref":"detailed/combo/select_tree_combo.html","tf":0.02040816326530612},"detailed/combo/multilayer_select_tree_combo.html":{"ref":"detailed/combo/multilayer_select_tree_combo.html","tf":0.02040816326530612},"detailed/path/path_chooser.html":{"ref":"detailed/path/path_chooser.html","tf":0.019230769230769232},"detailed/path/direction_path_chooser.html":{"ref":"detailed/path/direction_path_chooser.html","tf":0.02},"detailed/relation_view.html":{"ref":"detailed/relation_view.html","tf":0.019230769230769232},"detailed/slider.html":{"ref":"detailed/slider.html","tf":0.029411764705882353}}},")":{"docs":{"core/combination/loader.html":{"ref":"core/combination/loader.html","tf":0.006289308176100629}}},",":{"docs":{"core/combination/loader.html":{"ref":"core/combination/loader.html","tf":0.006289308176100629},"case/combo/bubble_combo.html":{"ref":"case/combo/bubble_combo.html","tf":0.005780346820809248}}}},",":{"docs":{"core/layout/vertical.html":{"ref":"core/layout/vertical.html","tf":0.01282051282051282},"core/layout/horizontal.html":{"ref":"core/layout/horizontal.html","tf":0.010752688172043012},"core/layout/htape.html":{"ref":"core/layout/htape.html","tf":0.016},"core/layout/vtape.html":{"ref":"core/layout/vtape.html","tf":0.016},"core/layout/center_adapt.html":{"ref":"core/layout/center_adapt.html","tf":0.011764705882352941},"core/layout/vertical_adapt.html":{"ref":"core/layout/vertical_adapt.html","tf":0.011494252873563218},"core/layout/flow.html":{"ref":"core/layout/flow.html","tf":0.023076923076923078},"core/layout/horizontal_adapt.html":{"ref":"core/layout/horizontal_adapt.html","tf":0.010869565217391304},"core/layout/horizontal_auto.html":{"ref":"core/layout/horizontal_auto.html","tf":0.012345679012345678},"core/layout/float_center.html":{"ref":"core/layout/float_center.html","tf":0.012658227848101266},"core/layout/border.html":{"ref":"core/layout/border.html","tf":0.05194805194805195},"core/layout/grid.html":{"ref":"core/layout/grid.html","tf":0.017857142857142856},"core/abstract/button_group.html":{"ref":"core/abstract/button_group.html","tf":0.007936507936507936},"core/abstract/virtual_group.html":{"ref":"core/abstract/virtual_group.html","tf":0.014492753623188406},"core/abstract/custom_tree.html":{"ref":"core/abstract/custom_tree.html","tf":0.02158273381294964},"core/abstract/grid_view.html":{"ref":"core/abstract/grid_view.html","tf":0.00641025641025641},"core/combination/bi.combo.html":{"ref":"core/combination/bi.combo.html","tf":0.004807692307692308},"core/combination/bi.expander.html":{"ref":"core/combination/bi.expander.html","tf":0.01098901098901099},"core/combination/group_combo.html":{"ref":"core/combination/group_combo.html","tf":0.007874015748031496},"core/combination/loader.html":{"ref":"core/combination/loader.html","tf":0.006289308176100629},"core/combination/navigation.html":{"ref":"core/combination/navigation.html","tf":0.014388489208633094},"core/combination/searcher.html":{"ref":"core/combination/searcher.html","tf":0.009216589861751152},"core/combination/switcher.html":{"ref":"core/combination/switcher.html","tf":0.0125},"core/combination/tab.html":{"ref":"core/combination/tab.html","tf":0.0136986301369863},"core/layer/layer_popup.html":{"ref":"core/layer/layer_popup.html","tf":0.0058823529411764705},"base/table/collection_table.html":{"ref":"base/table/collection_table.html","tf":0.013071895424836602},"base/table/resizable_table.html":{"ref":"base/table/resizable_table.html","tf":0.0125},"case/button/multi_select_item.html":{"ref":"case/button/multi_select_item.html","tf":0.017543859649122806},"case/button/single_select_item.html":{"ref":"case/button/single_select_item.html","tf":0.016129032258064516},"case/button/single_select_radio_item.html":{"ref":"case/button/single_select_radio_item.html","tf":0.016129032258064516},"case/list/list.select.html":{"ref":"case/list/list.select.html","tf":0.009433962264150943},"case/combo/bubble_combo.html":{"ref":"case/combo/bubble_combo.html","tf":0.011560693641618497},"case/combo/icon_combo.html":{"ref":"case/combo/icon_combo.html","tf":0.015503875968992248},"case/combo/static_combo.html":{"ref":"case/combo/static_combo.html","tf":0.025},"case/combo/text_value_combo.html":{"ref":"case/combo/text_value_combo.html","tf":0.02702702702702703},"case/combo/text_value_downlist_combo.html":{"ref":"case/combo/text_value_downlist_combo.html","tf":0.02702702702702703},"case/pager/direction_pager.html":{"ref":"case/pager/direction_pager.html","tf":0.01639344262295082},"case/segment.html":{"ref":"case/segment.html","tf":0.028037383177570093},"detailed/bi.button/items.html":{"ref":"detailed/bi.button/items.html","tf":0.031914893617021274},"detailed/bi.button/node.html":{"ref":"detailed/bi.button/node.html","tf":0.046296296296296294},"detailed/bi.button/segment.html":{"ref":"detailed/bi.button/segment.html","tf":0.028037383177570093},"detailed/tree/bi.multi_tree_combo.html":{"ref":"detailed/tree/bi.multi_tree_combo.html","tf":0.03260869565217391},"detailed/tree/bi.switch_tree.html":{"ref":"detailed/tree/bi.switch_tree.html","tf":0.02631578947368421},"detailed/table/bi.preview_table.html":{"ref":"detailed/table/bi.preview_table.html","tf":0.02702702702702703},"detailed/table/bi.responsive_table.html":{"ref":"detailed/table/bi.responsive_table.html","tf":0.021052631578947368},"detailed/table/bi.excel_table.html":{"ref":"detailed/table/bi.excel_table.html","tf":0.011049723756906077},"detailed/down_list_combo.html":{"ref":"detailed/down_list_combo.html","tf":0.02631578947368421},"detailed/path/path_chooser.html":{"ref":"detailed/path/path_chooser.html","tf":0.038461538461538464},"detailed/path/direction_path_chooser.html":{"ref":"detailed/path/direction_path_chooser.html","tf":0.04},"detailed/relation_view.html":{"ref":"detailed/relation_view.html","tf":0.038461538461538464},"detailed/file_manager.html":{"ref":"detailed/file_manager.html","tf":0.046511627906976744}},"{":{"docs":{"core/layout/center.html":{"ref":"core/layout/center.html","tf":0.012658227848101266},"core/layer/layer_searcher.html":{"ref":"core/layer/layer_searcher.html","tf":0.009259259259259259}}},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"s":{"docs":{},":":{"docs":{"core/layer/layer_searcher.html":{"ref":"core/layer/layer_searcher.html","tf":0.009259259259259259}}}}}}}}},"]":{"docs":{"core/layout/vertical.html":{"ref":"core/layout/vertical.html","tf":0.01282051282051282},"core/layout/horizontal.html":{"ref":"core/layout/horizontal.html","tf":0.010752688172043012},"core/layout/center_adapt.html":{"ref":"core/layout/center_adapt.html","tf":0.011764705882352941},"core/layout/vertical_adapt.html":{"ref":"core/layout/vertical_adapt.html","tf":0.011494252873563218},"core/layout/left_right_vertical_adapt.html":{"ref":"core/layout/left_right_vertical_adapt.html","tf":0.01098901098901099},"core/layout/flow.html":{"ref":"core/layout/flow.html","tf":0.007692307692307693},"core/layout/horizontal_adapt.html":{"ref":"core/layout/horizontal_adapt.html","tf":0.010869565217391304},"core/layout/horizontal_auto.html":{"ref":"core/layout/horizontal_auto.html","tf":0.012345679012345678},"core/layout/horizontal_float.html":{"ref":"core/layout/horizontal_float.html","tf":0.013888888888888888},"core/layout/grid.html":{"ref":"core/layout/grid.html","tf":0.008928571428571428},"core/abstract/button_group.html":{"ref":"core/abstract/button_group.html","tf":0.007936507936507936},"core/abstract/button_tree.html":{"ref":"core/abstract/button_tree.html","tf":0.014925373134328358},"core/abstract/custom_tree.html":{"ref":"core/abstract/custom_tree.html","tf":0.014388489208633094},"core/combination/bi.expander.html":{"ref":"core/combination/bi.expander.html","tf":0.005494505494505495},"core/combination/group_combo.html":{"ref":"core/combination/group_combo.html","tf":0.007874015748031496},"core/combination/navigation.html":{"ref":"core/combination/navigation.html","tf":0.007194244604316547},"core/combination/searcher.html":{"ref":"core/combination/searcher.html","tf":0.004608294930875576},"core/combination/tab.html":{"ref":"core/combination/tab.html","tf":0.00684931506849315},"core/layer/layer_popup.html":{"ref":"core/layer/layer_popup.html","tf":0.0058823529411764705},"base/table/collection_table.html":{"ref":"base/table/collection_table.html","tf":0.006535947712418301},"base/table/resizable_table.html":{"ref":"base/table/resizable_table.html","tf":0.00625},"case/button/multi_select_item.html":{"ref":"case/button/multi_select_item.html","tf":0.017543859649122806},"case/button/single_select_item.html":{"ref":"case/button/single_select_item.html","tf":0.016129032258064516},"case/button/single_select_radio_item.html":{"ref":"case/button/single_select_radio_item.html","tf":0.016129032258064516},"case/list/list.select.html":{"ref":"case/list/list.select.html","tf":0.009433962264150943},"case/combo/bubble_combo.html":{"ref":"case/combo/bubble_combo.html","tf":0.005780346820809248},"case/combo/icon_combo.html":{"ref":"case/combo/icon_combo.html","tf":0.007751937984496124},"case/combo/static_combo.html":{"ref":"case/combo/static_combo.html","tf":0.0125},"case/combo/text_value_combo.html":{"ref":"case/combo/text_value_combo.html","tf":0.013513513513513514},"case/combo/text_value_downlist_combo.html":{"ref":"case/combo/text_value_downlist_combo.html","tf":0.02702702702702703},"case/tree/branch_tree.html":{"ref":"case/tree/branch_tree.html","tf":0.04},"case/tree/handstand_branch_tree.html":{"ref":"case/tree/handstand_branch_tree.html","tf":0.038461538461538464},"case/segment.html":{"ref":"case/segment.html","tf":0.009345794392523364},"detailed/bi.button/items.html":{"ref":"detailed/bi.button/items.html","tf":0.010638297872340425},"detailed/bi.button/node.html":{"ref":"detailed/bi.button/node.html","tf":0.009259259259259259},"detailed/bi.button/segment.html":{"ref":"detailed/bi.button/segment.html","tf":0.009345794392523364},"detailed/table/bi.excel_table.html":{"ref":"detailed/table/bi.excel_table.html","tf":0.0055248618784530384},"detailed/down_list_combo.html":{"ref":"detailed/down_list_combo.html","tf":0.019736842105263157},"detailed/relation_view.html":{"ref":"detailed/relation_view.html","tf":0.019230769230769232},"detailed/file_manager.html":{"ref":"detailed/file_manager.html","tf":0.023255813953488372}},",":{"docs":{"core/layout/left_right_vertical_adapt.html":{"ref":"core/layout/left_right_vertical_adapt.html","tf":0.01098901098901099},"core/layout/flow.html":{"ref":"core/layout/flow.html","tf":0.015384615384615385},"core/layout/center.html":{"ref":"core/layout/center.html","tf":0.012658227848101266},"core/layout/float_center.html":{"ref":"core/layout/float_center.html","tf":0.012658227848101266},"core/abstract/button_group.html":{"ref":"core/abstract/button_group.html","tf":0.007936507936507936},"core/abstract/button_tree.html":{"ref":"core/abstract/button_tree.html","tf":0.014925373134328358},"core/abstract/virtual_group.html":{"ref":"core/abstract/virtual_group.html","tf":0.014492753623188406},"core/combination/searcher.html":{"ref":"core/combination/searcher.html","tf":0.004608294930875576},"core/layer/layer_popup.html":{"ref":"core/layer/layer_popup.html","tf":0.0058823529411764705},"core/layer/layer_searcher.html":{"ref":"core/layer/layer_searcher.html","tf":0.018518518518518517},"base/table/collection_table.html":{"ref":"base/table/collection_table.html","tf":0.006535947712418301},"base/table/resizable_table.html":{"ref":"base/table/resizable_table.html","tf":0.00625},"case/layer/panel.html":{"ref":"case/layer/panel.html","tf":0.015873015873015872},"case/combo/text_value_downlist_combo.html":{"ref":"case/combo/text_value_downlist_combo.html","tf":0.013513513513513514},"case/segment.html":{"ref":"case/segment.html","tf":0.009345794392523364},"detailed/bi.button/tooltip.html":{"ref":"detailed/bi.button/tooltip.html","tf":0.011363636363636364},"detailed/bi.button/segment.html":{"ref":"detailed/bi.button/segment.html","tf":0.009345794392523364},"detailed/table/bi.excel_table.html":{"ref":"detailed/table/bi.excel_table.html","tf":0.0055248618784530384},"detailed/down_list_combo.html":{"ref":"detailed/down_list_combo.html","tf":0.006578947368421052}}},"}":{"docs":{"core/layer/layer_searcher.html":{"ref":"core/layer/layer_searcher.html","tf":0.009259259259259259}}},";":{"docs":{"detailed/tree/bi.multi_tree_combo.html":{"ref":"detailed/tree/bi.multi_tree_combo.html","tf":0.010869565217391304},"detailed/tree/bi.switch_tree.html":{"ref":"detailed/tree/bi.switch_tree.html","tf":0.013157894736842105}}},"]":{"docs":{"detailed/table/bi.preview_table.html":{"ref":"detailed/table/bi.preview_table.html","tf":0.006756756756756757},"detailed/path/path_chooser.html":{"ref":"detailed/path/path_chooser.html","tf":0.019230769230769232},"detailed/path/direction_path_chooser.html":{"ref":"detailed/path/direction_path_chooser.html","tf":0.02}},",":{"docs":{"detailed/table/bi.preview_table.html":{"ref":"detailed/table/bi.preview_table.html","tf":0.006756756756756757},"detailed/table/bi.responsive_table.html":{"ref":"detailed/table/bi.responsive_table.html","tf":0.010526315789473684}}}}},";":{"docs":{"core/combination/loader.html":{"ref":"core/combination/loader.html","tf":0.006289308176100629}}}},"—":{"docs":{"core/layout/vertical.html":{"ref":"core/layout/vertical.html","tf":0.07692307692307693},"core/layout/horizontal.html":{"ref":"core/layout/horizontal.html","tf":0.07526881720430108},"core/layout/htape.html":{"ref":"core/layout/htape.html","tf":0.056},"core/layout/vtape.html":{"ref":"core/layout/vtape.html","tf":0.056},"core/layout/center_adapt.html":{"ref":"core/layout/center_adapt.html","tf":0.08235294117647059},"core/layout/vertical_adapt.html":{"ref":"core/layout/vertical_adapt.html","tf":0.08045977011494253},"core/layout/left_right_vertical_adapt.html":{"ref":"core/layout/left_right_vertical_adapt.html","tf":0.07692307692307693},"core/layout/flow.html":{"ref":"core/layout/flow.html","tf":0.06153846153846154},"core/layout/center.html":{"ref":"core/layout/center.html","tf":0.0759493670886076},"core/layout/horizontal_adapt.html":{"ref":"core/layout/horizontal_adapt.html","tf":0.07608695652173914},"core/layout/horizontal_auto.html":{"ref":"core/layout/horizontal_auto.html","tf":0.07407407407407407},"core/layout/horizontal_float.html":{"ref":"core/layout/horizontal_float.html","tf":0.09722222222222222},"core/layout/float_center.html":{"ref":"core/layout/float_center.html","tf":0.0759493670886076},"core/layout/grid.html":{"ref":"core/layout/grid.html","tf":0.026785714285714284},"core/abstract/button_group.html":{"ref":"core/abstract/button_group.html","tf":0.09523809523809523},"core/abstract/button_tree.html":{"ref":"core/abstract/button_tree.html","tf":0.08955223880597014},"core/abstract/virtual_group.html":{"ref":"core/abstract/virtual_group.html","tf":0.057971014492753624},"core/abstract/custom_tree.html":{"ref":"core/abstract/custom_tree.html","tf":0.06474820143884892},"core/abstract/grid_view.html":{"ref":"core/abstract/grid_view.html","tf":0.11538461538461539},"core/abstract/collection_view.html":{"ref":"core/abstract/collection_view.html","tf":0.11347517730496454},"core/abstract/virtual_list.html":{"ref":"core/abstract/virtual_list.html","tf":0.1},"core/combination/bi.combo.html":{"ref":"core/combination/bi.combo.html","tf":0.09134615384615384},"core/combination/bi.expander.html":{"ref":"core/combination/bi.expander.html","tf":0.07142857142857142},"core/combination/group_combo.html":{"ref":"core/combination/group_combo.html","tf":0.03937007874015748},"core/combination/loader.html":{"ref":"core/combination/loader.html","tf":0.11949685534591195},"core/combination/navigation.html":{"ref":"core/combination/navigation.html","tf":0.09352517985611511},"core/combination/searcher.html":{"ref":"core/combination/searcher.html","tf":0.14285714285714285},"core/combination/switcher.html":{"ref":"core/combination/switcher.html","tf":0.15625},"core/combination/tab.html":{"ref":"core/combination/tab.html","tf":0.0684931506849315},"core/layer/layer_float_box.html":{"ref":"core/layer/layer_float_box.html","tf":0.1111111111111111},"core/layer/layer_popup.html":{"ref":"core/layer/layer_popup.html","tf":0.1},"core/layer/layer_searcher.html":{"ref":"core/layer/layer_searcher.html","tf":0.05555555555555555},"core/widget.html":{"ref":"core/widget.html","tf":0.17346938775510204},"core/single.html":{"ref":"core/single.html","tf":0.125},"core/basic_button.html":{"ref":"core/basic_button.html","tf":0.1349206349206349},"core/node_button.html":{"ref":"core/node_button.html","tf":0.13157894736842105},"core/pane.html":{"ref":"core/pane.html","tf":0.17647058823529413},"base/label.html":{"ref":"base/label.html","tf":0.12751677852348994},"base/bubble.html":{"ref":"base/bubble.html","tf":0.06976744186046512},"base/toast.html":{"ref":"base/toast.html","tf":0.041666666666666664},"base/button/button.html":{"ref":"base/button/button.html","tf":0.11931818181818182},"base/button/text_button.html":{"ref":"base/button/text_button.html","tf":0.11320754716981132},"base/button/icon_button.html":{"ref":"base/button/icon_button.html","tf":0.07692307692307693},"base/button/image_button.html":{"ref":"base/button/image_button.html","tf":0.1044776119402985},"base/editor/editor.html":{"ref":"base/editor/editor.html","tf":0.12972972972972974},"base/editor/code_editor.html":{"ref":"base/editor/code_editor.html","tf":0.11392405063291139},"base/editor/multifile_editor.html":{"ref":"base/editor/multifile_editor.html","tf":0.1076923076923077},"base/editor/textarea_editor.html":{"ref":"base/editor/textarea_editor.html","tf":0.10869565217391304},"base/editor/formula_editor.html":{"ref":"base/editor/formula_editor.html","tf":0.1111111111111111},"base/table/table_view.html":{"ref":"base/table/table_view.html","tf":0.0880503144654088},"base/table/grid_table.html":{"ref":"base/table/grid_table.html","tf":0.06140350877192982},"base/table/collection_table.html":{"ref":"base/table/collection_table.html","tf":0.05228758169934641},"base/table/resizable_table.html":{"ref":"base/table/resizable_table.html","tf":0.05},"base/pager.html":{"ref":"base/pager.html","tf":0.12},"base/svg.html":{"ref":"base/svg.html","tf":0.033707865168539325},"base/canvas.html":{"ref":"base/canvas.html","tf":0.05},"case/button/multi_select_item.html":{"ref":"case/button/multi_select_item.html","tf":0.08771929824561403},"case/button/single_select_item.html":{"ref":"case/button/single_select_item.html","tf":0.08064516129032258},"case/button/single_select_radio_item.html":{"ref":"case/button/single_select_radio_item.html","tf":0.08064516129032258},"case/editor/shelter_editor.html":{"ref":"case/editor/shelter_editor.html","tf":0.13471502590673576},"case/editor/sign_editor.html":{"ref":"case/editor/sign_editor.html","tf":0.14285714285714285},"case/editor/sign_initial_editor.html":{"ref":"case/editor/sign_initial_editor.html","tf":0.13917525773195877},"case/editor/state_editor.html":{"ref":"case/editor/state_editor.html","tf":0.14942528735632185},"case/layer/multi_popup_layer.html":{"ref":"case/layer/multi_popup_layer.html","tf":0.04},"case/layer/layer_panel.html":{"ref":"case/layer/layer_panel.html","tf":0.10752688172043011},"case/layer/pane_list.html":{"ref":"case/layer/pane_list.html","tf":0.16326530612244897},"case/layer/panel.html":{"ref":"case/layer/panel.html","tf":0.06349206349206349},"case/list/list.select.html":{"ref":"case/list/list.select.html","tf":0.10377358490566038},"case/loader/lazy_loader.html":{"ref":"case/loader/lazy_loader.html","tf":0.13559322033898305},"case/loader/list_loader.html":{"ref":"case/loader/list_loader.html","tf":0.0967741935483871},"case/loader/sort_list.html":{"ref":"case/loader/sort_list.html","tf":0.0967741935483871},"case/trigger/editor_trigger.html":{"ref":"case/trigger/editor_trigger.html","tf":0.02},"case/trigger/text_trigger.html":{"ref":"case/trigger/text_trigger.html","tf":0.05263157894736842},"case/combo/bubble_combo.html":{"ref":"case/combo/bubble_combo.html","tf":0.10404624277456648},"case/combo/icon_combo.html":{"ref":"case/combo/icon_combo.html","tf":0.11627906976744186},"case/combo/static_combo.html":{"ref":"case/combo/static_combo.html","tf":0.075},"case/combo/text_value_combo.html":{"ref":"case/combo/text_value_combo.html","tf":0.06756756756756757},"case/combo/text_value_downlist_combo.html":{"ref":"case/combo/text_value_downlist_combo.html","tf":0.05405405405405406},"case/tree/branch_tree.html":{"ref":"case/tree/branch_tree.html","tf":0.04},"case/tree/handstand_branch_tree.html":{"ref":"case/tree/handstand_branch_tree.html","tf":0.038461538461538464},"case/tree/display_tree.html":{"ref":"case/tree/display_tree.html","tf":0.030303030303030304},"case/tree/simple_tree.html":{"ref":"case/tree/simple_tree.html","tf":0.044444444444444446},"case/tree/level_tree.html":{"ref":"case/tree/level_tree.html","tf":0.03571428571428571},"case/table/adaptive_table.html":{"ref":"case/table/adaptive_table.html","tf":0.04242424242424243},"case/table/tree_table.html":{"ref":"case/table/tree_table.html","tf":0.03571428571428571},"case/table/layer_tree_table.html":{"ref":"case/table/layer_tree_table.html","tf":0.03571428571428571},"case/pager/all_count_pager.html":{"ref":"case/pager/all_count_pager.html","tf":0.058823529411764705},"case/pager/direction_pager.html":{"ref":"case/pager/direction_pager.html","tf":0.09016393442622951},"case/calendar.html":{"ref":"case/calendar.html","tf":0.041666666666666664},"case/color_chooser.html":{"ref":"case/color_chooser.html","tf":0.07692307692307693},"case/color_chooser_popup.html":{"ref":"case/color_chooser_popup.html","tf":0.029411764705882353},"case/segment.html":{"ref":"case/segment.html","tf":0.102803738317757},"detailed/bi.button/tooltip.html":{"ref":"detailed/bi.button/tooltip.html","tf":0.125},"detailed/bi.button/items.html":{"ref":"detailed/bi.button/items.html","tf":0.11702127659574468},"detailed/bi.button/node.html":{"ref":"detailed/bi.button/node.html","tf":0.10185185185185185},"detailed/bi.button/segment.html":{"ref":"detailed/bi.button/segment.html","tf":0.102803738317757},"detailed/tree/bi.multi_tree_combo.html":{"ref":"detailed/tree/bi.multi_tree_combo.html","tf":0.010869565217391304},"detailed/tree/bi.switch_tree.html":{"ref":"detailed/tree/bi.switch_tree.html","tf":0.02631578947368421},"detailed/table/bi.preview_table.html":{"ref":"detailed/table/bi.preview_table.html","tf":0.10810810810810811},"detailed/table/bi.responsive_table.html":{"ref":"detailed/table/bi.responsive_table.html","tf":0.08421052631578947},"detailed/table/bi.excel_table.html":{"ref":"detailed/table/bi.excel_table.html","tf":0.08839779005524862},"detailed/table/bi.page_table.html":{"ref":"detailed/table/bi.page_table.html","tf":0.05581395348837209},"detailed/text_input/bi.text_editor.html":{"ref":"detailed/text_input/bi.text_editor.html","tf":0.16494845360824742},"detailed/text_input/bi.search_editor.html":{"ref":"detailed/text_input/bi.search_editor.html","tf":0.16161616161616163},"detailed/text_input/bi.clear_editor.html":{"ref":"detailed/text_input/bi.clear_editor.html","tf":0.1568627450980392},"detailed/numeric_interval.html":{"ref":"detailed/numeric_interval.html","tf":0.017241379310344827},"detailed/date/date_pane_widget.html":{"ref":"detailed/date/date_pane_widget.html","tf":0.05405405405405406},"detailed/date/year_month_combo.html":{"ref":"detailed/date/year_month_combo.html","tf":0.058823529411764705},"detailed/date/year_quarter_combo.html":{"ref":"detailed/date/year_quarter_combo.html","tf":0.03225806451612903},"detailed/path/path_chooser.html":{"ref":"detailed/path/path_chooser.html","tf":0.019230769230769232},"detailed/path/direction_path_chooser.html":{"ref":"detailed/path/direction_path_chooser.html","tf":0.02},"detailed/dialog.html":{"ref":"detailed/dialog.html","tf":0.08695652173913043},"detailed/slider.html":{"ref":"detailed/slider.html","tf":0.029411764705882353}}},"参":{"docs":{},"数":{"docs":{"core/layout/vertical.html":{"ref":"core/layout/vertical.html","tf":0.01282051282051282},"core/layout/horizontal.html":{"ref":"core/layout/horizontal.html","tf":0.010752688172043012},"core/layout/htape.html":{"ref":"core/layout/htape.html","tf":0.008},"core/layout/vtape.html":{"ref":"core/layout/vtape.html","tf":0.008},"core/layout/center_adapt.html":{"ref":"core/layout/center_adapt.html","tf":0.011764705882352941},"core/layout/vertical_adapt.html":{"ref":"core/layout/vertical_adapt.html","tf":0.011494252873563218},"core/layout/left_right_vertical_adapt.html":{"ref":"core/layout/left_right_vertical_adapt.html","tf":0.01098901098901099},"core/layout/flow.html":{"ref":"core/layout/flow.html","tf":0.007692307692307693},"core/layout/center.html":{"ref":"core/layout/center.html","tf":0.012658227848101266},"core/layout/horizontal_adapt.html":{"ref":"core/layout/horizontal_adapt.html","tf":0.010869565217391304},"core/layout/horizontal_auto.html":{"ref":"core/layout/horizontal_auto.html","tf":0.012345679012345678},"core/layout/horizontal_float.html":{"ref":"core/layout/horizontal_float.html","tf":0.013888888888888888},"core/layout/float_center.html":{"ref":"core/layout/float_center.html","tf":0.012658227848101266},"core/layout/border.html":{"ref":"core/layout/border.html","tf":0.012987012987012988},"core/layout/grid.html":{"ref":"core/layout/grid.html","tf":0.008928571428571428},"core/layout/table.html":{"ref":"core/layout/table.html","tf":0.012048192771084338},"core/layout/td.html":{"ref":"core/layout/td.html","tf":0.03571428571428571},"core/abstract/button_group.html":{"ref":"core/abstract/button_group.html","tf":0.007936507936507936},"core/abstract/virtual_group.html":{"ref":"core/abstract/virtual_group.html","tf":0.014492753623188406},"core/abstract/custom_tree.html":{"ref":"core/abstract/custom_tree.html","tf":0.007194244604316547},"core/abstract/grid_view.html":{"ref":"core/abstract/grid_view.html","tf":0.00641025641025641},"core/abstract/collection_view.html":{"ref":"core/abstract/collection_view.html","tf":0.0070921985815602835},"core/abstract/virtual_list.html":{"ref":"core/abstract/virtual_list.html","tf":0.0125},"core/combination/bi.combo.html":{"ref":"core/combination/bi.combo.html","tf":0.004807692307692308},"core/combination/bi.expander.html":{"ref":"core/combination/bi.expander.html","tf":0.005494505494505495},"core/combination/group_combo.html":{"ref":"core/combination/group_combo.html","tf":0.007874015748031496},"core/combination/loader.html":{"ref":"core/combination/loader.html","tf":0.006289308176100629},"core/combination/navigation.html":{"ref":"core/combination/navigation.html","tf":0.007194244604316547},"core/combination/searcher.html":{"ref":"core/combination/searcher.html","tf":0.004608294930875576},"core/combination/switcher.html":{"ref":"core/combination/switcher.html","tf":0.00625},"core/combination/tab.html":{"ref":"core/combination/tab.html","tf":0.00684931506849315},"core/layer/layer_float_box.html":{"ref":"core/layer/layer_float_box.html","tf":0.012345679012345678},"core/layer/layer_popup.html":{"ref":"core/layer/layer_popup.html","tf":0.0058823529411764705},"core/layer/layer_searcher.html":{"ref":"core/layer/layer_searcher.html","tf":0.009259259259259259},"core/widget.html":{"ref":"core/widget.html","tf":0.00510204081632653},"core/single.html":{"ref":"core/single.html","tf":0.013888888888888888},"core/basic_button.html":{"ref":"core/basic_button.html","tf":0.007936507936507936},"core/node_button.html":{"ref":"core/node_button.html","tf":0.02631578947368421},"core/pane.html":{"ref":"core/pane.html","tf":0.0196078431372549},"base/label.html":{"ref":"base/label.html","tf":0.013422818791946308},"base/bubble.html":{"ref":"base/bubble.html","tf":0.023255813953488372},"base/toast.html":{"ref":"base/toast.html","tf":0.020833333333333332},"base/button/button.html":{"ref":"base/button/button.html","tf":0.011363636363636364},"base/button/text_button.html":{"ref":"base/button/text_button.html","tf":0.018867924528301886},"base/button/icon_button.html":{"ref":"base/button/icon_button.html","tf":0.02564102564102564},"base/button/image_button.html":{"ref":"base/button/image_button.html","tf":0.014925373134328358},"base/editor/editor.html":{"ref":"base/editor/editor.html","tf":0.005405405405405406},"base/editor/code_editor.html":{"ref":"base/editor/code_editor.html","tf":0.012658227848101266},"base/editor/multifile_editor.html":{"ref":"base/editor/multifile_editor.html","tf":0.015384615384615385},"base/editor/textarea_editor.html":{"ref":"base/editor/textarea_editor.html","tf":0.021739130434782608},"base/editor/formula_editor.html":{"ref":"base/editor/formula_editor.html","tf":0.010101010101010102},"base/table/table_view.html":{"ref":"base/table/table_view.html","tf":0.012578616352201259},"base/table/grid_table.html":{"ref":"base/table/grid_table.html","tf":0.017543859649122806},"base/table/collection_table.html":{"ref":"base/table/collection_table.html","tf":0.013071895424836602},"base/table/resizable_table.html":{"ref":"base/table/resizable_table.html","tf":0.0125},"base/pager.html":{"ref":"base/pager.html","tf":0.006666666666666667},"case/button/multi_select_item.html":{"ref":"case/button/multi_select_item.html","tf":0.017543859649122806},"case/button/single_select_item.html":{"ref":"case/button/single_select_item.html","tf":0.016129032258064516},"case/button/single_select_radio_item.html":{"ref":"case/button/single_select_radio_item.html","tf":0.016129032258064516},"case/editor/shelter_editor.html":{"ref":"case/editor/shelter_editor.html","tf":0.0051813471502590676},"case/editor/sign_editor.html":{"ref":"case/editor/sign_editor.html","tf":0.005494505494505495},"case/editor/sign_initial_editor.html":{"ref":"case/editor/sign_initial_editor.html","tf":0.005154639175257732},"case/editor/state_editor.html":{"ref":"case/editor/state_editor.html","tf":0.005747126436781609},"case/layer/multi_popup_layer.html":{"ref":"case/layer/multi_popup_layer.html","tf":0.04},"case/layer/layer_panel.html":{"ref":"case/layer/layer_panel.html","tf":0.010752688172043012},"case/layer/pane_list.html":{"ref":"case/layer/pane_list.html","tf":0.006802721088435374},"case/layer/panel.html":{"ref":"case/layer/panel.html","tf":0.015873015873015872},"case/list/list.select.html":{"ref":"case/list/list.select.html","tf":0.02830188679245283},"case/loader/lazy_loader.html":{"ref":"case/loader/lazy_loader.html","tf":0.01694915254237288},"case/loader/list_loader.html":{"ref":"case/loader/list_loader.html","tf":0.03225806451612903},"case/loader/sort_list.html":{"ref":"case/loader/sort_list.html","tf":0.03225806451612903},"case/trigger/editor_trigger.html":{"ref":"case/trigger/editor_trigger.html","tf":0.06},"case/trigger/text_trigger.html":{"ref":"case/trigger/text_trigger.html","tf":0.05263157894736842},"case/combo/bubble_combo.html":{"ref":"case/combo/bubble_combo.html","tf":0.005780346820809248},"case/combo/icon_combo.html":{"ref":"case/combo/icon_combo.html","tf":0.007751937984496124},"case/combo/static_combo.html":{"ref":"case/combo/static_combo.html","tf":0.0125},"case/combo/text_value_combo.html":{"ref":"case/combo/text_value_combo.html","tf":0.013513513513513514},"case/combo/text_value_downlist_combo.html":{"ref":"case/combo/text_value_downlist_combo.html","tf":0.013513513513513514},"case/tree/branch_tree.html":{"ref":"case/tree/branch_tree.html","tf":0.04},"case/tree/handstand_branch_tree.html":{"ref":"case/tree/handstand_branch_tree.html","tf":0.038461538461538464},"case/tree/display_tree.html":{"ref":"case/tree/display_tree.html","tf":0.030303030303030304},"case/tree/simple_tree.html":{"ref":"case/tree/simple_tree.html","tf":0.044444444444444446},"case/tree/level_tree.html":{"ref":"case/tree/level_tree.html","tf":0.03571428571428571},"case/tree/branch_relation.html":{"ref":"case/tree/branch_relation.html","tf":0.04081632653061224},"case/table/adaptive_table.html":{"ref":"case/table/adaptive_table.html","tf":0.012121212121212121},"case/table/tree_table.html":{"ref":"case/table/tree_table.html","tf":0.01020408163265306},"case/table/layer_tree_table.html":{"ref":"case/table/layer_tree_table.html","tf":0.01020408163265306},"case/pager/all_count_pager.html":{"ref":"case/pager/all_count_pager.html","tf":0.04411764705882353},"case/pager/direction_pager.html":{"ref":"case/pager/direction_pager.html","tf":0.02459016393442623},"case/calendar.html":{"ref":"case/calendar.html","tf":0.041666666666666664},"case/clipboard.html":{"ref":"case/clipboard.html","tf":0.0625},"case/color_chooser.html":{"ref":"case/color_chooser.html","tf":0.038461538461538464},"case/color_chooser_popup.html":{"ref":"case/color_chooser_popup.html","tf":0.08823529411764706},"case/segment.html":{"ref":"case/segment.html","tf":0.009345794392523364},"detailed/bi.button/tooltip.html":{"ref":"detailed/bi.button/tooltip.html","tf":0.011363636363636364},"detailed/bi.button/items.html":{"ref":"detailed/bi.button/items.html","tf":0.010638297872340425},"detailed/bi.button/node.html":{"ref":"detailed/bi.button/node.html","tf":0.009259259259259259},"detailed/bi.button/segment.html":{"ref":"detailed/bi.button/segment.html","tf":0.009345794392523364},"detailed/tree/bi.multi_tree_combo.html":{"ref":"detailed/tree/bi.multi_tree_combo.html","tf":0.021739130434782608},"detailed/tree/bi.switch_tree.html":{"ref":"detailed/tree/bi.switch_tree.html","tf":0.02631578947368421},"detailed/table/bi.preview_table.html":{"ref":"detailed/table/bi.preview_table.html","tf":0.02027027027027027},"detailed/table/bi.responsive_table.html":{"ref":"detailed/table/bi.responsive_table.html","tf":0.015789473684210527},"detailed/table/bi.excel_table.html":{"ref":"detailed/table/bi.excel_table.html","tf":0.011049723756906077},"detailed/table/bi.page_table.html":{"ref":"detailed/table/bi.page_table.html","tf":0.009302325581395349},"detailed/text_input/bi.text_editor.html":{"ref":"detailed/text_input/bi.text_editor.html","tf":0.010309278350515464},"detailed/text_input/bi.search_editor.html":{"ref":"detailed/text_input/bi.search_editor.html","tf":0.010101010101010102},"detailed/text_input/bi.clear_editor.html":{"ref":"detailed/text_input/bi.clear_editor.html","tf":0.00980392156862745},"detailed/text_input/finetuning_number_editor.html":{"ref":"detailed/text_input/finetuning_number_editor.html","tf":0.07407407407407407},"detailed/year_combo.html":{"ref":"detailed/year_combo.html","tf":0.05},"detailed/month_combo.html":{"ref":"detailed/month_combo.html","tf":0.07142857142857142},"detailed/quarter_combo.html":{"ref":"detailed/quarter_combo.html","tf":0.07142857142857142},"detailed/down_list_combo.html":{"ref":"detailed/down_list_combo.html","tf":0.013157894736842105},"detailed/numeric_interval.html":{"ref":"detailed/numeric_interval.html","tf":0.034482758620689655},"detailed/date/date_combo.html":{"ref":"detailed/date/date_combo.html","tf":0.11764705882352941},"detailed/date/date_pane_widget.html":{"ref":"detailed/date/date_pane_widget.html","tf":0.05405405405405406},"detailed/date/year_month_combo.html":{"ref":"detailed/date/year_month_combo.html","tf":0.058823529411764705},"detailed/date/year_quarter_combo.html":{"ref":"detailed/date/year_quarter_combo.html","tf":0.06451612903225806},"detailed/date/custom_date_time.html":{"ref":"detailed/date/custom_date_time.html","tf":0.09090909090909091},"detailed/combo/single_tree_combo.html":{"ref":"detailed/combo/single_tree_combo.html","tf":0.03389830508474576},"detailed/combo/multilayer_single_tree_combo.html":{"ref":"detailed/combo/multilayer_single_tree_combo.html","tf":0.018867924528301886},"detailed/combo/select_tree_combo.html":{"ref":"detailed/combo/select_tree_combo.html","tf":0.02040816326530612},"detailed/combo/multilayer_select_tree_combo.html":{"ref":"detailed/combo/multilayer_select_tree_combo.html","tf":0.02040816326530612},"detailed/path/path_chooser.html":{"ref":"detailed/path/path_chooser.html","tf":0.038461538461538464},"detailed/path/direction_path_chooser.html":{"ref":"detailed/path/direction_path_chooser.html","tf":0.04},"detailed/relation_view.html":{"ref":"detailed/relation_view.html","tf":0.038461538461538464},"detailed/dialog.html":{"ref":"detailed/dialog.html","tf":0.08695652173913043},"detailed/slider.html":{"ref":"detailed/slider.html","tf":0.08823529411764706}},"设":{"docs":{},"置":{"docs":{"core/layout/table.html":{"ref":"core/layout/table.html","tf":0.012048192771084338},"base/table/table_view.html":{"ref":"base/table/table_view.html","tf":0.006289308176100629},"base/table/grid_table.html":{"ref":"base/table/grid_table.html","tf":0.008771929824561403},"base/table/collection_table.html":{"ref":"base/table/collection_table.html","tf":0.006535947712418301},"base/table/resizable_table.html":{"ref":"base/table/resizable_table.html","tf":0.00625},"case/tree/branch_tree.html":{"ref":"case/tree/branch_tree.html","tf":0.02},"case/tree/handstand_branch_tree.html":{"ref":"case/tree/handstand_branch_tree.html","tf":0.019230769230769232},"case/tree/simple_tree.html":{"ref":"case/tree/simple_tree.html","tf":0.022222222222222223},"case/tree/level_tree.html":{"ref":"case/tree/level_tree.html","tf":0.017857142857142856},"case/tree/branch_relation.html":{"ref":"case/tree/branch_relation.html","tf":0.02040816326530612},"case/table/adaptive_table.html":{"ref":"case/table/adaptive_table.html","tf":0.006060606060606061},"case/table/tree_table.html":{"ref":"case/table/tree_table.html","tf":0.00510204081632653},"case/table/layer_tree_table.html":{"ref":"case/table/layer_tree_table.html","tf":0.00510204081632653},"detailed/tree/bi.multi_tree_combo.html":{"ref":"detailed/tree/bi.multi_tree_combo.html","tf":0.010869565217391304},"detailed/tree/bi.switch_tree.html":{"ref":"detailed/tree/bi.switch_tree.html","tf":0.013157894736842105},"detailed/table/bi.excel_table.html":{"ref":"detailed/table/bi.excel_table.html","tf":0.0055248618784530384},"detailed/table/bi.page_table.html":{"ref":"detailed/table/bi.page_table.html","tf":0.004651162790697674},"detailed/combo/single_tree_combo.html":{"ref":"detailed/combo/single_tree_combo.html","tf":0.01694915254237288},"detailed/combo/multilayer_single_tree_combo.html":{"ref":"detailed/combo/multilayer_single_tree_combo.html","tf":0.018867924528301886},"detailed/combo/select_tree_combo.html":{"ref":"detailed/combo/select_tree_combo.html","tf":0.02040816326530612},"detailed/combo/multilayer_select_tree_combo.html":{"ref":"detailed/combo/multilayer_select_tree_combo.html","tf":0.02040816326530612}}}},"显":{"docs":{},"示":{"docs":{},"值":{"docs":{},"构":{"docs":{},"造":{"docs":{},"函":{"docs":{},"数":{"docs":{"base/editor/code_editor.html":{"ref":"base/editor/code_editor.html","tf":0.012658227848101266}}}}}}}}}},"考":{"docs":{},"相":{"docs":{},"关":{"docs":{},"c":{"docs":{},"s":{"docs":{},"s":{"docs":{},"属":{"docs":{},"性":{"docs":{"core/layout/horizontal.html":{"ref":"core/layout/horizontal.html","tf":0.010752688172043012},"core/layout/horizontal_adapt.html":{"ref":"core/layout/horizontal_adapt.html","tf":0.010869565217391304}}}}}}}}},"b":{"docs":{},"u":{"docs":{},"t":{"docs":{},"t":{"docs":{},"o":{"docs":{},"n":{"docs":{},"_":{"docs":{},"g":{"docs":{},"r":{"docs":{},"o":{"docs":{},"u":{"docs":{},"p":{"docs":{"core/layer/layer_popup.html":{"ref":"core/layer/layer_popup.html","tf":0.0058823529411764705},"core/layer/layer_searcher.html":{"ref":"core/layer/layer_searcher.html","tf":0.009259259259259259},"case/combo/icon_combo.html":{"ref":"case/combo/icon_combo.html","tf":0.007751937984496124},"case/combo/static_combo.html":{"ref":"case/combo/static_combo.html","tf":0.0125},"case/combo/text_value_combo.html":{"ref":"case/combo/text_value_combo.html","tf":0.013513513513513514}}}}}}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"p":{"docs":{},"u":{"docs":{},"t":{"docs":{},"输":{"docs":{},"入":{"docs":{},"框":{"docs":{},"类":{"docs":{},"型":{"docs":{"base/editor/editor.html":{"ref":"base/editor/editor.html","tf":0.005405405405405406}}}}}}}}}}}}}},"可":{"docs":{},"选":{"docs":{},"值":{"docs":{"core/layout/vertical.html":{"ref":"core/layout/vertical.html","tf":0.01282051282051282},"core/layout/horizontal.html":{"ref":"core/layout/horizontal.html","tf":0.010752688172043012},"core/layout/htape.html":{"ref":"core/layout/htape.html","tf":0.008},"core/layout/vtape.html":{"ref":"core/layout/vtape.html","tf":0.008},"core/layout/center_adapt.html":{"ref":"core/layout/center_adapt.html","tf":0.011764705882352941},"core/layout/vertical_adapt.html":{"ref":"core/layout/vertical_adapt.html","tf":0.011494252873563218},"core/layout/left_right_vertical_adapt.html":{"ref":"core/layout/left_right_vertical_adapt.html","tf":0.01098901098901099},"core/layout/flow.html":{"ref":"core/layout/flow.html","tf":0.007692307692307693},"core/layout/center.html":{"ref":"core/layout/center.html","tf":0.012658227848101266},"core/layout/horizontal_adapt.html":{"ref":"core/layout/horizontal_adapt.html","tf":0.010869565217391304},"core/layout/horizontal_auto.html":{"ref":"core/layout/horizontal_auto.html","tf":0.012345679012345678},"core/layout/horizontal_float.html":{"ref":"core/layout/horizontal_float.html","tf":0.013888888888888888},"core/layout/float_center.html":{"ref":"core/layout/float_center.html","tf":0.012658227848101266},"core/layout/border.html":{"ref":"core/layout/border.html","tf":0.012987012987012988},"core/layout/grid.html":{"ref":"core/layout/grid.html","tf":0.008928571428571428},"core/abstract/button_group.html":{"ref":"core/abstract/button_group.html","tf":0.007936507936507936},"core/abstract/virtual_group.html":{"ref":"core/abstract/virtual_group.html","tf":0.014492753623188406},"core/abstract/custom_tree.html":{"ref":"core/abstract/custom_tree.html","tf":0.007194244604316547},"core/abstract/grid_view.html":{"ref":"core/abstract/grid_view.html","tf":0.00641025641025641},"core/abstract/collection_view.html":{"ref":"core/abstract/collection_view.html","tf":0.0070921985815602835},"core/abstract/virtual_list.html":{"ref":"core/abstract/virtual_list.html","tf":0.0125},"core/combination/bi.combo.html":{"ref":"core/combination/bi.combo.html","tf":0.004807692307692308},"core/combination/bi.expander.html":{"ref":"core/combination/bi.expander.html","tf":0.005494505494505495},"core/combination/group_combo.html":{"ref":"core/combination/group_combo.html","tf":0.007874015748031496},"core/combination/loader.html":{"ref":"core/combination/loader.html","tf":0.006289308176100629},"core/combination/navigation.html":{"ref":"core/combination/navigation.html","tf":0.007194244604316547},"core/combination/searcher.html":{"ref":"core/combination/searcher.html","tf":0.004608294930875576},"core/combination/switcher.html":{"ref":"core/combination/switcher.html","tf":0.00625},"core/combination/tab.html":{"ref":"core/combination/tab.html","tf":0.00684931506849315},"core/layer/layer_float_box.html":{"ref":"core/layer/layer_float_box.html","tf":0.012345679012345678},"core/layer/layer_popup.html":{"ref":"core/layer/layer_popup.html","tf":0.0058823529411764705},"core/layer/layer_searcher.html":{"ref":"core/layer/layer_searcher.html","tf":0.009259259259259259},"core/widget.html":{"ref":"core/widget.html","tf":0.00510204081632653},"core/single.html":{"ref":"core/single.html","tf":0.013888888888888888},"core/basic_button.html":{"ref":"core/basic_button.html","tf":0.007936507936507936},"core/node_button.html":{"ref":"core/node_button.html","tf":0.02631578947368421},"core/pane.html":{"ref":"core/pane.html","tf":0.0196078431372549},"base/label.html":{"ref":"base/label.html","tf":0.013422818791946308},"base/bubble.html":{"ref":"base/bubble.html","tf":0.023255813953488372},"base/toast.html":{"ref":"base/toast.html","tf":0.020833333333333332},"base/button/button.html":{"ref":"base/button/button.html","tf":0.011363636363636364},"base/button/text_button.html":{"ref":"base/button/text_button.html","tf":0.018867924528301886},"base/button/icon_button.html":{"ref":"base/button/icon_button.html","tf":0.02564102564102564},"base/button/image_button.html":{"ref":"base/button/image_button.html","tf":0.014925373134328358},"base/editor/editor.html":{"ref":"base/editor/editor.html","tf":0.005405405405405406},"base/editor/code_editor.html":{"ref":"base/editor/code_editor.html","tf":0.012658227848101266},"base/editor/multifile_editor.html":{"ref":"base/editor/multifile_editor.html","tf":0.015384615384615385},"base/editor/textarea_editor.html":{"ref":"base/editor/textarea_editor.html","tf":0.021739130434782608},"base/editor/formula_editor.html":{"ref":"base/editor/formula_editor.html","tf":0.010101010101010102},"base/pager.html":{"ref":"base/pager.html","tf":0.006666666666666667},"case/button/multi_select_item.html":{"ref":"case/button/multi_select_item.html","tf":0.017543859649122806},"case/button/single_select_item.html":{"ref":"case/button/single_select_item.html","tf":0.016129032258064516},"case/button/single_select_radio_item.html":{"ref":"case/button/single_select_radio_item.html","tf":0.016129032258064516},"case/editor/shelter_editor.html":{"ref":"case/editor/shelter_editor.html","tf":0.0051813471502590676},"case/editor/sign_editor.html":{"ref":"case/editor/sign_editor.html","tf":0.005494505494505495},"case/editor/sign_initial_editor.html":{"ref":"case/editor/sign_initial_editor.html","tf":0.005154639175257732},"case/editor/state_editor.html":{"ref":"case/editor/state_editor.html","tf":0.005747126436781609},"case/layer/multi_popup_layer.html":{"ref":"case/layer/multi_popup_layer.html","tf":0.04},"case/layer/layer_panel.html":{"ref":"case/layer/layer_panel.html","tf":0.010752688172043012},"case/layer/pane_list.html":{"ref":"case/layer/pane_list.html","tf":0.006802721088435374},"case/layer/panel.html":{"ref":"case/layer/panel.html","tf":0.015873015873015872},"case/combo/bubble_combo.html":{"ref":"case/combo/bubble_combo.html","tf":0.005780346820809248},"case/combo/icon_combo.html":{"ref":"case/combo/icon_combo.html","tf":0.007751937984496124},"case/combo/static_combo.html":{"ref":"case/combo/static_combo.html","tf":0.0125},"case/combo/text_value_combo.html":{"ref":"case/combo/text_value_combo.html","tf":0.013513513513513514},"case/combo/text_value_downlist_combo.html":{"ref":"case/combo/text_value_downlist_combo.html","tf":0.013513513513513514},"case/segment.html":{"ref":"case/segment.html","tf":0.009345794392523364},"detailed/bi.button/tooltip.html":{"ref":"detailed/bi.button/tooltip.html","tf":0.011363636363636364},"detailed/bi.button/items.html":{"ref":"detailed/bi.button/items.html","tf":0.010638297872340425},"detailed/bi.button/node.html":{"ref":"detailed/bi.button/node.html","tf":0.009259259259259259},"detailed/bi.button/segment.html":{"ref":"detailed/bi.button/segment.html","tf":0.009345794392523364},"detailed/text_input/bi.text_editor.html":{"ref":"detailed/text_input/bi.text_editor.html","tf":0.010309278350515464},"detailed/text_input/bi.search_editor.html":{"ref":"detailed/text_input/bi.search_editor.html","tf":0.010101010101010102},"detailed/text_input/bi.clear_editor.html":{"ref":"detailed/text_input/bi.clear_editor.html","tf":0.00980392156862745},"detailed/text_input/finetuning_number_editor.html":{"ref":"detailed/text_input/finetuning_number_editor.html","tf":0.037037037037037035},"detailed/year_combo.html":{"ref":"detailed/year_combo.html","tf":0.025},"detailed/month_combo.html":{"ref":"detailed/month_combo.html","tf":0.03571428571428571},"detailed/quarter_combo.html":{"ref":"detailed/quarter_combo.html","tf":0.03571428571428571},"detailed/down_list_combo.html":{"ref":"detailed/down_list_combo.html","tf":0.006578947368421052},"detailed/numeric_interval.html":{"ref":"detailed/numeric_interval.html","tf":0.017241379310344827},"detailed/date/date_combo.html":{"ref":"detailed/date/date_combo.html","tf":0.058823529411764705},"detailed/date/date_pane_widget.html":{"ref":"detailed/date/date_pane_widget.html","tf":0.02702702702702703},"detailed/date/year_month_combo.html":{"ref":"detailed/date/year_month_combo.html","tf":0.029411764705882353},"detailed/date/year_quarter_combo.html":{"ref":"detailed/date/year_quarter_combo.html","tf":0.03225806451612903},"detailed/date/custom_date_time.html":{"ref":"detailed/date/custom_date_time.html","tf":0.045454545454545456},"detailed/path/path_chooser.html":{"ref":"detailed/path/path_chooser.html","tf":0.019230769230769232},"detailed/path/direction_path_chooser.html":{"ref":"detailed/path/direction_path_chooser.html","tf":0.02},"detailed/relation_view.html":{"ref":"detailed/relation_view.html","tf":0.019230769230769232},"detailed/dialog.html":{"ref":"detailed/dialog.html","tf":0.043478260869565216}}}},"以":{"docs":{},"合":{"docs":{},"并":{"docs":{},"单":{"docs":{},"元":{"docs":{},"格":{"docs":{},",":{"docs":{},"指":{"docs":{},"定":{"docs":{},"行":{"docs":{},"列":{"docs":{},"可":{"docs":{},"以":{"docs":{},"删":{"docs":{},"除":{"docs":{},"看":{"docs":{},"不":{"docs":{},"见":{"docs":{},"的":{"docs":{},"元":{"docs":{},"素":{"docs":{},",":{"docs":{},"基":{"docs":{},"类":{"docs":{},"b":{"docs":{},"i":{"docs":{},".":{"docs":{},"w":{"docs":{},"i":{"docs":{},"d":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{"core/abstract/grid_view.html":{"ref":"core/abstract/grid_view.html","tf":0.00641025641025641}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"点":{"docs":{},"击":{"docs":{},"的":{"docs":{},"一":{"docs":{},"行":{"docs":{},"文":{"docs":{},"字":{"docs":{},",":{"docs":{},"基":{"docs":{},"类":{"docs":{},"b":{"docs":{},"i":{"docs":{},".":{"docs":{},"b":{"docs":{},"a":{"docs":{},"s":{"docs":{},"i":{"docs":{},"c":{"docs":{},"b":{"docs":{},"u":{"docs":{},"t":{"docs":{},"t":{"docs":{},"o":{"docs":{},"n":{"docs":{"base/button/text_button.html":{"ref":"base/button/text_button.html","tf":0.009433962264150943}}}}}}}}}}}}}}}}}}}}}}},"l":{"docs":{},"a":{"docs":{},"b":{"docs":{},"e":{"docs":{},"l":{"docs":{},",":{"docs":{},"基":{"docs":{},"类":{"docs":{},"b":{"docs":{},"i":{"docs":{},".":{"docs":{},"b":{"docs":{},"a":{"docs":{},"s":{"docs":{},"i":{"docs":{},"c":{"docs":{},"b":{"docs":{},"u":{"docs":{},"t":{"docs":{},"t":{"docs":{},"o":{"docs":{},"n":{"docs":{"case/button/single_select_item.html":{"ref":"case/button/single_select_item.html","tf":0.016129032258064516}}}}}}}}}}}}}}}}}}}}}}}}}}},"理":{"docs":{},"解":{"docs":{},"为":{"docs":{},"m":{"docs":{},"u":{"docs":{},"l":{"docs":{},"t":{"docs":{},"i":{"docs":{},"p":{"docs":{},"o":{"docs":{},"p":{"docs":{},"u":{"docs":{},"p":{"docs":{},"v":{"docs":{},"i":{"docs":{},"e":{"docs":{},"w":{"docs":{},"和":{"docs":{},"p":{"docs":{},"a":{"docs":{},"n":{"docs":{},"e":{"docs":{},"l":{"docs":{},"两":{"docs":{},"个":{"docs":{},"面":{"docs":{},"板":{"docs":{},"的":{"docs":{},"结":{"docs":{},"合":{"docs":{},"体":{"docs":{},",":{"docs":{},"基":{"docs":{},"类":{"docs":{},"b":{"docs":{},"i":{"docs":{},".":{"docs":{},"m":{"docs":{},"u":{"docs":{},"l":{"docs":{},"t":{"docs":{},"i":{"docs":{},"p":{"docs":{},"o":{"docs":{},"p":{"docs":{},"u":{"docs":{},"p":{"docs":{},"v":{"docs":{},"i":{"docs":{},"e":{"docs":{},"w":{"docs":{"case/layer/layer_panel.html":{"ref":"case/layer/layer_panel.html","tf":0.010752688172043012}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"单":{"docs":{},"选":{"docs":{},"多":{"docs":{},"选":{"docs":{},"切":{"docs":{},"换":{"docs":{},"的":{"docs":{},"树":{"docs":{},",":{"docs":{},"继":{"docs":{},"承":{"docs":{},"b":{"docs":{},"i":{"docs":{},".":{"docs":{},"w":{"docs":{},"i":{"docs":{},"d":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{"detailed/tree/bi.switch_tree.html":{"ref":"detailed/tree/bi.switch_tree.html","tf":0.013157894736842105}}}}}}}}}}}}}}}}}}}}}}},"调":{"docs":{},"整":{"docs":{},"列":{"docs":{},"宽":{"docs":{},"的":{"docs":{},"g":{"docs":{},"r":{"docs":{},"i":{"docs":{},"d":{"docs":{},"表":{"docs":{},"格":{"docs":{},",":{"docs":{},"继":{"docs":{},"承":{"docs":{},"b":{"docs":{},"i":{"docs":{},".":{"docs":{},"w":{"docs":{},"i":{"docs":{},"d":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{"base/table/resizable_table.html":{"ref":"base/table/resizable_table.html","tf":0.00625}}}}}}}}}}}}}}}}}}}}}}}}}},"垂":{"docs":{},"直":{"docs":{},"流":{"docs":{},"式":{"docs":{},"布":{"docs":{},"局":{"docs":{"core/layout/vertical.html":{"ref":"core/layout/vertical.html","tf":0.01282051282051282}}}}}},"t":{"docs":{},"a":{"docs":{},"p":{"docs":{},"e":{"docs":{},"布":{"docs":{},"局":{"docs":{},",":{"docs":{},"两":{"docs":{},"列":{"docs":{},"定":{"docs":{},"高":{"docs":{},",":{"docs":{},"一":{"docs":{},"列":{"docs":{},"自":{"docs":{},"适":{"docs":{},"应":{"docs":{"core/layout/vtape.html":{"ref":"core/layout/vtape.html","tf":0.008}}}}}}}}}}}}}}}}}}}}},"基":{"docs":{},"础":{"docs":{},"属":{"docs":{},"性":{"docs":{"core/layout/vertical.html":{"ref":"core/layout/vertical.html","tf":0.01282051282051282},"core/layout/horizontal.html":{"ref":"core/layout/horizontal.html","tf":0.010752688172043012},"core/layout/htape.html":{"ref":"core/layout/htape.html","tf":0.008},"core/layout/vtape.html":{"ref":"core/layout/vtape.html","tf":0.008},"core/layout/center_adapt.html":{"ref":"core/layout/center_adapt.html","tf":0.011764705882352941},"core/layout/vertical_adapt.html":{"ref":"core/layout/vertical_adapt.html","tf":0.011494252873563218},"core/layout/left_right_vertical_adapt.html":{"ref":"core/layout/left_right_vertical_adapt.html","tf":0.01098901098901099},"core/layout/flow.html":{"ref":"core/layout/flow.html","tf":0.007692307692307693},"core/layout/center.html":{"ref":"core/layout/center.html","tf":0.012658227848101266},"core/layout/horizontal_adapt.html":{"ref":"core/layout/horizontal_adapt.html","tf":0.010869565217391304},"core/layout/horizontal_auto.html":{"ref":"core/layout/horizontal_auto.html","tf":0.012345679012345678},"core/layout/horizontal_float.html":{"ref":"core/layout/horizontal_float.html","tf":0.013888888888888888},"core/layout/float_center.html":{"ref":"core/layout/float_center.html","tf":0.012658227848101266},"core/layout/border.html":{"ref":"core/layout/border.html","tf":0.012987012987012988},"core/layout/grid.html":{"ref":"core/layout/grid.html","tf":0.008928571428571428},"core/abstract/button_group.html":{"ref":"core/abstract/button_group.html","tf":0.007936507936507936},"core/abstract/virtual_group.html":{"ref":"core/abstract/virtual_group.html","tf":0.014492753623188406},"core/abstract/custom_tree.html":{"ref":"core/abstract/custom_tree.html","tf":0.007194244604316547},"core/abstract/grid_view.html":{"ref":"core/abstract/grid_view.html","tf":0.00641025641025641},"core/abstract/collection_view.html":{"ref":"core/abstract/collection_view.html","tf":0.0070921985815602835},"core/abstract/virtual_list.html":{"ref":"core/abstract/virtual_list.html","tf":0.0125},"core/combination/bi.combo.html":{"ref":"core/combination/bi.combo.html","tf":0.004807692307692308},"core/combination/bi.expander.html":{"ref":"core/combination/bi.expander.html","tf":0.005494505494505495},"core/combination/group_combo.html":{"ref":"core/combination/group_combo.html","tf":0.007874015748031496},"core/combination/loader.html":{"ref":"core/combination/loader.html","tf":0.006289308176100629},"core/combination/navigation.html":{"ref":"core/combination/navigation.html","tf":0.007194244604316547},"core/combination/searcher.html":{"ref":"core/combination/searcher.html","tf":0.004608294930875576},"core/combination/switcher.html":{"ref":"core/combination/switcher.html","tf":0.00625},"core/combination/tab.html":{"ref":"core/combination/tab.html","tf":0.00684931506849315},"core/layer/layer_float_box.html":{"ref":"core/layer/layer_float_box.html","tf":0.012345679012345678},"core/layer/layer_popup.html":{"ref":"core/layer/layer_popup.html","tf":0.0058823529411764705},"core/layer/layer_searcher.html":{"ref":"core/layer/layer_searcher.html","tf":0.009259259259259259},"core/widget.html":{"ref":"core/widget.html","tf":0.00510204081632653},"core/single.html":{"ref":"core/single.html","tf":0.013888888888888888},"core/basic_button.html":{"ref":"core/basic_button.html","tf":0.007936507936507936},"core/node_button.html":{"ref":"core/node_button.html","tf":0.02631578947368421},"core/pane.html":{"ref":"core/pane.html","tf":0.0196078431372549},"base/label.html":{"ref":"base/label.html","tf":0.006711409395973154},"base/bubble.html":{"ref":"base/bubble.html","tf":0.023255813953488372},"base/toast.html":{"ref":"base/toast.html","tf":0.020833333333333332},"base/button/button.html":{"ref":"base/button/button.html","tf":0.005681818181818182},"base/button/text_button.html":{"ref":"base/button/text_button.html","tf":0.009433962264150943},"base/button/icon_button.html":{"ref":"base/button/icon_button.html","tf":0.02564102564102564},"base/button/image_button.html":{"ref":"base/button/image_button.html","tf":0.014925373134328358},"base/editor/editor.html":{"ref":"base/editor/editor.html","tf":0.005405405405405406},"base/editor/code_editor.html":{"ref":"base/editor/code_editor.html","tf":0.012658227848101266},"base/editor/multifile_editor.html":{"ref":"base/editor/multifile_editor.html","tf":0.015384615384615385},"base/editor/textarea_editor.html":{"ref":"base/editor/textarea_editor.html","tf":0.021739130434782608},"base/editor/formula_editor.html":{"ref":"base/editor/formula_editor.html","tf":0.010101010101010102},"base/pager.html":{"ref":"base/pager.html","tf":0.006666666666666667},"case/button/multi_select_item.html":{"ref":"case/button/multi_select_item.html","tf":0.017543859649122806},"case/button/single_select_item.html":{"ref":"case/button/single_select_item.html","tf":0.016129032258064516},"case/button/single_select_radio_item.html":{"ref":"case/button/single_select_radio_item.html","tf":0.016129032258064516},"case/editor/shelter_editor.html":{"ref":"case/editor/shelter_editor.html","tf":0.0051813471502590676},"case/editor/sign_editor.html":{"ref":"case/editor/sign_editor.html","tf":0.005494505494505495},"case/editor/sign_initial_editor.html":{"ref":"case/editor/sign_initial_editor.html","tf":0.005154639175257732},"case/editor/state_editor.html":{"ref":"case/editor/state_editor.html","tf":0.005747126436781609},"case/layer/multi_popup_layer.html":{"ref":"case/layer/multi_popup_layer.html","tf":0.04},"case/layer/layer_panel.html":{"ref":"case/layer/layer_panel.html","tf":0.010752688172043012},"case/layer/pane_list.html":{"ref":"case/layer/pane_list.html","tf":0.006802721088435374},"case/layer/panel.html":{"ref":"case/layer/panel.html","tf":0.015873015873015872},"case/combo/bubble_combo.html":{"ref":"case/combo/bubble_combo.html","tf":0.005780346820809248},"case/combo/icon_combo.html":{"ref":"case/combo/icon_combo.html","tf":0.007751937984496124},"case/combo/static_combo.html":{"ref":"case/combo/static_combo.html","tf":0.0125},"case/combo/text_value_combo.html":{"ref":"case/combo/text_value_combo.html","tf":0.013513513513513514},"case/combo/text_value_downlist_combo.html":{"ref":"case/combo/text_value_downlist_combo.html","tf":0.013513513513513514},"case/segment.html":{"ref":"case/segment.html","tf":0.009345794392523364},"detailed/bi.button/tooltip.html":{"ref":"detailed/bi.button/tooltip.html","tf":0.011363636363636364},"detailed/bi.button/items.html":{"ref":"detailed/bi.button/items.html","tf":0.010638297872340425},"detailed/bi.button/node.html":{"ref":"detailed/bi.button/node.html","tf":0.009259259259259259},"detailed/bi.button/segment.html":{"ref":"detailed/bi.button/segment.html","tf":0.009345794392523364}}}},"c":{"docs":{},"l":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{},"类":{"docs":{"core/widget.html":{"ref":"core/widget.html","tf":0.00510204081632653}}}}}}}},"元":{"docs":{},"素":{"docs":{"case/tree/branch_tree.html":{"ref":"case/tree/branch_tree.html","tf":0.02},"case/tree/handstand_branch_tree.html":{"ref":"case/tree/handstand_branch_tree.html","tf":0.019230769230769232}}}},"用":{"docs":{},"法":{"docs":{"detailed/text_input/bi.text_editor.html":{"ref":"detailed/text_input/bi.text_editor.html","tf":0.010309278350515464}}}}},"类":{"docs":{},"b":{"docs":{},"i":{"docs":{},".":{"docs":{},"w":{"docs":{},"i":{"docs":{},"d":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{"core/abstract/virtual_group.html":{"ref":"core/abstract/virtual_group.html","tf":0.014492753623188406},"core/abstract/collection_view.html":{"ref":"core/abstract/collection_view.html","tf":0.0070921985815602835},"core/combination/group_combo.html":{"ref":"core/combination/group_combo.html","tf":0.007874015748031496},"core/layer/layer_searcher.html":{"ref":"core/layer/layer_searcher.html","tf":0.009259259259259259},"case/editor/shelter_editor.html":{"ref":"case/editor/shelter_editor.html","tf":0.0051813471502590676},"case/editor/sign_initial_editor.html":{"ref":"case/editor/sign_initial_editor.html","tf":0.005154639175257732},"case/combo/bubble_combo.html":{"ref":"case/combo/bubble_combo.html","tf":0.005780346820809248},"case/combo/icon_combo.html":{"ref":"case/combo/icon_combo.html","tf":0.007751937984496124},"case/combo/static_combo.html":{"ref":"case/combo/static_combo.html","tf":0.0125},"case/combo/text_value_combo.html":{"ref":"case/combo/text_value_combo.html","tf":0.013513513513513514},"case/combo/text_value_downlist_combo.html":{"ref":"case/combo/text_value_downlist_combo.html","tf":0.013513513513513514}}}}}}}}}}}},"本":{"docs":{},"的":{"docs":{},"表":{"docs":{},"格":{"docs":{"base/table/collection_table.html":{"ref":"base/table/collection_table.html","tf":0.006535947712418301}}}}}}},"效":{"docs":{},"果":{"docs":{},"相":{"docs":{},"当":{"docs":{},"于":{"docs":{},"容":{"docs":{},"器":{"docs":{},"b":{"docs":{},"o":{"docs":{},"t":{"docs":{},"t":{"docs":{},"o":{"docs":{},"m":{"docs":{"core/layout/vertical.html":{"ref":"core/layout/vertical.html","tf":0.01282051282051282},"core/layout/horizontal.html":{"ref":"core/layout/horizontal.html","tf":0.010752688172043012},"core/layout/htape.html":{"ref":"core/layout/htape.html","tf":0.008},"core/layout/vtape.html":{"ref":"core/layout/vtape.html","tf":0.008},"core/layout/center_adapt.html":{"ref":"core/layout/center_adapt.html","tf":0.011764705882352941},"core/layout/vertical_adapt.html":{"ref":"core/layout/vertical_adapt.html","tf":0.011494252873563218},"core/layout/flow.html":{"ref":"core/layout/flow.html","tf":0.007692307692307693},"core/layout/center.html":{"ref":"core/layout/center.html","tf":0.012658227848101266},"core/layout/horizontal_adapt.html":{"ref":"core/layout/horizontal_adapt.html","tf":0.010869565217391304},"core/layout/horizontal_auto.html":{"ref":"core/layout/horizontal_auto.html","tf":0.012345679012345678},"core/layout/horizontal_float.html":{"ref":"core/layout/horizontal_float.html","tf":0.013888888888888888},"core/layout/float_center.html":{"ref":"core/layout/float_center.html","tf":0.012658227848101266},"core/combination/searcher.html":{"ref":"core/combination/searcher.html","tf":0.004608294930875576},"core/layer/layer_popup.html":{"ref":"core/layer/layer_popup.html","tf":0.0058823529411764705},"base/label.html":{"ref":"base/label.html","tf":0.006711409395973154},"case/layer/pane_list.html":{"ref":"case/layer/pane_list.html","tf":0.006802721088435374}}}}}}}},"l":{"docs":{},"e":{"docs":{},"f":{"docs":{},"t":{"docs":{"core/layout/vertical.html":{"ref":"core/layout/vertical.html","tf":0.01282051282051282},"core/layout/horizontal.html":{"ref":"core/layout/horizontal.html","tf":0.010752688172043012},"core/layout/htape.html":{"ref":"core/layout/htape.html","tf":0.008},"core/layout/vtape.html":{"ref":"core/layout/vtape.html","tf":0.008},"core/layout/center_adapt.html":{"ref":"core/layout/center_adapt.html","tf":0.011764705882352941},"core/layout/vertical_adapt.html":{"ref":"core/layout/vertical_adapt.html","tf":0.011494252873563218},"core/layout/flow.html":{"ref":"core/layout/flow.html","tf":0.007692307692307693},"core/layout/center.html":{"ref":"core/layout/center.html","tf":0.012658227848101266},"core/layout/horizontal_adapt.html":{"ref":"core/layout/horizontal_adapt.html","tf":0.010869565217391304},"core/layout/horizontal_auto.html":{"ref":"core/layout/horizontal_auto.html","tf":0.012345679012345678},"core/layout/horizontal_float.html":{"ref":"core/layout/horizontal_float.html","tf":0.013888888888888888},"core/layout/float_center.html":{"ref":"core/layout/float_center.html","tf":0.012658227848101266},"core/combination/searcher.html":{"ref":"core/combination/searcher.html","tf":0.004608294930875576},"core/layer/layer_popup.html":{"ref":"core/layer/layer_popup.html","tf":0.0058823529411764705},"base/label.html":{"ref":"base/label.html","tf":0.006711409395973154},"case/layer/pane_list.html":{"ref":"case/layer/pane_list.html","tf":0.006802721088435374}}}}}},"r":{"docs":{},"i":{"docs":{},"g":{"docs":{},"h":{"docs":{},"t":{"docs":{"core/layout/vertical.html":{"ref":"core/layout/vertical.html","tf":0.01282051282051282},"core/layout/horizontal.html":{"ref":"core/layout/horizontal.html","tf":0.010752688172043012},"core/layout/htape.html":{"ref":"core/layout/htape.html","tf":0.008},"core/layout/vtape.html":{"ref":"core/layout/vtape.html","tf":0.008},"core/layout/center_adapt.html":{"ref":"core/layout/center_adapt.html","tf":0.011764705882352941},"core/layout/vertical_adapt.html":{"ref":"core/layout/vertical_adapt.html","tf":0.011494252873563218},"core/layout/flow.html":{"ref":"core/layout/flow.html","tf":0.007692307692307693},"core/layout/center.html":{"ref":"core/layout/center.html","tf":0.012658227848101266},"core/layout/horizontal_adapt.html":{"ref":"core/layout/horizontal_adapt.html","tf":0.010869565217391304},"core/layout/horizontal_auto.html":{"ref":"core/layout/horizontal_auto.html","tf":0.012345679012345678},"core/layout/horizontal_float.html":{"ref":"core/layout/horizontal_float.html","tf":0.013888888888888888},"core/layout/float_center.html":{"ref":"core/layout/float_center.html","tf":0.012658227848101266},"core/combination/searcher.html":{"ref":"core/combination/searcher.html","tf":0.004608294930875576},"core/layer/layer_popup.html":{"ref":"core/layer/layer_popup.html","tf":0.0058823529411764705},"base/label.html":{"ref":"base/label.html","tf":0.006711409395973154},"case/layer/pane_list.html":{"ref":"case/layer/pane_list.html","tf":0.006802721088435374}}}}}}},"t":{"docs":{},"o":{"docs":{},"p":{"docs":{"core/layout/vertical.html":{"ref":"core/layout/vertical.html","tf":0.01282051282051282},"core/layout/horizontal.html":{"ref":"core/layout/horizontal.html","tf":0.010752688172043012},"core/layout/htape.html":{"ref":"core/layout/htape.html","tf":0.008},"core/layout/vtape.html":{"ref":"core/layout/vtape.html","tf":0.008},"core/layout/center_adapt.html":{"ref":"core/layout/center_adapt.html","tf":0.011764705882352941},"core/layout/vertical_adapt.html":{"ref":"core/layout/vertical_adapt.html","tf":0.011494252873563218},"core/layout/flow.html":{"ref":"core/layout/flow.html","tf":0.007692307692307693},"core/layout/center.html":{"ref":"core/layout/center.html","tf":0.012658227848101266},"core/layout/horizontal_adapt.html":{"ref":"core/layout/horizontal_adapt.html","tf":0.010869565217391304},"core/layout/horizontal_auto.html":{"ref":"core/layout/horizontal_auto.html","tf":0.012345679012345678},"core/layout/horizontal_float.html":{"ref":"core/layout/horizontal_float.html","tf":0.013888888888888888},"core/layout/float_center.html":{"ref":"core/layout/float_center.html","tf":0.012658227848101266},"core/combination/searcher.html":{"ref":"core/combination/searcher.html","tf":0.004608294930875576},"core/layer/layer_popup.html":{"ref":"core/layer/layer_popup.html","tf":0.0058823529411764705},"base/label.html":{"ref":"base/label.html","tf":0.006711409395973154},"case/layer/pane_list.html":{"ref":"case/layer/pane_list.html","tf":0.006802721088435374}}}}},"上":{"docs":{},"下":{"docs":{},"p":{"docs":{},"a":{"docs":{},"d":{"docs":{},"d":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"值":{"docs":{"core/layout/vertical.html":{"ref":"core/layout/vertical.html","tf":0.01282051282051282},"core/layout/horizontal.html":{"ref":"core/layout/horizontal.html","tf":0.010752688172043012},"core/layout/htape.html":{"ref":"core/layout/htape.html","tf":0.008},"core/layout/vtape.html":{"ref":"core/layout/vtape.html","tf":0.008},"core/layout/center_adapt.html":{"ref":"core/layout/center_adapt.html","tf":0.011764705882352941},"core/layout/vertical_adapt.html":{"ref":"core/layout/vertical_adapt.html","tf":0.011494252873563218},"core/layout/flow.html":{"ref":"core/layout/flow.html","tf":0.007692307692307693},"core/layout/center.html":{"ref":"core/layout/center.html","tf":0.012658227848101266},"core/layout/horizontal_adapt.html":{"ref":"core/layout/horizontal_adapt.html","tf":0.010869565217391304},"core/layout/horizontal_auto.html":{"ref":"core/layout/horizontal_auto.html","tf":0.012345679012345678},"core/layout/horizontal_float.html":{"ref":"core/layout/horizontal_float.html","tf":0.013888888888888888},"core/layout/float_center.html":{"ref":"core/layout/float_center.html","tf":0.012658227848101266},"core/combination/searcher.html":{"ref":"core/combination/searcher.html","tf":0.004608294930875576},"core/layer/layer_popup.html":{"ref":"core/layer/layer_popup.html","tf":0.0058823529411764705},"base/label.html":{"ref":"base/label.html","tf":0.006711409395973154},"case/layer/pane_list.html":{"ref":"case/layer/pane_list.html","tf":0.006802721088435374}}}}}}}}}}}},"左":{"docs":{},"右":{"docs":{},"p":{"docs":{},"a":{"docs":{},"d":{"docs":{},"d":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"值":{"docs":{"core/layout/vertical.html":{"ref":"core/layout/vertical.html","tf":0.01282051282051282},"core/layout/horizontal.html":{"ref":"core/layout/horizontal.html","tf":0.010752688172043012},"core/layout/htape.html":{"ref":"core/layout/htape.html","tf":0.008},"core/layout/vtape.html":{"ref":"core/layout/vtape.html","tf":0.008},"core/layout/center_adapt.html":{"ref":"core/layout/center_adapt.html","tf":0.011764705882352941},"core/layout/vertical_adapt.html":{"ref":"core/layout/vertical_adapt.html","tf":0.011494252873563218},"core/layout/flow.html":{"ref":"core/layout/flow.html","tf":0.007692307692307693},"core/layout/center.html":{"ref":"core/layout/center.html","tf":0.012658227848101266},"core/layout/horizontal_adapt.html":{"ref":"core/layout/horizontal_adapt.html","tf":0.010869565217391304},"core/layout/horizontal_auto.html":{"ref":"core/layout/horizontal_auto.html","tf":0.012345679012345678},"core/layout/horizontal_float.html":{"ref":"core/layout/horizontal_float.html","tf":0.013888888888888888},"core/layout/float_center.html":{"ref":"core/layout/float_center.html","tf":0.012658227848101266},"core/combination/searcher.html":{"ref":"core/combination/searcher.html","tf":0.004608294930875576},"core/layer/layer_popup.html":{"ref":"core/layer/layer_popup.html","tf":0.0058823529411764705},"base/label.html":{"ref":"base/label.html","tf":0.006711409395973154},"case/layer/pane_list.html":{"ref":"case/layer/pane_list.html","tf":0.006802721088435374}}}}}}}}}}}}}},"文":{"docs":{},"本":{"docs":{},"框":{"docs":{},"b":{"docs":{},"o":{"docs":{},"t":{"docs":{},"t":{"docs":{},"o":{"docs":{},"m":{"docs":{"base/button/button.html":{"ref":"base/button/button.html","tf":0.005681818181818182},"base/editor/editor.html":{"ref":"base/editor/editor.html","tf":0.005405405405405406},"case/editor/shelter_editor.html":{"ref":"case/editor/shelter_editor.html","tf":0.0051813471502590676},"case/editor/sign_editor.html":{"ref":"case/editor/sign_editor.html","tf":0.005494505494505495},"case/editor/sign_initial_editor.html":{"ref":"case/editor/sign_initial_editor.html","tf":0.005154639175257732},"case/editor/state_editor.html":{"ref":"case/editor/state_editor.html","tf":0.005747126436781609},"case/segment.html":{"ref":"case/segment.html","tf":0.009345794392523364},"detailed/bi.button/tooltip.html":{"ref":"detailed/bi.button/tooltip.html","tf":0.011363636363636364},"detailed/bi.button/items.html":{"ref":"detailed/bi.button/items.html","tf":0.010638297872340425},"detailed/bi.button/node.html":{"ref":"detailed/bi.button/node.html","tf":0.009259259259259259},"detailed/bi.button/segment.html":{"ref":"detailed/bi.button/segment.html","tf":0.009345794392523364},"detailed/text_input/bi.text_editor.html":{"ref":"detailed/text_input/bi.text_editor.html","tf":0.010309278350515464},"detailed/text_input/bi.search_editor.html":{"ref":"detailed/text_input/bi.search_editor.html","tf":0.010101010101010102},"detailed/text_input/bi.clear_editor.html":{"ref":"detailed/text_input/bi.clear_editor.html","tf":0.00980392156862745}}}}}}}},"l":{"docs":{},"e":{"docs":{},"f":{"docs":{},"t":{"docs":{"base/button/button.html":{"ref":"base/button/button.html","tf":0.005681818181818182},"base/button/text_button.html":{"ref":"base/button/text_button.html","tf":0.009433962264150943},"base/editor/editor.html":{"ref":"base/editor/editor.html","tf":0.005405405405405406},"case/editor/shelter_editor.html":{"ref":"case/editor/shelter_editor.html","tf":0.0051813471502590676},"case/editor/sign_editor.html":{"ref":"case/editor/sign_editor.html","tf":0.005494505494505495},"case/editor/sign_initial_editor.html":{"ref":"case/editor/sign_initial_editor.html","tf":0.005154639175257732},"case/editor/state_editor.html":{"ref":"case/editor/state_editor.html","tf":0.005747126436781609},"case/segment.html":{"ref":"case/segment.html","tf":0.009345794392523364},"detailed/bi.button/tooltip.html":{"ref":"detailed/bi.button/tooltip.html","tf":0.011363636363636364},"detailed/bi.button/items.html":{"ref":"detailed/bi.button/items.html","tf":0.010638297872340425},"detailed/bi.button/node.html":{"ref":"detailed/bi.button/node.html","tf":0.009259259259259259},"detailed/bi.button/segment.html":{"ref":"detailed/bi.button/segment.html","tf":0.009345794392523364},"detailed/text_input/bi.text_editor.html":{"ref":"detailed/text_input/bi.text_editor.html","tf":0.010309278350515464},"detailed/text_input/bi.search_editor.html":{"ref":"detailed/text_input/bi.search_editor.html","tf":0.010101010101010102},"detailed/text_input/bi.clear_editor.html":{"ref":"detailed/text_input/bi.clear_editor.html","tf":0.00980392156862745}}}}}},"r":{"docs":{},"i":{"docs":{},"g":{"docs":{},"h":{"docs":{},"t":{"docs":{"base/button/button.html":{"ref":"base/button/button.html","tf":0.005681818181818182},"base/button/text_button.html":{"ref":"base/button/text_button.html","tf":0.009433962264150943},"base/editor/editor.html":{"ref":"base/editor/editor.html","tf":0.005405405405405406},"case/editor/shelter_editor.html":{"ref":"case/editor/shelter_editor.html","tf":0.0051813471502590676},"case/editor/sign_editor.html":{"ref":"case/editor/sign_editor.html","tf":0.005494505494505495},"case/editor/sign_initial_editor.html":{"ref":"case/editor/sign_initial_editor.html","tf":0.005154639175257732},"case/editor/state_editor.html":{"ref":"case/editor/state_editor.html","tf":0.005747126436781609},"case/segment.html":{"ref":"case/segment.html","tf":0.009345794392523364},"detailed/bi.button/tooltip.html":{"ref":"detailed/bi.button/tooltip.html","tf":0.011363636363636364},"detailed/bi.button/items.html":{"ref":"detailed/bi.button/items.html","tf":0.010638297872340425},"detailed/bi.button/node.html":{"ref":"detailed/bi.button/node.html","tf":0.009259259259259259},"detailed/bi.button/segment.html":{"ref":"detailed/bi.button/segment.html","tf":0.009345794392523364},"detailed/text_input/bi.text_editor.html":{"ref":"detailed/text_input/bi.text_editor.html","tf":0.010309278350515464},"detailed/text_input/bi.search_editor.html":{"ref":"detailed/text_input/bi.search_editor.html","tf":0.010101010101010102},"detailed/text_input/bi.clear_editor.html":{"ref":"detailed/text_input/bi.clear_editor.html","tf":0.00980392156862745}}}}}}},"t":{"docs":{},"o":{"docs":{},"p":{"docs":{"base/button/button.html":{"ref":"base/button/button.html","tf":0.005681818181818182},"base/editor/editor.html":{"ref":"base/editor/editor.html","tf":0.005405405405405406},"case/editor/shelter_editor.html":{"ref":"case/editor/shelter_editor.html","tf":0.0051813471502590676},"case/editor/sign_editor.html":{"ref":"case/editor/sign_editor.html","tf":0.005494505494505495},"case/editor/sign_initial_editor.html":{"ref":"case/editor/sign_initial_editor.html","tf":0.005154639175257732},"case/editor/state_editor.html":{"ref":"case/editor/state_editor.html","tf":0.005747126436781609},"case/segment.html":{"ref":"case/segment.html","tf":0.009345794392523364},"detailed/bi.button/tooltip.html":{"ref":"detailed/bi.button/tooltip.html","tf":0.011363636363636364},"detailed/bi.button/items.html":{"ref":"detailed/bi.button/items.html","tf":0.010638297872340425},"detailed/bi.button/node.html":{"ref":"detailed/bi.button/node.html","tf":0.009259259259259259},"detailed/bi.button/segment.html":{"ref":"detailed/bi.button/segment.html","tf":0.009345794392523364},"detailed/text_input/bi.text_editor.html":{"ref":"detailed/text_input/bi.text_editor.html","tf":0.010309278350515464},"detailed/text_input/bi.search_editor.html":{"ref":"detailed/text_input/bi.search_editor.html","tf":0.010101010101010102},"detailed/text_input/bi.clear_editor.html":{"ref":"detailed/text_input/bi.clear_editor.html","tf":0.00980392156862745}}}}},"上":{"docs":{},"下":{"docs":{},"p":{"docs":{},"a":{"docs":{},"d":{"docs":{},"d":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"值":{"docs":{"base/button/button.html":{"ref":"base/button/button.html","tf":0.005681818181818182},"base/editor/editor.html":{"ref":"base/editor/editor.html","tf":0.005405405405405406},"case/editor/shelter_editor.html":{"ref":"case/editor/shelter_editor.html","tf":0.0051813471502590676},"case/editor/sign_editor.html":{"ref":"case/editor/sign_editor.html","tf":0.005494505494505495},"case/editor/sign_initial_editor.html":{"ref":"case/editor/sign_initial_editor.html","tf":0.005154639175257732},"case/editor/state_editor.html":{"ref":"case/editor/state_editor.html","tf":0.005747126436781609},"case/segment.html":{"ref":"case/segment.html","tf":0.009345794392523364},"detailed/bi.button/tooltip.html":{"ref":"detailed/bi.button/tooltip.html","tf":0.011363636363636364},"detailed/bi.button/items.html":{"ref":"detailed/bi.button/items.html","tf":0.010638297872340425},"detailed/bi.button/node.html":{"ref":"detailed/bi.button/node.html","tf":0.009259259259259259},"detailed/bi.button/segment.html":{"ref":"detailed/bi.button/segment.html","tf":0.009345794392523364},"detailed/text_input/bi.text_editor.html":{"ref":"detailed/text_input/bi.text_editor.html","tf":0.010309278350515464},"detailed/text_input/bi.search_editor.html":{"ref":"detailed/text_input/bi.search_editor.html","tf":0.010101010101010102},"detailed/text_input/bi.clear_editor.html":{"ref":"detailed/text_input/bi.clear_editor.html","tf":0.00980392156862745}}}}}}}}}}}},"左":{"docs":{},"右":{"docs":{},"p":{"docs":{},"a":{"docs":{},"d":{"docs":{},"d":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"值":{"docs":{"base/editor/editor.html":{"ref":"base/editor/editor.html","tf":0.005405405405405406},"case/button/single_select_item.html":{"ref":"case/button/single_select_item.html","tf":0.016129032258064516},"case/button/single_select_radio_item.html":{"ref":"case/button/single_select_radio_item.html","tf":0.016129032258064516},"case/editor/shelter_editor.html":{"ref":"case/editor/shelter_editor.html","tf":0.0051813471502590676},"case/editor/sign_editor.html":{"ref":"case/editor/sign_editor.html","tf":0.005494505494505495},"case/editor/sign_initial_editor.html":{"ref":"case/editor/sign_initial_editor.html","tf":0.005154639175257732},"case/editor/state_editor.html":{"ref":"case/editor/state_editor.html","tf":0.005747126436781609},"case/segment.html":{"ref":"case/segment.html","tf":0.009345794392523364},"detailed/bi.button/tooltip.html":{"ref":"detailed/bi.button/tooltip.html","tf":0.011363636363636364},"detailed/bi.button/segment.html":{"ref":"detailed/bi.button/segment.html","tf":0.009345794392523364},"detailed/text_input/bi.text_editor.html":{"ref":"detailed/text_input/bi.text_editor.html","tf":0.010309278350515464},"detailed/text_input/bi.search_editor.html":{"ref":"detailed/text_input/bi.search_editor.html","tf":0.010101010101010102},"detailed/text_input/bi.clear_editor.html":{"ref":"detailed/text_input/bi.clear_editor.html","tf":0.00980392156862745}},",":{"docs":{},"如":{"docs":{},"果":{"docs":{},"c":{"docs":{},"l":{"docs":{},"e":{"docs":{},"a":{"docs":{},"r":{"docs":{},"属":{"docs":{},"性":{"docs":{},"为":{"docs":{},"t":{"docs":{},"r":{"docs":{},"u":{"docs":{},"e":{"docs":{},",":{"docs":{},"该":{"docs":{},"属":{"docs":{},"性":{"docs":{},"值":{"docs":{},"置":{"0":{"docs":{"base/button/button.html":{"ref":"base/button/button.html","tf":0.005681818181818182},"base/button/text_button.html":{"ref":"base/button/text_button.html","tf":0.009433962264150943},"detailed/bi.button/items.html":{"ref":"detailed/bi.button/items.html","tf":0.010638297872340425},"detailed/bi.button/node.html":{"ref":"detailed/bi.button/node.html","tf":0.009259259259259259}}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"类":{"docs":{},"型":{"docs":{"core/layout/vertical.html":{"ref":"core/layout/vertical.html","tf":0.01282051282051282},"core/layout/horizontal.html":{"ref":"core/layout/horizontal.html","tf":0.010752688172043012},"core/layout/htape.html":{"ref":"core/layout/htape.html","tf":0.008},"core/layout/vtape.html":{"ref":"core/layout/vtape.html","tf":0.008},"core/layout/center_adapt.html":{"ref":"core/layout/center_adapt.html","tf":0.011764705882352941},"core/layout/vertical_adapt.html":{"ref":"core/layout/vertical_adapt.html","tf":0.011494252873563218},"core/layout/left_right_vertical_adapt.html":{"ref":"core/layout/left_right_vertical_adapt.html","tf":0.01098901098901099},"core/layout/flow.html":{"ref":"core/layout/flow.html","tf":0.007692307692307693},"core/layout/center.html":{"ref":"core/layout/center.html","tf":0.012658227848101266},"core/layout/horizontal_adapt.html":{"ref":"core/layout/horizontal_adapt.html","tf":0.010869565217391304},"core/layout/horizontal_auto.html":{"ref":"core/layout/horizontal_auto.html","tf":0.012345679012345678},"core/layout/horizontal_float.html":{"ref":"core/layout/horizontal_float.html","tf":0.013888888888888888},"core/layout/float_center.html":{"ref":"core/layout/float_center.html","tf":0.012658227848101266},"core/layout/border.html":{"ref":"core/layout/border.html","tf":0.012987012987012988},"core/layout/grid.html":{"ref":"core/layout/grid.html","tf":0.008928571428571428},"core/layout/table.html":{"ref":"core/layout/table.html","tf":0.012048192771084338},"core/layout/td.html":{"ref":"core/layout/td.html","tf":0.017857142857142856},"core/abstract/button_group.html":{"ref":"core/abstract/button_group.html","tf":0.007936507936507936},"core/abstract/virtual_group.html":{"ref":"core/abstract/virtual_group.html","tf":0.014492753623188406},"core/abstract/custom_tree.html":{"ref":"core/abstract/custom_tree.html","tf":0.007194244604316547},"core/abstract/grid_view.html":{"ref":"core/abstract/grid_view.html","tf":0.00641025641025641},"core/abstract/collection_view.html":{"ref":"core/abstract/collection_view.html","tf":0.0070921985815602835},"core/abstract/virtual_list.html":{"ref":"core/abstract/virtual_list.html","tf":0.0125},"core/combination/bi.combo.html":{"ref":"core/combination/bi.combo.html","tf":0.004807692307692308},"core/combination/bi.expander.html":{"ref":"core/combination/bi.expander.html","tf":0.005494505494505495},"core/combination/group_combo.html":{"ref":"core/combination/group_combo.html","tf":0.007874015748031496},"core/combination/loader.html":{"ref":"core/combination/loader.html","tf":0.006289308176100629},"core/combination/navigation.html":{"ref":"core/combination/navigation.html","tf":0.007194244604316547},"core/combination/searcher.html":{"ref":"core/combination/searcher.html","tf":0.004608294930875576},"core/combination/switcher.html":{"ref":"core/combination/switcher.html","tf":0.00625},"core/combination/tab.html":{"ref":"core/combination/tab.html","tf":0.00684931506849315},"core/layer/layer_float_box.html":{"ref":"core/layer/layer_float_box.html","tf":0.012345679012345678},"core/layer/layer_popup.html":{"ref":"core/layer/layer_popup.html","tf":0.0058823529411764705},"core/layer/layer_searcher.html":{"ref":"core/layer/layer_searcher.html","tf":0.009259259259259259},"core/widget.html":{"ref":"core/widget.html","tf":0.00510204081632653},"core/single.html":{"ref":"core/single.html","tf":0.013888888888888888},"core/basic_button.html":{"ref":"core/basic_button.html","tf":0.007936507936507936},"core/node_button.html":{"ref":"core/node_button.html","tf":0.02631578947368421},"core/pane.html":{"ref":"core/pane.html","tf":0.0196078431372549},"base/label.html":{"ref":"base/label.html","tf":0.013422818791946308},"base/bubble.html":{"ref":"base/bubble.html","tf":0.023255813953488372},"base/toast.html":{"ref":"base/toast.html","tf":0.020833333333333332},"base/button/button.html":{"ref":"base/button/button.html","tf":0.011363636363636364},"base/button/text_button.html":{"ref":"base/button/text_button.html","tf":0.018867924528301886},"base/button/icon_button.html":{"ref":"base/button/icon_button.html","tf":0.02564102564102564},"base/button/image_button.html":{"ref":"base/button/image_button.html","tf":0.014925373134328358},"base/editor/editor.html":{"ref":"base/editor/editor.html","tf":0.005405405405405406},"base/editor/code_editor.html":{"ref":"base/editor/code_editor.html","tf":0.012658227848101266},"base/editor/multifile_editor.html":{"ref":"base/editor/multifile_editor.html","tf":0.015384615384615385},"base/editor/textarea_editor.html":{"ref":"base/editor/textarea_editor.html","tf":0.021739130434782608},"base/editor/formula_editor.html":{"ref":"base/editor/formula_editor.html","tf":0.010101010101010102},"base/table/table_view.html":{"ref":"base/table/table_view.html","tf":0.006289308176100629},"base/table/grid_table.html":{"ref":"base/table/grid_table.html","tf":0.008771929824561403},"base/table/collection_table.html":{"ref":"base/table/collection_table.html","tf":0.006535947712418301},"base/table/resizable_table.html":{"ref":"base/table/resizable_table.html","tf":0.00625},"base/pager.html":{"ref":"base/pager.html","tf":0.006666666666666667},"case/button/multi_select_item.html":{"ref":"case/button/multi_select_item.html","tf":0.017543859649122806},"case/button/single_select_item.html":{"ref":"case/button/single_select_item.html","tf":0.016129032258064516},"case/button/single_select_radio_item.html":{"ref":"case/button/single_select_radio_item.html","tf":0.016129032258064516},"case/editor/shelter_editor.html":{"ref":"case/editor/shelter_editor.html","tf":0.0051813471502590676},"case/editor/sign_editor.html":{"ref":"case/editor/sign_editor.html","tf":0.005494505494505495},"case/editor/sign_initial_editor.html":{"ref":"case/editor/sign_initial_editor.html","tf":0.005154639175257732},"case/editor/state_editor.html":{"ref":"case/editor/state_editor.html","tf":0.005747126436781609},"case/layer/multi_popup_layer.html":{"ref":"case/layer/multi_popup_layer.html","tf":0.04},"case/layer/layer_panel.html":{"ref":"case/layer/layer_panel.html","tf":0.010752688172043012},"case/layer/pane_list.html":{"ref":"case/layer/pane_list.html","tf":0.006802721088435374},"case/layer/panel.html":{"ref":"case/layer/panel.html","tf":0.015873015873015872},"case/list/list.select.html":{"ref":"case/list/list.select.html","tf":0.009433962264150943},"case/loader/list_loader.html":{"ref":"case/loader/list_loader.html","tf":0.010752688172043012},"case/loader/sort_list.html":{"ref":"case/loader/sort_list.html","tf":0.010752688172043012},"case/trigger/editor_trigger.html":{"ref":"case/trigger/editor_trigger.html","tf":0.02},"case/combo/bubble_combo.html":{"ref":"case/combo/bubble_combo.html","tf":0.005780346820809248},"case/combo/icon_combo.html":{"ref":"case/combo/icon_combo.html","tf":0.007751937984496124},"case/combo/static_combo.html":{"ref":"case/combo/static_combo.html","tf":0.0125},"case/combo/text_value_combo.html":{"ref":"case/combo/text_value_combo.html","tf":0.013513513513513514},"case/combo/text_value_downlist_combo.html":{"ref":"case/combo/text_value_downlist_combo.html","tf":0.013513513513513514},"case/tree/branch_tree.html":{"ref":"case/tree/branch_tree.html","tf":0.02},"case/tree/handstand_branch_tree.html":{"ref":"case/tree/handstand_branch_tree.html","tf":0.019230769230769232},"case/tree/simple_tree.html":{"ref":"case/tree/simple_tree.html","tf":0.022222222222222223},"case/tree/level_tree.html":{"ref":"case/tree/level_tree.html","tf":0.017857142857142856},"case/tree/branch_relation.html":{"ref":"case/tree/branch_relation.html","tf":0.02040816326530612},"case/table/adaptive_table.html":{"ref":"case/table/adaptive_table.html","tf":0.006060606060606061},"case/table/tree_table.html":{"ref":"case/table/tree_table.html","tf":0.00510204081632653},"case/table/layer_tree_table.html":{"ref":"case/table/layer_tree_table.html","tf":0.00510204081632653},"case/pager/all_count_pager.html":{"ref":"case/pager/all_count_pager.html","tf":0.014705882352941176},"case/pager/direction_pager.html":{"ref":"case/pager/direction_pager.html","tf":0.00819672131147541},"case/calendar.html":{"ref":"case/calendar.html","tf":0.013888888888888888},"case/clipboard.html":{"ref":"case/clipboard.html","tf":0.03125},"case/color_chooser_popup.html":{"ref":"case/color_chooser_popup.html","tf":0.029411764705882353},"case/segment.html":{"ref":"case/segment.html","tf":0.009345794392523364},"detailed/bi.button/tooltip.html":{"ref":"detailed/bi.button/tooltip.html","tf":0.011363636363636364},"detailed/bi.button/items.html":{"ref":"detailed/bi.button/items.html","tf":0.010638297872340425},"detailed/bi.button/node.html":{"ref":"detailed/bi.button/node.html","tf":0.009259259259259259},"detailed/bi.button/segment.html":{"ref":"detailed/bi.button/segment.html","tf":0.009345794392523364},"detailed/tree/bi.multi_tree_combo.html":{"ref":"detailed/tree/bi.multi_tree_combo.html","tf":0.010869565217391304},"detailed/tree/bi.switch_tree.html":{"ref":"detailed/tree/bi.switch_tree.html","tf":0.013157894736842105},"detailed/table/bi.preview_table.html":{"ref":"detailed/table/bi.preview_table.html","tf":0.006756756756756757},"detailed/table/bi.responsive_table.html":{"ref":"detailed/table/bi.responsive_table.html","tf":0.005263157894736842},"detailed/table/bi.excel_table.html":{"ref":"detailed/table/bi.excel_table.html","tf":0.0055248618784530384},"detailed/table/bi.page_table.html":{"ref":"detailed/table/bi.page_table.html","tf":0.004651162790697674},"detailed/text_input/bi.text_editor.html":{"ref":"detailed/text_input/bi.text_editor.html","tf":0.010309278350515464},"detailed/text_input/bi.search_editor.html":{"ref":"detailed/text_input/bi.search_editor.html","tf":0.010101010101010102},"detailed/text_input/bi.clear_editor.html":{"ref":"detailed/text_input/bi.clear_editor.html","tf":0.00980392156862745},"detailed/text_input/finetuning_number_editor.html":{"ref":"detailed/text_input/finetuning_number_editor.html","tf":0.037037037037037035},"detailed/year_combo.html":{"ref":"detailed/year_combo.html","tf":0.025},"detailed/month_combo.html":{"ref":"detailed/month_combo.html","tf":0.03571428571428571},"detailed/quarter_combo.html":{"ref":"detailed/quarter_combo.html","tf":0.03571428571428571},"detailed/down_list_combo.html":{"ref":"detailed/down_list_combo.html","tf":0.006578947368421052},"detailed/numeric_interval.html":{"ref":"detailed/numeric_interval.html","tf":0.017241379310344827},"detailed/date/date_combo.html":{"ref":"detailed/date/date_combo.html","tf":0.058823529411764705},"detailed/date/date_pane_widget.html":{"ref":"detailed/date/date_pane_widget.html","tf":0.02702702702702703},"detailed/date/year_month_combo.html":{"ref":"detailed/date/year_month_combo.html","tf":0.029411764705882353},"detailed/date/year_quarter_combo.html":{"ref":"detailed/date/year_quarter_combo.html","tf":0.03225806451612903},"detailed/date/custom_date_time.html":{"ref":"detailed/date/custom_date_time.html","tf":0.045454545454545456},"detailed/combo/single_tree_combo.html":{"ref":"detailed/combo/single_tree_combo.html","tf":0.01694915254237288},"detailed/combo/multilayer_single_tree_combo.html":{"ref":"detailed/combo/multilayer_single_tree_combo.html","tf":0.018867924528301886},"detailed/combo/select_tree_combo.html":{"ref":"detailed/combo/select_tree_combo.html","tf":0.02040816326530612},"detailed/combo/multilayer_select_tree_combo.html":{"ref":"detailed/combo/multilayer_select_tree_combo.html","tf":0.02040816326530612},"detailed/path/path_chooser.html":{"ref":"detailed/path/path_chooser.html","tf":0.019230769230769232},"detailed/path/direction_path_chooser.html":{"ref":"detailed/path/direction_path_chooser.html","tf":0.02},"detailed/relation_view.html":{"ref":"detailed/relation_view.html","tf":0.019230769230769232},"detailed/dialog.html":{"ref":"detailed/dialog.html","tf":0.043478260869565216},"detailed/slider.html":{"ref":"detailed/slider.html","tf":0.029411764705882353}}},"似":{"docs":{},"e":{"docs":{},"x":{"docs":{},"c":{"docs":{},"e":{"docs":{},"l":{"docs":{},"式":{"docs":{},"的":{"docs":{},"表":{"docs":{},"格":{"docs":{},",":{"docs":{},"继":{"docs":{},"承":{"docs":{},"b":{"docs":{},"i":{"docs":{},".":{"docs":{},"w":{"docs":{},"i":{"docs":{},"d":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{"detailed/table/bi.excel_table.html":{"ref":"detailed/table/bi.excel_table.html","tf":0.0055248618784530384}}}}}}}}}}}}}}}}}}}}}}}}},"设":{"docs":{},"置":{"docs":{},"垂":{"docs":{},"直":{"docs":{},"方":{"docs":{},"向":{"docs":{},"是":{"docs":{},"否":{"docs":{},"有":{"docs":{},"滚":{"docs":{},"动":{"docs":{},"条":{"docs":{"core/layout/vertical.html":{"ref":"core/layout/vertical.html","tf":0.01282051282051282}}}}}}}}}}}},"水":{"docs":{},"平":{"docs":{},"方":{"docs":{},"向":{"docs":{},"是":{"docs":{},"否":{"docs":{},"有":{"docs":{},"滚":{"docs":{},"动":{"docs":{},"条":{"docs":{"core/layout/horizontal.html":{"ref":"core/layout/horizontal.html","tf":0.010752688172043012}}}}}}}}}},"页":{"docs":{},"数":{"docs":{"detailed/table/bi.page_table.html":{"ref":"detailed/table/bi.page_table.html","tf":0.004651162790697674}}}}}},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{"core/layer/layer_popup.html":{"ref":"core/layer/layer_popup.html","tf":0.0058823529411764705},"core/layer/layer_searcher.html":{"ref":"core/layer/layer_searcher.html","tf":0.009259259259259259}},"e":{"docs":{},"值":{"docs":{"core/abstract/button_group.html":{"ref":"core/abstract/button_group.html","tf":0.007936507936507936},"core/abstract/button_tree.html":{"ref":"core/abstract/button_tree.html","tf":0.014925373134328358},"core/abstract/virtual_group.html":{"ref":"core/abstract/virtual_group.html","tf":0.014492753623188406},"core/abstract/custom_tree.html":{"ref":"core/abstract/custom_tree.html","tf":0.007194244604316547},"core/combination/loader.html":{"ref":"core/combination/loader.html","tf":0.006289308176100629},"core/combination/navigation.html":{"ref":"core/combination/navigation.html","tf":0.007194244604316547},"core/combination/searcher.html":{"ref":"core/combination/searcher.html","tf":0.004608294930875576},"core/combination/switcher.html":{"ref":"core/combination/switcher.html","tf":0.00625},"core/combination/tab.html":{"ref":"core/combination/tab.html","tf":0.00684931506849315},"core/widget.html":{"ref":"core/widget.html","tf":0.00510204081632653},"core/single.html":{"ref":"core/single.html","tf":0.013888888888888888},"case/layer/layer_panel.html":{"ref":"case/layer/layer_panel.html","tf":0.010752688172043012},"case/layer/pane_list.html":{"ref":"case/layer/pane_list.html","tf":0.006802721088435374},"case/combo/icon_combo.html":{"ref":"case/combo/icon_combo.html","tf":0.007751937984496124},"case/combo/static_combo.html":{"ref":"case/combo/static_combo.html","tf":0.0125},"case/combo/text_value_combo.html":{"ref":"case/combo/text_value_combo.html","tf":0.013513513513513514},"case/combo/text_value_downlist_combo.html":{"ref":"case/combo/text_value_downlist_combo.html","tf":0.013513513513513514}},"可":{"docs":{},"用":{"docs":{"core/abstract/button_group.html":{"ref":"core/abstract/button_group.html","tf":0.007936507936507936},"core/abstract/button_tree.html":{"ref":"core/abstract/button_tree.html","tf":0.014925373134328358}}}}}}}}}},"未":{"docs":{},"被":{"docs":{},"选":{"docs":{},"中":{"docs":{},"的":{"docs":{},"值":{"docs":{"core/abstract/button_group.html":{"ref":"core/abstract/button_group.html","tf":0.007936507936507936},"core/abstract/button_tree.html":{"ref":"core/abstract/button_tree.html","tf":0.014925373134328358},"core/combination/loader.html":{"ref":"core/combination/loader.html","tf":0.006289308176100629},"case/layer/layer_panel.html":{"ref":"case/layer/layer_panel.html","tf":0.010752688172043012},"case/layer/pane_list.html":{"ref":"case/layer/pane_list.html","tf":0.006802721088435374}}}}}}},"选":{"docs":{},"中":{"docs":{},"值":{"docs":{"case/list/list.select.html":{"ref":"case/list/list.select.html","tf":0.009433962264150943},"case/loader/lazy_loader.html":{"ref":"case/loader/lazy_loader.html","tf":0.01694915254237288},"case/loader/list_loader.html":{"ref":"case/loader/list_loader.html","tf":0.010752688172043012},"case/loader/sort_list.html":{"ref":"case/loader/sort_list.html","tf":0.010752688172043012}}}}}},"列":{"docs":{},"宽":{"docs":{"core/abstract/grid_view.html":{"ref":"core/abstract/grid_view.html","tf":0.00641025641025641},"base/table/table_view.html":{"ref":"base/table/table_view.html","tf":0.006289308176100629},"base/table/grid_table.html":{"ref":"base/table/grid_table.html","tf":0.008771929824561403},"base/table/collection_table.html":{"ref":"base/table/collection_table.html","tf":0.006535947712418301},"base/table/resizable_table.html":{"ref":"base/table/resizable_table.html","tf":0.00625},"case/table/adaptive_table.html":{"ref":"case/table/adaptive_table.html","tf":0.006060606060606061},"case/table/tree_table.html":{"ref":"case/table/tree_table.html","tf":0.00510204081632653},"case/table/layer_tree_table.html":{"ref":"case/table/layer_tree_table.html","tf":0.00510204081632653},"detailed/table/bi.preview_table.html":{"ref":"detailed/table/bi.preview_table.html","tf":0.006756756756756757},"detailed/table/bi.responsive_table.html":{"ref":"detailed/table/bi.responsive_table.html","tf":0.005263157894736842},"detailed/table/bi.excel_table.html":{"ref":"detailed/table/bi.excel_table.html","tf":0.0055248618784530384},"detailed/table/bi.page_table.html":{"ref":"detailed/table/bi.page_table.html","tf":0.004651162790697674}}},"项":{"docs":{},"之":{"docs":{},"间":{"docs":{},"的":{"docs":{},"间":{"docs":{},"隙":{"docs":{"base/table/table_view.html":{"ref":"base/table/table_view.html","tf":0.006289308176100629},"base/table/grid_table.html":{"ref":"base/table/grid_table.html","tf":0.008771929824561403},"base/table/collection_table.html":{"ref":"base/table/collection_table.html","tf":0.006535947712418301},"base/table/resizable_table.html":{"ref":"base/table/resizable_table.html","tf":0.00625},"case/table/adaptive_table.html":{"ref":"case/table/adaptive_table.html","tf":0.006060606060606061},"case/table/tree_table.html":{"ref":"case/table/tree_table.html","tf":0.00510204081632653},"case/table/layer_tree_table.html":{"ref":"case/table/layer_tree_table.html","tf":0.00510204081632653},"detailed/table/bi.preview_table.html":{"ref":"detailed/table/bi.preview_table.html","tf":0.006756756756756757},"detailed/table/bi.responsive_table.html":{"ref":"detailed/table/bi.responsive_table.html","tf":0.005263157894736842},"detailed/table/bi.excel_table.html":{"ref":"detailed/table/bi.excel_table.html","tf":0.0055248618784530384},"detailed/table/bi.page_table.html":{"ref":"detailed/table/bi.page_table.html","tf":0.004651162790697674}}}}}}}}},"是":{"docs":{},"否":{"docs":{},"显":{"docs":{},"示":{"docs":{},"横":{"docs":{},"向":{"docs":{},"滚":{"docs":{},"动":{"docs":{},"条":{"docs":{"core/abstract/grid_view.html":{"ref":"core/abstract/grid_view.html","tf":0.01282051282051282},"core/abstract/collection_view.html":{"ref":"core/abstract/collection_view.html","tf":0.014184397163120567}}}}}}}}}}},"滚":{"docs":{},"动":{"docs":{},"条":{"docs":{},"相":{"docs":{},"对":{"docs":{},"于":{"docs":{},"左":{"docs":{},"边":{"docs":{},"的":{"docs":{},"偏":{"docs":{},"移":{"docs":{"core/abstract/grid_view.html":{"ref":"core/abstract/grid_view.html","tf":0.00641025641025641},"core/abstract/collection_view.html":{"ref":"core/abstract/collection_view.html","tf":0.0070921985815602835}}}}}}},"顶":{"docs":{},"部":{"docs":{},"的":{"docs":{},"偏":{"docs":{},"移":{"docs":{"core/abstract/grid_view.html":{"ref":"core/abstract/grid_view.html","tf":0.00641025641025641},"core/abstract/collection_view.html":{"ref":"core/abstract/collection_view.html","tf":0.0070921985815602835}}}}}}}}}}}}},"行":{"docs":{},"宽":{"docs":{"core/abstract/grid_view.html":{"ref":"core/abstract/grid_view.html","tf":0.00641025641025641}}}},"每":{"docs":{},"个":{"docs":{},"单":{"docs":{},"元":{"docs":{},"格":{"docs":{},"的":{"docs":{},"位":{"docs":{},"置":{"docs":{},"坐":{"docs":{},"标":{"docs":{},"和":{"docs":{},"宽":{"docs":{},"高":{"docs":{"core/abstract/collection_view.html":{"ref":"core/abstract/collection_view.html","tf":0.0070921985815602835}}}}}}}}}}}}}}},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"b":{"docs":{},"o":{"docs":{"core/combination/bi.combo.html":{"ref":"core/combination/bi.combo.html","tf":0.004807692307692308},"core/combination/bi.expander.html":{"ref":"core/combination/bi.expander.html","tf":0.005494505494505495},"core/combination/group_combo.html":{"ref":"core/combination/group_combo.html","tf":0.007874015748031496}}}}}}},"选":{"docs":{},"中":{"docs":{},"的":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"x":{"docs":{"core/combination/navigation.html":{"ref":"core/combination/navigation.html","tf":0.007194244604316547},"core/combination/tab.html":{"ref":"core/combination/tab.html","tf":0.00684931506849315}}}}}}},"文":{"docs":{},"本":{"docs":{"core/basic_button.html":{"ref":"core/basic_button.html","tf":0.007936507936507936},"case/combo/bubble_combo.html":{"ref":"case/combo/bubble_combo.html","tf":0.005780346820809248}}}}},"值":{"docs":{"case/button/multi_select_item.html":{"ref":"case/button/multi_select_item.html","tf":0.017543859649122806},"case/button/single_select_item.html":{"ref":"case/button/single_select_item.html","tf":0.016129032258064516},"case/button/single_select_radio_item.html":{"ref":"case/button/single_select_radio_item.html","tf":0.016129032258064516}}},"项":{"docs":{"detailed/tree/bi.switch_tree.html":{"ref":"detailed/tree/bi.switch_tree.html","tf":0.013157894736842105}}}}},"弹":{"docs":{},"出":{"docs":{},"层":{"docs":{},"显":{"docs":{},"示":{"docs":{},"的":{"docs":{},"位":{"docs":{},"置":{"docs":{},"元":{"docs":{},"素":{"docs":{"core/combination/switcher.html":{"ref":"core/combination/switcher.html","tf":0.00625}}}}}}}}}}}},"z":{"docs":{"core/layer/layer_float_box.html":{"ref":"core/layer/layer_float_box.html","tf":0.012345679012345678},"core/layer/layer_popup.html":{"ref":"core/layer/layer_popup.html","tf":0.0058823529411764705}}},"t":{"docs":{},"a":{"docs":{},"g":{"docs":{"core/widget.html":{"ref":"core/widget.html","tf":0.00510204081632653}}}},"e":{"docs":{},"x":{"docs":{},"t":{"docs":{},"值":{"docs":{"core/widget.html":{"ref":"core/widget.html","tf":0.00510204081632653}}}}}},"i":{"docs":{},"t":{"docs":{},"l":{"docs":{"core/single.html":{"ref":"core/single.html","tf":0.013888888888888888},"case/editor/shelter_editor.html":{"ref":"case/editor/shelter_editor.html","tf":0.0051813471502590676},"case/editor/sign_editor.html":{"ref":"case/editor/sign_editor.html","tf":0.005494505494505495},"case/editor/sign_initial_editor.html":{"ref":"case/editor/sign_initial_editor.html","tf":0.005154639175257732}}}}},"o":{"docs":{},"o":{"docs":{},"l":{"docs":{},"b":{"docs":{},"a":{"docs":{},"r":{"docs":{},"是":{"docs":{},"否":{"docs":{},"可":{"docs":{},"见":{"docs":{"case/list/list.select.html":{"ref":"case/list/list.select.html","tf":0.009433962264150943}}}}}}}}}}}}},"组":{"docs":{},"件":{"docs":{},"不":{"docs":{},"可":{"docs":{},"用":{"docs":{"core/widget.html":{"ref":"core/widget.html","tf":0.00510204081632653}}},"见":{"docs":{"core/widget.html":{"ref":"core/widget.html","tf":0.00510204081632653}}}}},"可":{"docs":{},"用":{"docs":{"core/widget.html":{"ref":"core/widget.html","tf":0.00510204081632653}}},"见":{"docs":{"core/widget.html":{"ref":"core/widget.html","tf":0.00510204081632653}}}},"宽":{"docs":{},"度":{"docs":{"core/widget.html":{"ref":"core/widget.html","tf":0.00510204081632653}}}},"属":{"docs":{},"性":{"docs":{"core/widget.html":{"ref":"core/widget.html","tf":0.00510204081632653}}}},"无":{"docs":{},"效":{"docs":{"core/widget.html":{"ref":"core/widget.html","tf":0.00510204081632653}}}},"是":{"docs":{},"否":{"docs":{},"可":{"docs":{},"用":{"docs":{"core/widget.html":{"ref":"core/widget.html","tf":0.00510204081632653}}},"见":{"docs":{"core/widget.html":{"ref":"core/widget.html","tf":0.00510204081632653}}}},"有":{"docs":{},"效":{"docs":{"core/widget.html":{"ref":"core/widget.html","tf":0.00510204081632653}}}}}},"有":{"docs":{},"效":{"docs":{"core/widget.html":{"ref":"core/widget.html","tf":0.00510204081632653}}}},"高":{"docs":{},"度":{"docs":{"core/widget.html":{"ref":"core/widget.html","tf":0.00510204081632653}}}}}},"错":{"docs":{},"误":{"docs":{},"t":{"docs":{},"i":{"docs":{},"t":{"docs":{},"l":{"docs":{"core/single.html":{"ref":"core/single.html","tf":0.013888888888888888},"case/editor/shelter_editor.html":{"ref":"case/editor/shelter_editor.html","tf":0.0051813471502590676},"case/editor/sign_editor.html":{"ref":"case/editor/sign_editor.html","tf":0.005494505494505495},"case/editor/sign_initial_editor.html":{"ref":"case/editor/sign_initial_editor.html","tf":0.005154639175257732}}}}}},"文":{"docs":{},"本":{"docs":{"base/editor/editor.html":{"ref":"base/editor/editor.html","tf":0.005405405405405406},"case/editor/shelter_editor.html":{"ref":"case/editor/shelter_editor.html","tf":0.0051813471502590676},"case/editor/sign_editor.html":{"ref":"case/editor/sign_editor.html","tf":0.005494505494505495},"case/editor/sign_initial_editor.html":{"ref":"case/editor/sign_initial_editor.html","tf":0.005154639175257732},"case/editor/state_editor.html":{"ref":"case/editor/state_editor.html","tf":0.005747126436781609}},"可":{"docs":{},"见":{"docs":{"base/editor/editor.html":{"ref":"base/editor/editor.html","tf":0.005405405405405406}}}}}}}},"文":{"docs":{},"本":{"docs":{},"值":{"docs":{"core/basic_button.html":{"ref":"core/basic_button.html","tf":0.007936507936507936},"base/label.html":{"ref":"base/label.html","tf":0.013422818791946308},"base/bubble.html":{"ref":"base/bubble.html","tf":0.023255813953488372},"base/toast.html":{"ref":"base/toast.html","tf":0.020833333333333332},"base/button/button.html":{"ref":"base/button/button.html","tf":0.011363636363636364},"base/button/text_button.html":{"ref":"base/button/text_button.html","tf":0.018867924528301886},"case/combo/bubble_combo.html":{"ref":"case/combo/bubble_combo.html","tf":0.005780346820809248}}},"样":{"docs":{},"式":{"docs":{"base/label.html":{"ref":"base/label.html","tf":0.006711409395973154},"base/button/text_button.html":{"ref":"base/button/text_button.html","tf":0.009433962264150943},"base/editor/code_editor.html":{"ref":"base/editor/code_editor.html","tf":0.012658227848101266}}}},"框":{"docs":{},"p":{"docs":{},"l":{"docs":{},"a":{"docs":{},"c":{"docs":{},"e":{"docs":{},"h":{"docs":{},"o":{"docs":{},"l":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{},"不":{"docs":{},"可":{"docs":{},"用":{"docs":{"base/editor/editor.html":{"ref":"base/editor/editor.html","tf":0.005405405405405406},"base/editor/formula_editor.html":{"ref":"base/editor/formula_editor.html","tf":0.010101010101010102}}}}}}}}}}}}}}}},"值":{"docs":{"base/editor/editor.html":{"ref":"base/editor/editor.html","tf":0.005405405405405406},"base/editor/code_editor.html":{"ref":"base/editor/code_editor.html","tf":0.012658227848101266},"base/editor/formula_editor.html":{"ref":"base/editor/formula_editor.html","tf":0.010101010101010102},"case/editor/shelter_editor.html":{"ref":"case/editor/shelter_editor.html","tf":0.010362694300518135},"case/editor/sign_editor.html":{"ref":"case/editor/sign_editor.html","tf":0.01098901098901099},"case/editor/sign_initial_editor.html":{"ref":"case/editor/sign_initial_editor.html","tf":0.010309278350515464},"case/editor/state_editor.html":{"ref":"case/editor/state_editor.html","tf":0.011494252873563218},"detailed/tree/bi.multi_tree_combo.html":{"ref":"detailed/tree/bi.multi_tree_combo.html","tf":0.010869565217391304}}},"样":{"docs":{},"式":{"docs":{"case/editor/shelter_editor.html":{"ref":"case/editor/shelter_editor.html","tf":0.0051813471502590676}}}}},"域":{"docs":{},"值":{"docs":{"base/editor/textarea_editor.html":{"ref":"base/editor/textarea_editor.html","tf":0.021739130434782608}}},"样":{"docs":{},"式":{"docs":{"base/editor/textarea_editor.html":{"ref":"base/editor/textarea_editor.html","tf":0.021739130434782608}}}}}}},"节":{"docs":{},"点":{"docs":{},"展":{"docs":{},"开":{"docs":{},"状":{"docs":{},"态":{"docs":{"core/node_button.html":{"ref":"core/node_button.html","tf":0.02631578947368421}}}}}}}},"标":{"docs":{},"红":{"docs":{},"的":{"docs":{},"关":{"docs":{},"键":{"docs":{},"词":{"docs":{"base/label.html":{"ref":"base/label.html","tf":0.006711409395973154}}}}}}},"题":{"docs":{"case/layer/panel.html":{"ref":"case/layer/panel.html","tf":0.015873015873015872}}}},"高":{"docs":{},"度":{"docs":{"base/toast.html":{"ref":"base/toast.html","tf":0.020833333333333332},"base/table/grid_table.html":{"ref":"base/table/grid_table.html","tf":0.008771929824561403},"base/table/collection_table.html":{"ref":"base/table/collection_table.html","tf":0.006535947712418301},"base/table/resizable_table.html":{"ref":"base/table/resizable_table.html","tf":0.00625},"case/table/adaptive_table.html":{"ref":"case/table/adaptive_table.html","tf":0.006060606060606061},"case/table/tree_table.html":{"ref":"case/table/tree_table.html","tf":0.00510204081632653},"case/table/layer_tree_table.html":{"ref":"case/table/layer_tree_table.html","tf":0.00510204081632653},"detailed/table/bi.page_table.html":{"ref":"detailed/table/bi.page_table.html","tf":0.004651162790697674}}}},"图":{"docs":{},"片":{"docs":{},"宽":{"docs":{},"度":{"docs":{"base/button/image_button.html":{"ref":"base/button/image_button.html","tf":0.014925373134328358}}}},"路":{"docs":{},"径":{"docs":{"base/button/image_button.html":{"ref":"base/button/image_button.html","tf":0.014925373134328358}}}},"高":{"docs":{},"度":{"docs":{"base/button/image_button.html":{"ref":"base/button/image_button.html","tf":0.014925373134328358}}}}}},"按":{"docs":{},"钮":{"docs":{},"宽":{"docs":{},"度":{"docs":{"base/button/image_button.html":{"ref":"base/button/image_button.html","tf":0.014925373134328358}}}},"高":{"docs":{},"度":{"docs":{"base/button/image_button.html":{"ref":"base/button/image_button.html","tf":0.014925373134328358}}}}}},"e":{"docs":{},"r":{"docs":{},"r":{"docs":{},"o":{"docs":{},"r":{"docs":{},"不":{"docs":{},"可":{"docs":{},"用":{"docs":{"base/editor/editor.html":{"ref":"base/editor/editor.html","tf":0.005405405405405406}}}}},"可":{"docs":{},"用":{"docs":{"base/editor/editor.html":{"ref":"base/editor/editor.html","tf":0.005405405405405406}}}}}}}}},"函":{"docs":{},"数":{"docs":{"base/editor/formula_editor.html":{"ref":"base/editor/formula_editor.html","tf":0.010101010101010102}}}},"字":{"docs":{},"段":{"docs":{},"集":{"docs":{},"合":{"docs":{"base/editor/formula_editor.html":{"ref":"base/editor/formula_editor.html","tf":0.010101010101010102}}}}}},"右":{"docs":{},"往":{"docs":{},"左":{"docs":{},"横":{"docs":{},"向":{"docs":{},"滚":{"docs":{},"动":{"docs":{},"距":{"docs":{},"离":{"docs":{"base/table/table_view.html":{"ref":"base/table/table_view.html","tf":0.006289308176100629},"base/table/grid_table.html":{"ref":"base/table/grid_table.html","tf":0.008771929824561403},"base/table/collection_table.html":{"ref":"base/table/collection_table.html","tf":0.006535947712418301},"base/table/resizable_table.html":{"ref":"base/table/resizable_table.html","tf":0.00625},"case/table/adaptive_table.html":{"ref":"case/table/adaptive_table.html","tf":0.006060606060606061},"case/table/tree_table.html":{"ref":"case/table/tree_table.html","tf":0.00510204081632653},"case/table/layer_tree_table.html":{"ref":"case/table/layer_tree_table.html","tf":0.00510204081632653},"detailed/table/bi.preview_table.html":{"ref":"detailed/table/bi.preview_table.html","tf":0.006756756756756757},"detailed/table/bi.responsive_table.html":{"ref":"detailed/table/bi.responsive_table.html","tf":0.005263157894736842},"detailed/table/bi.excel_table.html":{"ref":"detailed/table/bi.excel_table.html","tf":0.0055248618784530384},"detailed/table/bi.page_table.html":{"ref":"detailed/table/bi.page_table.html","tf":0.004651162790697674}}}}}}}}}},"区":{"docs":{},"间":{"docs":{},"开":{"docs":{},"闭":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"b":{"docs":{},"o":{"docs":{},"的":{"docs":{},"d":{"docs":{},"i":{"docs":{},"s":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"状":{"docs":{},"态":{"docs":{"detailed/numeric_interval.html":{"ref":"detailed/numeric_interval.html","tf":0.017241379310344827}}}}}}}}}}}}}}}}}}},"输":{"docs":{},"入":{"docs":{},"框":{"docs":{},"d":{"docs":{},"i":{"docs":{},"s":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"状":{"docs":{},"态":{"docs":{"detailed/numeric_interval.html":{"ref":"detailed/numeric_interval.html","tf":0.017241379310344827}}}}}}}}}}}}}}}}},"左":{"docs":{},"到":{"docs":{},"右":{"docs":{},"横":{"docs":{},"向":{"docs":{},"滚":{"docs":{},"动":{"docs":{},"距":{"docs":{},"离":{"docs":{"base/table/table_view.html":{"ref":"base/table/table_view.html","tf":0.006289308176100629},"base/table/grid_table.html":{"ref":"base/table/grid_table.html","tf":0.008771929824561403},"base/table/collection_table.html":{"ref":"base/table/collection_table.html","tf":0.006535947712418301},"base/table/resizable_table.html":{"ref":"base/table/resizable_table.html","tf":0.00625},"case/table/adaptive_table.html":{"ref":"case/table/adaptive_table.html","tf":0.006060606060606061},"case/table/tree_table.html":{"ref":"case/table/tree_table.html","tf":0.00510204081632653},"case/table/layer_tree_table.html":{"ref":"case/table/layer_tree_table.html","tf":0.00510204081632653},"detailed/table/bi.preview_table.html":{"ref":"detailed/table/bi.preview_table.html","tf":0.006756756756756757},"detailed/table/bi.responsive_table.html":{"ref":"detailed/table/bi.responsive_table.html","tf":0.005263157894736842},"detailed/table/bi.excel_table.html":{"ref":"detailed/table/bi.excel_table.html","tf":0.0055248618784530384},"detailed/table/bi.page_table.html":{"ref":"detailed/table/bi.page_table.html","tf":0.004651162790697674}}}}}}}}}},"区":{"docs":{},"间":{"docs":{},"开":{"docs":{},"闭":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"b":{"docs":{},"o":{"docs":{},"的":{"docs":{},"d":{"docs":{},"i":{"docs":{},"s":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"状":{"docs":{},"态":{"docs":{"detailed/numeric_interval.html":{"ref":"detailed/numeric_interval.html","tf":0.017241379310344827}}}}}}}}}}}}}}}}}}},"输":{"docs":{},"入":{"docs":{},"框":{"docs":{},"d":{"docs":{},"i":{"docs":{},"s":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"状":{"docs":{},"态":{"docs":{"detailed/numeric_interval.html":{"ref":"detailed/numeric_interval.html","tf":0.017241379310344827}}}}}}}}}}}}}}}}},"纵":{"docs":{},"向":{"docs":{},"滚":{"docs":{},"动":{"docs":{},"距":{"docs":{},"离":{"docs":{"base/table/table_view.html":{"ref":"base/table/table_view.html","tf":0.006289308176100629},"base/table/grid_table.html":{"ref":"base/table/grid_table.html","tf":0.008771929824561403},"base/table/collection_table.html":{"ref":"base/table/collection_table.html","tf":0.006535947712418301},"base/table/resizable_table.html":{"ref":"base/table/resizable_table.html","tf":0.00625},"case/table/adaptive_table.html":{"ref":"case/table/adaptive_table.html","tf":0.006060606060606061},"case/table/tree_table.html":{"ref":"case/table/tree_table.html","tf":0.00510204081632653},"case/table/layer_tree_table.html":{"ref":"case/table/layer_tree_table.html","tf":0.00510204081632653},"detailed/table/bi.preview_table.html":{"ref":"detailed/table/bi.preview_table.html","tf":0.006756756756756757},"detailed/table/bi.responsive_table.html":{"ref":"detailed/table/bi.responsive_table.html","tf":0.005263157894736842},"detailed/table/bi.excel_table.html":{"ref":"detailed/table/bi.excel_table.html","tf":0.0055248618784530384},"detailed/table/bi.page_table.html":{"ref":"detailed/table/bi.page_table.html","tf":0.004651162790697674}}}}}},"分":{"docs":{},"页":{"docs":{},"键":{"docs":{},"可":{"docs":{},"见":{"docs":{"case/pager/direction_pager.html":{"ref":"case/pager/direction_pager.html","tf":0.00819672131147541}}}}}}},"页":{"docs":{},"数":{"docs":{"detailed/table/bi.page_table.html":{"ref":"detailed/table/bi.page_table.html","tf":0.004651162790697674}}}}}},"表":{"docs":{},"头":{"docs":{},"的":{"docs":{},"列":{"docs":{},"宽":{"docs":{"base/table/table_view.html":{"ref":"base/table/table_view.html","tf":0.006289308176100629},"detailed/table/bi.preview_table.html":{"ref":"detailed/table/bi.preview_table.html","tf":0.006756756756756757},"detailed/table/bi.responsive_table.html":{"ref":"detailed/table/bi.responsive_table.html","tf":0.005263157894736842},"detailed/table/bi.excel_table.html":{"ref":"detailed/table/bi.excel_table.html","tf":0.0055248618784530384}}}}}}},"宽":{"docs":{},"度":{"docs":{"base/table/grid_table.html":{"ref":"base/table/grid_table.html","tf":0.008771929824561403},"base/table/collection_table.html":{"ref":"base/table/collection_table.html","tf":0.006535947712418301},"base/table/resizable_table.html":{"ref":"base/table/resizable_table.html","tf":0.00625},"case/table/adaptive_table.html":{"ref":"case/table/adaptive_table.html","tf":0.006060606060606061},"case/table/tree_table.html":{"ref":"case/table/tree_table.html","tf":0.00510204081632653},"case/table/layer_tree_table.html":{"ref":"case/table/layer_tree_table.html","tf":0.00510204081632653},"detailed/table/bi.page_table.html":{"ref":"detailed/table/bi.page_table.html","tf":0.004651162790697674}}}},"属":{"docs":{},"性":{"docs":{"base/table/resizable_table.html":{"ref":"base/table/resizable_table.html","tf":0.00625},"base/pager.html":{"ref":"base/pager.html","tf":0.006666666666666667},"case/table/adaptive_table.html":{"ref":"case/table/adaptive_table.html","tf":0.006060606060606061},"case/table/tree_table.html":{"ref":"case/table/tree_table.html","tf":0.00510204081632653},"case/table/layer_tree_table.html":{"ref":"case/table/layer_tree_table.html","tf":0.00510204081632653},"detailed/table/bi.preview_table.html":{"ref":"detailed/table/bi.preview_table.html","tf":0.006756756756756757},"detailed/table/bi.responsive_table.html":{"ref":"detailed/table/bi.responsive_table.html","tf":0.005263157894736842},"detailed/table/bi.excel_table.html":{"ref":"detailed/table/bi.excel_table.html","tf":0.0055248618784530384},"detailed/table/bi.page_table.html":{"ref":"detailed/table/bi.page_table.html","tf":0.004651162790697674}}}},"当":{"docs":{},"前":{"docs":{},"页":{"docs":{},"码":{"docs":{"base/pager.html":{"ref":"base/pager.html","tf":0.006666666666666667},"case/pager/all_count_pager.html":{"ref":"case/pager/all_count_pager.html","tf":0.029411764705882353}}}},"选":{"docs":{},"中":{"docs":{},"项":{"docs":{},"内":{"docs":{},"容":{"docs":{"detailed/tree/bi.switch_tree.html":{"ref":"detailed/tree/bi.switch_tree.html","tf":0.013157894736842105}}}}}}},"值":{"docs":{"detailed/slider.html":{"ref":"detailed/slider.html","tf":0.029411764705882353}}}}},"总":{"docs":{},"页":{"docs":{},"数":{"docs":{"base/pager.html":{"ref":"base/pager.html","tf":0.006666666666666667},"base/svg.html":{"ref":"base/svg.html","tf":0.011235955056179775},"case/pager/all_count_pager.html":{"ref":"case/pager/all_count_pager.html","tf":0.014705882352941176}}}}},"画":{"docs":{},"布":{"docs":{},"可":{"docs":{},"视":{"docs":{},"区":{"docs":{},"域":{"docs":{"base/svg.html":{"ref":"base/svg.html","tf":0.011235955056179775}}}}}},"尺":{"docs":{},"寸":{"docs":{"base/svg.html":{"ref":"base/svg.html","tf":0.011235955056179775}}}}}},"值":{"docs":{"case/list/list.select.html":{"ref":"case/list/list.select.html","tf":0.009433962264150943},"case/loader/lazy_loader.html":{"ref":"case/loader/lazy_loader.html","tf":0.01694915254237288},"case/loader/list_loader.html":{"ref":"case/loader/list_loader.html","tf":0.010752688172043012},"case/loader/sort_list.html":{"ref":"case/loader/sort_list.html","tf":0.010752688172043012},"case/trigger/editor_trigger.html":{"ref":"case/trigger/editor_trigger.html","tf":0.02},"case/trigger/text_trigger.html":{"ref":"case/trigger/text_trigger.html","tf":0.05263157894736842},"case/tree/simple_tree.html":{"ref":"case/tree/simple_tree.html","tf":0.022222222222222223},"case/tree/level_tree.html":{"ref":"case/tree/level_tree.html","tf":0.017857142857142856},"detailed/combo/single_tree_combo.html":{"ref":"detailed/combo/single_tree_combo.html","tf":0.01694915254237288},"detailed/combo/multilayer_single_tree_combo.html":{"ref":"detailed/combo/multilayer_single_tree_combo.html","tf":0.018867924528301886},"detailed/combo/select_tree_combo.html":{"ref":"detailed/combo/select_tree_combo.html","tf":0.02040816326530612},"detailed/combo/multilayer_select_tree_combo.html":{"ref":"detailed/combo/multilayer_select_tree_combo.html","tf":0.02040816326530612}}},"全":{"docs":{},"选":{"docs":{"case/list/list.select.html":{"ref":"case/list/list.select.html","tf":0.009433962264150943}}}},"计":{"docs":{},"数":{"docs":{"case/pager/all_count_pager.html":{"ref":"case/pager/all_count_pager.html","tf":0.014705882352941176}}}},"页":{"docs":{},"码":{"docs":{},"是":{"docs":{},"否":{"docs":{},"可":{"docs":{},"见":{"docs":{"case/pager/all_count_pager.html":{"ref":"case/pager/all_count_pager.html","tf":0.014705882352941176}}}}}}}},"横":{"docs":{},"向":{"docs":{},"分":{"docs":{},"页":{"docs":{},"键":{"docs":{},"可":{"docs":{},"见":{"docs":{"case/pager/direction_pager.html":{"ref":"case/pager/direction_pager.html","tf":0.00819672131147541}}}}}}}}},"日":{"docs":{},"期":{"docs":{"case/calendar.html":{"ref":"case/calendar.html","tf":0.013888888888888888}}}},"颜":{"docs":{},"色":{"docs":{},"值":{"docs":{"case/color_chooser.html":{"ref":"case/color_chooser.html","tf":0.038461538461538464},"case/color_chooser_popup.html":{"ref":"case/color_chooser_popup.html","tf":0.029411764705882353}}}}},"储":{"docs":{},"存":{"docs":{},"的":{"docs":{},"颜":{"docs":{},"色":{"docs":{},"值":{"docs":{"case/color_chooser_popup.html":{"ref":"case/color_chooser_popup.html","tf":0.029411764705882353}}}}}}}},"数":{"docs":{},"值":{"docs":{},"区":{"docs":{},"间":{"docs":{},"的":{"docs":{},"t":{"docs":{},"i":{"docs":{},"p":{"docs":{},"提":{"docs":{},"示":{"docs":{"detailed/numeric_interval.html":{"ref":"detailed/numeric_interval.html","tf":0.017241379310344827}}}}}}}}}}}}},"t":{"docs":{},"i":{"docs":{},"p":{"docs":{},"可":{"docs":{},"见":{"docs":{"core/pane.html":{"ref":"core/pane.html","tf":0.0196078431372549}}}}}}},"定":{"docs":{},"的":{"docs":{},"年":{"docs":{},"份":{"docs":{"case/calendar.html":{"ref":"case/calendar.html","tf":0.013888888888888888}}}},"日":{"docs":{},"期":{"docs":{"case/calendar.html":{"ref":"case/calendar.html","tf":0.013888888888888888}}}},"月":{"docs":{},"份":{"docs":{"case/calendar.html":{"ref":"case/calendar.html","tf":0.013888888888888888}}}}}}},"说":{"docs":{},"明":{"docs":{"core/layout/vertical.html":{"ref":"core/layout/vertical.html","tf":0.01282051282051282},"core/layout/horizontal.html":{"ref":"core/layout/horizontal.html","tf":0.010752688172043012},"core/layout/htape.html":{"ref":"core/layout/htape.html","tf":0.008},"core/layout/vtape.html":{"ref":"core/layout/vtape.html","tf":0.008},"core/layout/center_adapt.html":{"ref":"core/layout/center_adapt.html","tf":0.011764705882352941},"core/layout/vertical_adapt.html":{"ref":"core/layout/vertical_adapt.html","tf":0.011494252873563218},"core/layout/left_right_vertical_adapt.html":{"ref":"core/layout/left_right_vertical_adapt.html","tf":0.01098901098901099},"core/layout/flow.html":{"ref":"core/layout/flow.html","tf":0.007692307692307693},"core/layout/center.html":{"ref":"core/layout/center.html","tf":0.012658227848101266},"core/layout/horizontal_adapt.html":{"ref":"core/layout/horizontal_adapt.html","tf":0.010869565217391304},"core/layout/horizontal_auto.html":{"ref":"core/layout/horizontal_auto.html","tf":0.012345679012345678},"core/layout/horizontal_float.html":{"ref":"core/layout/horizontal_float.html","tf":0.013888888888888888},"core/layout/float_center.html":{"ref":"core/layout/float_center.html","tf":0.012658227848101266},"core/layout/border.html":{"ref":"core/layout/border.html","tf":0.012987012987012988},"core/layout/grid.html":{"ref":"core/layout/grid.html","tf":0.008928571428571428},"core/layout/table.html":{"ref":"core/layout/table.html","tf":0.024096385542168676},"core/layout/td.html":{"ref":"core/layout/td.html","tf":0.03571428571428571},"core/abstract/button_group.html":{"ref":"core/abstract/button_group.html","tf":0.015873015873015872},"core/abstract/button_tree.html":{"ref":"core/abstract/button_tree.html","tf":0.014925373134328358},"core/abstract/virtual_group.html":{"ref":"core/abstract/virtual_group.html","tf":0.028985507246376812},"core/abstract/custom_tree.html":{"ref":"core/abstract/custom_tree.html","tf":0.014388489208633094},"core/abstract/grid_view.html":{"ref":"core/abstract/grid_view.html","tf":0.019230769230769232},"core/abstract/collection_view.html":{"ref":"core/abstract/collection_view.html","tf":0.02127659574468085},"core/abstract/virtual_list.html":{"ref":"core/abstract/virtual_list.html","tf":0.025},"core/combination/bi.combo.html":{"ref":"core/combination/bi.combo.html","tf":0.014423076923076924},"core/combination/bi.expander.html":{"ref":"core/combination/bi.expander.html","tf":0.016483516483516484},"core/combination/group_combo.html":{"ref":"core/combination/group_combo.html","tf":0.015748031496062992},"core/combination/loader.html":{"ref":"core/combination/loader.html","tf":0.012578616352201259},"core/combination/navigation.html":{"ref":"core/combination/navigation.html","tf":0.014388489208633094},"core/combination/searcher.html":{"ref":"core/combination/searcher.html","tf":0.018433179723502304},"core/combination/switcher.html":{"ref":"core/combination/switcher.html","tf":0.01875},"core/combination/tab.html":{"ref":"core/combination/tab.html","tf":0.0136986301369863},"core/layer/layer_float_box.html":{"ref":"core/layer/layer_float_box.html","tf":0.037037037037037035},"core/layer/layer_popup.html":{"ref":"core/layer/layer_popup.html","tf":0.011764705882352941},"core/layer/layer_searcher.html":{"ref":"core/layer/layer_searcher.html","tf":0.018518518518518517},"core/widget.html":{"ref":"core/widget.html","tf":0.015306122448979591},"core/single.html":{"ref":"core/single.html","tf":0.027777777777777776},"core/basic_button.html":{"ref":"core/basic_button.html","tf":0.015873015873015872},"core/node_button.html":{"ref":"core/node_button.html","tf":0.05263157894736842},"core/pane.html":{"ref":"core/pane.html","tf":0.0392156862745098},"base/label.html":{"ref":"base/label.html","tf":0.020134228187919462},"base/bubble.html":{"ref":"base/bubble.html","tf":0.046511627906976744},"base/toast.html":{"ref":"base/toast.html","tf":0.041666666666666664},"base/message.html":{"ref":"base/message.html","tf":0.02127659574468085},"base/button/button.html":{"ref":"base/button/button.html","tf":0.017045454545454544},"base/button/text_button.html":{"ref":"base/button/text_button.html","tf":0.02830188679245283},"base/button/icon_button.html":{"ref":"base/button/icon_button.html","tf":0.05128205128205128},"base/button/image_button.html":{"ref":"base/button/image_button.html","tf":0.029850746268656716},"base/editor/editor.html":{"ref":"base/editor/editor.html","tf":0.016216216216216217},"base/editor/code_editor.html":{"ref":"base/editor/code_editor.html","tf":0.02531645569620253},"base/editor/multifile_editor.html":{"ref":"base/editor/multifile_editor.html","tf":0.046153846153846156},"base/editor/textarea_editor.html":{"ref":"base/editor/textarea_editor.html","tf":0.043478260869565216},"base/editor/formula_editor.html":{"ref":"base/editor/formula_editor.html","tf":0.020202020202020204},"base/table/table_view.html":{"ref":"base/table/table_view.html","tf":0.018867924528301886},"base/table/grid_table.html":{"ref":"base/table/grid_table.html","tf":0.017543859649122806},"base/table/collection_table.html":{"ref":"base/table/collection_table.html","tf":0.013071895424836602},"base/table/resizable_table.html":{"ref":"base/table/resizable_table.html","tf":0.0125},"base/pager.html":{"ref":"base/pager.html","tf":0.02},"base/svg.html":{"ref":"base/svg.html","tf":0.011235955056179775},"base/canvas.html":{"ref":"base/canvas.html","tf":0.016666666666666666},"case/button/multi_select_item.html":{"ref":"case/button/multi_select_item.html","tf":0.03508771929824561},"case/button/single_select_item.html":{"ref":"case/button/single_select_item.html","tf":0.03225806451612903},"case/button/single_select_radio_item.html":{"ref":"case/button/single_select_radio_item.html","tf":0.03225806451612903},"case/editor/shelter_editor.html":{"ref":"case/editor/shelter_editor.html","tf":0.015544041450777202},"case/editor/sign_editor.html":{"ref":"case/editor/sign_editor.html","tf":0.016483516483516484},"case/editor/sign_initial_editor.html":{"ref":"case/editor/sign_initial_editor.html","tf":0.015463917525773196},"case/editor/state_editor.html":{"ref":"case/editor/state_editor.html","tf":0.017241379310344827},"case/layer/multi_popup_layer.html":{"ref":"case/layer/multi_popup_layer.html","tf":0.04},"case/layer/layer_panel.html":{"ref":"case/layer/layer_panel.html","tf":0.03225806451612903},"case/layer/pane_list.html":{"ref":"case/layer/pane_list.html","tf":0.013605442176870748},"case/layer/panel.html":{"ref":"case/layer/panel.html","tf":0.031746031746031744},"case/list/list.select.html":{"ref":"case/list/list.select.html","tf":0.018867924528301886},"case/loader/lazy_loader.html":{"ref":"case/loader/lazy_loader.html","tf":0.01694915254237288},"case/loader/list_loader.html":{"ref":"case/loader/list_loader.html","tf":0.021505376344086023},"case/loader/sort_list.html":{"ref":"case/loader/sort_list.html","tf":0.021505376344086023},"case/trigger/editor_trigger.html":{"ref":"case/trigger/editor_trigger.html","tf":0.04},"case/trigger/text_trigger.html":{"ref":"case/trigger/text_trigger.html","tf":0.05263157894736842},"case/combo/bubble_combo.html":{"ref":"case/combo/bubble_combo.html","tf":0.011560693641618497},"case/combo/icon_combo.html":{"ref":"case/combo/icon_combo.html","tf":0.015503875968992248},"case/combo/static_combo.html":{"ref":"case/combo/static_combo.html","tf":0.025},"case/combo/text_value_combo.html":{"ref":"case/combo/text_value_combo.html","tf":0.02702702702702703},"case/combo/text_value_downlist_combo.html":{"ref":"case/combo/text_value_downlist_combo.html","tf":0.02702702702702703},"case/tree/branch_tree.html":{"ref":"case/tree/branch_tree.html","tf":0.04},"case/tree/handstand_branch_tree.html":{"ref":"case/tree/handstand_branch_tree.html","tf":0.038461538461538464},"case/tree/display_tree.html":{"ref":"case/tree/display_tree.html","tf":0.030303030303030304},"case/tree/simple_tree.html":{"ref":"case/tree/simple_tree.html","tf":0.044444444444444446},"case/tree/level_tree.html":{"ref":"case/tree/level_tree.html","tf":0.03571428571428571},"case/tree/branch_relation.html":{"ref":"case/tree/branch_relation.html","tf":0.04081632653061224},"case/table/adaptive_table.html":{"ref":"case/table/adaptive_table.html","tf":0.012121212121212121},"case/table/tree_table.html":{"ref":"case/table/tree_table.html","tf":0.01020408163265306},"case/table/layer_tree_table.html":{"ref":"case/table/layer_tree_table.html","tf":0.01020408163265306},"case/pager/all_count_pager.html":{"ref":"case/pager/all_count_pager.html","tf":0.029411764705882353},"case/pager/direction_pager.html":{"ref":"case/pager/direction_pager.html","tf":0.01639344262295082},"case/calendar.html":{"ref":"case/calendar.html","tf":0.027777777777777776},"case/clipboard.html":{"ref":"case/clipboard.html","tf":0.03125},"case/complex_canvas.html":{"ref":"case/complex_canvas.html","tf":0.020833333333333332},"case/color_chooser.html":{"ref":"case/color_chooser.html","tf":0.038461538461538464},"case/color_chooser_popup.html":{"ref":"case/color_chooser_popup.html","tf":0.08823529411764706},"case/segment.html":{"ref":"case/segment.html","tf":0.009345794392523364},"detailed/bi.button/tooltip.html":{"ref":"detailed/bi.button/tooltip.html","tf":0.011363636363636364},"detailed/bi.button/items.html":{"ref":"detailed/bi.button/items.html","tf":0.010638297872340425},"detailed/bi.button/node.html":{"ref":"detailed/bi.button/node.html","tf":0.009259259259259259},"detailed/bi.button/segment.html":{"ref":"detailed/bi.button/segment.html","tf":0.009345794392523364},"detailed/tree/bi.multi_tree_combo.html":{"ref":"detailed/tree/bi.multi_tree_combo.html","tf":0.03260869565217391},"detailed/tree/bi.switch_tree.html":{"ref":"detailed/tree/bi.switch_tree.html","tf":0.02631578947368421},"detailed/table/bi.preview_table.html":{"ref":"detailed/table/bi.preview_table.html","tf":0.013513513513513514},"detailed/table/bi.responsive_table.html":{"ref":"detailed/table/bi.responsive_table.html","tf":0.010526315789473684},"detailed/table/bi.excel_table.html":{"ref":"detailed/table/bi.excel_table.html","tf":0.011049723756906077},"detailed/table/bi.page_table.html":{"ref":"detailed/table/bi.page_table.html","tf":0.009302325581395349},"detailed/text_input/bi.text_editor.html":{"ref":"detailed/text_input/bi.text_editor.html","tf":0.010309278350515464},"detailed/text_input/bi.search_editor.html":{"ref":"detailed/text_input/bi.search_editor.html","tf":0.020202020202020204},"detailed/text_input/bi.clear_editor.html":{"ref":"detailed/text_input/bi.clear_editor.html","tf":0.0196078431372549},"detailed/text_input/finetuning_number_editor.html":{"ref":"detailed/text_input/finetuning_number_editor.html","tf":0.07407407407407407},"detailed/year_combo.html":{"ref":"detailed/year_combo.html","tf":0.05},"detailed/month_combo.html":{"ref":"detailed/month_combo.html","tf":0.07142857142857142},"detailed/quarter_combo.html":{"ref":"detailed/quarter_combo.html","tf":0.07142857142857142},"detailed/down_list_combo.html":{"ref":"detailed/down_list_combo.html","tf":0.013157894736842105},"detailed/numeric_interval.html":{"ref":"detailed/numeric_interval.html","tf":0.05172413793103448},"detailed/multi_select_combo.html":{"ref":"detailed/multi_select_combo.html","tf":0.04},"detailed/date/date_combo.html":{"ref":"detailed/date/date_combo.html","tf":0.058823529411764705},"detailed/date/date_pane_widget.html":{"ref":"detailed/date/date_pane_widget.html","tf":0.02702702702702703},"detailed/date/year_month_combo.html":{"ref":"detailed/date/year_month_combo.html","tf":0.058823529411764705},"detailed/date/year_quarter_combo.html":{"ref":"detailed/date/year_quarter_combo.html","tf":0.06451612903225806},"detailed/date/custom_date_time.html":{"ref":"detailed/date/custom_date_time.html","tf":0.09090909090909091},"detailed/combo/single_tree_combo.html":{"ref":"detailed/combo/single_tree_combo.html","tf":0.05084745762711865},"detailed/combo/multilayer_single_tree_combo.html":{"ref":"detailed/combo/multilayer_single_tree_combo.html","tf":0.03773584905660377},"detailed/combo/select_tree_combo.html":{"ref":"detailed/combo/select_tree_combo.html","tf":0.04081632653061224},"detailed/combo/multilayer_select_tree_combo.html":{"ref":"detailed/combo/multilayer_select_tree_combo.html","tf":0.04081632653061224},"detailed/path/path_chooser.html":{"ref":"detailed/path/path_chooser.html","tf":0.019230769230769232},"detailed/path/direction_path_chooser.html":{"ref":"detailed/path/direction_path_chooser.html","tf":0.02},"detailed/relation_view.html":{"ref":"detailed/relation_view.html","tf":0.019230769230769232},"detailed/dialog.html":{"ref":"detailed/dialog.html","tf":0.043478260869565216},"detailed/file_manager.html":{"ref":"detailed/file_manager.html","tf":0.023255813953488372},"detailed/slider.html":{"ref":"detailed/slider.html","tf":0.058823529411764705}}}},"默":{"docs":{},"认":{"docs":{},"值":{"docs":{"core/layout/vertical.html":{"ref":"core/layout/vertical.html","tf":0.01282051282051282},"core/layout/horizontal.html":{"ref":"core/layout/horizontal.html","tf":0.010752688172043012},"core/layout/htape.html":{"ref":"core/layout/htape.html","tf":0.008},"core/layout/vtape.html":{"ref":"core/layout/vtape.html","tf":0.008},"core/layout/center_adapt.html":{"ref":"core/layout/center_adapt.html","tf":0.011764705882352941},"core/layout/vertical_adapt.html":{"ref":"core/layout/vertical_adapt.html","tf":0.011494252873563218},"core/layout/left_right_vertical_adapt.html":{"ref":"core/layout/left_right_vertical_adapt.html","tf":0.01098901098901099},"core/layout/flow.html":{"ref":"core/layout/flow.html","tf":0.007692307692307693},"core/layout/center.html":{"ref":"core/layout/center.html","tf":0.012658227848101266},"core/layout/horizontal_adapt.html":{"ref":"core/layout/horizontal_adapt.html","tf":0.010869565217391304},"core/layout/horizontal_auto.html":{"ref":"core/layout/horizontal_auto.html","tf":0.012345679012345678},"core/layout/horizontal_float.html":{"ref":"core/layout/horizontal_float.html","tf":0.013888888888888888},"core/layout/float_center.html":{"ref":"core/layout/float_center.html","tf":0.012658227848101266},"core/layout/border.html":{"ref":"core/layout/border.html","tf":0.012987012987012988},"core/layout/grid.html":{"ref":"core/layout/grid.html","tf":0.008928571428571428},"core/layout/table.html":{"ref":"core/layout/table.html","tf":0.012048192771084338},"core/layout/td.html":{"ref":"core/layout/td.html","tf":0.017857142857142856},"core/abstract/button_group.html":{"ref":"core/abstract/button_group.html","tf":0.007936507936507936},"core/abstract/virtual_group.html":{"ref":"core/abstract/virtual_group.html","tf":0.014492753623188406},"core/abstract/custom_tree.html":{"ref":"core/abstract/custom_tree.html","tf":0.007194244604316547},"core/abstract/grid_view.html":{"ref":"core/abstract/grid_view.html","tf":0.00641025641025641},"core/abstract/collection_view.html":{"ref":"core/abstract/collection_view.html","tf":0.0070921985815602835},"core/abstract/virtual_list.html":{"ref":"core/abstract/virtual_list.html","tf":0.0125},"core/combination/bi.combo.html":{"ref":"core/combination/bi.combo.html","tf":0.004807692307692308},"core/combination/bi.expander.html":{"ref":"core/combination/bi.expander.html","tf":0.005494505494505495},"core/combination/group_combo.html":{"ref":"core/combination/group_combo.html","tf":0.007874015748031496},"core/combination/loader.html":{"ref":"core/combination/loader.html","tf":0.006289308176100629},"core/combination/navigation.html":{"ref":"core/combination/navigation.html","tf":0.007194244604316547},"core/combination/searcher.html":{"ref":"core/combination/searcher.html","tf":0.004608294930875576},"core/combination/switcher.html":{"ref":"core/combination/switcher.html","tf":0.00625},"core/combination/tab.html":{"ref":"core/combination/tab.html","tf":0.00684931506849315},"core/layer/layer_float_box.html":{"ref":"core/layer/layer_float_box.html","tf":0.012345679012345678},"core/layer/layer_popup.html":{"ref":"core/layer/layer_popup.html","tf":0.0058823529411764705},"core/layer/layer_searcher.html":{"ref":"core/layer/layer_searcher.html","tf":0.009259259259259259},"core/widget.html":{"ref":"core/widget.html","tf":0.00510204081632653},"core/single.html":{"ref":"core/single.html","tf":0.013888888888888888},"core/basic_button.html":{"ref":"core/basic_button.html","tf":0.007936507936507936},"core/node_button.html":{"ref":"core/node_button.html","tf":0.02631578947368421},"core/pane.html":{"ref":"core/pane.html","tf":0.0196078431372549},"base/label.html":{"ref":"base/label.html","tf":0.013422818791946308},"base/bubble.html":{"ref":"base/bubble.html","tf":0.023255813953488372},"base/toast.html":{"ref":"base/toast.html","tf":0.020833333333333332},"base/button/button.html":{"ref":"base/button/button.html","tf":0.011363636363636364},"base/button/text_button.html":{"ref":"base/button/text_button.html","tf":0.018867924528301886},"base/button/icon_button.html":{"ref":"base/button/icon_button.html","tf":0.02564102564102564},"base/button/image_button.html":{"ref":"base/button/image_button.html","tf":0.014925373134328358},"base/editor/editor.html":{"ref":"base/editor/editor.html","tf":0.005405405405405406},"base/editor/code_editor.html":{"ref":"base/editor/code_editor.html","tf":0.012658227848101266},"base/editor/multifile_editor.html":{"ref":"base/editor/multifile_editor.html","tf":0.015384615384615385},"base/editor/textarea_editor.html":{"ref":"base/editor/textarea_editor.html","tf":0.021739130434782608},"base/editor/formula_editor.html":{"ref":"base/editor/formula_editor.html","tf":0.010101010101010102},"base/table/table_view.html":{"ref":"base/table/table_view.html","tf":0.006289308176100629},"base/table/grid_table.html":{"ref":"base/table/grid_table.html","tf":0.008771929824561403},"base/table/collection_table.html":{"ref":"base/table/collection_table.html","tf":0.006535947712418301},"base/table/resizable_table.html":{"ref":"base/table/resizable_table.html","tf":0.00625},"base/pager.html":{"ref":"base/pager.html","tf":0.006666666666666667},"case/button/multi_select_item.html":{"ref":"case/button/multi_select_item.html","tf":0.017543859649122806},"case/button/single_select_item.html":{"ref":"case/button/single_select_item.html","tf":0.016129032258064516},"case/button/single_select_radio_item.html":{"ref":"case/button/single_select_radio_item.html","tf":0.016129032258064516},"case/editor/shelter_editor.html":{"ref":"case/editor/shelter_editor.html","tf":0.0051813471502590676},"case/editor/sign_editor.html":{"ref":"case/editor/sign_editor.html","tf":0.005494505494505495},"case/editor/sign_initial_editor.html":{"ref":"case/editor/sign_initial_editor.html","tf":0.005154639175257732},"case/editor/state_editor.html":{"ref":"case/editor/state_editor.html","tf":0.005747126436781609},"case/layer/multi_popup_layer.html":{"ref":"case/layer/multi_popup_layer.html","tf":0.04},"case/layer/layer_panel.html":{"ref":"case/layer/layer_panel.html","tf":0.010752688172043012},"case/layer/pane_list.html":{"ref":"case/layer/pane_list.html","tf":0.006802721088435374},"case/layer/panel.html":{"ref":"case/layer/panel.html","tf":0.015873015873015872},"case/list/list.select.html":{"ref":"case/list/list.select.html","tf":0.009433962264150943},"case/loader/list_loader.html":{"ref":"case/loader/list_loader.html","tf":0.010752688172043012},"case/loader/sort_list.html":{"ref":"case/loader/sort_list.html","tf":0.010752688172043012},"case/trigger/editor_trigger.html":{"ref":"case/trigger/editor_trigger.html","tf":0.02},"case/combo/bubble_combo.html":{"ref":"case/combo/bubble_combo.html","tf":0.005780346820809248},"case/combo/icon_combo.html":{"ref":"case/combo/icon_combo.html","tf":0.007751937984496124},"case/combo/static_combo.html":{"ref":"case/combo/static_combo.html","tf":0.0125},"case/combo/text_value_combo.html":{"ref":"case/combo/text_value_combo.html","tf":0.013513513513513514},"case/combo/text_value_downlist_combo.html":{"ref":"case/combo/text_value_downlist_combo.html","tf":0.013513513513513514},"case/tree/branch_tree.html":{"ref":"case/tree/branch_tree.html","tf":0.02},"case/tree/handstand_branch_tree.html":{"ref":"case/tree/handstand_branch_tree.html","tf":0.019230769230769232},"case/tree/simple_tree.html":{"ref":"case/tree/simple_tree.html","tf":0.022222222222222223},"case/tree/level_tree.html":{"ref":"case/tree/level_tree.html","tf":0.017857142857142856},"case/tree/branch_relation.html":{"ref":"case/tree/branch_relation.html","tf":0.02040816326530612},"case/table/adaptive_table.html":{"ref":"case/table/adaptive_table.html","tf":0.006060606060606061},"case/table/tree_table.html":{"ref":"case/table/tree_table.html","tf":0.00510204081632653},"case/table/layer_tree_table.html":{"ref":"case/table/layer_tree_table.html","tf":0.00510204081632653},"case/pager/all_count_pager.html":{"ref":"case/pager/all_count_pager.html","tf":0.014705882352941176},"case/pager/direction_pager.html":{"ref":"case/pager/direction_pager.html","tf":0.00819672131147541},"case/calendar.html":{"ref":"case/calendar.html","tf":0.013888888888888888},"case/clipboard.html":{"ref":"case/clipboard.html","tf":0.03125},"case/color_chooser_popup.html":{"ref":"case/color_chooser_popup.html","tf":0.029411764705882353},"case/segment.html":{"ref":"case/segment.html","tf":0.009345794392523364},"detailed/bi.button/tooltip.html":{"ref":"detailed/bi.button/tooltip.html","tf":0.011363636363636364},"detailed/bi.button/items.html":{"ref":"detailed/bi.button/items.html","tf":0.010638297872340425},"detailed/bi.button/node.html":{"ref":"detailed/bi.button/node.html","tf":0.009259259259259259},"detailed/bi.button/segment.html":{"ref":"detailed/bi.button/segment.html","tf":0.009345794392523364},"detailed/tree/bi.multi_tree_combo.html":{"ref":"detailed/tree/bi.multi_tree_combo.html","tf":0.010869565217391304},"detailed/tree/bi.switch_tree.html":{"ref":"detailed/tree/bi.switch_tree.html","tf":0.013157894736842105},"detailed/table/bi.preview_table.html":{"ref":"detailed/table/bi.preview_table.html","tf":0.006756756756756757},"detailed/table/bi.responsive_table.html":{"ref":"detailed/table/bi.responsive_table.html","tf":0.005263157894736842},"detailed/table/bi.excel_table.html":{"ref":"detailed/table/bi.excel_table.html","tf":0.0055248618784530384},"detailed/table/bi.page_table.html":{"ref":"detailed/table/bi.page_table.html","tf":0.004651162790697674},"detailed/text_input/bi.text_editor.html":{"ref":"detailed/text_input/bi.text_editor.html","tf":0.010309278350515464},"detailed/text_input/bi.search_editor.html":{"ref":"detailed/text_input/bi.search_editor.html","tf":0.010101010101010102},"detailed/text_input/bi.clear_editor.html":{"ref":"detailed/text_input/bi.clear_editor.html","tf":0.00980392156862745},"detailed/text_input/finetuning_number_editor.html":{"ref":"detailed/text_input/finetuning_number_editor.html","tf":0.037037037037037035},"detailed/year_combo.html":{"ref":"detailed/year_combo.html","tf":0.025},"detailed/month_combo.html":{"ref":"detailed/month_combo.html","tf":0.03571428571428571},"detailed/quarter_combo.html":{"ref":"detailed/quarter_combo.html","tf":0.03571428571428571},"detailed/down_list_combo.html":{"ref":"detailed/down_list_combo.html","tf":0.006578947368421052},"detailed/numeric_interval.html":{"ref":"detailed/numeric_interval.html","tf":0.017241379310344827},"detailed/date/date_combo.html":{"ref":"detailed/date/date_combo.html","tf":0.058823529411764705},"detailed/date/date_pane_widget.html":{"ref":"detailed/date/date_pane_widget.html","tf":0.02702702702702703},"detailed/date/year_month_combo.html":{"ref":"detailed/date/year_month_combo.html","tf":0.029411764705882353},"detailed/date/year_quarter_combo.html":{"ref":"detailed/date/year_quarter_combo.html","tf":0.03225806451612903},"detailed/date/custom_date_time.html":{"ref":"detailed/date/custom_date_time.html","tf":0.045454545454545456},"detailed/combo/single_tree_combo.html":{"ref":"detailed/combo/single_tree_combo.html","tf":0.01694915254237288},"detailed/combo/multilayer_single_tree_combo.html":{"ref":"detailed/combo/multilayer_single_tree_combo.html","tf":0.018867924528301886},"detailed/combo/select_tree_combo.html":{"ref":"detailed/combo/select_tree_combo.html","tf":0.02040816326530612},"detailed/combo/multilayer_select_tree_combo.html":{"ref":"detailed/combo/multilayer_select_tree_combo.html","tf":0.02040816326530612},"detailed/path/path_chooser.html":{"ref":"detailed/path/path_chooser.html","tf":0.019230769230769232},"detailed/path/direction_path_chooser.html":{"ref":"detailed/path/direction_path_chooser.html","tf":0.02},"detailed/relation_view.html":{"ref":"detailed/relation_view.html","tf":0.019230769230769232},"detailed/dialog.html":{"ref":"detailed/dialog.html","tf":0.043478260869565216},"detailed/slider.html":{"ref":"detailed/slider.html","tf":0.029411764705882353}}},"r":{"docs":{},"o":{"docs":{},"w":{"1":{"docs":{"base/table/table_view.html":{"ref":"base/table/table_view.html","tf":0.006289308176100629},"base/table/collection_table.html":{"ref":"base/table/collection_table.html","tf":0.006535947712418301},"case/table/adaptive_table.html":{"ref":"case/table/adaptive_table.html","tf":0.006060606060606061},"case/table/tree_table.html":{"ref":"case/table/tree_table.html","tf":0.00510204081632653},"case/table/layer_tree_table.html":{"ref":"case/table/layer_tree_table.html","tf":0.00510204081632653},"detailed/table/bi.excel_table.html":{"ref":"detailed/table/bi.excel_table.html","tf":0.0055248618784530384},"detailed/table/bi.page_table.html":{"ref":"detailed/table/bi.page_table.html","tf":0.004651162790697674}}},"docs":{}}}},"相":{"docs":{},"等":{"docs":{},"时":{"docs":{},"合":{"docs":{},"并":{"docs":{"base/table/table_view.html":{"ref":"base/table/table_view.html","tf":0.006289308176100629},"base/table/collection_table.html":{"ref":"base/table/collection_table.html","tf":0.006535947712418301},"case/table/adaptive_table.html":{"ref":"case/table/adaptive_table.html","tf":0.006060606060606061},"case/table/tree_table.html":{"ref":"case/table/tree_table.html","tf":0.00510204081632653},"case/table/layer_tree_table.html":{"ref":"case/table/layer_tree_table.html","tf":0.00510204081632653},"detailed/table/bi.responsive_table.html":{"ref":"detailed/table/bi.responsive_table.html","tf":0.005263157894736842},"detailed/table/bi.excel_table.html":{"ref":"detailed/table/bi.excel_table.html","tf":0.0055248618784530384},"detailed/table/bi.page_table.html":{"ref":"detailed/table/bi.page_table.html","tf":0.004651162790697674}}}}}}}}},"]":{"docs":{"core/layout/horizontal.html":{"ref":"core/layout/horizontal.html","tf":0.010752688172043012},"core/layout/htape.html":{"ref":"core/layout/htape.html","tf":0.008},"core/layout/vtape.html":{"ref":"core/layout/vtape.html","tf":0.008},"core/layout/center_adapt.html":{"ref":"core/layout/center_adapt.html","tf":0.011764705882352941},"core/layout/vertical_adapt.html":{"ref":"core/layout/vertical_adapt.html","tf":0.011494252873563218},"core/layout/left_right_vertical_adapt.html":{"ref":"core/layout/left_right_vertical_adapt.html","tf":0.01098901098901099},"core/layout/horizontal_adapt.html":{"ref":"core/layout/horizontal_adapt.html","tf":0.010869565217391304},"core/layout/horizontal_float.html":{"ref":"core/layout/horizontal_float.html","tf":0.013888888888888888},"core/layout/border.html":{"ref":"core/layout/border.html","tf":0.012987012987012988},"core/abstract/button_group.html":{"ref":"core/abstract/button_group.html","tf":0.007936507936507936},"core/abstract/virtual_group.html":{"ref":"core/abstract/virtual_group.html","tf":0.014492753623188406},"core/abstract/custom_tree.html":{"ref":"core/abstract/custom_tree.html","tf":0.007194244604316547},"core/abstract/grid_view.html":{"ref":"core/abstract/grid_view.html","tf":0.00641025641025641},"core/abstract/collection_view.html":{"ref":"core/abstract/collection_view.html","tf":0.0070921985815602835},"core/abstract/virtual_list.html":{"ref":"core/abstract/virtual_list.html","tf":0.0125},"core/combination/group_combo.html":{"ref":"core/combination/group_combo.html","tf":0.007874015748031496},"base/button/button.html":{"ref":"base/button/button.html","tf":0.005681818181818182},"base/table/collection_table.html":{"ref":"base/table/collection_table.html","tf":0.006535947712418301},"base/table/resizable_table.html":{"ref":"base/table/resizable_table.html","tf":0.00625},"case/layer/pane_list.html":{"ref":"case/layer/pane_list.html","tf":0.006802721088435374},"case/layer/panel.html":{"ref":"case/layer/panel.html","tf":0.015873015873015872},"case/combo/static_combo.html":{"ref":"case/combo/static_combo.html","tf":0.0125},"case/combo/text_value_downlist_combo.html":{"ref":"case/combo/text_value_downlist_combo.html","tf":0.013513513513513514},"case/segment.html":{"ref":"case/segment.html","tf":0.009345794392523364},"detailed/bi.button/tooltip.html":{"ref":"detailed/bi.button/tooltip.html","tf":0.011363636363636364},"detailed/bi.button/items.html":{"ref":"detailed/bi.button/items.html","tf":0.010638297872340425},"detailed/bi.button/node.html":{"ref":"detailed/bi.button/node.html","tf":0.009259259259259259},"detailed/bi.button/segment.html":{"ref":"detailed/bi.button/segment.html","tf":0.009345794392523364},"detailed/table/bi.excel_table.html":{"ref":"detailed/table/bi.excel_table.html","tf":0.0055248618784530384},"detailed/down_list_combo.html":{"ref":"detailed/down_list_combo.html","tf":0.006578947368421052},"detailed/path/path_chooser.html":{"ref":"detailed/path/path_chooser.html","tf":0.019230769230769232},"detailed/path/direction_path_chooser.html":{"ref":"detailed/path/direction_path_chooser.html","tf":0.02}}},"w":{"docs":{},"i":{"docs":{},"d":{"docs":{},"t":{"docs":{},"h":{"docs":{"core/abstract/grid_view.html":{"ref":"core/abstract/grid_view.html","tf":0.01282051282051282},"core/abstract/collection_view.html":{"ref":"core/abstract/collection_view.html","tf":0.0070921985815602835},"core/combination/bi.combo.html":{"ref":"core/combination/bi.combo.html","tf":0.004807692307692308},"core/layer/layer_float_box.html":{"ref":"core/layer/layer_float_box.html","tf":0.012345679012345678},"core/layer/layer_popup.html":{"ref":"core/layer/layer_popup.html","tf":0.0058823529411764705},"core/widget.html":{"ref":"core/widget.html","tf":0.00510204081632653},"base/button/button.html":{"ref":"base/button/button.html","tf":0.005681818181818182},"base/table/grid_table.html":{"ref":"base/table/grid_table.html","tf":0.008771929824561403},"base/table/collection_table.html":{"ref":"base/table/collection_table.html","tf":0.006535947712418301},"case/combo/icon_combo.html":{"ref":"case/combo/icon_combo.html","tf":0.007751937984496124},"case/segment.html":{"ref":"case/segment.html","tf":0.009345794392523364},"detailed/bi.button/tooltip.html":{"ref":"detailed/bi.button/tooltip.html","tf":0.011363636363636364},"detailed/bi.button/items.html":{"ref":"detailed/bi.button/items.html","tf":0.010638297872340425},"detailed/bi.button/node.html":{"ref":"detailed/bi.button/node.html","tf":0.009259259259259259},"detailed/bi.button/segment.html":{"ref":"detailed/bi.button/segment.html","tf":0.009345794392523364},"detailed/tree/bi.multi_tree_combo.html":{"ref":"detailed/tree/bi.multi_tree_combo.html","tf":0.010869565217391304},"detailed/text_input/bi.text_editor.html":{"ref":"detailed/text_input/bi.text_editor.html","tf":0.010309278350515464},"detailed/text_input/bi.search_editor.html":{"ref":"detailed/text_input/bi.search_editor.html","tf":0.010101010101010102},"detailed/text_input/bi.clear_editor.html":{"ref":"detailed/text_input/bi.clear_editor.html","tf":0.00980392156862745}},":":{"docs":{"core/layout/horizontal.html":{"ref":"core/layout/horizontal.html","tf":0.021505376344086023},"core/layout/htape.html":{"ref":"core/layout/htape.html","tf":0.024},"core/layout/vertical_adapt.html":{"ref":"core/layout/vertical_adapt.html","tf":0.022988505747126436},"core/layout/left_right_vertical_adapt.html":{"ref":"core/layout/left_right_vertical_adapt.html","tf":0.02197802197802198},"core/layout/horizontal_adapt.html":{"ref":"core/layout/horizontal_adapt.html","tf":0.010869565217391304},"core/layout/horizontal_auto.html":{"ref":"core/layout/horizontal_auto.html","tf":0.024691358024691357},"core/layout/horizontal_float.html":{"ref":"core/layout/horizontal_float.html","tf":0.013888888888888888},"core/layout/border.html":{"ref":"core/layout/border.html","tf":0.025974025974025976},"core/abstract/virtual_group.html":{"ref":"core/abstract/virtual_group.html","tf":0.014492753623188406},"core/abstract/grid_view.html":{"ref":"core/abstract/grid_view.html","tf":0.00641025641025641},"core/abstract/collection_view.html":{"ref":"core/abstract/collection_view.html","tf":0.014184397163120567},"core/combination/tab.html":{"ref":"core/combination/tab.html","tf":0.0136986301369863},"core/layer/layer_float_box.html":{"ref":"core/layer/layer_float_box.html","tf":0.012345679012345678},"base/button/icon_button.html":{"ref":"base/button/icon_button.html","tf":0.02564102564102564},"base/button/image_button.html":{"ref":"base/button/image_button.html","tf":0.014925373134328358},"base/editor/editor.html":{"ref":"base/editor/editor.html","tf":0.005405405405405406},"base/editor/code_editor.html":{"ref":"base/editor/code_editor.html","tf":0.012658227848101266},"base/editor/multifile_editor.html":{"ref":"base/editor/multifile_editor.html","tf":0.015384615384615385},"base/editor/textarea_editor.html":{"ref":"base/editor/textarea_editor.html","tf":0.021739130434782608},"base/editor/formula_editor.html":{"ref":"base/editor/formula_editor.html","tf":0.010101010101010102},"base/table/grid_table.html":{"ref":"base/table/grid_table.html","tf":0.008771929824561403},"base/svg.html":{"ref":"base/svg.html","tf":0.011235955056179775},"base/canvas.html":{"ref":"base/canvas.html","tf":0.016666666666666666},"case/editor/shelter_editor.html":{"ref":"case/editor/shelter_editor.html","tf":0.0051813471502590676},"case/editor/sign_editor.html":{"ref":"case/editor/sign_editor.html","tf":0.005494505494505495},"case/editor/sign_initial_editor.html":{"ref":"case/editor/sign_initial_editor.html","tf":0.005154639175257732},"case/editor/state_editor.html":{"ref":"case/editor/state_editor.html","tf":0.005747126436781609},"case/layer/multi_popup_layer.html":{"ref":"case/layer/multi_popup_layer.html","tf":0.04},"case/layer/layer_panel.html":{"ref":"case/layer/layer_panel.html","tf":0.010752688172043012},"case/loader/lazy_loader.html":{"ref":"case/loader/lazy_loader.html","tf":0.01694915254237288},"case/loader/list_loader.html":{"ref":"case/loader/list_loader.html","tf":0.010752688172043012},"case/loader/sort_list.html":{"ref":"case/loader/sort_list.html","tf":0.010752688172043012},"case/combo/text_value_combo.html":{"ref":"case/combo/text_value_combo.html","tf":0.013513513513513514},"case/table/adaptive_table.html":{"ref":"case/table/adaptive_table.html","tf":0.012121212121212121},"case/table/tree_table.html":{"ref":"case/table/tree_table.html","tf":0.01020408163265306},"case/table/layer_tree_table.html":{"ref":"case/table/layer_tree_table.html","tf":0.01020408163265306},"case/clipboard.html":{"ref":"case/clipboard.html","tf":0.03125},"case/complex_canvas.html":{"ref":"case/complex_canvas.html","tf":0.020833333333333332},"case/color_chooser.html":{"ref":"case/color_chooser.html","tf":0.038461538461538464},"detailed/tree/bi.multi_tree_combo.html":{"ref":"detailed/tree/bi.multi_tree_combo.html","tf":0.010869565217391304},"detailed/table/bi.page_table.html":{"ref":"detailed/table/bi.page_table.html","tf":0.004651162790697674},"detailed/text_input/bi.text_editor.html":{"ref":"detailed/text_input/bi.text_editor.html","tf":0.010309278350515464},"detailed/text_input/bi.search_editor.html":{"ref":"detailed/text_input/bi.search_editor.html","tf":0.010101010101010102},"detailed/text_input/bi.clear_editor.html":{"ref":"detailed/text_input/bi.clear_editor.html","tf":0.00980392156862745},"detailed/text_input/finetuning_number_editor.html":{"ref":"detailed/text_input/finetuning_number_editor.html","tf":0.037037037037037035},"detailed/year_combo.html":{"ref":"detailed/year_combo.html","tf":0.025},"detailed/month_combo.html":{"ref":"detailed/month_combo.html","tf":0.03571428571428571},"detailed/quarter_combo.html":{"ref":"detailed/quarter_combo.html","tf":0.03571428571428571},"detailed/down_list_combo.html":{"ref":"detailed/down_list_combo.html","tf":0.006578947368421052},"detailed/numeric_interval.html":{"ref":"detailed/numeric_interval.html","tf":0.017241379310344827},"detailed/multi_select_combo.html":{"ref":"detailed/multi_select_combo.html","tf":0.04},"detailed/date/date_combo.html":{"ref":"detailed/date/date_combo.html","tf":0.058823529411764705},"detailed/date/date_pane_widget.html":{"ref":"detailed/date/date_pane_widget.html","tf":0.02702702702702703},"detailed/date/year_month_combo.html":{"ref":"detailed/date/year_month_combo.html","tf":0.029411764705882353},"detailed/date/year_quarter_combo.html":{"ref":"detailed/date/year_quarter_combo.html","tf":0.03225806451612903},"detailed/combo/single_tree_combo.html":{"ref":"detailed/combo/single_tree_combo.html","tf":0.01694915254237288},"detailed/combo/multilayer_single_tree_combo.html":{"ref":"detailed/combo/multilayer_single_tree_combo.html","tf":0.018867924528301886},"detailed/combo/select_tree_combo.html":{"ref":"detailed/combo/select_tree_combo.html","tf":0.02040816326530612},"detailed/combo/multilayer_select_tree_combo.html":{"ref":"detailed/combo/multilayer_select_tree_combo.html","tf":0.02040816326530612}}}}},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{"core/widget.html":{"ref":"core/widget.html","tf":10}}}}}}},"h":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"s":{"docs":{},"p":{"docs":{},"a":{"docs":{},"c":{"docs":{"base/label.html":{"ref":"base/label.html","tf":0.006711409395973154},"base/button/button.html":{"ref":"base/button/button.html","tf":0.005681818181818182},"base/button/text_button.html":{"ref":"base/button/text_button.html","tf":0.009433962264150943}},"e":{"docs":{},":":{"docs":{"core/layout/center.html":{"ref":"core/layout/center.html","tf":0.02531645569620253},"core/layout/float_center.html":{"ref":"core/layout/float_center.html","tf":0.02531645569620253}}}}}}}}}}}},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},":":{"docs":{"core/layout/border.html":{"ref":"core/layout/border.html","tf":0.012987012987012988}}}}},"i":{"docs":{},"g":{"docs":{},"h":{"docs":{},"t":{"docs":{},",":{"docs":{"base/svg.html":{"ref":"base/svg.html","tf":0.011235955056179775}}}}}}}},"a":{"docs":{},"r":{"docs":{},"n":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"t":{"docs":{},"i":{"docs":{},"t":{"docs":{},"l":{"docs":{"core/single.html":{"ref":"core/single.html","tf":0.013888888888888888},"base/label.html":{"ref":"base/label.html","tf":0.006711409395973154}}}}}}}}}}},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"m":{"docs":{},"a":{"docs":{},"r":{"docs":{},"k":{"docs":{"base/editor/editor.html":{"ref":"base/editor/editor.html","tf":0.005405405405405406},"base/editor/code_editor.html":{"ref":"base/editor/code_editor.html","tf":0.012658227848101266},"base/editor/formula_editor.html":{"ref":"base/editor/formula_editor.html","tf":0.010101010101010102},"case/editor/shelter_editor.html":{"ref":"case/editor/shelter_editor.html","tf":0.0051813471502590676},"case/editor/sign_editor.html":{"ref":"case/editor/sign_editor.html","tf":0.005494505494505495},"case/editor/sign_initial_editor.html":{"ref":"case/editor/sign_initial_editor.html","tf":0.005154639175257732},"case/editor/state_editor.html":{"ref":"case/editor/state_editor.html","tf":0.005747126436781609},"case/trigger/editor_trigger.html":{"ref":"case/trigger/editor_trigger.html","tf":0.02},"detailed/text_input/bi.text_editor.html":{"ref":"detailed/text_input/bi.text_editor.html","tf":0.010309278350515464},"detailed/text_input/bi.search_editor.html":{"ref":"detailed/text_input/bi.search_editor.html","tf":0.010101010101010102},"detailed/text_input/bi.clear_editor.html":{"ref":"detailed/text_input/bi.clear_editor.html","tf":0.00980392156862745}},":":{"docs":{"case/editor/shelter_editor.html":{"ref":"case/editor/shelter_editor.html","tf":0.0051813471502590676}},"'":{"docs":{},"请":{"docs":{},"输":{"docs":{},"入":{"docs":{},"公":{"docs":{},"式":{"docs":{},"'":{"docs":{},",":{"docs":{"base/editor/formula_editor.html":{"ref":"base/editor/formula_editor.html","tf":0.010101010101010102}}}}}}}}}},"\"":{"docs":{},"请":{"docs":{},"输":{"docs":{},"入":{"docs":{},"内":{"docs":{},"容":{"docs":{},"\"":{"docs":{"detailed/text_input/bi.text_editor.html":{"ref":"detailed/text_input/bi.text_editor.html","tf":0.010309278350515464}}}}}}}},"搜":{"docs":{},"索":{"docs":{},"\"":{"docs":{},",":{"docs":{"detailed/text_input/bi.search_editor.html":{"ref":"detailed/text_input/bi.search_editor.html","tf":0.010101010101010102}}}}}},"带":{"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.00980392156862745}}}}}}}}}}}}}}}}}}}}}}}},"元":{"docs":{},"素":{"docs":{"case/tree/simple_tree.html":{"ref":"case/tree/simple_tree.html","tf":0.022222222222222223},"case/tree/level_tree.html":{"ref":"case/tree/level_tree.html","tf":0.017857142857142856},"case/tree/branch_relation.html":{"ref":"case/tree/branch_relation.html","tf":0.02040816326530612},"detailed/combo/single_tree_combo.html":{"ref":"detailed/combo/single_tree_combo.html","tf":0.01694915254237288},"detailed/combo/multilayer_single_tree_combo.html":{"ref":"detailed/combo/multilayer_single_tree_combo.html","tf":0.018867924528301886},"detailed/combo/select_tree_combo.html":{"ref":"detailed/combo/select_tree_combo.html","tf":0.02040816326530612},"detailed/combo/multilayer_select_tree_combo.html":{"ref":"detailed/combo/multilayer_select_tree_combo.html","tf":0.02040816326530612}},"的":{"docs":{},"垂":{"docs":{},"直":{"docs":{},"对":{"docs":{},"齐":{"docs":{},"方":{"docs":{},"式":{"docs":{"core/layout/horizontal.html":{"ref":"core/layout/horizontal.html","tf":0.010752688172043012},"core/layout/horizontal_adapt.html":{"ref":"core/layout/horizontal_adapt.html","tf":0.010869565217391304}}}}}}}}},"内":{"docs":{},"空":{"docs":{},"白":{"docs":{},"处":{"docs":{},"理":{"docs":{},"方":{"docs":{},"式":{"docs":{"base/label.html":{"ref":"base/label.html","tf":0.006711409395973154}}}}}}}},"的":{"docs":{},"空":{"docs":{},"白":{"docs":{},"处":{"docs":{},"理":{"docs":{},"方":{"docs":{},"式":{"docs":{"base/button/button.html":{"ref":"base/button/button.html","tf":0.005681818181818182},"base/button/text_button.html":{"ref":"base/button/text_button.html","tf":0.009433962264150943}}}}}}}}}},"创":{"docs":{},"造":{"docs":{},"器":{"docs":{"case/list/list.select.html":{"ref":"case/list/list.select.html","tf":0.009433962264150943},"case/loader/list_loader.html":{"ref":"case/loader/list_loader.html","tf":0.010752688172043012},"case/loader/sort_list.html":{"ref":"case/loader/sort_list.html","tf":0.010752688172043012},"detailed/table/bi.page_table.html":{"ref":"detailed/table/bi.page_table.html","tf":0.004651162790697674},"detailed/combo/multilayer_single_tree_combo.html":{"ref":"detailed/combo/multilayer_single_tree_combo.html","tf":0.018867924528301886}}}}}}},"每":{"docs":{},"列":{"docs":{},"宽":{"docs":{},"度":{"docs":{},"所":{"docs":{},"组":{"docs":{},"成":{"docs":{},"的":{"docs":{},"数":{"docs":{},"组":{"docs":{"core/layout/horizontal.html":{"ref":"core/layout/horizontal.html","tf":0.010752688172043012},"core/layout/center_adapt.html":{"ref":"core/layout/center_adapt.html","tf":0.011764705882352941},"core/layout/vertical_adapt.html":{"ref":"core/layout/vertical_adapt.html","tf":0.011494252873563218},"core/layout/horizontal_adapt.html":{"ref":"core/layout/horizontal_adapt.html","tf":0.010869565217391304}}}}}}}}}}},"格":{"docs":{},"列":{"docs":{},"宽":{"docs":{"core/abstract/grid_view.html":{"ref":"core/abstract/grid_view.html","tf":0.00641025641025641}}}},"行":{"docs":{},"宽":{"docs":{"core/abstract/grid_view.html":{"ref":"core/abstract/grid_view.html","tf":0.00641025641025641}}}}}},"水":{"docs":{},"平":{"docs":{},"流":{"docs":{},"式":{"docs":{},"布":{"docs":{},"局":{"docs":{"core/layout/horizontal.html":{"ref":"core/layout/horizontal.html","tf":0.010752688172043012}}}}}},"t":{"docs":{},"a":{"docs":{},"p":{"docs":{},"e":{"docs":{},"布":{"docs":{},"局":{"docs":{},",":{"docs":{},"两":{"docs":{},"列":{"docs":{},"定":{"docs":{},"宽":{"docs":{},",":{"docs":{},"一":{"docs":{},"列":{"docs":{},"自":{"docs":{},"适":{"docs":{},"应":{"docs":{"core/layout/htape.html":{"ref":"core/layout/htape.html","tf":0.008}}}}}}}}}}}}}}}}}}},"和":{"docs":{},"垂":{"docs":{},"直":{"docs":{},"方":{"docs":{},"向":{"docs":{},"都":{"docs":{},"居":{"docs":{},"中":{"docs":{},"容":{"docs":{},"器":{"docs":{},",":{"docs":{"core/layout/center.html":{"ref":"core/layout/center.html","tf":0.012658227848101266}}}}}}}}}}}}},"方":{"docs":{},"向":{"docs":{},"居":{"docs":{},"中":{"docs":{},"自":{"docs":{},"适":{"docs":{},"应":{"docs":{},"容":{"docs":{},"器":{"docs":{"core/layout/horizontal_auto.html":{"ref":"core/layout/horizontal_auto.html","tf":0.012345679012345678}}}}}}}}}}},"分":{"docs":{},"页":{"docs":{},"选":{"docs":{},"项":{"docs":{"detailed/table/bi.page_table.html":{"ref":"detailed/table/bi.page_table.html","tf":0.004651162790697674}}}}}}},"印":{"docs":{"case/trigger/editor_trigger.html":{"ref":"case/trigger/editor_trigger.html","tf":0.02}}}},":":{"docs":{"core/layout/htape.html":{"ref":"core/layout/htape.html","tf":0.08},"core/layout/vtape.html":{"ref":"core/layout/vtape.html","tf":0.08},"base/message.html":{"ref":"base/message.html","tf":0.06382978723404255},"detailed/table/bi.page_table.html":{"ref":"detailed/table/bi.page_table.html","tf":0.004651162790697674}}},"子":{"docs":{},"控":{"docs":{},"件":{"docs":{},"数":{"docs":{},"组":{"docs":{"core/layout/htape.html":{"ref":"core/layout/htape.html","tf":0.008},"core/layout/vtape.html":{"ref":"core/layout/vtape.html","tf":0.008},"core/layout/left_right_vertical_adapt.html":{"ref":"core/layout/left_right_vertical_adapt.html","tf":0.01098901098901099},"core/layout/flow.html":{"ref":"core/layout/flow.html","tf":0.007692307692307693},"core/layout/horizontal_float.html":{"ref":"core/layout/horizontal_float.html","tf":0.013888888888888888},"core/layout/grid.html":{"ref":"core/layout/grid.html","tf":0.008928571428571428},"base/button/button.html":{"ref":"base/button/button.html","tf":0.005681818181818182},"case/segment.html":{"ref":"case/segment.html","tf":0.009345794392523364},"detailed/bi.button/tooltip.html":{"ref":"detailed/bi.button/tooltip.html","tf":0.011363636363636364},"detailed/bi.button/items.html":{"ref":"detailed/bi.button/items.html","tf":0.010638297872340425},"detailed/bi.button/node.html":{"ref":"detailed/bi.button/node.html","tf":0.009259259259259259},"detailed/bi.button/segment.html":{"ref":"detailed/bi.button/segment.html","tf":0.009345794392523364}}}},"对":{"docs":{},"象":{"docs":{"core/layout/border.html":{"ref":"core/layout/border.html","tf":0.012987012987012988}}}}}},"项":{"docs":{"core/layout/table.html":{"ref":"core/layout/table.html","tf":0.012048192771084338},"case/list/list.select.html":{"ref":"case/list/list.select.html","tf":0.009433962264150943},"case/loader/list_loader.html":{"ref":"case/loader/list_loader.html","tf":0.010752688172043012},"case/loader/sort_list.html":{"ref":"case/loader/sort_list.html","tf":0.010752688172043012},"case/tree/branch_tree.html":{"ref":"case/tree/branch_tree.html","tf":0.02},"case/tree/handstand_branch_tree.html":{"ref":"case/tree/handstand_branch_tree.html","tf":0.019230769230769232}},"数":{"docs":{},"组":{"docs":{"case/tree/simple_tree.html":{"ref":"case/tree/simple_tree.html","tf":0.022222222222222223},"case/tree/level_tree.html":{"ref":"case/tree/level_tree.html","tf":0.017857142857142856},"case/tree/branch_relation.html":{"ref":"case/tree/branch_relation.html","tf":0.02040816326530612},"detailed/combo/single_tree_combo.html":{"ref":"detailed/combo/single_tree_combo.html","tf":0.01694915254237288},"detailed/combo/multilayer_single_tree_combo.html":{"ref":"detailed/combo/multilayer_single_tree_combo.html","tf":0.018867924528301886},"detailed/combo/select_tree_combo.html":{"ref":"detailed/combo/select_tree_combo.html","tf":0.02040816326530612},"detailed/combo/multilayer_select_tree_combo.html":{"ref":"detailed/combo/multilayer_select_tree_combo.html","tf":0.02040816326530612}}}},"创":{"docs":{},"建":{"docs":{},"函":{"docs":{},"数":{"docs":{"detailed/tree/bi.multi_tree_combo.html":{"ref":"detailed/tree/bi.multi_tree_combo.html","tf":0.010869565217391304}}}}}},",":{"docs":{},"p":{"docs":{},"i":{"docs":{},"d":{"docs":{},"代":{"docs":{},"表":{"docs":{},"父":{"docs":{},"节":{"docs":{},"点":{"docs":{},"i":{"docs":{},"d":{"docs":{"detailed/tree/bi.multi_tree_combo.html":{"ref":"detailed/tree/bi.multi_tree_combo.html","tf":0.010869565217391304},"detailed/tree/bi.switch_tree.html":{"ref":"detailed/tree/bi.switch_tree.html","tf":0.013157894736842105}}}}}}}}}}}}}},"组":{"docs":{},"件":{"docs":{"core/combination/group_combo.html":{"ref":"core/combination/group_combo.html","tf":0.007874015748031496},"core/combination/loader.html":{"ref":"core/combination/loader.html","tf":0.006289308176100629},"core/layer/layer_popup.html":{"ref":"core/layer/layer_popup.html","tf":0.0058823529411764705},"base/table/table_view.html":{"ref":"base/table/table_view.html","tf":0.006289308176100629},"base/table/grid_table.html":{"ref":"base/table/grid_table.html","tf":0.008771929824561403},"base/table/collection_table.html":{"ref":"base/table/collection_table.html","tf":0.006535947712418301},"base/table/resizable_table.html":{"ref":"base/table/resizable_table.html","tf":0.00625},"case/combo/static_combo.html":{"ref":"case/combo/static_combo.html","tf":0.0125},"case/table/adaptive_table.html":{"ref":"case/table/adaptive_table.html","tf":0.006060606060606061},"case/table/tree_table.html":{"ref":"case/table/tree_table.html","tf":0.00510204081632653},"case/table/layer_tree_table.html":{"ref":"case/table/layer_tree_table.html","tf":0.00510204081632653},"detailed/table/bi.preview_table.html":{"ref":"detailed/table/bi.preview_table.html","tf":0.006756756756756757},"detailed/table/bi.excel_table.html":{"ref":"detailed/table/bi.excel_table.html","tf":0.0055248618784530384},"detailed/table/bi.page_table.html":{"ref":"detailed/table/bi.page_table.html","tf":0.004651162790697674}},"数":{"docs":{},"组":{"docs":{"core/abstract/button_group.html":{"ref":"core/abstract/button_group.html","tf":0.007936507936507936},"core/abstract/virtual_group.html":{"ref":"core/abstract/virtual_group.html","tf":0.014492753623188406},"core/abstract/custom_tree.html":{"ref":"core/abstract/custom_tree.html","tf":0.007194244604316547},"core/abstract/grid_view.html":{"ref":"core/abstract/grid_view.html","tf":0.00641025641025641},"core/abstract/collection_view.html":{"ref":"core/abstract/collection_view.html","tf":0.0070921985815602835},"core/abstract/virtual_list.html":{"ref":"core/abstract/virtual_list.html","tf":0.0125}}}},"构":{"docs":{},"造":{"docs":{},"器":{"docs":{"core/abstract/custom_tree.html":{"ref":"core/abstract/custom_tree.html","tf":0.007194244604316547},"core/combination/loader.html":{"ref":"core/combination/loader.html","tf":0.006289308176100629}}}}},"二":{"docs":{},"维":{"docs":{},"数":{"docs":{},"组":{"docs":{"detailed/table/bi.responsive_table.html":{"ref":"detailed/table/bi.responsive_table.html","tf":0.005263157894736842}}}}}}}}},"自":{"docs":{},"适":{"docs":{},"应":{"docs":{},"左":{"docs":{},"右":{"docs":{},"垂":{"docs":{},"直":{"docs":{},"居":{"docs":{},"中":{"docs":{},"布":{"docs":{},"局":{"docs":{"core/layout/center_adapt.html":{"ref":"core/layout/center_adapt.html","tf":0.011764705882352941}}}}}}}},"居":{"docs":{},"中":{"docs":{},"布":{"docs":{},"局":{"docs":{"core/layout/horizontal_adapt.html":{"ref":"core/layout/horizontal_adapt.html","tf":0.010869565217391304}}}}}}}},"垂":{"docs":{},"直":{"docs":{},"居":{"docs":{},"中":{"docs":{},"布":{"docs":{},"局":{"docs":{"core/layout/vertical_adapt.html":{"ref":"core/layout/vertical_adapt.html","tf":0.011494252873563218}}}}}}}},"宽":{"docs":{},"度":{"docs":{},"的":{"docs":{},"表":{"docs":{},"格":{"docs":{"case/table/adaptive_table.html":{"ref":"case/table/adaptive_table.html","tf":0.006060606060606061}},",":{"docs":{},"继":{"docs":{},"承":{"docs":{},"b":{"docs":{},"i":{"docs":{},".":{"docs":{},"w":{"docs":{},"i":{"docs":{},"d":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{"detailed/table/bi.responsive_table.html":{"ref":"detailed/table/bi.responsive_table.html","tf":0.005263157894736842}}}}}}}}}}}}}}}}}}}}},"定":{"docs":{},"义":{"docs":{},"列":{"docs":{},"表":{"docs":{},"中":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"项":{"docs":{},"的":{"docs":{},"行":{"docs":{},"为":{"docs":{},",":{"docs":{},"如":{"docs":{},"高":{"docs":{},"亮":{"docs":{},",":{"docs":{},"标":{"docs":{},"红":{"docs":{},"等":{"docs":{"core/abstract/button_group.html":{"ref":"core/abstract/button_group.html","tf":0.015873015873015872},"base/pager.html":{"ref":"base/pager.html","tf":0.006666666666666667}}}}}}}}}}}}}}}}}}}}},"树":{"docs":{},",":{"docs":{},"基":{"docs":{},"类":{"docs":{},"b":{"docs":{},"i":{"docs":{},".":{"docs":{},"w":{"docs":{},"i":{"docs":{},"d":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{"core/abstract/custom_tree.html":{"ref":"core/abstract/custom_tree.html","tf":0.007194244604316547}}}}}}}}}}}}}}},"下":{"docs":{},"拉":{"docs":{},"框":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"g":{"docs":{},"g":{"docs":{},"e":{"docs":{},"r":{"docs":{"core/combination/bi.combo.html":{"ref":"core/combination/bi.combo.html","tf":0.004807692307692308},"core/combination/bi.expander.html":{"ref":"core/combination/bi.expander.html","tf":0.005494505494505495},"core/combination/group_combo.html":{"ref":"core/combination/group_combo.html","tf":0.007874015748031496},"core/combination/switcher.html":{"ref":"core/combination/switcher.html","tf":0.00625},"case/combo/icon_combo.html":{"ref":"case/combo/icon_combo.html","tf":0.007751937984496124},"case/combo/static_combo.html":{"ref":"case/combo/static_combo.html","tf":0.0125},"case/combo/text_value_combo.html":{"ref":"case/combo/text_value_combo.html","tf":0.013513513513513514},"detailed/down_list_combo.html":{"ref":"detailed/down_list_combo.html","tf":0.006578947368421052}}}}}}}}}},"列":{"docs":{},"表":{"docs":{},"中":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"项":{"docs":{},"的":{"docs":{},"行":{"docs":{},"为":{"docs":{},",":{"docs":{},"如":{"docs":{},"高":{"docs":{},"亮":{"docs":{},",":{"docs":{},"标":{"docs":{},"红":{"docs":{},"等":{"docs":{"core/widget.html":{"ref":"core/widget.html","tf":0.00510204081632653}},"(":{"docs":{},"详":{"docs":{},"见":{"docs":{},"b":{"docs":{},"u":{"docs":{},"t":{"docs":{},"t":{"docs":{},"o":{"docs":{},"n":{"docs":{},"_":{"docs":{},"g":{"docs":{},"r":{"docs":{},"o":{"docs":{},"u":{"docs":{},"p":{"docs":{},")":{"docs":{"detailed/year_combo.html":{"ref":"detailed/year_combo.html","tf":0.025},"detailed/month_combo.html":{"ref":"detailed/month_combo.html","tf":0.03571428571428571},"detailed/quarter_combo.html":{"ref":"detailed/quarter_combo.html","tf":0.03571428571428571}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"工":{"docs":{},"具":{"docs":{},"栏":{"docs":{"core/layer/layer_popup.html":{"ref":"core/layer/layer_popup.html","tf":0.0058823529411764705}}}}},"年":{"docs":{},"份":{"docs":{},"选":{"docs":{},"择":{"docs":{},"的":{"docs":{},"行":{"docs":{},"为":{"docs":{},"(":{"docs":{},"详":{"docs":{},"见":{"docs":{},"b":{"docs":{},"u":{"docs":{},"t":{"docs":{},"t":{"docs":{},"o":{"docs":{},"n":{"docs":{},"_":{"docs":{},"g":{"docs":{},"r":{"docs":{},"o":{"docs":{},"u":{"docs":{},"p":{"docs":{},")":{"docs":{"detailed/date/year_month_combo.html":{"ref":"detailed/date/year_month_combo.html","tf":0.058823529411764705},"detailed/date/year_quarter_combo.html":{"ref":"detailed/date/year_quarter_combo.html","tf":0.06451612903225806}}}}}}}}}}}}}}}}}}}}}}}}}}}},"右":{"docs":{},"边":{"docs":{},"容":{"docs":{},"器":{"docs":{},"l":{"docs":{},"e":{"docs":{},"f":{"docs":{},"t":{"docs":{"core/layout/left_right_vertical_adapt.html":{"ref":"core/layout/left_right_vertical_adapt.html","tf":0.01098901098901099}}}}}},"r":{"docs":{},"i":{"docs":{},"g":{"docs":{},"h":{"docs":{},"t":{"docs":{"core/layout/left_right_vertical_adapt.html":{"ref":"core/layout/left_right_vertical_adapt.html","tf":0.01098901098901099}}}}}}},"左":{"docs":{},"右":{"docs":{},"p":{"docs":{},"a":{"docs":{},"d":{"docs":{},"d":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"值":{"docs":{"core/layout/left_right_vertical_adapt.html":{"ref":"core/layout/left_right_vertical_adapt.html","tf":0.01098901098901099}}}}}}}}}}}}}}},"区":{"docs":{},"间":{"docs":{},"初":{"docs":{},"始":{"docs":{},"状":{"docs":{},"态":{"docs":{"detailed/numeric_interval.html":{"ref":"detailed/numeric_interval.html","tf":0.017241379310344827}}}}}}}}},"左":{"docs":{},"右":{"docs":{},"分":{"docs":{},"离":{"docs":{},",":{"docs":{},"垂":{"docs":{},"直":{"docs":{},"方":{"docs":{},"向":{"docs":{},"居":{"docs":{},"中":{"docs":{},"容":{"docs":{},"器":{"docs":{"core/layout/left_right_vertical_adapt.html":{"ref":"core/layout/left_right_vertical_adapt.html","tf":0.01098901098901099}}}}}}}}}}}}}},"边":{"docs":{},"容":{"docs":{},"器":{"docs":{},"l":{"docs":{},"e":{"docs":{},"f":{"docs":{},"t":{"docs":{"core/layout/left_right_vertical_adapt.html":{"ref":"core/layout/left_right_vertical_adapt.html","tf":0.01098901098901099}}}}}},"r":{"docs":{},"i":{"docs":{},"g":{"docs":{},"h":{"docs":{},"t":{"docs":{"core/layout/left_right_vertical_adapt.html":{"ref":"core/layout/left_right_vertical_adapt.html","tf":0.01098901098901099}}}}}}},"左":{"docs":{},"右":{"docs":{},"p":{"docs":{},"a":{"docs":{},"d":{"docs":{},"d":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"值":{"docs":{"core/layout/left_right_vertical_adapt.html":{"ref":"core/layout/left_right_vertical_adapt.html","tf":0.01098901098901099}}}}}}}}}}}}}}},"区":{"docs":{},"间":{"docs":{},"初":{"docs":{},"始":{"docs":{},"状":{"docs":{},"态":{"docs":{"detailed/numeric_interval.html":{"ref":"detailed/numeric_interval.html","tf":0.017241379310344827}}}}}}}}},"靠":{"docs":{},"左":{"docs":{},"/":{"docs":{},"右":{"docs":{},"对":{"docs":{},"齐":{"docs":{},"的":{"docs":{},"自":{"docs":{},"由":{"docs":{},"浮":{"docs":{},"动":{"docs":{},"布":{"docs":{},"局":{"docs":{"core/layout/flow.html":{"ref":"core/layout/flow.html","tf":0.007692307692307693}}}}}}}}}}}}}}},"非":{"docs":{},"自":{"docs":{},"适":{"docs":{},"应":{"docs":{},",":{"docs":{},"用":{"docs":{},"于":{"docs":{},"宽":{"docs":{},"度":{"docs":{},"高":{"docs":{},"度":{"docs":{},"固":{"docs":{},"定":{"docs":{},"的":{"docs":{},"面":{"docs":{},"板":{"docs":{"core/layout/center.html":{"ref":"core/layout/center.html","tf":0.012658227848101266}}}}}}}}}}}}}}}}}},"/":{"docs":{"core/abstract/collection_view.html":{"ref":"core/abstract/collection_view.html","tf":0.0070921985815602835}},"/":{"7":{"docs":{},"表":{"docs":{},"示":{"docs":{},"八":{"docs":{},"月":{"docs":{"case/calendar.html":{"ref":"case/calendar.html","tf":0.013888888888888888}}}}}}},"docs":{"case/tree/branch_tree.html":{"ref":"case/tree/branch_tree.html","tf":0.02},"case/tree/handstand_branch_tree.html":{"ref":"case/tree/handstand_branch_tree.html","tf":0.019230769230769232}},"w":{"docs":{},"i":{"docs":{},"d":{"docs":{},"t":{"docs":{},"h":{"docs":{},":":{"docs":{"core/layout/horizontal_adapt.html":{"ref":"core/layout/horizontal_adapt.html","tf":0.010869565217391304}}}}}}}},"必":{"docs":{},"选":{"docs":{},"项":{"docs":{"case/pager/all_count_pager.html":{"ref":"case/pager/all_count_pager.html","tf":0.014705882352941176},"case/pager/direction_pager.html":{"ref":"case/pager/direction_pager.html","tf":0.01639344262295082}}}}},"初":{"docs":{},"始":{"docs":{},"化":{"docs":{},"当":{"docs":{},"前":{"docs":{},"页":{"docs":{},",":{"docs":{"case/pager/direction_pager.html":{"ref":"case/pager/direction_pager.html","tf":0.01639344262295082}}}}}}}}},"最":{"docs":{},"大":{"docs":{},"日":{"docs":{},"期":{"docs":{"case/calendar.html":{"ref":"case/calendar.html","tf":0.013888888888888888}}}}},"小":{"docs":{},"日":{"docs":{},"期":{"docs":{"case/calendar.html":{"ref":"case/calendar.html","tf":0.013888888888888888}}}}}}}},"浮":{"docs":{},"动":{"docs":{},"的":{"docs":{},"水":{"docs":{},"平":{"docs":{},"居":{"docs":{},"中":{"docs":{},"布":{"docs":{},"局":{"docs":{"core/layout/horizontal_float.html":{"ref":"core/layout/horizontal_float.html","tf":0.013888888888888888}}}}}}}}},"布":{"docs":{},"局":{"docs":{},"实":{"docs":{},"现":{"docs":{},"的":{"docs":{},"居":{"docs":{},"中":{"docs":{},"容":{"docs":{},"器":{"docs":{"core/layout/float_center.html":{"ref":"core/layout/float_center.html","tf":0.012658227848101266}}}}}}}}}}}}},"o":{"docs":{},"b":{"docs":{},"j":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"core/layout/border.html":{"ref":"core/layout/border.html","tf":0.012987012987012988},"core/abstract/button_group.html":{"ref":"core/abstract/button_group.html","tf":0.007936507936507936},"core/abstract/custom_tree.html":{"ref":"core/abstract/custom_tree.html","tf":0.02158273381294964},"core/combination/bi.combo.html":{"ref":"core/combination/bi.combo.html","tf":0.009615384615384616},"core/combination/bi.expander.html":{"ref":"core/combination/bi.expander.html","tf":0.01098901098901099},"core/combination/group_combo.html":{"ref":"core/combination/group_combo.html","tf":0.015748031496062992},"core/combination/loader.html":{"ref":"core/combination/loader.html","tf":0.006289308176100629},"core/combination/navigation.html":{"ref":"core/combination/navigation.html","tf":0.007194244604316547},"core/combination/searcher.html":{"ref":"core/combination/searcher.html","tf":0.018433179723502304},"core/combination/switcher.html":{"ref":"core/combination/switcher.html","tf":0.01875},"core/combination/tab.html":{"ref":"core/combination/tab.html","tf":0.0136986301369863},"core/layer/layer_popup.html":{"ref":"core/layer/layer_popup.html","tf":0.011764705882352941},"core/layer/layer_searcher.html":{"ref":"core/layer/layer_searcher.html","tf":0.018518518518518517},"core/widget.html":{"ref":"core/widget.html","tf":0.01020408163265306},"base/pager.html":{"ref":"base/pager.html","tf":0.006666666666666667},"case/button/multi_select_item.html":{"ref":"case/button/multi_select_item.html","tf":0.017543859649122806},"case/layer/pane_list.html":{"ref":"case/layer/pane_list.html","tf":0.013605442176870748},"case/layer/panel.html":{"ref":"case/layer/panel.html","tf":0.031746031746031744},"case/loader/list_loader.html":{"ref":"case/loader/list_loader.html","tf":0.010752688172043012},"case/loader/sort_list.html":{"ref":"case/loader/sort_list.html","tf":0.010752688172043012},"case/combo/icon_combo.html":{"ref":"case/combo/icon_combo.html","tf":0.015503875968992248},"case/combo/static_combo.html":{"ref":"case/combo/static_combo.html","tf":0.0125},"case/combo/text_value_combo.html":{"ref":"case/combo/text_value_combo.html","tf":0.013513513513513514},"case/tree/branch_tree.html":{"ref":"case/tree/branch_tree.html","tf":0.04},"case/tree/handstand_branch_tree.html":{"ref":"case/tree/handstand_branch_tree.html","tf":0.038461538461538464},"case/tree/level_tree.html":{"ref":"case/tree/level_tree.html","tf":0.017857142857142856},"case/pager/direction_pager.html":{"ref":"case/pager/direction_pager.html","tf":0.01639344262295082},"detailed/table/bi.page_table.html":{"ref":"detailed/table/bi.page_table.html","tf":0.013953488372093023},"detailed/year_combo.html":{"ref":"detailed/year_combo.html","tf":0.025},"detailed/month_combo.html":{"ref":"detailed/month_combo.html","tf":0.03571428571428571},"detailed/quarter_combo.html":{"ref":"detailed/quarter_combo.html","tf":0.03571428571428571},"detailed/down_list_combo.html":{"ref":"detailed/down_list_combo.html","tf":0.006578947368421052},"detailed/date/year_month_combo.html":{"ref":"detailed/date/year_month_combo.html","tf":0.058823529411764705},"detailed/date/year_quarter_combo.html":{"ref":"detailed/date/year_quarter_combo.html","tf":0.06451612903225806},"detailed/combo/single_tree_combo.html":{"ref":"detailed/combo/single_tree_combo.html","tf":0.01694915254237288}},":":{"docs":{"case/calendar.html":{"ref":"case/calendar.html","tf":0.013888888888888888}}}}}},"(":{"docs":{},"{":{"docs":{},"y":{"docs":{},"e":{"docs":{},"a":{"docs":{},"r":{"docs":{},":":{"docs":{"detailed/date/date_pane_widget.html":{"ref":"detailed/date/date_pane_widget.html","tf":0.02702702702702703}}}}}}}}}},"e":{"docs":{},"j":{"docs":{},"c":{"docs":{},"t":{"docs":{"core/combination/switcher.html":{"ref":"core/combination/switcher.html","tf":0.00625}}}}}}},"p":{"docs":{"base/editor/formula_editor.html":{"ref":"base/editor/formula_editor.html","tf":0.010101010101010102}},"e":{"docs":{},"n":{"docs":{"core/layer/layer_float_box.html":{"ref":"core/layer/layer_float_box.html","tf":0.012345679012345678},"core/node_button.html":{"ref":"core/node_button.html","tf":0.02631578947368421}},":":{"docs":{"core/abstract/custom_tree.html":{"ref":"core/abstract/custom_tree.html","tf":0.007194244604316547},"case/tree/display_tree.html":{"ref":"case/tree/display_tree.html","tf":0.030303030303030304}}}}},"t":{"docs":{"core/single.html":{"ref":"core/single.html","tf":0.013888888888888888}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{"core/combination/loader.html":{"ref":"core/combination/loader.html","tf":0.006289308176100629}}}}}}}}}}}}},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},"f":{"docs":{},"l":{"docs":{},"o":{"docs":{},"w":{"docs":{},"i":{"docs":{"core/abstract/grid_view.html":{"ref":"core/abstract/grid_view.html","tf":0.00641025641025641},"core/abstract/collection_view.html":{"ref":"core/abstract/collection_view.html","tf":0.0070921985815602835}}},"x":{"docs":{"core/abstract/grid_view.html":{"ref":"core/abstract/grid_view.html","tf":0.00641025641025641},"core/abstract/collection_view.html":{"ref":"core/abstract/collection_view.html","tf":0.0070921985815602835}}}}}}},"s":{"docs":{},"c":{"docs":{},"a":{"docs":{},"n":{"docs":{},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},"u":{"docs":{},"m":{"docs":{},"n":{"docs":{},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{"core/abstract/grid_view.html":{"ref":"core/abstract/grid_view.html","tf":0.00641025641025641}}}}}}}}}}}}},"r":{"docs":{},"o":{"docs":{},"w":{"docs":{},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{"core/abstract/grid_view.html":{"ref":"core/abstract/grid_view.html","tf":0.00641025641025641}}}}}}}}}},"h":{"docs":{},"e":{"docs":{},"i":{"docs":{},"g":{"docs":{},"h":{"docs":{},"t":{"docs":{"core/abstract/virtual_list.html":{"ref":"core/abstract/virtual_list.html","tf":0.0125}}}}}}}}}}}},"l":{"docs":{},"a":{"docs":{},"p":{"docs":{"core/pane.html":{"ref":"core/pane.html","tf":0.0196078431372549}}}}}}}},"f":{"docs":{},"f":{"docs":{},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{},"s":{"docs":{},"t":{"docs":{},"y":{"docs":{},"l":{"docs":{"core/combination/bi.combo.html":{"ref":"core/combination/bi.combo.html","tf":0.004807692307692308},"case/combo/icon_combo.html":{"ref":"case/combo/icon_combo.html","tf":0.007751937984496124}}}}}},":":{"docs":{"case/complex_canvas.html":{"ref":"case/complex_canvas.html","tf":0.020833333333333332}}}}}}}},"n":{"docs":{},"l":{"docs":{},"o":{"docs":{},"a":{"docs":{},"d":{"docs":{"core/combination/loader.html":{"ref":"core/combination/loader.html","tf":0.006289308176100629},"core/pane.html":{"ref":"core/pane.html","tf":0.0196078431372549},"case/layer/pane_list.html":{"ref":"case/layer/pane_list.html","tf":0.006802721088435374},"case/list/list.select.html":{"ref":"case/list/list.select.html","tf":0.009433962264150943},"case/loader/list_loader.html":{"ref":"case/loader/list_loader.html","tf":0.010752688172043012},"case/loader/sort_list.html":{"ref":"case/loader/sort_list.html","tf":0.010752688172043012}}}}}},"c":{"docs":{"core/basic_button.html":{"ref":"core/basic_button.html","tf":0.007936507936507936},"case/combo/bubble_combo.html":{"ref":"case/combo/bubble_combo.html","tf":0.005780346820809248}},"e":{"docs":{},":":{"docs":{"core/combination/navigation.html":{"ref":"core/combination/navigation.html","tf":0.014388489208633094}}}}},"s":{"docs":{},"e":{"docs":{},"a":{"docs":{},"r":{"docs":{},"c":{"docs":{},"h":{"docs":{"core/combination/searcher.html":{"ref":"core/combination/searcher.html","tf":0.004608294930875576}}}}}}}},"k":{"docs":{},"e":{"docs":{},"y":{"docs":{},"d":{"docs":{},"o":{"docs":{},"w":{"docs":{},"n":{"docs":{"base/editor/editor.html":{"ref":"base/editor/editor.html","tf":0.005405405405405406},"case/editor/shelter_editor.html":{"ref":"case/editor/shelter_editor.html","tf":0.0051813471502590676}}}}}}}}},"j":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"base/editor/formula_editor.html":{"ref":"base/editor/formula_editor.html","tf":0.010101010101010102}}}}}}},"r":{"docs":{},"i":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{},",":{"docs":{"base/svg.html":{"ref":"base/svg.html","tf":0.011235955056179775}}}}}}}}},"上":{"docs":{},"下":{"docs":{},"的":{"docs":{},"高":{"docs":{},"度":{"docs":{},"固":{"docs":{},"定":{"docs":{},"/":{"docs":{},"左":{"docs":{},"右":{"docs":{},"的":{"docs":{},"宽":{"docs":{},"度":{"docs":{},"固":{"docs":{},"定":{"docs":{},",":{"docs":{},"中":{"docs":{},"间":{"docs":{},"的":{"docs":{},"高":{"docs":{},"度":{"docs":{},"/":{"docs":{},"宽":{"docs":{},"度":{"docs":{},"自":{"docs":{},"适":{"docs":{},"应":{"docs":{"core/layout/border.html":{"ref":"core/layout/border.html","tf":0.012987012987012988}}}}}}}}}}}}}}}}}}}}}}}}}}}},"一":{"docs":{},"页":{"docs":{"core/combination/loader.html":{"ref":"core/combination/loader.html","tf":0.006289308176100629},"base/pager.html":{"ref":"base/pager.html","tf":0.006666666666666667}}}},"传":{"docs":{},"结":{"docs":{},"束":{"docs":{},"后":{"docs":{},"触":{"docs":{},"发":{"docs":{"base/editor/multifile_editor.html":{"ref":"base/editor/multifile_editor.html","tf":0.015384615384615385}}}}}}},"过":{"docs":{},"程":{"docs":{},"中":{"docs":{},"触":{"docs":{},"发":{"docs":{"base/editor/multifile_editor.html":{"ref":"base/editor/multifile_editor.html","tf":0.015384615384615385}}}}}}}}},"列":{"docs":{},"数":{"docs":{"core/layout/grid.html":{"ref":"core/layout/grid.html","tf":0.008928571428571428}}},"项":{"docs":{},"宽":{"docs":{},"度":{"docs":{"core/layout/table.html":{"ref":"core/layout/table.html","tf":0.012048192771084338}}}},"间":{"docs":{},"的":{"docs":{"base/table/table_view.html":{"ref":"base/table/table_view.html","tf":0.006289308176100629},"base/table/grid_table.html":{"ref":"base/table/grid_table.html","tf":0.008771929824561403},"base/table/collection_table.html":{"ref":"base/table/collection_table.html","tf":0.006535947712418301},"base/table/resizable_table.html":{"ref":"base/table/resizable_table.html","tf":0.00625},"case/table/adaptive_table.html":{"ref":"case/table/adaptive_table.html","tf":0.006060606060606061},"case/table/tree_table.html":{"ref":"case/table/tree_table.html","tf":0.00510204081632653},"case/table/layer_tree_table.html":{"ref":"case/table/layer_tree_table.html","tf":0.00510204081632653},"detailed/table/bi.excel_table.html":{"ref":"detailed/table/bi.excel_table.html","tf":0.0055248618784530384},"detailed/table/bi.page_table.html":{"ref":"detailed/table/bi.page_table.html","tf":0.004651162790697674}}}}},"宽":{"docs":{"core/layout/td.html":{"ref":"core/layout/td.html","tf":0.017857142857142856},"detailed/table/bi.preview_table.html":{"ref":"detailed/table/bi.preview_table.html","tf":0.006756756756756757},"detailed/table/bi.responsive_table.html":{"ref":"detailed/table/bi.responsive_table.html","tf":0.010526315789473684}},",":{"docs":{},"必":{"docs":{},"设":{"docs":{"core/abstract/grid_view.html":{"ref":"core/abstract/grid_view.html","tf":0.00641025641025641},"core/abstract/collection_view.html":{"ref":"core/abstract/collection_view.html","tf":0.0070921985815602835}}}}},"数":{"docs":{},"组":{"docs":{"case/table/adaptive_table.html":{"ref":"case/table/adaptive_table.html","tf":0.012121212121212121},"case/table/tree_table.html":{"ref":"case/table/tree_table.html","tf":0.01020408163265306},"case/table/layer_tree_table.html":{"ref":"case/table/layer_tree_table.html","tf":0.01020408163265306},"detailed/table/bi.page_table.html":{"ref":"detailed/table/bi.page_table.html","tf":0.009302325581395349}}}}},"表":{"docs":{"case/layer/pane_list.html":{"ref":"case/layer/pane_list.html","tf":0.006802721088435374}},"展":{"docs":{},"示":{"docs":{},"的":{"docs":{},"t":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},",":{"docs":{},"继":{"docs":{},"承":{"docs":{},"b":{"docs":{},"i":{"docs":{},".":{"docs":{},"w":{"docs":{},"i":{"docs":{},"d":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{"base/table/grid_table.html":{"ref":"base/table/grid_table.html","tf":0.008771929824561403}}}}}}}}}}}}}}}}}}}}}},"创":{"docs":{},"建":{"docs":{},"器":{"docs":{"case/layer/pane_list.html":{"ref":"case/layer/pane_list.html","tf":0.006802721088435374}}}}},"最":{"docs":{},"前":{"docs":{},"添":{"docs":{},"加":{"docs":{},"元":{"docs":{},"素":{"docs":{"case/list/list.select.html":{"ref":"case/list/list.select.html","tf":0.009433962264150943}}}}}}},"后":{"docs":{},"添":{"docs":{},"加":{"docs":{},"元":{"docs":{},"素":{"docs":{"case/list/list.select.html":{"ref":"case/list/list.select.html","tf":0.009433962264150943},"case/loader/lazy_loader.html":{"ref":"case/loader/lazy_loader.html","tf":0.01694915254237288},"case/loader/list_loader.html":{"ref":"case/loader/list_loader.html","tf":0.010752688172043012},"case/loader/sort_list.html":{"ref":"case/loader/sort_list.html","tf":0.010752688172043012}}}}}}}}}},"网":{"docs":{},"格":{"docs":{},"布":{"docs":{},"局":{"docs":{"core/layout/grid.html":{"ref":"core/layout/grid.html","tf":0.008928571428571428}}}}}},"行":{"docs":{},"数":{"docs":{"core/layout/grid.html":{"ref":"core/layout/grid.html","tf":0.008928571428571428}}},"高":{"docs":{"core/layout/table.html":{"ref":"core/layout/table.html","tf":0.012048192771084338},"base/editor/code_editor.html":{"ref":"base/editor/code_editor.html","tf":0.012658227848101266},"base/editor/formula_editor.html":{"ref":"base/editor/formula_editor.html","tf":0.010101010101010102},"detailed/table/bi.preview_table.html":{"ref":"detailed/table/bi.preview_table.html","tf":0.006756756756756757},"detailed/table/bi.responsive_table.html":{"ref":"detailed/table/bi.responsive_table.html","tf":0.005263157894736842}}},"宽":{"docs":{},",":{"docs":{},"必":{"docs":{},"设":{"docs":{"core/abstract/grid_view.html":{"ref":"core/abstract/grid_view.html","tf":0.00641025641025641},"core/abstract/collection_view.html":{"ref":"core/abstract/collection_view.html","tf":0.0070921985815602835}}}}}}},"内":{"docs":{},"部":{"docs":{},"元":{"docs":{},"素":{"docs":{},"间":{"docs":{},"横":{"docs":{},"向":{"docs":{},"距":{"docs":{},"离":{"docs":{"core/layout/table.html":{"ref":"core/layout/table.html","tf":0.012048192771084338}}}}}},"纵":{"docs":{},"向":{"docs":{},"距":{"docs":{},"离":{"docs":{"core/layout/table.html":{"ref":"core/layout/table.html","tf":0.012048192771084338}}}}}}}}},"前":{"docs":{},"插":{"docs":{},"入":{"docs":{"core/abstract/button_group.html":{"ref":"core/abstract/button_group.html","tf":0.007936507936507936},"core/abstract/virtual_group.html":{"ref":"core/abstract/virtual_group.html","tf":0.014492753623188406},"core/abstract/custom_tree.html":{"ref":"core/abstract/custom_tree.html","tf":0.007194244604316547},"core/combination/loader.html":{"ref":"core/combination/loader.html","tf":0.006289308176100629},"case/layer/layer_panel.html":{"ref":"case/layer/layer_panel.html","tf":0.010752688172043012},"case/layer/pane_list.html":{"ref":"case/layer/pane_list.html","tf":0.006802721088435374}}}}},"后":{"docs":{},"插":{"docs":{},"入":{"docs":{"core/abstract/button_group.html":{"ref":"core/abstract/button_group.html","tf":0.007936507936507936},"core/abstract/virtual_group.html":{"ref":"core/abstract/virtual_group.html","tf":0.014492753623188406},"core/abstract/custom_tree.html":{"ref":"core/abstract/custom_tree.html","tf":0.007194244604316547},"core/combination/loader.html":{"ref":"core/combination/loader.html","tf":0.006289308176100629},"case/layer/layer_panel.html":{"ref":"case/layer/layer_panel.html","tf":0.010752688172043012},"case/layer/pane_list.html":{"ref":"case/layer/pane_list.html","tf":0.006802721088435374}}}}}},"容":{"docs":{},"项":{"docs":{"core/layout/td.html":{"ref":"core/layout/td.html","tf":0.017857142857142856}}}}},"增":{"docs":{},"加":{"docs":{"detailed/table/bi.page_table.html":{"ref":"detailed/table/bi.page_table.html","tf":0.004651162790697674}},"内":{"docs":{},"容":{"docs":{"core/layout/table.html":{"ref":"core/layout/table.html","tf":0.012048192771084338},"core/layout/td.html":{"ref":"core/layout/td.html","tf":0.017857142857142856}}}},"行":{"docs":{"base/table/collection_table.html":{"ref":"base/table/collection_table.html","tf":0.006535947712418301},"detailed/table/bi.excel_table.html":{"ref":"detailed/table/bi.excel_table.html","tf":0.0055248618784530384}}},"项":{"docs":{"case/table/adaptive_table.html":{"ref":"case/table/adaptive_table.html","tf":0.006060606060606061},"case/table/tree_table.html":{"ref":"case/table/tree_table.html","tf":0.00510204081632653},"case/table/layer_tree_table.html":{"ref":"case/table/layer_tree_table.html","tf":0.00510204081632653}}}}},"方":{"docs":{},"法":{"docs":{"core/layout/table.html":{"ref":"core/layout/table.html","tf":0.012048192771084338},"core/layout/td.html":{"ref":"core/layout/td.html","tf":0.017857142857142856},"base/table/table_view.html":{"ref":"base/table/table_view.html","tf":0.006289308176100629},"base/table/grid_table.html":{"ref":"base/table/grid_table.html","tf":0.008771929824561403},"base/table/collection_table.html":{"ref":"base/table/collection_table.html","tf":0.006535947712418301},"base/table/resizable_table.html":{"ref":"base/table/resizable_table.html","tf":0.00625},"case/list/list.select.html":{"ref":"case/list/list.select.html","tf":0.009433962264150943},"case/loader/lazy_loader.html":{"ref":"case/loader/lazy_loader.html","tf":0.01694915254237288},"case/loader/list_loader.html":{"ref":"case/loader/list_loader.html","tf":0.010752688172043012},"case/loader/sort_list.html":{"ref":"case/loader/sort_list.html","tf":0.010752688172043012},"case/trigger/editor_trigger.html":{"ref":"case/trigger/editor_trigger.html","tf":0.02},"case/trigger/text_trigger.html":{"ref":"case/trigger/text_trigger.html","tf":0.05263157894736842},"case/tree/branch_tree.html":{"ref":"case/tree/branch_tree.html","tf":0.02},"case/tree/handstand_branch_tree.html":{"ref":"case/tree/handstand_branch_tree.html","tf":0.019230769230769232},"case/tree/display_tree.html":{"ref":"case/tree/display_tree.html","tf":0.030303030303030304},"case/tree/simple_tree.html":{"ref":"case/tree/simple_tree.html","tf":0.022222222222222223},"case/tree/level_tree.html":{"ref":"case/tree/level_tree.html","tf":0.017857142857142856},"case/tree/branch_relation.html":{"ref":"case/tree/branch_relation.html","tf":0.02040816326530612},"case/table/adaptive_table.html":{"ref":"case/table/adaptive_table.html","tf":0.006060606060606061},"case/table/tree_table.html":{"ref":"case/table/tree_table.html","tf":0.00510204081632653},"case/table/layer_tree_table.html":{"ref":"case/table/layer_tree_table.html","tf":0.00510204081632653},"case/pager/all_count_pager.html":{"ref":"case/pager/all_count_pager.html","tf":0.014705882352941176},"case/pager/direction_pager.html":{"ref":"case/pager/direction_pager.html","tf":0.00819672131147541},"case/calendar.html":{"ref":"case/calendar.html","tf":0.013888888888888888},"case/color_chooser.html":{"ref":"case/color_chooser.html","tf":0.038461538461538464},"case/color_chooser_popup.html":{"ref":"case/color_chooser_popup.html","tf":0.029411764705882353},"detailed/tree/bi.multi_tree_combo.html":{"ref":"detailed/tree/bi.multi_tree_combo.html","tf":0.010869565217391304},"detailed/tree/bi.switch_tree.html":{"ref":"detailed/tree/bi.switch_tree.html","tf":0.013157894736842105},"detailed/table/bi.preview_table.html":{"ref":"detailed/table/bi.preview_table.html","tf":0.006756756756756757},"detailed/table/bi.responsive_table.html":{"ref":"detailed/table/bi.responsive_table.html","tf":0.005263157894736842},"detailed/table/bi.excel_table.html":{"ref":"detailed/table/bi.excel_table.html","tf":0.0055248618784530384},"detailed/table/bi.page_table.html":{"ref":"detailed/table/bi.page_table.html","tf":0.004651162790697674},"detailed/numeric_interval.html":{"ref":"detailed/numeric_interval.html","tf":0.034482758620689655},"detailed/combo/single_tree_combo.html":{"ref":"detailed/combo/single_tree_combo.html","tf":0.01694915254237288},"detailed/combo/multilayer_single_tree_combo.html":{"ref":"detailed/combo/multilayer_single_tree_combo.html","tf":0.018867924528301886},"detailed/combo/select_tree_combo.html":{"ref":"detailed/combo/select_tree_combo.html","tf":0.02040816326530612},"detailed/combo/multilayer_select_tree_combo.html":{"ref":"detailed/combo/multilayer_select_tree_combo.html","tf":0.02040816326530612},"detailed/file_manager.html":{"ref":"detailed/file_manager.html","tf":0.046511627906976744},"detailed/slider.html":{"ref":"detailed/slider.html","tf":0.029411764705882353}},"名":{"docs":{"core/layout/table.html":{"ref":"core/layout/table.html","tf":0.012048192771084338},"core/layout/td.html":{"ref":"core/layout/td.html","tf":0.017857142857142856},"base/table/table_view.html":{"ref":"base/table/table_view.html","tf":0.006289308176100629},"base/table/grid_table.html":{"ref":"base/table/grid_table.html","tf":0.008771929824561403},"base/table/collection_table.html":{"ref":"base/table/collection_table.html","tf":0.006535947712418301},"base/table/resizable_table.html":{"ref":"base/table/resizable_table.html","tf":0.00625},"case/list/list.select.html":{"ref":"case/list/list.select.html","tf":0.009433962264150943},"case/loader/lazy_loader.html":{"ref":"case/loader/lazy_loader.html","tf":0.01694915254237288},"case/loader/list_loader.html":{"ref":"case/loader/list_loader.html","tf":0.010752688172043012},"case/loader/sort_list.html":{"ref":"case/loader/sort_list.html","tf":0.010752688172043012},"case/trigger/editor_trigger.html":{"ref":"case/trigger/editor_trigger.html","tf":0.02},"case/trigger/text_trigger.html":{"ref":"case/trigger/text_trigger.html","tf":0.05263157894736842},"case/tree/branch_tree.html":{"ref":"case/tree/branch_tree.html","tf":0.02},"case/tree/handstand_branch_tree.html":{"ref":"case/tree/handstand_branch_tree.html","tf":0.019230769230769232},"case/tree/display_tree.html":{"ref":"case/tree/display_tree.html","tf":0.030303030303030304},"case/tree/simple_tree.html":{"ref":"case/tree/simple_tree.html","tf":0.022222222222222223},"case/tree/level_tree.html":{"ref":"case/tree/level_tree.html","tf":0.017857142857142856},"case/tree/branch_relation.html":{"ref":"case/tree/branch_relation.html","tf":0.02040816326530612},"case/table/adaptive_table.html":{"ref":"case/table/adaptive_table.html","tf":0.006060606060606061},"case/table/tree_table.html":{"ref":"case/table/tree_table.html","tf":0.00510204081632653},"case/table/layer_tree_table.html":{"ref":"case/table/layer_tree_table.html","tf":0.00510204081632653},"case/pager/all_count_pager.html":{"ref":"case/pager/all_count_pager.html","tf":0.014705882352941176},"case/pager/direction_pager.html":{"ref":"case/pager/direction_pager.html","tf":0.00819672131147541},"case/calendar.html":{"ref":"case/calendar.html","tf":0.013888888888888888},"case/color_chooser.html":{"ref":"case/color_chooser.html","tf":0.038461538461538464},"case/color_chooser_popup.html":{"ref":"case/color_chooser_popup.html","tf":0.029411764705882353},"detailed/tree/bi.multi_tree_combo.html":{"ref":"detailed/tree/bi.multi_tree_combo.html","tf":0.010869565217391304},"detailed/tree/bi.switch_tree.html":{"ref":"detailed/tree/bi.switch_tree.html","tf":0.013157894736842105},"detailed/table/bi.preview_table.html":{"ref":"detailed/table/bi.preview_table.html","tf":0.006756756756756757},"detailed/table/bi.responsive_table.html":{"ref":"detailed/table/bi.responsive_table.html","tf":0.005263157894736842},"detailed/table/bi.excel_table.html":{"ref":"detailed/table/bi.excel_table.html","tf":0.0055248618784530384},"detailed/table/bi.page_table.html":{"ref":"detailed/table/bi.page_table.html","tf":0.004651162790697674},"detailed/combo/single_tree_combo.html":{"ref":"detailed/combo/single_tree_combo.html","tf":0.01694915254237288},"detailed/combo/multilayer_single_tree_combo.html":{"ref":"detailed/combo/multilayer_single_tree_combo.html","tf":0.018867924528301886},"detailed/combo/select_tree_combo.html":{"ref":"detailed/combo/select_tree_combo.html","tf":0.02040816326530612},"detailed/combo/multilayer_select_tree_combo.html":{"ref":"detailed/combo/multilayer_select_tree_combo.html","tf":0.02040816326530612},"detailed/slider.html":{"ref":"detailed/slider.html","tf":0.029411764705882353}}}}},"是":{"docs":{},"否":{"docs":{},"出":{"docs":{},"现":{"docs":{},"滚":{"docs":{},"动":{"docs":{},"条":{"docs":{"core/layout/table.html":{"ref":"core/layout/table.html","tf":0.012048192771084338}}}}}}},"显":{"docs":{},"示":{"docs":{},"横":{"docs":{},"向":{"docs":{},"滚":{"docs":{},"动":{"docs":{},"条":{"docs":{"core/abstract/grid_view.html":{"ref":"core/abstract/grid_view.html","tf":0.00641025641025641},"core/abstract/collection_view.html":{"ref":"core/abstract/collection_view.html","tf":0.0070921985815602835}}}}}}},"纵":{"docs":{},"向":{"docs":{},"滚":{"docs":{},"动":{"docs":{},"条":{"docs":{"core/abstract/grid_view.html":{"ref":"core/abstract/grid_view.html","tf":0.00641025641025641},"core/abstract/collection_view.html":{"ref":"core/abstract/collection_view.html","tf":0.0070921985815602835}}}}}}},"总":{"docs":{},"页":{"docs":{},"数":{"docs":{"core/combination/loader.html":{"ref":"core/combination/loader.html","tf":0.006289308176100629},"base/pager.html":{"ref":"base/pager.html","tf":0.006666666666666667}}}}},"阴":{"docs":{},"影":{"docs":{"core/basic_button.html":{"ref":"core/basic_button.html","tf":0.007936507936507936},"base/button/button.html":{"ref":"base/button/button.html","tf":0.005681818181818182},"case/combo/bubble_combo.html":{"ref":"case/combo/bubble_combo.html","tf":0.005780346820809248}}}},"提":{"docs":{},"示":{"docs":{},"信":{"docs":{},"息":{"docs":{"base/editor/formula_editor.html":{"ref":"base/editor/formula_editor.html","tf":0.010101010101010102}}}}}},"尾":{"docs":{},"页":{"docs":{"base/pager.html":{"ref":"base/pager.html","tf":0.006666666666666667}}}},"首":{"docs":{},"页":{"docs":{"base/pager.html":{"ref":"base/pager.html","tf":0.006666666666666667}}}}}},"阻":{"docs":{},"止":{"docs":{},"事":{"docs":{},"件":{"docs":{"core/combination/bi.combo.html":{"ref":"core/combination/bi.combo.html","tf":0.004807692307692308}}}}}},"隐":{"docs":{},"藏":{"docs":{},"弹":{"docs":{},"出":{"docs":{},"层":{"docs":{},"检":{"docs":{},"测":{"docs":{"core/combination/bi.combo.html":{"ref":"core/combination/bi.combo.html","tf":0.004807692307692308}}}}}}}}},"需":{"docs":{},"要":{"docs":{},"宽":{"docs":{},"度":{"docs":{},"调":{"docs":{},"整":{"docs":{"core/combination/bi.combo.html":{"ref":"core/combination/bi.combo.html","tf":0.004807692307692308},"core/combination/group_combo.html":{"ref":"core/combination/group_combo.html","tf":0.007874015748031496}}}}}},"高":{"docs":{},"度":{"docs":{},"调":{"docs":{},"整":{"docs":{"core/combination/bi.combo.html":{"ref":"core/combination/bi.combo.html","tf":0.004807692307692308},"core/combination/group_combo.html":{"ref":"core/combination/group_combo.html","tf":0.007874015748031496}}}}}},"合":{"docs":{},"并":{"docs":{},"单":{"docs":{},"元":{"docs":{},"格":{"docs":{"base/table/table_view.html":{"ref":"base/table/table_view.html","tf":0.006289308176100629},"base/table/collection_table.html":{"ref":"base/table/collection_table.html","tf":0.006535947712418301},"base/table/resizable_table.html":{"ref":"base/table/resizable_table.html","tf":0.00625},"case/table/adaptive_table.html":{"ref":"case/table/adaptive_table.html","tf":0.006060606060606061},"case/table/tree_table.html":{"ref":"case/table/tree_table.html","tf":0.00510204081632653},"case/table/layer_tree_table.html":{"ref":"case/table/layer_tree_table.html","tf":0.00510204081632653},"detailed/table/bi.responsive_table.html":{"ref":"detailed/table/bi.responsive_table.html","tf":0.005263157894736842},"detailed/table/bi.excel_table.html":{"ref":"detailed/table/bi.excel_table.html","tf":0.0055248618784530384},"detailed/table/bi.page_table.html":{"ref":"detailed/table/bi.page_table.html","tf":0.004651162790697674}}}}}}},"冻":{"docs":{},"结":{"docs":{"base/table/grid_table.html":{"ref":"base/table/grid_table.html","tf":0.008771929824561403}},"列":{"docs":{"base/table/resizable_table.html":{"ref":"base/table/resizable_table.html","tf":0.00625}}},"表":{"docs":{},"头":{"docs":{"case/table/adaptive_table.html":{"ref":"case/table/adaptive_table.html","tf":0.006060606060606061},"case/table/tree_table.html":{"ref":"case/table/tree_table.html","tf":0.00510204081632653},"case/table/layer_tree_table.html":{"ref":"case/table/layer_tree_table.html","tf":0.00510204081632653},"detailed/table/bi.page_table.html":{"ref":"detailed/table/bi.page_table.html","tf":0.004651162790697674}}}},"单":{"docs":{},"元":{"docs":{},"格":{"docs":{"detailed/table/bi.responsive_table.html":{"ref":"detailed/table/bi.responsive_table.html","tf":0.005263157894736842}}}}}}},"调":{"docs":{},"整":{"docs":{},"大":{"docs":{},"小":{"docs":{"base/table/resizable_table.html":{"ref":"base/table/resizable_table.html","tf":0.00625},"detailed/table/bi.excel_table.html":{"ref":"detailed/table/bi.excel_table.html","tf":0.0055248618784530384}}}},"列":{"docs":{},"宽":{"docs":{"case/table/tree_table.html":{"ref":"case/table/tree_table.html","tf":0.00510204081632653},"case/table/layer_tree_table.html":{"ref":"case/table/layer_tree_table.html","tf":0.00510204081632653}}}}}},"在":{"docs":{},"调":{"docs":{},"整":{"docs":{},"列":{"docs":{},"宽":{"docs":{},"或":{"docs":{},"区":{"docs":{},"域":{"docs":{},"宽":{"docs":{},"度":{"docs":{},"的":{"docs":{},"时":{"docs":{},"候":{"docs":{},"它":{"docs":{},"们":{"docs":{},"自":{"docs":{},"适":{"docs":{},"应":{"docs":{},"变":{"docs":{},"化":{"docs":{"case/table/tree_table.html":{"ref":"case/table/tree_table.html","tf":0.00510204081632653},"case/table/layer_tree_table.html":{"ref":"case/table/layer_tree_table.html","tf":0.00510204081632653}}}}}}}}}}}}}}}}}}}}}},"表":{"docs":{},"尾":{"docs":{"detailed/table/bi.responsive_table.html":{"ref":"detailed/table/bi.responsive_table.html","tf":0.005263157894736842}}}}}},"默":{"docs":{},"认":{"docs":{},"初":{"docs":{},"始":{"docs":{},"化":{"docs":{},"子":{"docs":{},"节":{"docs":{},"点":{"docs":{"core/combination/bi.combo.html":{"ref":"core/combination/bi.combo.html","tf":0.004807692307692308},"core/combination/bi.expander.html":{"ref":"core/combination/bi.expander.html","tf":0.005494505494505495},"core/combination/group_combo.html":{"ref":"core/combination/group_combo.html","tf":0.007874015748031496},"core/combination/searcher.html":{"ref":"core/combination/searcher.html","tf":0.004608294930875576}}}},"数":{"docs":{},"据":{"docs":{"core/combination/loader.html":{"ref":"core/combination/loader.html","tf":0.006289308176100629}}}}}}}},"显":{"docs":{},"示":{"docs":{"core/combination/navigation.html":{"ref":"core/combination/navigation.html","tf":0.007194244604316547}},"t":{"docs":{},"a":{"docs":{},"b":{"docs":{},"页":{"docs":{"core/combination/tab.html":{"ref":"core/combination/tab.html","tf":0.00684931506849315}}}}}}}}}},"为":{"docs":{},"单":{"docs":{},"页":{"docs":{"core/combination/navigation.html":{"ref":"core/combination/navigation.html","tf":0.007194244604316547},"core/combination/tab.html":{"ref":"core/combination/tab.html","tf":0.00684931506849315}}}},"最":{"docs":{},"大":{"docs":{},"日":{"docs":{},"期":{"docs":{"case/calendar.html":{"ref":"case/calendar.html","tf":0.013888888888888888}}}}},"小":{"docs":{},"日":{"docs":{},"期":{"docs":{"case/calendar.html":{"ref":"case/calendar.html","tf":0.013888888888888888}}}}}}},"匹":{"docs":{},"配":{"docs":{"core/combination/searcher.html":{"ref":"core/combination/searcher.html","tf":0.004608294930875576}}}},"正":{"docs":{},"在":{"docs":{},"搜":{"docs":{},"索":{"docs":{"core/combination/searcher.html":{"ref":"core/combination/searcher.html","tf":0.004608294930875576}}}}}},"自":{"docs":{},"动":{"docs":{},"同":{"docs":{},"步":{"docs":{},"数":{"docs":{},"据":{"docs":{},",":{"docs":{"core/combination/searcher.html":{"ref":"core/combination/searcher.html","tf":0.004608294930875576}}}}}}},"搜":{"docs":{},"索":{"docs":{"core/combination/searcher.html":{"ref":"core/combination/searcher.html","tf":0.004608294930875576}}}}}},"停":{"docs":{},"止":{"docs":{},"m":{"docs":{},"o":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"d":{"docs":{},"o":{"docs":{},"w":{"docs":{},"n":{"docs":{},"、":{"docs":{},"m":{"docs":{},"o":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"u":{"docs":{},"p":{"docs":{},"事":{"docs":{},"件":{"docs":{"core/layer/layer_popup.html":{"ref":"core/layer/layer_popup.html","tf":0.0058823529411764705}}}},"向":{"docs":{},"上":{"docs":{},"冒":{"docs":{},"泡":{"docs":{"core/layer/layer_popup.html":{"ref":"core/layer/layer_popup.html","tf":0.0058823529411764705}}}}}}}}}}}}}}}}}}}}}}}}},"有":{"docs":{},"匹":{"docs":{},"配":{"docs":{},"的":{"docs":{},"元":{"docs":{},"素":{"docs":{"core/layer/layer_searcher.html":{"ref":"core/layer/layer_searcher.html","tf":0.009259259259259259},"core/pane.html":{"ref":"core/pane.html","tf":0.0196078431372549}}}}}}},"效":{"docs":{"core/widget.html":{"ref":"core/widget.html","tf":0.00510204081632653}}},"上":{"docs":{},"一":{"docs":{},"页":{"docs":{"case/layer/layer_panel.html":{"ref":"case/layer/layer_panel.html","tf":0.010752688172043012},"case/layer/pane_list.html":{"ref":"case/layer/pane_list.html","tf":0.006802721088435374},"case/list/list.select.html":{"ref":"case/list/list.select.html","tf":0.009433962264150943}}}}},"下":{"docs":{},"一":{"docs":{},"页":{"docs":{"case/layer/layer_panel.html":{"ref":"case/layer/layer_panel.html","tf":0.010752688172043012},"case/layer/pane_list.html":{"ref":"case/layer/pane_list.html","tf":0.013605442176870748},"case/list/list.select.html":{"ref":"case/list/list.select.html","tf":0.009433962264150943},"case/loader/list_loader.html":{"ref":"case/loader/list_loader.html","tf":0.021505376344086023},"case/loader/sort_list.html":{"ref":"case/loader/sort_list.html","tf":0.021505376344086023},"detailed/table/bi.page_table.html":{"ref":"detailed/table/bi.page_table.html","tf":0.004651162790697674}}}}},"前":{"docs":{},"一":{"docs":{},"页":{"docs":{"case/pager/all_count_pager.html":{"ref":"case/pager/all_count_pager.html","tf":0.014705882352941176}}}}},"后":{"docs":{},"一":{"docs":{},"页":{"docs":{"case/pager/all_count_pager.html":{"ref":"case/pager/all_count_pager.html","tf":0.014705882352941176}}}}}},"可":{"docs":{},"用":{"docs":{"core/widget.html":{"ref":"core/widget.html","tf":0.01020408163265306}}},"见":{"docs":{"core/widget.html":{"ref":"core/widget.html","tf":0.01020408163265306}}},"改":{"docs":{},"变":{"docs":{},"列":{"docs":{},"大":{"docs":{},"小":{"docs":{"case/table/adaptive_table.html":{"ref":"case/table/adaptive_table.html","tf":0.006060606060606061}}}}}}}},"只":{"docs":{},"读":{"docs":{"core/single.html":{"ref":"core/single.html","tf":0.027777777777777776},"base/button/button.html":{"ref":"base/button/button.html","tf":0.005681818181818182},"base/editor/code_editor.html":{"ref":"base/editor/code_editor.html","tf":0.012658227848101266}}},"允":{"docs":{},"许":{"docs":{},"点":{"docs":{},"击":{"docs":{},"一":{"docs":{},"次":{"docs":{"core/basic_button.html":{"ref":"core/basic_button.html","tf":0.007936507936507936},"case/combo/bubble_combo.html":{"ref":"case/combo/bubble_combo.html","tf":0.005780346820809248}}}}}}}}},"被":{"docs":{},"选":{"docs":{},"中":{"docs":{"core/basic_button.html":{"ref":"core/basic_button.html","tf":0.007936507936507936},"case/combo/bubble_combo.html":{"ref":"case/combo/bubble_combo.html","tf":0.005780346820809248}}}}},"含":{"docs":{},"有":{"docs":{},"遮":{"docs":{},"罩":{"docs":{},"层":{"docs":{"core/pane.html":{"ref":"core/pane.html","tf":0.0196078431372549}}}}},"数":{"docs":{},"值":{"docs":{},"滚":{"docs":{},"动":{"docs":{},"条":{"docs":{"base/table/table_view.html":{"ref":"base/table/table_view.html","tf":0.006289308176100629},"detailed/table/bi.preview_table.html":{"ref":"detailed/table/bi.preview_table.html","tf":0.006756756756756757},"detailed/table/bi.responsive_table.html":{"ref":"detailed/table/bi.responsive_table.html","tf":0.005263157894736842},"detailed/table/bi.excel_table.html":{"ref":"detailed/table/bi.excel_table.html","tf":0.0055248618784530384}}}}}}}}},"无":{"docs":{},"论":{"docs":{},"如":{"docs":{},"何":{"docs":{},"都":{"docs":{},"要":{"docs":{},"居":{"docs":{},"中":{"docs":{},",":{"docs":{"base/label.html":{"ref":"base/label.html","tf":0.006711409395973154},"base/button/button.html":{"ref":"base/button/button.html","tf":0.005681818181818182},"base/button/text_button.html":{"ref":"base/button/text_button.html","tf":0.009433962264150943}}}}}}}}}}},"去":{"docs":{},"掉":{"docs":{},"边":{"docs":{},"框":{"docs":{},"和":{"docs":{},"背":{"docs":{},"景":{"docs":{"base/button/button.html":{"ref":"base/button/button.html","tf":0.005681818181818182}}}}}}}}},"块":{"docs":{},"状":{"docs":{},"显":{"docs":{},"示":{"docs":{},",":{"docs":{},"即":{"docs":{},"不":{"docs":{},"显":{"docs":{},"示":{"docs":{},"边":{"docs":{},"框":{"docs":{},",":{"docs":{},"没":{"docs":{},"有":{"docs":{},"最":{"docs":{},"小":{"docs":{},"宽":{"docs":{},"度":{"docs":{},"的":{"docs":{},"限":{"docs":{},"制":{"docs":{"base/button/button.html":{"ref":"base/button/button.html","tf":0.005681818181818182}}}}}}}}}}}}}}}}}}}}}}},"允":{"docs":{},"许":{"docs":{},"空":{"docs":{},"值":{"docs":{"base/editor/editor.html":{"ref":"base/editor/editor.html","tf":0.005405405405405406},"case/editor/shelter_editor.html":{"ref":"case/editor/shelter_editor.html","tf":0.0051813471502590676},"case/editor/sign_editor.html":{"ref":"case/editor/sign_editor.html","tf":0.005494505494505495},"case/editor/sign_initial_editor.html":{"ref":"case/editor/sign_initial_editor.html","tf":0.005154639175257732},"case/editor/state_editor.html":{"ref":"case/editor/state_editor.html","tf":0.005747126436781609},"detailed/text_input/bi.text_editor.html":{"ref":"detailed/text_input/bi.text_editor.html","tf":0.010309278350515464},"detailed/text_input/bi.search_editor.html":{"ref":"detailed/text_input/bi.search_editor.html","tf":0.010101010101010102},"detailed/text_input/bi.clear_editor.html":{"ref":"detailed/text_input/bi.clear_editor.html","tf":0.00980392156862745}}}},"退":{"docs":{},"出":{"docs":{},"编":{"docs":{},"辑":{"docs":{},"函":{"docs":{},"数":{"docs":{"base/editor/editor.html":{"ref":"base/editor/editor.html","tf":0.005405405405405406},"case/editor/shelter_editor.html":{"ref":"case/editor/shelter_editor.html","tf":0.0051813471502590676},"case/editor/sign_editor.html":{"ref":"case/editor/sign_editor.html","tf":0.005494505494505495},"case/editor/sign_initial_editor.html":{"ref":"case/editor/sign_initial_editor.html","tf":0.005154639175257732},"case/editor/state_editor.html":{"ref":"case/editor/state_editor.html","tf":0.005747126436781609},"detailed/text_input/bi.text_editor.html":{"ref":"detailed/text_input/bi.text_editor.html","tf":0.010309278350515464},"detailed/text_input/bi.search_editor.html":{"ref":"detailed/text_input/bi.search_editor.html","tf":0.010101010101010102},"detailed/text_input/bi.clear_editor.html":{"ref":"detailed/text_input/bi.clear_editor.html","tf":0.00980392156862745}}}}}}}},"为":{"docs":{},"空":{"docs":{"case/trigger/editor_trigger.html":{"ref":"case/trigger/editor_trigger.html","tf":0.02}}}}}},"支":{"docs":{},"持":{"docs":{},"多":{"docs":{},"选":{"docs":{"base/editor/multifile_editor.html":{"ref":"base/editor/multifile_editor.html","tf":0.015384615384615385}}}}}},"冻":{"docs":{},"结":{"docs":{"detailed/table/bi.preview_table.html":{"ref":"detailed/table/bi.preview_table.html","tf":0.006756756756756757}},"列":{"docs":{"base/table/collection_table.html":{"ref":"base/table/collection_table.html","tf":0.006535947712418301}}}}},"调":{"docs":{},"整":{"docs":{},"时":{"docs":{},"自":{"docs":{},"适":{"docs":{},"应":{"docs":{"base/table/resizable_table.html":{"ref":"base/table/resizable_table.html","tf":0.00625},"detailed/table/bi.excel_table.html":{"ref":"detailed/table/bi.excel_table.html","tf":0.0055248618784530384}}}}}}}},"动":{"docs":{},"态":{"docs":{},"显":{"docs":{},"示":{"docs":{},"上":{"docs":{},"一":{"docs":{},"页":{"docs":{},"、":{"docs":{},"下":{"docs":{},"一":{"docs":{},"页":{"docs":{},",":{"docs":{},"d":{"docs":{},"y":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"i":{"docs":{},"c":{"docs":{},"s":{"docs":{},"h":{"docs":{},"o":{"docs":{},"w":{"docs":{},"为":{"docs":{},"f":{"docs":{},"a":{"docs":{},"l":{"docs":{},"s":{"docs":{},"e":{"docs":{},"时":{"docs":{},"生":{"docs":{},"效":{"docs":{"base/pager.html":{"ref":"base/pager.html","tf":0.006666666666666667}}}}}}}}}}}}}}}}}}}}}}},"、":{"docs":{},"首":{"docs":{},"页":{"docs":{},"、":{"docs":{},"尾":{"docs":{},"页":{"docs":{},",":{"docs":{"base/pager.html":{"ref":"base/pager.html","tf":0.006666666666666667}}}}}}}}}}}}}}}},"首":{"docs":{},"页":{"docs":{},"、":{"docs":{},"尾":{"docs":{},"页":{"docs":{},",":{"docs":{},"d":{"docs":{},"y":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"i":{"docs":{},"c":{"docs":{},"s":{"docs":{},"h":{"docs":{},"o":{"docs":{},"w":{"docs":{},"为":{"docs":{},"f":{"docs":{},"a":{"docs":{},"l":{"docs":{},"s":{"docs":{},"e":{"docs":{},"时":{"docs":{},"生":{"docs":{},"效":{"docs":{"base/pager.html":{"ref":"base/pager.html","tf":0.006666666666666667}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"全":{"docs":{},"选":{"docs":{},"中":{"docs":{"case/list/list.select.html":{"ref":"case/list/list.select.html","tf":0.009433962264150943}}}}}}},"更":{"docs":{},"换":{"docs":{},"新":{"docs":{},"的":{"docs":{},"内":{"docs":{},"容":{"docs":{"core/layout/table.html":{"ref":"core/layout/table.html","tf":0.012048192771084338},"core/layout/td.html":{"ref":"core/layout/td.html","tf":0.017857142857142856}}}}}}},"改":{"docs":{},"树":{"docs":{},"结":{"docs":{},"构":{"docs":{},"内":{"docs":{},"容":{"docs":{"detailed/tree/bi.multi_tree_combo.html":{"ref":"detailed/tree/bi.multi_tree_combo.html","tf":0.010869565217391304},"detailed/tree/bi.switch_tree.html":{"ref":"detailed/tree/bi.switch_tree.html","tf":0.013157894736842105}}}}}}}}},"用":{"docs":{},"法":{"docs":{"core/layout/table.html":{"ref":"core/layout/table.html","tf":0.012048192771084338},"core/layout/td.html":{"ref":"core/layout/td.html","tf":0.017857142857142856},"detailed/numeric_interval.html":{"ref":"detailed/numeric_interval.html","tf":0.017241379310344827}}},"于":{"docs":{},"表":{"docs":{},"格":{"docs":{},"预":{"docs":{},"览":{"docs":{},",":{"docs":{},"继":{"docs":{},"承":{"docs":{},"b":{"docs":{},"i":{"docs":{},".":{"docs":{},"w":{"docs":{},"i":{"docs":{},"d":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{"detailed/table/bi.preview_table.html":{"ref":"detailed/table/bi.preview_table.html","tf":0.006756756756756757}}}}}}}}}}}}}}}}}}}},"单":{"docs":{},"元":{"docs":{},"格":{"docs":{},"控":{"docs":{},"件":{"docs":{},",":{"docs":{},"继":{"docs":{},"承":{"docs":{},"b":{"docs":{},"i":{"docs":{},".":{"docs":{},"l":{"docs":{},"a":{"docs":{},"y":{"docs":{},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{"core/layout/td.html":{"ref":"core/layout/td.html","tf":0.017857142857142856}}}}}}}}}}}}}}}},"宽":{"docs":{},"度":{"docs":{},"集":{"docs":{},"合":{"docs":{"base/table/table_view.html":{"ref":"base/table/table_view.html","tf":0.006289308176100629},"base/table/grid_table.html":{"ref":"base/table/grid_table.html","tf":0.008771929824561403},"base/table/collection_table.html":{"ref":"base/table/collection_table.html","tf":0.006535947712418301},"base/table/resizable_table.html":{"ref":"base/table/resizable_table.html","tf":0.00625},"case/table/adaptive_table.html":{"ref":"case/table/adaptive_table.html","tf":0.006060606060606061},"case/table/tree_table.html":{"ref":"case/table/tree_table.html","tf":0.00510204081632653},"case/table/layer_tree_table.html":{"ref":"case/table/layer_tree_table.html","tf":0.00510204081632653},"detailed/table/bi.excel_table.html":{"ref":"detailed/table/bi.excel_table.html","tf":0.0055248618784530384},"detailed/table/bi.page_table.html":{"ref":"detailed/table/bi.page_table.html","tf":0.004651162790697674}}}}}}}},"选":{"docs":{},"框":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},",":{"docs":{},"基":{"docs":{},"类":{"docs":{},"b":{"docs":{},"i":{"docs":{},".":{"docs":{},"b":{"docs":{},"a":{"docs":{},"s":{"docs":{},"i":{"docs":{},"c":{"docs":{},"b":{"docs":{},"u":{"docs":{},"t":{"docs":{},"t":{"docs":{},"o":{"docs":{},"n":{"docs":{"case/button/single_select_radio_item.html":{"ref":"case/button/single_select_radio_item.html","tf":0.016129032258064516}}}}}}}}}}}}}}}}}}}}}}}},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"b":{"docs":{},"o":{"docs":{},",":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"g":{"docs":{},"g":{"docs":{},"e":{"docs":{},"r":{"docs":{},"显":{"docs":{},"示":{"docs":{},"项":{"docs":{},"不":{"docs":{},"会":{"docs":{},"改":{"docs":{},"变":{"docs":{"case/combo/static_combo.html":{"ref":"case/combo/static_combo.html","tf":0.0125}}}}}}}}}}}}}}}}}}}}}}}},"横":{"docs":{},"向":{"docs":{},"间":{"docs":{},"隙":{"docs":{"core/layout/td.html":{"ref":"core/layout/td.html","tf":0.017857142857142856}}}},"超":{"docs":{},"出":{"docs":{},"可":{"docs":{},"视":{"docs":{},"范":{"docs":{},"围":{"docs":{},"区":{"docs":{},"域":{"docs":{},"预":{"docs":{},"加":{"docs":{},"载":{"docs":{},"的":{"docs":{},"数":{"docs":{},"量":{"docs":{"core/abstract/collection_view.html":{"ref":"core/abstract/collection_view.html","tf":0.0070921985815602835}}}}}}}}}}}}}}}},"分":{"docs":{},"支":{"docs":{},"的":{"docs":{},"树":{"docs":{"case/tree/branch_tree.html":{"ref":"case/tree/branch_tree.html","tf":0.02}}}}}},"滚":{"docs":{},"动":{"docs":{},"距":{"docs":{},"离":{"docs":{"case/table/adaptive_table.html":{"ref":"case/table/adaptive_table.html","tf":0.012121212121212121},"case/table/tree_table.html":{"ref":"case/table/tree_table.html","tf":0.01020408163265306},"case/table/layer_tree_table.html":{"ref":"case/table/layer_tree_table.html","tf":0.01020408163265306},"detailed/table/bi.page_table.html":{"ref":"detailed/table/bi.page_table.html","tf":0.009302325581395349}}}}}},"坐":{"docs":{},"标":{"docs":{},"是":{"docs":{},"否":{"docs":{},"有":{"docs":{},"上":{"docs":{},"一":{"docs":{},"页":{"docs":{"case/pager/direction_pager.html":{"ref":"case/pager/direction_pager.html","tf":0.00819672131147541}}}}},"下":{"docs":{},"一":{"docs":{},"页":{"docs":{"case/pager/direction_pager.html":{"ref":"case/pager/direction_pager.html","tf":0.00819672131147541}}}}}}}}}},"翻":{"docs":{},"页":{"docs":{},"设":{"docs":{},"置":{"docs":{"case/pager/direction_pager.html":{"ref":"case/pager/direction_pager.html","tf":0.00819672131147541}}}}}}}},"纵":{"docs":{},"向":{"docs":{},"间":{"docs":{},"隙":{"docs":{"core/layout/td.html":{"ref":"core/layout/td.html","tf":0.017857142857142856}}}},"超":{"docs":{},"出":{"docs":{},"可":{"docs":{},"视":{"docs":{},"范":{"docs":{},"围":{"docs":{},"区":{"docs":{},"域":{"docs":{},"预":{"docs":{},"加":{"docs":{},"载":{"docs":{},"的":{"docs":{},"数":{"docs":{},"量":{"docs":{"core/abstract/collection_view.html":{"ref":"core/abstract/collection_view.html","tf":0.0070921985815602835}}}}}}}}}}}}}}}},"分":{"docs":{},"支":{"docs":{},"的":{"docs":{},"树":{"docs":{"case/tree/handstand_branch_tree.html":{"ref":"case/tree/handstand_branch_tree.html","tf":0.019230769230769232}}}}},"页":{"docs":{},",":{"docs":{},"参":{"docs":{},"数":{"docs":{},"与":{"docs":{},"h":{"docs":{},"o":{"docs":{},"r":{"docs":{},"i":{"docs":{},"z":{"docs":{},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{"detailed/table/bi.page_table.html":{"ref":"detailed/table/bi.page_table.html","tf":0.004651162790697674}}}}}}}}}}}}}}}},"滚":{"docs":{},"动":{"docs":{},"距":{"docs":{},"离":{"docs":{"case/table/adaptive_table.html":{"ref":"case/table/adaptive_table.html","tf":0.006060606060606061},"case/table/tree_table.html":{"ref":"case/table/tree_table.html","tf":0.00510204081632653},"case/table/layer_tree_table.html":{"ref":"case/table/layer_tree_table.html","tf":0.00510204081632653},"detailed/table/bi.page_table.html":{"ref":"detailed/table/bi.page_table.html","tf":0.004651162790697674}}}}}},"坐":{"docs":{},"标":{"docs":{},"是":{"docs":{},"否":{"docs":{},"有":{"docs":{},"上":{"docs":{},"一":{"docs":{},"页":{"docs":{"case/pager/direction_pager.html":{"ref":"case/pager/direction_pager.html","tf":0.00819672131147541}}}}},"下":{"docs":{},"一":{"docs":{},"页":{"docs":{"case/pager/direction_pager.html":{"ref":"case/pager/direction_pager.html","tf":0.00819672131147541}}}}}}}}}},"翻":{"docs":{},"页":{"docs":{},"设":{"docs":{},"置":{"docs":{},",":{"docs":{},"参":{"docs":{},"数":{"docs":{},"与":{"docs":{},"h":{"docs":{},"o":{"docs":{},"r":{"docs":{},"i":{"docs":{},"z":{"docs":{},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{},"a":{"docs":{},"l":{"docs":{},"相":{"docs":{},"同":{"docs":{"case/pager/direction_pager.html":{"ref":"case/pager/direction_pager.html","tf":0.00819672131147541}}}}}}}}}}}}}}}}}}}}}}}},"一":{"docs":{},"组":{"docs":{},"具":{"docs":{},"有":{"docs":{},"相":{"docs":{},"同":{"docs":{},"属":{"docs":{},"性":{"docs":{},"的":{"docs":{},"元":{"docs":{},"素":{"docs":{},"集":{"docs":{},"合":{"docs":{},",":{"docs":{},"基":{"docs":{},"类":{"docs":{},"b":{"docs":{},"i":{"docs":{},".":{"docs":{},"w":{"docs":{},"i":{"docs":{},"d":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{"core/abstract/button_group.html":{"ref":"core/abstract/button_group.html","tf":0.007936507936507936}}}}}}}},"b":{"docs":{},"u":{"docs":{},"t":{"docs":{},"t":{"docs":{},"o":{"docs":{},"n":{"docs":{},"g":{"docs":{},"r":{"docs":{},"o":{"docs":{},"u":{"docs":{},"p":{"docs":{"core/abstract/button_tree.html":{"ref":"core/abstract/button_tree.html","tf":0.014925373134328358}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"般":{"docs":{},"的":{"docs":{},"b":{"docs":{},"u":{"docs":{},"t":{"docs":{},"t":{"docs":{},"o":{"docs":{},"n":{"docs":{},"父":{"docs":{},"级":{"docs":{},",":{"docs":{},"基":{"docs":{},"类":{"docs":{},"b":{"docs":{},"i":{"docs":{},".":{"docs":{},"s":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"l":{"docs":{"core/basic_button.html":{"ref":"core/basic_button.html","tf":0.007936507936507936}}}}}}}}}}}}}}}}}}}}}}}},"刷":{"docs":{},"新":{"docs":{},"列":{"docs":{},"表":{"docs":{"core/abstract/button_group.html":{"ref":"core/abstract/button_group.html","tf":0.007936507936507936},"core/abstract/virtual_group.html":{"ref":"core/abstract/virtual_group.html","tf":0.014492753623188406},"core/abstract/custom_tree.html":{"ref":"core/abstract/custom_tree.html","tf":0.007194244604316547},"core/abstract/grid_view.html":{"ref":"core/abstract/grid_view.html","tf":0.00641025641025641},"core/abstract/collection_view.html":{"ref":"core/abstract/collection_view.html","tf":0.0070921985815602835},"core/abstract/virtual_list.html":{"ref":"core/abstract/virtual_list.html","tf":0.0125},"core/combination/bi.combo.html":{"ref":"core/combination/bi.combo.html","tf":0.004807692307692308},"core/combination/bi.expander.html":{"ref":"core/combination/bi.expander.html","tf":0.005494505494505495},"core/combination/group_combo.html":{"ref":"core/combination/group_combo.html","tf":0.007874015748031496},"core/combination/loader.html":{"ref":"core/combination/loader.html","tf":0.006289308176100629},"core/combination/navigation.html":{"ref":"core/combination/navigation.html","tf":0.007194244604316547},"core/combination/searcher.html":{"ref":"core/combination/searcher.html","tf":0.004608294930875576},"core/combination/switcher.html":{"ref":"core/combination/switcher.html","tf":0.00625},"core/combination/tab.html":{"ref":"core/combination/tab.html","tf":0.00684931506849315},"core/layer/layer_float_box.html":{"ref":"core/layer/layer_float_box.html","tf":0.012345679012345678},"core/layer/layer_popup.html":{"ref":"core/layer/layer_popup.html","tf":0.0058823529411764705},"core/layer/layer_searcher.html":{"ref":"core/layer/layer_searcher.html","tf":0.009259259259259259},"core/pane.html":{"ref":"core/pane.html","tf":0.0196078431372549},"case/layer/layer_panel.html":{"ref":"case/layer/layer_panel.html","tf":0.010752688172043012},"case/layer/pane_list.html":{"ref":"case/layer/pane_list.html","tf":0.006802721088435374},"case/combo/icon_combo.html":{"ref":"case/combo/icon_combo.html","tf":0.007751937984496124},"case/combo/static_combo.html":{"ref":"case/combo/static_combo.html","tf":0.0125},"case/combo/text_value_combo.html":{"ref":"case/combo/text_value_combo.html","tf":0.013513513513513514},"case/combo/text_value_downlist_combo.html":{"ref":"case/combo/text_value_downlist_combo.html","tf":0.013513513513513514}}}},"或":{"docs":{},"者":{"docs":{},"清":{"docs":{},"空":{"docs":{},"列":{"docs":{},"表":{"docs":{"core/single.html":{"ref":"core/single.html","tf":0.013888888888888888},"base/pager.html":{"ref":"base/pager.html","tf":0.006666666666666667}}}}}}}},"文":{"docs":{},"本":{"docs":{},"框":{"docs":{"base/editor/code_editor.html":{"ref":"base/editor/code_editor.html","tf":0.012658227848101266},"base/editor/formula_editor.html":{"ref":"base/editor/formula_editor.html","tf":0.010101010101010102}}}}},"内":{"docs":{},"容":{"docs":{"base/table/table_view.html":{"ref":"base/table/table_view.html","tf":0.006289308176100629},"base/table/grid_table.html":{"ref":"base/table/grid_table.html","tf":0.008771929824561403},"base/table/resizable_table.html":{"ref":"base/table/resizable_table.html","tf":0.00625},"detailed/combo/single_tree_combo.html":{"ref":"detailed/combo/single_tree_combo.html","tf":0.01694915254237288},"detailed/combo/multilayer_single_tree_combo.html":{"ref":"detailed/combo/multilayer_single_tree_combo.html","tf":0.018867924528301886},"detailed/combo/select_tree_combo.html":{"ref":"detailed/combo/select_tree_combo.html","tf":0.02040816326530612},"detailed/combo/multilayer_select_tree_combo.html":{"ref":"detailed/combo/multilayer_select_tree_combo.html","tf":0.02040816326530612}}}}}},"名":{"docs":{},"称":{"docs":{"core/abstract/button_group.html":{"ref":"core/abstract/button_group.html","tf":0.007936507936507936},"core/abstract/button_tree.html":{"ref":"core/abstract/button_tree.html","tf":0.014925373134328358},"core/abstract/virtual_group.html":{"ref":"core/abstract/virtual_group.html","tf":0.014492753623188406},"core/abstract/custom_tree.html":{"ref":"core/abstract/custom_tree.html","tf":0.007194244604316547},"core/abstract/grid_view.html":{"ref":"core/abstract/grid_view.html","tf":0.00641025641025641},"core/abstract/collection_view.html":{"ref":"core/abstract/collection_view.html","tf":0.0070921985815602835},"core/abstract/virtual_list.html":{"ref":"core/abstract/virtual_list.html","tf":0.0125},"core/combination/bi.combo.html":{"ref":"core/combination/bi.combo.html","tf":0.009615384615384616},"core/combination/bi.expander.html":{"ref":"core/combination/bi.expander.html","tf":0.01098901098901099},"core/combination/group_combo.html":{"ref":"core/combination/group_combo.html","tf":0.007874015748031496},"core/combination/loader.html":{"ref":"core/combination/loader.html","tf":0.006289308176100629},"core/combination/navigation.html":{"ref":"core/combination/navigation.html","tf":0.007194244604316547},"core/combination/searcher.html":{"ref":"core/combination/searcher.html","tf":0.004608294930875576},"core/combination/switcher.html":{"ref":"core/combination/switcher.html","tf":0.00625},"core/combination/tab.html":{"ref":"core/combination/tab.html","tf":0.00684931506849315},"core/layer/layer_float_box.html":{"ref":"core/layer/layer_float_box.html","tf":0.012345679012345678},"core/layer/layer_popup.html":{"ref":"core/layer/layer_popup.html","tf":0.0058823529411764705},"core/layer/layer_searcher.html":{"ref":"core/layer/layer_searcher.html","tf":0.009259259259259259},"core/widget.html":{"ref":"core/widget.html","tf":0.01020408163265306},"core/single.html":{"ref":"core/single.html","tf":0.013888888888888888},"core/basic_button.html":{"ref":"core/basic_button.html","tf":0.007936507936507936},"core/node_button.html":{"ref":"core/node_button.html","tf":0.02631578947368421},"core/pane.html":{"ref":"core/pane.html","tf":0.0196078431372549},"base/label.html":{"ref":"base/label.html","tf":0.006711409395973154},"base/bubble.html":{"ref":"base/bubble.html","tf":0.023255813953488372},"base/toast.html":{"ref":"base/toast.html","tf":0.020833333333333332},"base/message.html":{"ref":"base/message.html","tf":0.02127659574468085},"base/button/button.html":{"ref":"base/button/button.html","tf":0.005681818181818182},"base/button/text_button.html":{"ref":"base/button/text_button.html","tf":0.009433962264150943},"base/button/icon_button.html":{"ref":"base/button/icon_button.html","tf":0.02564102564102564},"base/button/image_button.html":{"ref":"base/button/image_button.html","tf":0.014925373134328358},"base/editor/editor.html":{"ref":"base/editor/editor.html","tf":0.005405405405405406},"base/editor/code_editor.html":{"ref":"base/editor/code_editor.html","tf":0.012658227848101266},"base/editor/multifile_editor.html":{"ref":"base/editor/multifile_editor.html","tf":0.015384615384615385},"base/editor/textarea_editor.html":{"ref":"base/editor/textarea_editor.html","tf":0.021739130434782608},"base/editor/formula_editor.html":{"ref":"base/editor/formula_editor.html","tf":0.010101010101010102},"base/pager.html":{"ref":"base/pager.html","tf":0.013333333333333334},"base/svg.html":{"ref":"base/svg.html","tf":0.011235955056179775},"base/canvas.html":{"ref":"base/canvas.html","tf":0.016666666666666666},"case/button/multi_select_item.html":{"ref":"case/button/multi_select_item.html","tf":0.017543859649122806},"case/button/single_select_item.html":{"ref":"case/button/single_select_item.html","tf":0.016129032258064516},"case/button/single_select_radio_item.html":{"ref":"case/button/single_select_radio_item.html","tf":0.016129032258064516},"case/editor/shelter_editor.html":{"ref":"case/editor/shelter_editor.html","tf":0.0051813471502590676},"case/editor/sign_editor.html":{"ref":"case/editor/sign_editor.html","tf":0.005494505494505495},"case/editor/sign_initial_editor.html":{"ref":"case/editor/sign_initial_editor.html","tf":0.005154639175257732},"case/editor/state_editor.html":{"ref":"case/editor/state_editor.html","tf":0.005747126436781609},"case/layer/layer_panel.html":{"ref":"case/layer/layer_panel.html","tf":0.010752688172043012},"case/layer/pane_list.html":{"ref":"case/layer/pane_list.html","tf":0.006802721088435374},"case/layer/panel.html":{"ref":"case/layer/panel.html","tf":0.015873015873015872},"case/combo/bubble_combo.html":{"ref":"case/combo/bubble_combo.html","tf":0.005780346820809248},"case/combo/icon_combo.html":{"ref":"case/combo/icon_combo.html","tf":0.007751937984496124},"case/combo/static_combo.html":{"ref":"case/combo/static_combo.html","tf":0.0125},"case/combo/text_value_combo.html":{"ref":"case/combo/text_value_combo.html","tf":0.013513513513513514},"case/combo/text_value_downlist_combo.html":{"ref":"case/combo/text_value_downlist_combo.html","tf":0.013513513513513514},"case/complex_canvas.html":{"ref":"case/complex_canvas.html","tf":0.020833333333333332}}}},"回":{"docs":{},"调":{"docs":{},"参":{"docs":{},"数":{"docs":{"core/abstract/button_group.html":{"ref":"core/abstract/button_group.html","tf":0.007936507936507936},"core/abstract/button_tree.html":{"ref":"core/abstract/button_tree.html","tf":0.014925373134328358},"core/abstract/virtual_group.html":{"ref":"core/abstract/virtual_group.html","tf":0.014492753623188406},"core/abstract/custom_tree.html":{"ref":"core/abstract/custom_tree.html","tf":0.007194244604316547},"core/abstract/grid_view.html":{"ref":"core/abstract/grid_view.html","tf":0.01282051282051282},"core/abstract/collection_view.html":{"ref":"core/abstract/collection_view.html","tf":0.014184397163120567},"core/abstract/virtual_list.html":{"ref":"core/abstract/virtual_list.html","tf":0.0125},"core/combination/bi.combo.html":{"ref":"core/combination/bi.combo.html","tf":0.004807692307692308},"core/combination/bi.expander.html":{"ref":"core/combination/bi.expander.html","tf":0.005494505494505495},"core/combination/group_combo.html":{"ref":"core/combination/group_combo.html","tf":0.007874015748031496},"core/combination/loader.html":{"ref":"core/combination/loader.html","tf":0.006289308176100629},"core/combination/navigation.html":{"ref":"core/combination/navigation.html","tf":0.007194244604316547},"core/combination/searcher.html":{"ref":"core/combination/searcher.html","tf":0.009216589861751152},"core/combination/switcher.html":{"ref":"core/combination/switcher.html","tf":0.0125},"core/combination/tab.html":{"ref":"core/combination/tab.html","tf":0.00684931506849315},"core/layer/layer_float_box.html":{"ref":"core/layer/layer_float_box.html","tf":0.024691358024691357},"core/layer/layer_popup.html":{"ref":"core/layer/layer_popup.html","tf":0.0058823529411764705},"core/layer/layer_searcher.html":{"ref":"core/layer/layer_searcher.html","tf":0.009259259259259259},"core/widget.html":{"ref":"core/widget.html","tf":0.01020408163265306},"core/single.html":{"ref":"core/single.html","tf":0.013888888888888888},"core/basic_button.html":{"ref":"core/basic_button.html","tf":0.007936507936507936},"core/node_button.html":{"ref":"core/node_button.html","tf":0.02631578947368421},"core/pane.html":{"ref":"core/pane.html","tf":0.0196078431372549},"base/label.html":{"ref":"base/label.html","tf":0.006711409395973154},"base/bubble.html":{"ref":"base/bubble.html","tf":0.023255813953488372},"base/toast.html":{"ref":"base/toast.html","tf":0.020833333333333332},"base/message.html":{"ref":"base/message.html","tf":0.02127659574468085},"base/button/button.html":{"ref":"base/button/button.html","tf":0.005681818181818182},"base/button/text_button.html":{"ref":"base/button/text_button.html","tf":0.009433962264150943},"base/button/icon_button.html":{"ref":"base/button/icon_button.html","tf":0.02564102564102564},"base/button/image_button.html":{"ref":"base/button/image_button.html","tf":0.014925373134328358},"base/editor/editor.html":{"ref":"base/editor/editor.html","tf":0.005405405405405406},"base/editor/code_editor.html":{"ref":"base/editor/code_editor.html","tf":0.012658227848101266},"base/editor/multifile_editor.html":{"ref":"base/editor/multifile_editor.html","tf":0.015384615384615385},"base/editor/textarea_editor.html":{"ref":"base/editor/textarea_editor.html","tf":0.021739130434782608},"base/editor/formula_editor.html":{"ref":"base/editor/formula_editor.html","tf":0.010101010101010102},"base/pager.html":{"ref":"base/pager.html","tf":0.006666666666666667},"base/svg.html":{"ref":"base/svg.html","tf":0.011235955056179775},"base/canvas.html":{"ref":"base/canvas.html","tf":0.016666666666666666},"case/button/multi_select_item.html":{"ref":"case/button/multi_select_item.html","tf":0.017543859649122806},"case/button/single_select_item.html":{"ref":"case/button/single_select_item.html","tf":0.016129032258064516},"case/button/single_select_radio_item.html":{"ref":"case/button/single_select_radio_item.html","tf":0.016129032258064516},"case/editor/shelter_editor.html":{"ref":"case/editor/shelter_editor.html","tf":0.0051813471502590676},"case/editor/sign_editor.html":{"ref":"case/editor/sign_editor.html","tf":0.005494505494505495},"case/editor/sign_initial_editor.html":{"ref":"case/editor/sign_initial_editor.html","tf":0.005154639175257732},"case/editor/state_editor.html":{"ref":"case/editor/state_editor.html","tf":0.005747126436781609},"case/layer/layer_panel.html":{"ref":"case/layer/layer_panel.html","tf":0.010752688172043012},"case/layer/pane_list.html":{"ref":"case/layer/pane_list.html","tf":0.006802721088435374},"case/layer/panel.html":{"ref":"case/layer/panel.html","tf":0.015873015873015872},"case/combo/bubble_combo.html":{"ref":"case/combo/bubble_combo.html","tf":0.005780346820809248},"case/combo/icon_combo.html":{"ref":"case/combo/icon_combo.html","tf":0.007751937984496124},"case/combo/static_combo.html":{"ref":"case/combo/static_combo.html","tf":0.0125},"case/combo/text_value_combo.html":{"ref":"case/combo/text_value_combo.html","tf":0.013513513513513514},"case/combo/text_value_downlist_combo.html":{"ref":"case/combo/text_value_downlist_combo.html","tf":0.013513513513513514},"case/complex_canvas.html":{"ref":"case/complex_canvas.html","tf":0.020833333333333332},"detailed/combo/multilayer_single_tree_combo.html":{"ref":"detailed/combo/multilayer_single_tree_combo.html","tf":0.018867924528301886},"detailed/combo/select_tree_combo.html":{"ref":"detailed/combo/select_tree_combo.html","tf":0.02040816326530612},"detailed/combo/multilayer_select_tree_combo.html":{"ref":"detailed/combo/multilayer_select_tree_combo.html","tf":0.02040816326530612}}}}},"车":{"docs":{},"事":{"docs":{},"件":{"docs":{"base/editor/editor.html":{"ref":"base/editor/editor.html","tf":0.005405405405405406},"case/editor/shelter_editor.html":{"ref":"case/editor/shelter_editor.html","tf":0.0051813471502590676},"case/editor/sign_editor.html":{"ref":"case/editor/sign_editor.html","tf":0.005494505494505495},"case/editor/sign_initial_editor.html":{"ref":"case/editor/sign_initial_editor.html","tf":0.005154639175257732},"case/editor/state_editor.html":{"ref":"case/editor/state_editor.html","tf":0.005747126436781609}}}},"但":{"docs":{},"是":{"docs":{},"值":{"docs":{},"不":{"docs":{},"合":{"docs":{},"法":{"docs":{"base/editor/editor.html":{"ref":"base/editor/editor.html","tf":0.005405405405405406},"case/editor/shelter_editor.html":{"ref":"case/editor/shelter_editor.html","tf":0.0051813471502590676},"case/editor/sign_editor.html":{"ref":"case/editor/sign_editor.html","tf":0.005494505494505495},"case/editor/sign_initial_editor.html":{"ref":"case/editor/sign_initial_editor.html","tf":0.005154639175257732},"case/editor/state_editor.html":{"ref":"case/editor/state_editor.html","tf":0.005747126436781609}}}}}}}}}},"对":{"docs":{},"外":{"docs":{},"方":{"docs":{},"法":{"docs":{"core/abstract/button_group.html":{"ref":"core/abstract/button_group.html","tf":0.007936507936507936},"core/abstract/button_tree.html":{"ref":"core/abstract/button_tree.html","tf":0.014925373134328358},"core/abstract/virtual_group.html":{"ref":"core/abstract/virtual_group.html","tf":0.014492753623188406},"core/abstract/custom_tree.html":{"ref":"core/abstract/custom_tree.html","tf":0.007194244604316547},"core/abstract/grid_view.html":{"ref":"core/abstract/grid_view.html","tf":0.00641025641025641},"core/abstract/collection_view.html":{"ref":"core/abstract/collection_view.html","tf":0.0070921985815602835},"core/abstract/virtual_list.html":{"ref":"core/abstract/virtual_list.html","tf":0.0125},"core/combination/bi.combo.html":{"ref":"core/combination/bi.combo.html","tf":0.004807692307692308},"core/combination/bi.expander.html":{"ref":"core/combination/bi.expander.html","tf":0.005494505494505495},"core/combination/group_combo.html":{"ref":"core/combination/group_combo.html","tf":0.007874015748031496},"core/combination/loader.html":{"ref":"core/combination/loader.html","tf":0.006289308176100629},"core/combination/navigation.html":{"ref":"core/combination/navigation.html","tf":0.007194244604316547},"core/combination/searcher.html":{"ref":"core/combination/searcher.html","tf":0.004608294930875576},"core/combination/switcher.html":{"ref":"core/combination/switcher.html","tf":0.00625},"core/combination/tab.html":{"ref":"core/combination/tab.html","tf":0.00684931506849315},"core/layer/layer_float_box.html":{"ref":"core/layer/layer_float_box.html","tf":0.012345679012345678},"core/layer/layer_popup.html":{"ref":"core/layer/layer_popup.html","tf":0.0058823529411764705},"core/layer/layer_searcher.html":{"ref":"core/layer/layer_searcher.html","tf":0.009259259259259259},"core/widget.html":{"ref":"core/widget.html","tf":0.00510204081632653},"core/single.html":{"ref":"core/single.html","tf":0.013888888888888888},"core/basic_button.html":{"ref":"core/basic_button.html","tf":0.007936507936507936},"core/node_button.html":{"ref":"core/node_button.html","tf":0.02631578947368421},"core/pane.html":{"ref":"core/pane.html","tf":0.0196078431372549},"base/label.html":{"ref":"base/label.html","tf":0.006711409395973154},"base/bubble.html":{"ref":"base/bubble.html","tf":0.023255813953488372},"base/toast.html":{"ref":"base/toast.html","tf":0.020833333333333332},"base/message.html":{"ref":"base/message.html","tf":0.02127659574468085},"base/button/button.html":{"ref":"base/button/button.html","tf":0.005681818181818182},"base/button/text_button.html":{"ref":"base/button/text_button.html","tf":0.009433962264150943},"base/button/icon_button.html":{"ref":"base/button/icon_button.html","tf":0.02564102564102564},"base/button/image_button.html":{"ref":"base/button/image_button.html","tf":0.014925373134328358},"base/editor/editor.html":{"ref":"base/editor/editor.html","tf":0.005405405405405406},"base/editor/code_editor.html":{"ref":"base/editor/code_editor.html","tf":0.012658227848101266},"base/editor/multifile_editor.html":{"ref":"base/editor/multifile_editor.html","tf":0.015384615384615385},"base/editor/textarea_editor.html":{"ref":"base/editor/textarea_editor.html","tf":0.021739130434782608},"base/editor/formula_editor.html":{"ref":"base/editor/formula_editor.html","tf":0.010101010101010102},"base/pager.html":{"ref":"base/pager.html","tf":0.006666666666666667},"base/svg.html":{"ref":"base/svg.html","tf":0.011235955056179775},"base/canvas.html":{"ref":"base/canvas.html","tf":0.016666666666666666},"case/button/multi_select_item.html":{"ref":"case/button/multi_select_item.html","tf":0.017543859649122806},"case/button/single_select_item.html":{"ref":"case/button/single_select_item.html","tf":0.016129032258064516},"case/button/single_select_radio_item.html":{"ref":"case/button/single_select_radio_item.html","tf":0.016129032258064516},"case/editor/shelter_editor.html":{"ref":"case/editor/shelter_editor.html","tf":0.0051813471502590676},"case/editor/sign_editor.html":{"ref":"case/editor/sign_editor.html","tf":0.005494505494505495},"case/editor/sign_initial_editor.html":{"ref":"case/editor/sign_initial_editor.html","tf":0.005154639175257732},"case/editor/state_editor.html":{"ref":"case/editor/state_editor.html","tf":0.005747126436781609},"case/layer/layer_panel.html":{"ref":"case/layer/layer_panel.html","tf":0.010752688172043012},"case/layer/pane_list.html":{"ref":"case/layer/pane_list.html","tf":0.006802721088435374},"case/layer/panel.html":{"ref":"case/layer/panel.html","tf":0.015873015873015872},"case/combo/bubble_combo.html":{"ref":"case/combo/bubble_combo.html","tf":0.005780346820809248},"case/combo/icon_combo.html":{"ref":"case/combo/icon_combo.html","tf":0.007751937984496124},"case/combo/static_combo.html":{"ref":"case/combo/static_combo.html","tf":0.0125},"case/combo/text_value_combo.html":{"ref":"case/combo/text_value_combo.html","tf":0.013513513513513514},"case/combo/text_value_downlist_combo.html":{"ref":"case/combo/text_value_downlist_combo.html","tf":0.013513513513513514},"case/complex_canvas.html":{"ref":"case/complex_canvas.html","tf":0.020833333333333332}}}}},"齐":{"docs":{},"方":{"docs":{},"式":{"docs":{"case/editor/shelter_editor.html":{"ref":"case/editor/shelter_editor.html","tf":0.0051813471502590676}}},"向":{"docs":{"case/tree/branch_relation.html":{"ref":"case/tree/branch_relation.html","tf":0.02040816326530612}}}}},"话":{"docs":{},"框":{"docs":{"detailed/dialog.html":{"ref":"detailed/dialog.html","tf":0.043478260869565216}},"内":{"docs":{},"容":{"docs":{"detailed/dialog.html":{"ref":"detailed/dialog.html","tf":0.043478260869565216}}}},"标":{"docs":{},"题":{"docs":{"detailed/dialog.html":{"ref":"detailed/dialog.html","tf":0.043478260869565216}}}}}}},"布":{"docs":{},"局":{"docs":{"core/abstract/button_group.html":{"ref":"core/abstract/button_group.html","tf":0.007936507936507936},"core/abstract/virtual_group.html":{"ref":"core/abstract/virtual_group.html","tf":0.014492753623188406},"base/pager.html":{"ref":"base/pager.html","tf":0.006666666666666667}},"逻":{"docs":{},"辑":{"docs":{"core/combination/loader.html":{"ref":"core/combination/loader.html","tf":0.006289308176100629},"core/combination/navigation.html":{"ref":"core/combination/navigation.html","tf":0.007194244604316547},"core/combination/tab.html":{"ref":"core/combination/tab.html","tf":0.00684931506849315},"core/layer/layer_popup.html":{"ref":"core/layer/layer_popup.html","tf":0.0058823529411764705},"case/button/multi_select_item.html":{"ref":"case/button/multi_select_item.html","tf":0.017543859649122806},"case/layer/pane_list.html":{"ref":"case/layer/pane_list.html","tf":0.006802721088435374},"case/layer/panel.html":{"ref":"case/layer/panel.html","tf":0.015873015873015872}}}}}},"根":{"docs":{},"据":{"docs":{},"i":{"docs":{},"d":{"docs":{},"获":{"docs":{},"取":{"docs":{},"节":{"docs":{},"点":{"docs":{"core/abstract/button_group.html":{"ref":"core/abstract/button_group.html","tf":0.007936507936507936},"core/abstract/button_tree.html":{"ref":"core/abstract/button_tree.html","tf":0.014925373134328358},"core/abstract/custom_tree.html":{"ref":"core/abstract/custom_tree.html","tf":0.007194244604316547},"core/combination/bi.expander.html":{"ref":"core/combination/bi.expander.html","tf":0.005494505494505495},"core/combination/loader.html":{"ref":"core/combination/loader.html","tf":0.006289308176100629},"core/combination/switcher.html":{"ref":"core/combination/switcher.html","tf":0.00625},"case/layer/layer_panel.html":{"ref":"case/layer/layer_panel.html","tf":0.010752688172043012},"case/layer/pane_list.html":{"ref":"case/layer/pane_list.html","tf":0.006802721088435374},"case/tree/level_tree.html":{"ref":"case/tree/level_tree.html","tf":0.017857142857142856}}}},"n":{"docs":{},"o":{"docs":{},"d":{"docs":{"case/list/list.select.html":{"ref":"case/list/list.select.html","tf":0.009433962264150943},"case/loader/lazy_loader.html":{"ref":"case/loader/lazy_loader.html","tf":0.01694915254237288},"case/loader/list_loader.html":{"ref":"case/loader/list_loader.html","tf":0.010752688172043012},"case/loader/sort_list.html":{"ref":"case/loader/sort_list.html","tf":0.010752688172043012}}}}}}},"返":{"docs":{},"回":{"docs":{},"元":{"docs":{},"素":{"docs":{"base/svg.html":{"ref":"base/svg.html","tf":0.011235955056179775}}}}}}}},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{},"e":{"docs":{},"值":{"docs":{},"获":{"docs":{},"取":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{},"e":{"docs":{},"在":{"docs":{},"数":{"docs":{},"组":{"docs":{},"中":{"docs":{},"的":{"docs":{},"索":{"docs":{},"引":{"docs":{"core/abstract/button_group.html":{"ref":"core/abstract/button_group.html","tf":0.007936507936507936},"core/abstract/button_tree.html":{"ref":"core/abstract/button_tree.html","tf":0.014925373134328358},"core/combination/loader.html":{"ref":"core/combination/loader.html","tf":0.006289308176100629},"case/layer/layer_panel.html":{"ref":"case/layer/layer_panel.html","tf":0.010752688172043012},"case/layer/pane_list.html":{"ref":"case/layer/pane_list.html","tf":0.006802721088435374}}}}}}}}}}}}}},"节":{"docs":{},"点":{"docs":{"core/abstract/button_group.html":{"ref":"core/abstract/button_group.html","tf":0.007936507936507936},"core/abstract/button_tree.html":{"ref":"core/abstract/button_tree.html","tf":0.014925373134328358},"core/abstract/custom_tree.html":{"ref":"core/abstract/custom_tree.html","tf":0.007194244604316547},"core/combination/bi.expander.html":{"ref":"core/combination/bi.expander.html","tf":0.005494505494505495},"core/combination/loader.html":{"ref":"core/combination/loader.html","tf":0.006289308176100629},"core/combination/switcher.html":{"ref":"core/combination/switcher.html","tf":0.00625},"case/layer/layer_panel.html":{"ref":"case/layer/layer_panel.html","tf":0.010752688172043012},"case/layer/pane_list.html":{"ref":"case/layer/pane_list.html","tf":0.006802721088435374}}}}}}}}}}}},"组":{"docs":{},"件":{"docs":{},"名":{"docs":{},"称":{"docs":{},"获":{"docs":{},"取":{"docs":{},"组":{"docs":{},"件":{"docs":{"core/widget.html":{"ref":"core/widget.html","tf":0.00510204081632653}}}}}}}}}},"制":{"docs":{},"定":{"docs":{},"参":{"docs":{},"数":{"docs":{},"打":{"docs":{},"印":{"docs":{},"出":{"docs":{},"路":{"docs":{},"径":{"docs":{"base/svg.html":{"ref":"base/svg.html","tf":0.011235955056179775}}}}}}}}}}},"值":{"docs":{},"获":{"docs":{},"取":{"docs":{},"n":{"docs":{},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{"case/list/list.select.html":{"ref":"case/list/list.select.html","tf":0.009433962264150943},"case/loader/lazy_loader.html":{"ref":"case/loader/lazy_loader.html","tf":0.01694915254237288},"case/loader/list_loader.html":{"ref":"case/loader/list_loader.html","tf":0.010752688172043012},"case/loader/sort_list.html":{"ref":"case/loader/sort_list.html","tf":0.010752688172043012}}}}}},"索":{"docs":{},"引":{"docs":{"case/list/list.select.html":{"ref":"case/list/list.select.html","tf":0.009433962264150943},"case/loader/lazy_loader.html":{"ref":"case/loader/lazy_loader.html","tf":0.01694915254237288},"case/loader/list_loader.html":{"ref":"case/loader/list_loader.html","tf":0.010752688172043012},"case/loader/sort_list.html":{"ref":"case/loader/sort_list.html","tf":0.010752688172043012}}}},"节":{"docs":{},"点":{"docs":{"case/tree/level_tree.html":{"ref":"case/tree/level_tree.html","tf":0.017857142857142856}}}}}}}},"组":{"docs":{},"件":{"docs":{"core/widget.html":{"ref":"core/widget.html","tf":0.00510204081632653}}}},"节":{"docs":{},"点":{"docs":{},"所":{"docs":{},"在":{"docs":{},"方":{"docs":{},"向":{"docs":{"case/tree/branch_relation.html":{"ref":"case/tree/branch_relation.html","tf":0.02040816326530612}}}}}}}}},"清":{"docs":{},"空":{"docs":{"case/list/list.select.html":{"ref":"case/list/list.select.html","tf":0.009433962264150943},"case/loader/lazy_loader.html":{"ref":"case/loader/lazy_loader.html","tf":0.01694915254237288},"case/loader/list_loader.html":{"ref":"case/loader/list_loader.html","tf":0.010752688172043012},"case/loader/sort_list.html":{"ref":"case/loader/sort_list.html","tf":0.010752688172043012}},"组":{"docs":{},"件":{"docs":{"core/abstract/button_group.html":{"ref":"core/abstract/button_group.html","tf":0.007936507936507936},"core/abstract/custom_tree.html":{"ref":"core/abstract/custom_tree.html","tf":0.007194244604316547},"core/combination/loader.html":{"ref":"core/combination/loader.html","tf":0.006289308176100629},"core/combination/navigation.html":{"ref":"core/combination/navigation.html","tf":0.007194244604316547},"core/combination/searcher.html":{"ref":"core/combination/searcher.html","tf":0.004608294930875576},"core/combination/switcher.html":{"ref":"core/combination/switcher.html","tf":0.00625},"core/combination/tab.html":{"ref":"core/combination/tab.html","tf":0.00684931506849315},"core/layer/layer_searcher.html":{"ref":"core/layer/layer_searcher.html","tf":0.009259259259259259},"core/widget.html":{"ref":"core/widget.html","tf":0.00510204081632653},"core/basic_button.html":{"ref":"core/basic_button.html","tf":0.007936507936507936},"core/pane.html":{"ref":"core/pane.html","tf":0.0196078431372549},"case/layer/layer_panel.html":{"ref":"case/layer/layer_panel.html","tf":0.010752688172043012},"case/layer/pane_list.html":{"ref":"case/layer/pane_list.html","tf":0.006802721088435374},"case/combo/bubble_combo.html":{"ref":"case/combo/bubble_combo.html","tf":0.005780346820809248}}}},"l":{"docs":{},"a":{"docs":{},"b":{"docs":{},"e":{"docs":{},"l":{"docs":{"base/label.html":{"ref":"base/label.html","tf":0.006711409395973154}}}}}}},"树":{"docs":{"case/tree/simple_tree.html":{"ref":"case/tree/simple_tree.html","tf":0.022222222222222223}}},"内":{"docs":{},"容":{"docs":{"case/pager/all_count_pager.html":{"ref":"case/pager/all_count_pager.html","tf":0.014705882352941176},"case/pager/direction_pager.html":{"ref":"case/pager/direction_pager.html","tf":0.00819672131147541}}}}}},"移":{"docs":{},"除":{"docs":{},"制":{"docs":{},"定":{"docs":{},"元":{"docs":{},"素":{"docs":{"core/abstract/button_group.html":{"ref":"core/abstract/button_group.html","tf":0.007936507936507936}}}}}},"指":{"docs":{},"定":{"docs":{},"索":{"docs":{},"引":{"docs":{},"处":{"docs":{},"的":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{"core/abstract/button_group.html":{"ref":"core/abstract/button_group.html","tf":0.007936507936507936},"case/layer/layer_panel.html":{"ref":"case/layer/layer_panel.html","tf":0.010752688172043012},"case/layer/pane_list.html":{"ref":"case/layer/pane_list.html","tf":0.006802721088435374}}}}}}}}}}}},"t":{"docs":{},"a":{"docs":{},"b":{"docs":{},"面":{"docs":{},"板":{"docs":{},"页":{"docs":{"core/combination/tab.html":{"ref":"core/combination/tab.html","tf":0.00684931506849315}}}}}}}},"组":{"docs":{},"件":{"docs":{"core/widget.html":{"ref":"core/widget.html","tf":0.00510204081632653}}}}}},"获":{"docs":{},"取":{"docs":{},"所":{"docs":{},"有":{"docs":{},"b":{"docs":{},"u":{"docs":{},"t":{"docs":{},"t":{"docs":{},"o":{"docs":{},"n":{"docs":{"core/abstract/button_group.html":{"ref":"core/abstract/button_group.html","tf":0.007936507936507936},"core/abstract/button_tree.html":{"ref":"core/abstract/button_tree.html","tf":0.014925373134328358},"core/abstract/custom_tree.html":{"ref":"core/abstract/custom_tree.html","tf":0.007194244604316547},"core/combination/loader.html":{"ref":"core/combination/loader.html","tf":0.006289308176100629},"case/layer/layer_panel.html":{"ref":"case/layer/layer_panel.html","tf":0.010752688172043012},"case/layer/pane_list.html":{"ref":"case/layer/pane_list.html","tf":0.006802721088435374}}}}}}}},"未":{"docs":{},"被":{"docs":{},"选":{"docs":{},"中":{"docs":{},"的":{"docs":{},"元":{"docs":{},"素":{"docs":{"core/abstract/button_group.html":{"ref":"core/abstract/button_group.html","tf":0.007936507936507936},"core/abstract/button_tree.html":{"ref":"core/abstract/button_tree.html","tf":0.014925373134328358},"core/combination/loader.html":{"ref":"core/combination/loader.html","tf":0.006289308176100629},"case/layer/layer_panel.html":{"ref":"case/layer/layer_panel.html","tf":0.010752688172043012},"case/layer/pane_list.html":{"ref":"case/layer/pane_list.html","tf":0.006802721088435374}}}}}}}}},"的":{"docs":{},"叶":{"docs":{},"子":{"docs":{},"节":{"docs":{},"点":{"docs":{"core/abstract/button_group.html":{"ref":"core/abstract/button_group.html","tf":0.007936507936507936},"core/abstract/button_tree.html":{"ref":"core/abstract/button_tree.html","tf":0.014925373134328358},"core/abstract/custom_tree.html":{"ref":"core/abstract/custom_tree.html","tf":0.007194244604316547},"core/combination/bi.expander.html":{"ref":"core/combination/bi.expander.html","tf":0.005494505494505495},"core/combination/loader.html":{"ref":"core/combination/loader.html","tf":0.006289308176100629},"core/combination/switcher.html":{"ref":"core/combination/switcher.html","tf":0.00625},"case/layer/layer_panel.html":{"ref":"case/layer/layer_panel.html","tf":0.010752688172043012},"case/layer/pane_list.html":{"ref":"case/layer/pane_list.html","tf":0.006802721088435374}}}}}}},"被":{"docs":{},"选":{"docs":{},"中":{"docs":{},"的":{"docs":{},"元":{"docs":{},"素":{"docs":{"core/abstract/button_group.html":{"ref":"core/abstract/button_group.html","tf":0.007936507936507936},"core/abstract/button_tree.html":{"ref":"core/abstract/button_tree.html","tf":0.014925373134328358},"core/combination/loader.html":{"ref":"core/combination/loader.html","tf":0.006289308176100629},"case/layer/layer_panel.html":{"ref":"case/layer/layer_panel.html","tf":0.010752688172043012},"case/layer/pane_list.html":{"ref":"case/layer/pane_list.html","tf":0.006802721088435374}}}}}}}},"叶":{"docs":{},"节":{"docs":{},"点":{"docs":{"case/tree/level_tree.html":{"ref":"case/tree/level_tree.html","tf":0.017857142857142856}}}}}},"选":{"docs":{},"项":{"docs":{},"值":{"docs":{"case/tree/branch_tree.html":{"ref":"case/tree/branch_tree.html","tf":0.02},"case/tree/handstand_branch_tree.html":{"ref":"case/tree/handstand_branch_tree.html","tf":0.019230769230769232}}}}}},"没":{"docs":{},"有":{"docs":{},"被":{"docs":{},"选":{"docs":{},"中":{"docs":{},"的":{"docs":{},"值":{"docs":{"core/abstract/button_group.html":{"ref":"core/abstract/button_group.html","tf":0.007936507936507936},"core/abstract/button_tree.html":{"ref":"core/abstract/button_tree.html","tf":0.014925373134328358},"core/combination/loader.html":{"ref":"core/combination/loader.html","tf":0.006289308176100629},"case/layer/layer_panel.html":{"ref":"case/layer/layer_panel.html","tf":0.010752688172043012},"case/layer/pane_list.html":{"ref":"case/layer/pane_list.html","tf":0.006802721088435374}}}}}}}}},"被":{"docs":{},"选":{"docs":{},"中":{"docs":{},"的":{"docs":{},"值":{"docs":{"core/abstract/button_group.html":{"ref":"core/abstract/button_group.html","tf":0.007936507936507936},"core/abstract/button_tree.html":{"ref":"core/abstract/button_tree.html","tf":0.014925373134328358},"core/abstract/virtual_group.html":{"ref":"core/abstract/virtual_group.html","tf":0.014492753623188406},"core/abstract/custom_tree.html":{"ref":"core/abstract/custom_tree.html","tf":0.007194244604316547},"core/combination/loader.html":{"ref":"core/combination/loader.html","tf":0.006289308176100629},"core/combination/navigation.html":{"ref":"core/combination/navigation.html","tf":0.007194244604316547},"core/combination/searcher.html":{"ref":"core/combination/searcher.html","tf":0.004608294930875576},"core/combination/switcher.html":{"ref":"core/combination/switcher.html","tf":0.00625},"core/combination/tab.html":{"ref":"core/combination/tab.html","tf":0.00684931506849315},"case/layer/layer_panel.html":{"ref":"case/layer/layer_panel.html","tf":0.010752688172043012},"case/layer/pane_list.html":{"ref":"case/layer/pane_list.html","tf":0.006802721088435374}}}}}}},"滚":{"docs":{},"动":{"docs":{},"条":{"docs":{},"相":{"docs":{},"对":{"docs":{},"于":{"docs":{},"左":{"docs":{},"边":{"docs":{},"的":{"docs":{},"偏":{"docs":{},"移":{"docs":{"core/abstract/grid_view.html":{"ref":"core/abstract/grid_view.html","tf":0.00641025641025641},"core/abstract/collection_view.html":{"ref":"core/abstract/collection_view.html","tf":0.0070921985815602835}}}},"最":{"docs":{},"大":{"docs":{},"偏":{"docs":{},"移":{"docs":{"core/abstract/grid_view.html":{"ref":"core/abstract/grid_view.html","tf":0.00641025641025641},"core/abstract/collection_view.html":{"ref":"core/abstract/collection_view.html","tf":0.0070921985815602835}}}}}}}}},"顶":{"docs":{},"部":{"docs":{},"的":{"docs":{},"偏":{"docs":{},"移":{"docs":{"core/abstract/grid_view.html":{"ref":"core/abstract/grid_view.html","tf":0.00641025641025641},"core/abstract/collection_view.html":{"ref":"core/abstract/collection_view.html","tf":0.0070921985815602835}}}},"最":{"docs":{},"大":{"docs":{},"偏":{"docs":{},"移":{"docs":{"core/abstract/grid_view.html":{"ref":"core/abstract/grid_view.html","tf":0.00641025641025641},"core/abstract/collection_view.html":{"ref":"core/abstract/collection_view.html","tf":0.0070921985815602835}}}}}}}}}}}}}}},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"b":{"docs":{},"o":{"docs":{"core/combination/bi.combo.html":{"ref":"core/combination/bi.combo.html","tf":0.004807692307692308},"core/combination/bi.expander.html":{"ref":"core/combination/bi.expander.html","tf":0.005494505494505495},"core/combination/group_combo.html":{"ref":"core/combination/group_combo.html","tf":0.007874015748031496}}}}}}},"弹":{"docs":{},"出":{"docs":{},"层":{"docs":{"core/combination/bi.combo.html":{"ref":"core/combination/bi.combo.html","tf":0.004807692307692308},"core/combination/bi.expander.html":{"ref":"core/combination/bi.expander.html","tf":0.005494505494505495},"core/combination/switcher.html":{"ref":"core/combination/switcher.html","tf":0.00625},"core/layer/layer_popup.html":{"ref":"core/layer/layer_popup.html","tf":0.0058823529411764705}},"的":{"docs":{},"位":{"docs":{},"置":{"docs":{"core/combination/bi.combo.html":{"ref":"core/combination/bi.combo.html","tf":0.004807692307692308}}}}}}}},"选":{"docs":{},"中":{"docs":{},"的":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"x":{"docs":{"core/combination/navigation.html":{"ref":"core/combination/navigation.html","tf":0.007194244604316547},"core/combination/tab.html":{"ref":"core/combination/tab.html","tf":0.00684931506849315}}}}}}},"导":{"docs":{},"航":{"docs":{},"页":{"docs":{"core/combination/navigation.html":{"ref":"core/combination/navigation.html","tf":0.007194244604316547}}}}},"t":{"docs":{},"a":{"docs":{},"b":{"docs":{},"面":{"docs":{},"板":{"docs":{},"页":{"docs":{"core/combination/tab.html":{"ref":"core/combination/tab.html","tf":0.00684931506849315}}}}}}}},"根":{"docs":{},"节":{"docs":{},"点":{"docs":{"case/list/list.select.html":{"ref":"case/list/list.select.html","tf":0.009433962264150943},"case/loader/lazy_loader.html":{"ref":"case/loader/lazy_loader.html","tf":0.01694915254237288},"case/loader/list_loader.html":{"ref":"case/loader/list_loader.html","tf":0.010752688172043012},"case/loader/sort_list.html":{"ref":"case/loader/sort_list.html","tf":0.010752688172043012}}}}}},"项":{"docs":{"detailed/tree/bi.switch_tree.html":{"ref":"detailed/tree/bi.switch_tree.html","tf":0.013157894736842105}}}}},"搜":{"docs":{},"索":{"docs":{},"关":{"docs":{},"键":{"docs":{},"词":{"docs":{"core/combination/searcher.html":{"ref":"core/combination/searcher.html","tf":0.004608294930875576}},"数":{"docs":{},"组":{"docs":{"core/combination/searcher.html":{"ref":"core/combination/searcher.html","tf":0.004608294930875576}}}}}}},"列":{"docs":{},"表":{"docs":{},"栏":{"docs":{"core/combination/searcher.html":{"ref":"core/combination/searcher.html","tf":0.004608294930875576}}}}}}},"t":{"docs":{},"a":{"docs":{},"b":{"docs":{},"面":{"docs":{},"板":{"docs":{},"页":{"docs":{"core/combination/tab.html":{"ref":"core/combination/tab.html","tf":0.00684931506849315}}}}}},"g":{"docs":{"core/widget.html":{"ref":"core/widget.html","tf":0.00510204081632653}}}},"e":{"docs":{},"x":{"docs":{},"t":{"docs":{},"值":{"docs":{"core/widget.html":{"ref":"core/widget.html","tf":0.00510204081632653}}}}}},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{"core/single.html":{"ref":"core/single.html","tf":0.013888888888888888}}}}}},"t":{"docs":{},"l":{"docs":{"core/single.html":{"ref":"core/single.html","tf":0.013888888888888888}}}}}},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{},"e":{"docs":{},"值":{"docs":{"core/layer/layer_popup.html":{"ref":"core/layer/layer_popup.html","tf":0.0058823529411764705},"core/layer/layer_searcher.html":{"ref":"core/layer/layer_searcher.html","tf":0.009259259259259259},"core/widget.html":{"ref":"core/widget.html","tf":0.00510204081632653},"core/single.html":{"ref":"core/single.html","tf":0.013888888888888888},"case/combo/icon_combo.html":{"ref":"case/combo/icon_combo.html","tf":0.007751937984496124},"case/combo/static_combo.html":{"ref":"case/combo/static_combo.html","tf":0.0125},"case/combo/text_value_combo.html":{"ref":"case/combo/text_value_combo.html","tf":0.013513513513513514},"case/combo/text_value_downlist_combo.html":{"ref":"case/combo/text_value_downlist_combo.html","tf":0.013513513513513514}}}}}}}},"组":{"docs":{},"件":{"docs":{},"名":{"docs":{},"称":{"docs":{"core/widget.html":{"ref":"core/widget.html","tf":0.00510204081632653}}}},"宽":{"docs":{},"度":{"docs":{"core/widget.html":{"ref":"core/widget.html","tf":0.00510204081632653}}}},"高":{"docs":{},"度":{"docs":{"core/widget.html":{"ref":"core/widget.html","tf":0.00510204081632653}}}}}},"w":{"docs":{},"a":{"docs":{},"r":{"docs":{},"n":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"t":{"docs":{},"i":{"docs":{},"t":{"docs":{},"l":{"docs":{"core/single.html":{"ref":"core/single.html","tf":0.013888888888888888}}}}}}}}}}}}},"文":{"docs":{},"本":{"docs":{},"值":{"docs":{"core/basic_button.html":{"ref":"core/basic_button.html","tf":0.007936507936507936},"base/label.html":{"ref":"base/label.html","tf":0.006711409395973154},"case/combo/bubble_combo.html":{"ref":"case/combo/bubble_combo.html","tf":0.005780346820809248}}},"框":{"docs":{},"值":{"docs":{"base/editor/editor.html":{"ref":"base/editor/editor.html","tf":0.005405405405405406},"base/editor/code_editor.html":{"ref":"base/editor/code_editor.html","tf":0.012658227848101266},"base/editor/formula_editor.html":{"ref":"base/editor/formula_editor.html","tf":0.010101010101010102},"case/editor/shelter_editor.html":{"ref":"case/editor/shelter_editor.html","tf":0.010362694300518135},"case/editor/sign_editor.html":{"ref":"case/editor/sign_editor.html","tf":0.01098901098901099},"case/editor/sign_initial_editor.html":{"ref":"case/editor/sign_initial_editor.html","tf":0.010309278350515464},"case/editor/state_editor.html":{"ref":"case/editor/state_editor.html","tf":0.011494252873563218},"detailed/tree/bi.multi_tree_combo.html":{"ref":"detailed/tree/bi.multi_tree_combo.html","tf":0.010869565217391304}}},"最":{"docs":{},"后":{"docs":{},"一":{"docs":{},"次":{"docs":{},"输":{"docs":{},"入":{"docs":{},"的":{"docs":{},"有":{"docs":{},"效":{"docs":{},"值":{"docs":{"base/editor/editor.html":{"ref":"base/editor/editor.html","tf":0.005405405405405406},"case/editor/shelter_editor.html":{"ref":"case/editor/shelter_editor.html","tf":0.0051813471502590676},"case/editor/sign_editor.html":{"ref":"case/editor/sign_editor.html","tf":0.005494505494505495},"case/editor/sign_initial_editor.html":{"ref":"case/editor/sign_initial_editor.html","tf":0.005154639175257732},"case/editor/state_editor.html":{"ref":"case/editor/state_editor.html","tf":0.005747126436781609}}}}}}}}}}}}},"样":{"docs":{},"式":{"docs":{"base/editor/code_editor.html":{"ref":"base/editor/code_editor.html","tf":0.012658227848101266}}}},"域":{"docs":{},"值":{"docs":{"base/editor/textarea_editor.html":{"ref":"base/editor/textarea_editor.html","tf":0.021739130434782608}}},"样":{"docs":{},"式":{"docs":{"base/editor/textarea_editor.html":{"ref":"base/editor/textarea_editor.html","tf":0.021739130434782608}}}}}},"件":{"docs":{},"名":{"docs":{},"称":{"docs":{"base/editor/multifile_editor.html":{"ref":"base/editor/multifile_editor.html","tf":0.015384615384615385}}}}}},"图":{"docs":{},"片":{"docs":{},"宽":{"docs":{},"度":{"docs":{"base/button/image_button.html":{"ref":"base/button/image_button.html","tf":0.014925373134328358}}}},"路":{"docs":{},"径":{"docs":{"base/button/image_button.html":{"ref":"base/button/image_button.html","tf":0.014925373134328358}}}},"高":{"docs":{},"度":{"docs":{"base/button/image_button.html":{"ref":"base/button/image_button.html","tf":0.014925373134328358}}}}}},"错":{"docs":{},"误":{"docs":{},"文":{"docs":{},"本":{"docs":{"base/editor/editor.html":{"ref":"base/editor/editor.html","tf":0.005405405405405406},"case/editor/shelter_editor.html":{"ref":"case/editor/shelter_editor.html","tf":0.0051813471502590676},"case/editor/sign_editor.html":{"ref":"case/editor/sign_editor.html","tf":0.005494505494505495},"case/editor/sign_initial_editor.html":{"ref":"case/editor/sign_initial_editor.html","tf":0.005154639175257732},"case/editor/state_editor.html":{"ref":"case/editor/state_editor.html","tf":0.005747126436781609}}}}}},"公":{"docs":{},"式":{"docs":{},"框":{"docs":{},"内":{"docs":{},"容":{"docs":{"base/editor/formula_editor.html":{"ref":"base/editor/formula_editor.html","tf":0.010101010101010102}}}}}}},"可":{"docs":{},"用":{"docs":{},"字":{"docs":{},"段":{"docs":{"base/editor/formula_editor.html":{"ref":"base/editor/formula_editor.html","tf":0.010101010101010102}}}}}},"校":{"docs":{},"验":{"docs":{},"内":{"docs":{},"容":{"docs":{"base/editor/formula_editor.html":{"ref":"base/editor/formula_editor.html","tf":0.010101010101010102}}}}}},"列":{"docs":{},"项":{"docs":{"base/table/table_view.html":{"ref":"base/table/table_view.html","tf":0.006289308176100629},"base/table/collection_table.html":{"ref":"base/table/collection_table.html","tf":0.006535947712418301},"detailed/table/bi.preview_table.html":{"ref":"detailed/table/bi.preview_table.html","tf":0.006756756756756757},"detailed/table/bi.responsive_table.html":{"ref":"detailed/table/bi.responsive_table.html","tf":0.005263157894736842},"detailed/table/bi.excel_table.html":{"ref":"detailed/table/bi.excel_table.html","tf":0.0055248618784530384}}}},"右":{"docs":{},"往":{"docs":{},"左":{"docs":{},"横":{"docs":{},"向":{"docs":{},"滚":{"docs":{},"动":{"docs":{},"距":{"docs":{},"离":{"docs":{"base/table/table_view.html":{"ref":"base/table/table_view.html","tf":0.006289308176100629},"base/table/grid_table.html":{"ref":"base/table/grid_table.html","tf":0.008771929824561403},"base/table/collection_table.html":{"ref":"base/table/collection_table.html","tf":0.006535947712418301},"base/table/resizable_table.html":{"ref":"base/table/resizable_table.html","tf":0.00625},"case/table/adaptive_table.html":{"ref":"case/table/adaptive_table.html","tf":0.006060606060606061},"case/table/tree_table.html":{"ref":"case/table/tree_table.html","tf":0.00510204081632653},"case/table/layer_tree_table.html":{"ref":"case/table/layer_tree_table.html","tf":0.00510204081632653},"detailed/table/bi.preview_table.html":{"ref":"detailed/table/bi.preview_table.html","tf":0.006756756756756757},"detailed/table/bi.responsive_table.html":{"ref":"detailed/table/bi.responsive_table.html","tf":0.005263157894736842},"detailed/table/bi.excel_table.html":{"ref":"detailed/table/bi.excel_table.html","tf":0.0055248618784530384},"detailed/table/bi.page_table.html":{"ref":"detailed/table/bi.page_table.html","tf":0.004651162790697674}}}}}}}}}}},"左":{"docs":{},"到":{"docs":{},"右":{"docs":{},"横":{"docs":{},"向":{"docs":{},"滚":{"docs":{},"动":{"docs":{},"距":{"docs":{},"离":{"docs":{"base/table/table_view.html":{"ref":"base/table/table_view.html","tf":0.006289308176100629},"base/table/grid_table.html":{"ref":"base/table/grid_table.html","tf":0.008771929824561403},"base/table/collection_table.html":{"ref":"base/table/collection_table.html","tf":0.006535947712418301},"base/table/resizable_table.html":{"ref":"base/table/resizable_table.html","tf":0.00625},"case/table/adaptive_table.html":{"ref":"case/table/adaptive_table.html","tf":0.006060606060606061},"case/table/tree_table.html":{"ref":"case/table/tree_table.html","tf":0.00510204081632653},"case/table/layer_tree_table.html":{"ref":"case/table/layer_tree_table.html","tf":0.00510204081632653},"detailed/table/bi.preview_table.html":{"ref":"detailed/table/bi.preview_table.html","tf":0.006756756756756757},"detailed/table/bi.responsive_table.html":{"ref":"detailed/table/bi.responsive_table.html","tf":0.005263157894736842},"detailed/table/bi.excel_table.html":{"ref":"detailed/table/bi.excel_table.html","tf":0.0055248618784530384},"detailed/table/bi.page_table.html":{"ref":"detailed/table/bi.page_table.html","tf":0.004651162790697674}}}}}}}}}}},"横":{"docs":{},"向":{"docs":{},"滚":{"docs":{},"动":{"docs":{},"条":{"docs":{},"宽":{"docs":{},"度":{"docs":{"base/table/table_view.html":{"ref":"base/table/table_view.html","tf":0.006289308176100629},"base/table/collection_table.html":{"ref":"base/table/collection_table.html","tf":0.006535947712418301},"detailed/table/bi.preview_table.html":{"ref":"detailed/table/bi.preview_table.html","tf":0.006756756756756757},"detailed/table/bi.responsive_table.html":{"ref":"detailed/table/bi.responsive_table.html","tf":0.005263157894736842},"detailed/table/bi.excel_table.html":{"ref":"detailed/table/bi.excel_table.html","tf":0.0055248618784530384}}}}}}}}},"浏":{"docs":{},"览":{"docs":{},"器":{"docs":{},"中":{"docs":{},"显":{"docs":{},"示":{"docs":{},"的":{"docs":{},"列":{"docs":{},"项":{"docs":{},"之":{"docs":{},"间":{"docs":{},"的":{"docs":{},"间":{"docs":{},"隙":{"docs":{"base/table/table_view.html":{"ref":"base/table/table_view.html","tf":0.006289308176100629},"detailed/table/bi.preview_table.html":{"ref":"detailed/table/bi.preview_table.html","tf":0.006756756756756757},"detailed/table/bi.responsive_table.html":{"ref":"detailed/table/bi.responsive_table.html","tf":0.005263157894736842},"detailed/table/bi.excel_table.html":{"ref":"detailed/table/bi.excel_table.html","tf":0.0055248618784530384}}}}}}}}}}}}}}}},"纵":{"docs":{},"向":{"docs":{},"滚":{"docs":{},"动":{"docs":{},"条":{"docs":{},"宽":{"docs":{},"度":{"docs":{"base/table/table_view.html":{"ref":"base/table/table_view.html","tf":0.006289308176100629},"detailed/table/bi.preview_table.html":{"ref":"detailed/table/bi.preview_table.html","tf":0.006756756756756757},"detailed/table/bi.responsive_table.html":{"ref":"detailed/table/bi.responsive_table.html","tf":0.005263157894736842},"detailed/table/bi.excel_table.html":{"ref":"detailed/table/bi.excel_table.html","tf":0.0055248618784530384}}}}},"距":{"docs":{},"离":{"docs":{"base/table/table_view.html":{"ref":"base/table/table_view.html","tf":0.006289308176100629},"base/table/grid_table.html":{"ref":"base/table/grid_table.html","tf":0.008771929824561403},"base/table/collection_table.html":{"ref":"base/table/collection_table.html","tf":0.006535947712418301},"base/table/resizable_table.html":{"ref":"base/table/resizable_table.html","tf":0.00625},"case/table/adaptive_table.html":{"ref":"case/table/adaptive_table.html","tf":0.006060606060606061},"case/table/tree_table.html":{"ref":"case/table/tree_table.html","tf":0.00510204081632653},"case/table/layer_tree_table.html":{"ref":"case/table/layer_tree_table.html","tf":0.00510204081632653},"detailed/table/bi.preview_table.html":{"ref":"detailed/table/bi.preview_table.html","tf":0.006756756756756757},"detailed/table/bi.responsive_table.html":{"ref":"detailed/table/bi.responsive_table.html","tf":0.005263157894736842},"detailed/table/bi.excel_table.html":{"ref":"detailed/table/bi.excel_table.html","tf":0.0055248618784530384},"detailed/table/bi.page_table.html":{"ref":"detailed/table/bi.page_table.html","tf":0.004651162790697674}}}}}},"页":{"docs":{},"码":{"docs":{"case/pager/direction_pager.html":{"ref":"case/pager/direction_pager.html","tf":0.01639344262295082}}}}}},"计":{"docs":{},"算":{"docs":{},"后":{"docs":{},"的":{"docs":{},"列":{"docs":{},"项":{"docs":{},"上":{"docs":{},"下":{"docs":{},"之":{"docs":{},"间":{"docs":{},"的":{"docs":{},"间":{"docs":{},"隙":{"docs":{"base/table/table_view.html":{"ref":"base/table/table_view.html","tf":0.006289308176100629},"detailed/table/bi.preview_table.html":{"ref":"detailed/table/bi.preview_table.html","tf":0.006756756756756757},"detailed/table/bi.responsive_table.html":{"ref":"detailed/table/bi.responsive_table.html","tf":0.005263157894736842},"detailed/table/bi.excel_table.html":{"ref":"detailed/table/bi.excel_table.html","tf":0.0055248618784530384}}}}}}}}},"之":{"docs":{},"间":{"docs":{},"的":{"docs":{},"间":{"docs":{},"隙":{"docs":{"base/table/table_view.html":{"ref":"base/table/table_view.html","tf":0.006289308176100629},"detailed/table/bi.preview_table.html":{"ref":"detailed/table/bi.preview_table.html","tf":0.006756756756756757},"detailed/table/bi.responsive_table.html":{"ref":"detailed/table/bi.responsive_table.html","tf":0.005263157894736842},"detailed/table/bi.excel_table.html":{"ref":"detailed/table/bi.excel_table.html","tf":0.0055248618784530384}}}}}}}}}}}}},"间":{"docs":{},"隙":{"docs":{},"大":{"docs":{},"小":{"docs":{"base/table/grid_table.html":{"ref":"base/table/grid_table.html","tf":0.008771929824561403}}}}}},"当":{"docs":{},"前":{"docs":{},"页":{"docs":{},"码":{"docs":{"base/pager.html":{"ref":"base/pager.html","tf":0.013333333333333334},"case/pager/all_count_pager.html":{"ref":"case/pager/all_count_pager.html","tf":0.014705882352941176}}}},"选":{"docs":{},"中":{"docs":{},"项":{"docs":{},"内":{"docs":{},"容":{"docs":{"detailed/tree/bi.switch_tree.html":{"ref":"detailed/tree/bi.switch_tree.html","tf":0.013157894736842105}}}},"的":{"docs":{},"i":{"docs":{},"d":{"docs":{},"属":{"docs":{},"性":{"docs":{"detailed/file_manager.html":{"ref":"detailed/file_manager.html","tf":0.023255813953488372}}}}}},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{},"e":{"docs":{},"值":{"docs":{"detailed/file_manager.html":{"ref":"detailed/file_manager.html","tf":0.023255813953488372}}}}}}}}}}}}}},"未":{"docs":{},"选":{"docs":{},"中":{"docs":{},"植":{"docs":{"case/list/list.select.html":{"ref":"case/list/list.select.html","tf":0.009433962264150943},"case/loader/lazy_loader.html":{"ref":"case/loader/lazy_loader.html","tf":0.01694915254237288},"case/loader/list_loader.html":{"ref":"case/loader/list_loader.html","tf":0.010752688172043012},"case/loader/sort_list.html":{"ref":"case/loader/sort_list.html","tf":0.010752688172043012}}},"的":{"docs":{},"根":{"docs":{},"节":{"docs":{},"点":{"docs":{"case/list/list.select.html":{"ref":"case/list/list.select.html","tf":0.009433962264150943},"case/loader/lazy_loader.html":{"ref":"case/loader/lazy_loader.html","tf":0.01694915254237288},"case/loader/list_loader.html":{"ref":"case/loader/list_loader.html","tf":0.010752688172043012},"case/loader/sort_list.html":{"ref":"case/loader/sort_list.html","tf":0.010752688172043012}}}}}}}}},"水":{"docs":{},"平":{"docs":{},"向":{"docs":{},"页":{"docs":{},"码":{"docs":{"case/pager/direction_pager.html":{"ref":"case/pager/direction_pager.html","tf":0.01639344262295082}}}}}}},"需":{"docs":{},"要":{"docs":{},"拷":{"docs":{},"贝":{"docs":{},"的":{"docs":{},"值":{"docs":{"case/clipboard.html":{"ref":"case/clipboard.html","tf":0.03125}}}}}}}},"颜":{"docs":{},"色":{"docs":{},"值":{"docs":{"case/color_chooser.html":{"ref":"case/color_chooser.html","tf":0.038461538461538464},"case/color_chooser_popup.html":{"ref":"case/color_chooser_popup.html","tf":0.029411764705882353}}}}},"值":{"docs":{"detailed/combo/single_tree_combo.html":{"ref":"detailed/combo/single_tree_combo.html","tf":0.01694915254237288},"detailed/combo/multilayer_single_tree_combo.html":{"ref":"detailed/combo/multilayer_single_tree_combo.html","tf":0.018867924528301886},"detailed/combo/select_tree_combo.html":{"ref":"detailed/combo/select_tree_combo.html","tf":0.02040816326530612},"detailed/combo/multilayer_select_tree_combo.html":{"ref":"detailed/combo/multilayer_select_tree_combo.html","tf":0.02040816326530612}}}},"得":{"docs":{},"列":{"docs":{},"项":{"docs":{},"之":{"docs":{},"间":{"docs":{},"的":{"docs":{},"间":{"docs":{},"隙":{"docs":{"base/table/table_view.html":{"ref":"base/table/table_view.html","tf":0.006289308176100629},"base/table/grid_table.html":{"ref":"base/table/grid_table.html","tf":0.008771929824561403},"base/table/collection_table.html":{"ref":"base/table/collection_table.html","tf":0.006535947712418301},"base/table/resizable_table.html":{"ref":"base/table/resizable_table.html","tf":0.00625},"case/table/adaptive_table.html":{"ref":"case/table/adaptive_table.html","tf":0.006060606060606061},"case/table/tree_table.html":{"ref":"case/table/tree_table.html","tf":0.00510204081632653},"case/table/layer_tree_table.html":{"ref":"case/table/layer_tree_table.html","tf":0.00510204081632653},"detailed/table/bi.preview_table.html":{"ref":"detailed/table/bi.preview_table.html","tf":0.006756756756756757},"detailed/table/bi.responsive_table.html":{"ref":"detailed/table/bi.responsive_table.html","tf":0.005263157894736842},"detailed/table/bi.excel_table.html":{"ref":"detailed/table/bi.excel_table.html","tf":0.0055248618784530384},"detailed/table/bi.page_table.html":{"ref":"detailed/table/bi.page_table.html","tf":0.004651162790697674}}}}}}}}},"计":{"docs":{},"算":{"docs":{},"后":{"docs":{},"的":{"docs":{},"列":{"docs":{},"宽":{"docs":{"base/table/table_view.html":{"ref":"base/table/table_view.html","tf":0.006289308176100629},"detailed/table/bi.preview_table.html":{"ref":"detailed/table/bi.preview_table.html","tf":0.006756756756756757},"detailed/table/bi.responsive_table.html":{"ref":"detailed/table/bi.responsive_table.html","tf":0.005263157894736842},"detailed/table/bi.excel_table.html":{"ref":"detailed/table/bi.excel_table.html","tf":0.0055248618784530384}}}}}}}},"值":{"docs":{"case/list/list.select.html":{"ref":"case/list/list.select.html","tf":0.009433962264150943},"case/loader/lazy_loader.html":{"ref":"case/loader/lazy_loader.html","tf":0.01694915254237288},"case/loader/list_loader.html":{"ref":"case/loader/list_loader.html","tf":0.010752688172043012},"case/loader/sort_list.html":{"ref":"case/loader/sort_list.html","tf":0.010752688172043012},"case/trigger/editor_trigger.html":{"ref":"case/trigger/editor_trigger.html","tf":0.02},"case/trigger/text_trigger.html":{"ref":"case/trigger/text_trigger.html","tf":0.05263157894736842},"case/tree/simple_tree.html":{"ref":"case/tree/simple_tree.html","tf":0.022222222222222223},"case/tree/level_tree.html":{"ref":"case/tree/level_tree.html","tf":0.017857142857142856}}},"所":{"docs":{},"以":{"docs":{},"根":{"docs":{},"节":{"docs":{},"点":{"docs":{"case/list/list.select.html":{"ref":"case/list/list.select.html","tf":0.009433962264150943},"case/loader/lazy_loader.html":{"ref":"case/loader/lazy_loader.html","tf":0.01694915254237288},"case/loader/list_loader.html":{"ref":"case/loader/list_loader.html","tf":0.010752688172043012},"case/loader/sort_list.html":{"ref":"case/loader/sort_list.html","tf":0.010752688172043012}}}}}},"有":{"docs":{},"叶":{"docs":{},"节":{"docs":{},"点":{"docs":{"case/list/list.select.html":{"ref":"case/list/list.select.html","tf":0.009433962264150943},"case/loader/lazy_loader.html":{"ref":"case/loader/lazy_loader.html","tf":0.01694915254237288},"case/loader/list_loader.html":{"ref":"case/loader/list_loader.html","tf":0.010752688172043012},"case/loader/sort_list.html":{"ref":"case/loader/sort_list.html","tf":0.010752688172043012}}}}}}},"日":{"docs":{},"期":{"docs":{"case/calendar.html":{"ref":"case/calendar.html","tf":0.013888888888888888}}}},"垂":{"docs":{},"直":{"docs":{},"页":{"docs":{},"数":{"docs":{"detailed/table/bi.page_table.html":{"ref":"detailed/table/bi.page_table.html","tf":0.004651162790697674}}}}}},"水":{"docs":{},"平":{"docs":{},"页":{"docs":{},"数":{"docs":{"detailed/table/bi.page_table.html":{"ref":"detailed/table/bi.page_table.html","tf":0.004651162790697674}}}}}},"当":{"docs":{},"前":{"docs":{},"值":{"docs":{"detailed/slider.html":{"ref":"detailed/slider.html","tf":0.029411764705882353}}}}}},"根":{"docs":{},"据":{"docs":{},"给":{"docs":{},"定":{"docs":{},"的":{"docs":{},"点":{"docs":{},"坐":{"docs":{},"标":{"docs":{},"返":{"docs":{},"回":{"docs":{},"元":{"docs":{},"素":{"docs":{"base/svg.html":{"ref":"base/svg.html","tf":0.02247191011235955}}}}}}}}}}}}}}},"见":{"docs":{},"上":{"docs":{"core/abstract/button_group.html":{"ref":"core/abstract/button_group.html","tf":0.007936507936507936}}}},"选":{"docs":{},"择":{"docs":{},"类":{"docs":{},"型":{"docs":{"core/abstract/button_group.html":{"ref":"core/abstract/button_group.html","tf":0.007936507936507936},"core/combination/searcher.html":{"ref":"core/combination/searcher.html","tf":0.004608294930875576},"core/layer/layer_searcher.html":{"ref":"core/layer/layer_searcher.html","tf":0.009259259259259259},"case/combo/icon_combo.html":{"ref":"case/combo/icon_combo.html","tf":0.007751937984496124},"case/combo/static_combo.html":{"ref":"case/combo/static_combo.html","tf":0.0125},"case/combo/text_value_combo.html":{"ref":"case/combo/text_value_combo.html","tf":0.013513513513513514}}}},"文":{"docs":{},"件":{"docs":{"base/editor/multifile_editor.html":{"ref":"base/editor/multifile_editor.html","tf":0.015384615384615385}}}},"列":{"docs":{},"表":{"docs":{"case/list/list.select.html":{"ref":"case/list/list.select.html","tf":0.009433962264150943}}}}},"中":{"docs":{},"了":{"docs":{},"就":{"docs":{},"不":{"docs":{},"会":{"docs":{},"被":{"docs":{},"取":{"docs":{},"消":{"docs":{},",":{"docs":{},"与":{"docs":{},"o":{"docs":{},"n":{"docs":{},"c":{"docs":{},"e":{"docs":{},"的":{"docs":{},"区":{"docs":{},"别":{"docs":{},"是":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"c":{"docs":{},"e":{"docs":{},"s":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},"不":{"docs":{},"影":{"docs":{},"响":{"docs":{},"事":{"docs":{},"件":{"docs":{},"的":{"docs":{},"触":{"docs":{},"发":{"docs":{"core/basic_button.html":{"ref":"core/basic_button.html","tf":0.007936507936507936},"case/combo/bubble_combo.html":{"ref":"case/combo/bubble_combo.html","tf":0.005780346820809248}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"状":{"docs":{},"态":{"docs":{},"下":{"docs":{},"是":{"docs":{},"否":{"docs":{},"显":{"docs":{},"示":{"docs":{},"阴":{"docs":{},"影":{"docs":{"core/basic_button.html":{"ref":"core/basic_button.html","tf":0.007936507936507936},"base/button/button.html":{"ref":"base/button/button.html","tf":0.005681818181818182},"case/combo/bubble_combo.html":{"ref":"case/combo/bubble_combo.html","tf":0.005780346820809248}}}}}}}}}}},"文":{"docs":{},"本":{"docs":{},"框":{"docs":{},"文":{"docs":{},"本":{"docs":{"base/editor/editor.html":{"ref":"base/editor/editor.html","tf":0.005405405405405406}}}}}}},"日":{"docs":{},"期":{"docs":{},"或":{"docs":{},"者":{"docs":{},"退":{"docs":{},"出":{"docs":{},"编":{"docs":{},"辑":{"docs":{},"状":{"docs":{},"态":{"docs":{},"触":{"docs":{},"发":{"docs":{"detailed/year_combo.html":{"ref":"detailed/year_combo.html","tf":0.05},"detailed/month_combo.html":{"ref":"detailed/month_combo.html","tf":0.07142857142857142},"detailed/quarter_combo.html":{"ref":"detailed/quarter_combo.html","tf":0.07142857142857142}}}}}}}}}}}}}},"的":{"docs":{},"初":{"docs":{},"始":{"docs":{},"年":{"docs":{},"月":{"docs":{"detailed/date/date_pane_widget.html":{"ref":"detailed/date/date_pane_widget.html","tf":0.02702702702702703}}}}}}}},"色":{"docs":{},"控":{"docs":{},"件":{"docs":{"case/color_chooser.html":{"ref":"case/color_chooser.html","tf":0.038461538461538464}},"弹":{"docs":{},"窗":{"docs":{"case/color_chooser_popup.html":{"ref":"case/color_chooser_popup.html","tf":0.029411764705882353}}}}}}}},"销":{"docs":{},"毁":{"docs":{},"组":{"docs":{},"件":{"docs":{"core/abstract/button_group.html":{"ref":"core/abstract/button_group.html","tf":0.007936507936507936},"core/abstract/virtual_list.html":{"ref":"core/abstract/virtual_list.html","tf":0.0125},"core/combination/bi.combo.html":{"ref":"core/combination/bi.combo.html","tf":0.004807692307692308},"core/combination/bi.expander.html":{"ref":"core/combination/bi.expander.html","tf":0.005494505494505495},"core/combination/loader.html":{"ref":"core/combination/loader.html","tf":0.006289308176100629},"core/combination/navigation.html":{"ref":"core/combination/navigation.html","tf":0.007194244604316547},"core/combination/searcher.html":{"ref":"core/combination/searcher.html","tf":0.004608294930875576},"core/combination/switcher.html":{"ref":"core/combination/switcher.html","tf":0.00625},"core/combination/tab.html":{"ref":"core/combination/tab.html","tf":0.00684931506849315},"core/layer/layer_float_box.html":{"ref":"core/layer/layer_float_box.html","tf":0.012345679012345678},"core/widget.html":{"ref":"core/widget.html","tf":0.00510204081632653},"core/basic_button.html":{"ref":"core/basic_button.html","tf":0.007936507936507936},"case/combo/bubble_combo.html":{"ref":"case/combo/bubble_combo.html","tf":0.005780346820809248}}}},"事":{"docs":{},"件":{"docs":{"base/button/button.html":{"ref":"base/button/button.html","tf":0.005681818181818182}}}}}},"优":{"docs":{},"化":{"docs":{},"过":{"docs":{},"的":{"docs":{},"b":{"docs":{},"u":{"docs":{},"t":{"docs":{},"t":{"docs":{},"o":{"docs":{},"n":{"docs":{},"g":{"docs":{},"r":{"docs":{},"o":{"docs":{},"u":{"docs":{},"p":{"docs":{},",":{"docs":{},"删":{"docs":{},"除":{"docs":{},"看":{"docs":{},"不":{"docs":{},"见":{"docs":{},"的":{"docs":{},"元":{"docs":{},"素":{"docs":{"core/abstract/virtual_group.html":{"ref":"core/abstract/virtual_group.html","tf":0.014492753623188406}}}}}}}}}}}}}}}}}}}}}}}}}},"渲":{"docs":{},"染":{"docs":{},"列":{"docs":{},"表":{"docs":{"core/abstract/virtual_group.html":{"ref":"core/abstract/virtual_group.html","tf":0.014492753623188406},"core/abstract/custom_tree.html":{"ref":"core/abstract/custom_tree.html","tf":0.007194244604316547},"core/abstract/virtual_list.html":{"ref":"core/abstract/virtual_list.html","tf":0.0125}}}},"组":{"docs":{},"件":{"docs":{"core/combination/navigation.html":{"ref":"core/combination/navigation.html","tf":0.007194244604316547},"core/combination/tab.html":{"ref":"core/combination/tab.html","tf":0.00684931506849315},"core/widget.html":{"ref":"core/widget.html","tf":0.00510204081632653}}}}}},"构":{"docs":{},"造":{"docs":{},"树":{"docs":{},"结":{"docs":{},"构":{"docs":{"core/abstract/custom_tree.html":{"ref":"core/abstract/custom_tree.html","tf":0.007194244604316547},"case/tree/level_tree.html":{"ref":"case/tree/level_tree.html","tf":0.017857142857142856}}}}}}},"生":{"docs":{},"成":{"docs":{},"树":{"docs":{},"方":{"docs":{},"法":{"docs":{"core/abstract/custom_tree.html":{"ref":"core/abstract/custom_tree.html","tf":0.007194244604316547},"case/tree/level_tree.html":{"ref":"case/tree/level_tree.html","tf":0.017857142857142856}}}}}},"命":{"docs":{},"周":{"docs":{},"期":{"docs":{},"函":{"docs":{},"数":{"docs":{"core/widget.html":{"ref":"core/widget.html","tf":0.00510204081632653}}}}}}}},"(":{"docs":{},")":{"docs":{"core/abstract/grid_view.html":{"ref":"core/abstract/grid_view.html","tf":0.01282051282051282},"core/combination/searcher.html":{"ref":"core/combination/searcher.html","tf":0.004608294930875576},"core/layer/layer_searcher.html":{"ref":"core/layer/layer_searcher.html","tf":0.018518518518518517},"case/clipboard.html":{"ref":"case/clipboard.html","tf":0.0625},"detailed/bi.button/tooltip.html":{"ref":"detailed/bi.button/tooltip.html","tf":0.011363636363636364}}},"i":{"docs":{"core/abstract/virtual_list.html":{"ref":"core/abstract/virtual_list.html","tf":0.0125}},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"x":{"docs":{},")":{"docs":{"core/abstract/collection_view.html":{"ref":"core/abstract/collection_view.html","tf":0.0070921985815602835}}}}}}},",":{"docs":{"core/abstract/virtual_list.html":{"ref":"core/abstract/virtual_list.html","tf":0.0125}}}},"v":{"docs":{},")":{"docs":{"core/combination/tab.html":{"ref":"core/combination/tab.html","tf":0.0136986301369863}}}},"注":{"docs":{},":":{"docs":{"core/widget.html":{"ref":"core/widget.html","tf":0.00510204081632653}}}},"f":{"docs":{},"a":{"docs":{},"m":{"docs":{},"i":{"docs":{},"l":{"docs":{},"y":{"docs":{},",":{"docs":{"base/svg.html":{"ref":"base/svg.html","tf":0.011235955056179775}}}}}}}}},"s":{"docs":{},"r":{"docs":{},"c":{"docs":{},",":{"docs":{},"x":{"docs":{},",":{"docs":{},"y":{"docs":{},",":{"docs":{},"w":{"docs":{},",":{"docs":{},"h":{"docs":{},")":{"docs":{},"分":{"docs":{},"别":{"docs":{},"表":{"docs":{},"示":{"docs":{},"图":{"docs":{},"片":{"docs":{},"路":{"docs":{},"径":{"docs":{},",":{"docs":{},"绘":{"docs":{},"制":{"docs":{},"的":{"docs":{},"原":{"docs":{},"点":{"docs":{},"横":{"docs":{},"、":{"docs":{},"纵":{"docs":{},"坐":{"docs":{},"标":{"docs":{},",":{"docs":{},"宽":{"docs":{},"、":{"docs":{},"高":{"docs":{"base/svg.html":{"ref":"base/svg.html","tf":0.011235955056179775}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"w":{"docs":{},"i":{"docs":{},"d":{"docs":{},"t":{"docs":{},"h":{"docs":{},",":{"docs":{},"h":{"docs":{},"e":{"docs":{},"i":{"docs":{},"g":{"docs":{},"h":{"docs":{},"t":{"docs":{},")":{"docs":{},"分":{"docs":{},"别":{"docs":{},"表":{"docs":{},"示":{"docs":{},"画":{"docs":{},"布":{"docs":{},"宽":{"docs":{},"高":{"docs":{"base/svg.html":{"ref":"base/svg.html","tf":0.011235955056179775}}}}}}}}}}}}}}}}}}}}}}},"x":{"0":{"docs":{},",":{"docs":{"base/canvas.html":{"ref":"base/canvas.html","tf":0.03333333333333333},"case/complex_canvas.html":{"ref":"case/complex_canvas.html","tf":0.020833333333333332}}}},"docs":{},",":{"docs":{"base/svg.html":{"ref":"base/svg.html","tf":0.011235955056179775},"base/canvas.html":{"ref":"base/canvas.html","tf":0.016666666666666666}},"y":{"docs":{},")":{"docs":{"base/svg.html":{"ref":"base/svg.html","tf":0.02247191011235955}}},",":{"docs":{},"r":{"docs":{},")":{"docs":{},"分":{"docs":{},"别":{"docs":{},"表":{"docs":{},"示":{"docs":{},"原":{"docs":{},"点":{"docs":{},"的":{"docs":{},"横":{"docs":{},"坐":{"docs":{},"标":{"docs":{},",":{"docs":{},"纵":{"docs":{},"坐":{"docs":{},"标":{"docs":{},",":{"docs":{},"以":{"docs":{},"及":{"docs":{},"半":{"docs":{},"径":{"docs":{"base/svg.html":{"ref":"base/svg.html","tf":0.011235955056179775}}}}}}}}}}}}}}}}}}}}}},"x":{"docs":{},",":{"docs":{},"r":{"docs":{},"y":{"docs":{},")":{"docs":{},"分":{"docs":{},"别":{"docs":{},"表":{"docs":{},"示":{"docs":{},"原":{"docs":{},"点":{"docs":{},"的":{"docs":{},"横":{"docs":{},"、":{"docs":{},"纵":{"docs":{},"坐":{"docs":{},"标":{"docs":{},",":{"docs":{},"以":{"docs":{},"及":{"docs":{},"水":{"docs":{},"平":{"docs":{},"半":{"docs":{},"径":{"docs":{},"和":{"docs":{},"垂":{"docs":{},"直":{"docs":{},"半":{"docs":{},"径":{"docs":{"base/svg.html":{"ref":"base/svg.html","tf":0.011235955056179775}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"t":{"docs":{},"e":{"docs":{},"x":{"docs":{},"t":{"docs":{},")":{"docs":{},"分":{"docs":{},"别":{"docs":{},"表":{"docs":{},"示":{"docs":{},"绘":{"docs":{},"制":{"docs":{},"的":{"docs":{},"原":{"docs":{},"点":{"docs":{},"横":{"docs":{},"、":{"docs":{},"纵":{"docs":{},"坐":{"docs":{},"标":{"docs":{},"以":{"docs":{},"及":{"docs":{},"要":{"docs":{},"绘":{"docs":{},"制":{"docs":{},"的":{"docs":{},"文":{"docs":{},"本":{"docs":{},"内":{"docs":{},"容":{"docs":{"base/svg.html":{"ref":"base/svg.html","tf":0.011235955056179775}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"w":{"docs":{},",":{"docs":{},"h":{"docs":{},",":{"docs":{},"r":{"docs":{},")":{"docs":{},"分":{"docs":{},"别":{"docs":{},"表":{"docs":{},"示":{"docs":{},"左":{"docs":{},"上":{"docs":{},"角":{"docs":{},"的":{"docs":{},"横":{"docs":{},"坐":{"docs":{},"标":{"docs":{},"、":{"docs":{},"纵":{"docs":{},"坐":{"docs":{},"标":{"docs":{},",":{"docs":{},"矩":{"docs":{},"形":{"docs":{},"宽":{"docs":{},"、":{"docs":{},"高":{"docs":{},"、":{"docs":{},"以":{"docs":{},"及":{"docs":{},"矩":{"docs":{},"形":{"docs":{},"的":{"docs":{},"圆":{"docs":{},"角":{"docs":{},"b":{"docs":{},"o":{"docs":{},"r":{"docs":{},"d":{"docs":{"base/svg.html":{"ref":"base/svg.html","tf":0.011235955056179775}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},"o":{"docs":{},"r":{"docs":{},")":{"docs":{},"分":{"docs":{},"别":{"docs":{},"表":{"docs":{},"示":{"docs":{},"左":{"docs":{},"上":{"docs":{},"角":{"docs":{},"的":{"docs":{},"横":{"docs":{},"坐":{"docs":{},"标":{"docs":{},"、":{"docs":{},"纵":{"docs":{},"坐":{"docs":{},"标":{"docs":{},",":{"docs":{},"矩":{"docs":{},"形":{"docs":{},"宽":{"docs":{},"、":{"docs":{},"高":{"docs":{},"、":{"docs":{},"以":{"docs":{},"及":{"docs":{},"绘":{"docs":{},"制":{"docs":{},"的":{"docs":{},"颜":{"docs":{},"色":{"docs":{"base/canvas.html":{"ref":"base/canvas.html","tf":0.016666666666666666}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"d":{"docs":{},"t":{"docs":{},"h":{"docs":{},",":{"docs":{},"h":{"docs":{},"e":{"docs":{},"i":{"docs":{},"g":{"docs":{},"h":{"docs":{},"t":{"docs":{},",":{"docs":{},"f":{"docs":{},"i":{"docs":{},"t":{"docs":{},")":{"docs":{},"分":{"docs":{},"别":{"docs":{},"表":{"docs":{},"示":{"docs":{},"可":{"docs":{},"视":{"docs":{},"区":{"docs":{},"域":{"docs":{},"原":{"docs":{},"点":{"docs":{},"坐":{"docs":{},"标":{"docs":{},"以":{"docs":{},"及":{"docs":{},"可":{"docs":{},"视":{"docs":{},"区":{"docs":{},"域":{"docs":{},"宽":{"docs":{},"高":{"docs":{},",":{"docs":{},"以":{"docs":{},"及":{"docs":{},"是":{"docs":{},"否":{"docs":{},"根":{"docs":{},"据":{"docs":{},"可":{"docs":{},"视":{"docs":{},"区":{"docs":{},"域":{"docs":{},"进":{"docs":{},"行":{"docs":{},"调":{"docs":{},"整":{"docs":{"base/svg.html":{"ref":"base/svg.html","tf":0.011235955056179775}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},",":{"docs":{"detailed/tree/bi.multi_tree_combo.html":{"ref":"detailed/tree/bi.multi_tree_combo.html","tf":0.010869565217391304}}}}}}}}}},"r":{"docs":{},"o":{"docs":{},"w":{"1":{"docs":{},",":{"docs":{"detailed/table/bi.responsive_table.html":{"ref":"detailed/table/bi.responsive_table.html","tf":0.005263157894736842}}}},"docs":{}}}}},"事":{"docs":{},"件":{"docs":{"core/abstract/grid_view.html":{"ref":"core/abstract/grid_view.html","tf":0.01282051282051282},"core/abstract/collection_view.html":{"ref":"core/abstract/collection_view.html","tf":0.014184397163120567},"core/combination/bi.combo.html":{"ref":"core/combination/bi.combo.html","tf":0.004807692307692308},"core/combination/bi.expander.html":{"ref":"core/combination/bi.expander.html","tf":0.005494505494505495},"core/combination/searcher.html":{"ref":"core/combination/searcher.html","tf":0.009216589861751152},"base/editor/editor.html":{"ref":"base/editor/editor.html","tf":0.010810810810810811},"base/editor/multifile_editor.html":{"ref":"base/editor/multifile_editor.html","tf":0.03076923076923077},"base/table/table_view.html":{"ref":"base/table/table_view.html","tf":0.012578616352201259},"base/pager.html":{"ref":"base/pager.html","tf":0.006666666666666667},"case/editor/shelter_editor.html":{"ref":"case/editor/shelter_editor.html","tf":0.010362694300518135},"case/editor/sign_editor.html":{"ref":"case/editor/sign_editor.html","tf":0.01098901098901099},"case/editor/sign_initial_editor.html":{"ref":"case/editor/sign_initial_editor.html","tf":0.010309278350515464},"case/editor/state_editor.html":{"ref":"case/editor/state_editor.html","tf":0.011494252873563218},"case/layer/layer_panel.html":{"ref":"case/layer/layer_panel.html","tf":0.021505376344086023},"case/color_chooser_popup.html":{"ref":"case/color_chooser_popup.html","tf":0.058823529411764705},"detailed/tree/bi.multi_tree_combo.html":{"ref":"detailed/tree/bi.multi_tree_combo.html","tf":0.021739130434782608},"detailed/text_input/bi.search_editor.html":{"ref":"detailed/text_input/bi.search_editor.html","tf":0.020202020202020204},"detailed/text_input/bi.clear_editor.html":{"ref":"detailed/text_input/bi.clear_editor.html","tf":0.0196078431372549},"detailed/text_input/finetuning_number_editor.html":{"ref":"detailed/text_input/finetuning_number_editor.html","tf":0.07407407407407407},"detailed/year_combo.html":{"ref":"detailed/year_combo.html","tf":0.05},"detailed/month_combo.html":{"ref":"detailed/month_combo.html","tf":0.07142857142857142},"detailed/quarter_combo.html":{"ref":"detailed/quarter_combo.html","tf":0.07142857142857142},"detailed/down_list_combo.html":{"ref":"detailed/down_list_combo.html","tf":0.013157894736842105},"detailed/numeric_interval.html":{"ref":"detailed/numeric_interval.html","tf":0.034482758620689655},"detailed/multi_select_combo.html":{"ref":"detailed/multi_select_combo.html","tf":0.04},"detailed/date/year_month_combo.html":{"ref":"detailed/date/year_month_combo.html","tf":0.058823529411764705},"detailed/date/year_quarter_combo.html":{"ref":"detailed/date/year_quarter_combo.html","tf":0.06451612903225806},"detailed/date/custom_date_time.html":{"ref":"detailed/date/custom_date_time.html","tf":0.09090909090909091},"detailed/combo/single_tree_combo.html":{"ref":"detailed/combo/single_tree_combo.html","tf":0.03389830508474576}},"名":{"docs":{},"称":{"docs":{"core/combination/searcher.html":{"ref":"core/combination/searcher.html","tf":0.004608294930875576},"core/combination/switcher.html":{"ref":"core/combination/switcher.html","tf":0.00625},"core/layer/layer_float_box.html":{"ref":"core/layer/layer_float_box.html","tf":0.012345679012345678}}}},"方":{"docs":{},"法":{"docs":{"core/combination/searcher.html":{"ref":"core/combination/searcher.html","tf":0.004608294930875576},"core/combination/switcher.html":{"ref":"core/combination/switcher.html","tf":0.00625},"core/layer/layer_float_box.html":{"ref":"core/layer/layer_float_box.html","tf":0.012345679012345678}}}},"详":{"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":0.010309278350515464}}}}}}}}}}}},"滚":{"docs":{},"动":{"docs":{},"时":{"docs":{},"触":{"docs":{},"发":{"docs":{},"的":{"docs":{},"事":{"docs":{},"件":{"docs":{"core/abstract/grid_view.html":{"ref":"core/abstract/grid_view.html","tf":0.00641025641025641},"core/abstract/collection_view.html":{"ref":"core/abstract/collection_view.html","tf":0.0070921985815602835}}}}}}}},"条":{"docs":{},"相":{"docs":{},"对":{"docs":{},"于":{"docs":{},"左":{"docs":{},"边":{"docs":{},"的":{"docs":{},"偏":{"docs":{},"移":{"docs":{"core/abstract/grid_view.html":{"ref":"core/abstract/grid_view.html","tf":0.00641025641025641},"core/abstract/collection_view.html":{"ref":"core/abstract/collection_view.html","tf":0.0070921985815602835}}}}}}},"顶":{"docs":{},"部":{"docs":{},"的":{"docs":{},"偏":{"docs":{},"移":{"docs":{"core/abstract/grid_view.html":{"ref":"core/abstract/grid_view.html","tf":0.00641025641025641},"core/abstract/collection_view.html":{"ref":"core/abstract/collection_view.html","tf":0.0070921985815602835},"core/abstract/virtual_list.html":{"ref":"core/abstract/virtual_list.html","tf":0.0125}}}}}}}}}}},"加":{"docs":{},"载":{"docs":{},"的":{"docs":{},"个":{"docs":{},"数":{"docs":{"core/abstract/virtual_list.html":{"ref":"core/abstract/virtual_list.html","tf":0.0125}}}}}}},"事":{"docs":{},"件":{"docs":{"base/table/table_view.html":{"ref":"base/table/table_view.html","tf":0.006289308176100629}}}}}},"超":{"docs":{},"出":{"docs":{},"可":{"docs":{},"视":{"docs":{},"范":{"docs":{},"围":{"docs":{},"区":{"docs":{},"域":{"docs":{},"预":{"docs":{},"加":{"docs":{},"载":{"docs":{},"多":{"docs":{},"少":{"docs":{},"列":{"docs":{"core/abstract/grid_view.html":{"ref":"core/abstract/grid_view.html","tf":0.00641025641025641}}},"行":{"docs":{"core/abstract/grid_view.html":{"ref":"core/abstract/grid_view.html","tf":0.00641025641025641}}}}}}}},"的":{"docs":{},"高":{"docs":{},"度":{"docs":{"core/abstract/virtual_list.html":{"ref":"core/abstract/virtual_list.html","tf":0.0125}}}}}}}}}}}}},"还":{"docs":{},"原":{"docs":{},"列":{"docs":{},"表":{"docs":{},"设":{"docs":{},"置":{"docs":{"core/abstract/grid_view.html":{"ref":"core/abstract/grid_view.html","tf":0.00641025641025641},"core/abstract/collection_view.html":{"ref":"core/abstract/collection_view.html","tf":0.0070921985815602835},"core/abstract/virtual_list.html":{"ref":"core/abstract/virtual_list.html","tf":0.0125}}}}}}}},"预":{"docs":{},"估":{"docs":{},"列":{"docs":{},"宽":{"docs":{},",":{"docs":{},"r":{"docs":{},"o":{"docs":{},"w":{"docs":{},"h":{"docs":{},"e":{"docs":{},"i":{"docs":{},"g":{"docs":{},"h":{"docs":{},"t":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"为":{"docs":{},"f":{"docs":{},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"时":{"docs":{},"必":{"docs":{},"设":{"docs":{"core/abstract/grid_view.html":{"ref":"core/abstract/grid_view.html","tf":0.00641025641025641}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"行":{"docs":{},"宽":{"docs":{},",":{"docs":{},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},"u":{"docs":{},"m":{"docs":{},"n":{"docs":{},"w":{"docs":{},"i":{"docs":{},"d":{"docs":{},"t":{"docs":{},"h":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"为":{"docs":{},"f":{"docs":{},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"时":{"docs":{},"必":{"docs":{},"设":{"docs":{"core/abstract/grid_view.html":{"ref":"core/abstract/grid_view.html","tf":0.00641025641025641}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"%":{"docs":{"core/abstract/collection_view.html":{"ref":"core/abstract/collection_view.html","tf":0.0070921985815602835}}},"*":{"docs":{"core/abstract/collection_view.html":{"ref":"core/abstract/collection_view.html","tf":0.014184397163120567}}},"m":{"docs":{},"a":{"docs":{},"t":{"docs":{},"h":{"docs":{},".":{"docs":{},"f":{"docs":{},"l":{"docs":{},"o":{"docs":{},"o":{"docs":{},"r":{"docs":{},"(":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"x":{"docs":{"core/abstract/collection_view.html":{"ref":"core/abstract/collection_view.html","tf":0.0070921985815602835}}}}}}}}}}}}}}},"c":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{"core/layer/layer_searcher.html":{"ref":"core/layer/layer_searcher.html","tf":0.009259259259259259}}}},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"u":{"docs":{},"l":{"docs":{},"t":{"docs":{},",":{"docs":{"core/layer/layer_searcher.html":{"ref":"core/layer/layer_searcher.html","tf":0.009259259259259259}}}}}}}}}}}},"s":{"docs":{},"k":{"docs":{},"e":{"docs":{},"r":{"docs":{"core/combination/searcher.html":{"ref":"core/combination/searcher.html","tf":0.004608294930875576},"core/combination/switcher.html":{"ref":"core/combination/switcher.html","tf":0.00625}},":":{"docs":{"core/combination/searcher.html":{"ref":"core/combination/searcher.html","tf":0.004608294930875576}}},"层":{"docs":{"core/combination/searcher.html":{"ref":"core/combination/searcher.html","tf":0.004608294930875576},"core/combination/switcher.html":{"ref":"core/combination/switcher.html","tf":0.00625}}}}}}},"x":{"docs":{"case/calendar.html":{"ref":"case/calendar.html","tf":0.013888888888888888},"detailed/year_combo.html":{"ref":"detailed/year_combo.html","tf":0.025},"detailed/numeric_interval.html":{"ref":"detailed/numeric_interval.html","tf":0.017241379310344827},"detailed/date/date_pane_widget.html":{"ref":"detailed/date/date_pane_widget.html","tf":0.02702702702702703},"detailed/slider.html":{"ref":"detailed/slider.html","tf":0.029411764705882353}},"h":{"docs":{},"e":{"docs":{},"i":{"docs":{},"g":{"docs":{},"h":{"docs":{},"t":{"docs":{"core/layer/layer_popup.html":{"ref":"core/layer/layer_popup.html","tf":0.0058823529411764705},"case/combo/icon_combo.html":{"ref":"case/combo/icon_combo.html","tf":0.007751937984496124}},":":{"docs":{"case/combo/bubble_combo.html":{"ref":"case/combo/bubble_combo.html","tf":0.005780346820809248}}}}}}}}},"w":{"docs":{},"i":{"docs":{},"d":{"docs":{},"t":{"docs":{},"h":{"docs":{"core/layer/layer_popup.html":{"ref":"core/layer/layer_popup.html","tf":0.0058823529411764705},"case/combo/icon_combo.html":{"ref":"case/combo/icon_combo.html","tf":0.007751937984496124}}}}}}},"s":{"docs":{},"i":{"docs":{},"z":{"docs":{"base/editor/multifile_editor.html":{"ref":"base/editor/multifile_editor.html","tf":0.015384615384615385}}}}},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},"u":{"docs":{},"m":{"docs":{},"n":{"docs":{},"s":{"docs":{"base/table/resizable_table.html":{"ref":"base/table/resizable_table.html","tf":0.00625},"case/table/adaptive_table.html":{"ref":"case/table/adaptive_table.html","tf":0.006060606060606061},"case/table/tree_table.html":{"ref":"case/table/tree_table.html","tf":0.00510204081632653},"case/table/layer_tree_table.html":{"ref":"case/table/layer_tree_table.html","tf":0.00510204081632653},"detailed/table/bi.page_table.html":{"ref":"detailed/table/bi.page_table.html","tf":0.004651162790697674}}}}}}}}},":":{"docs":{"case/calendar.html":{"ref":"case/calendar.html","tf":0.013888888888888888},"detailed/slider.html":{"ref":"detailed/slider.html","tf":0.029411764705882353}}}},"r":{"docs":{},"k":{"docs":{"detailed/down_list_combo.html":{"ref":"detailed/down_list_combo.html","tf":0.006578947368421052}}}}},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{"core/abstract/virtual_list.html":{"ref":"core/abstract/virtual_list.html","tf":0.0125},"core/combination/navigation.html":{"ref":"core/combination/navigation.html","tf":0.007194244604316547},"core/combination/tab.html":{"ref":"core/combination/tab.html","tf":0.00684931506849315},"core/widget.html":{"ref":"core/widget.html","tf":0.00510204081632653}}}},"s":{"docs":{},"e":{"docs":{},"d":{"docs":{},"o":{"docs":{},"w":{"docs":{},"n":{"docs":{},",":{"docs":{"core/basic_button.html":{"ref":"core/basic_button.html","tf":0.007936507936507936},"case/combo/bubble_combo.html":{"ref":"case/combo/bubble_combo.html","tf":0.005780346820809248}}}}}}},"u":{"docs":{},"p":{"docs":{},",":{"docs":{"core/basic_button.html":{"ref":"core/basic_button.html","tf":0.007936507936507936},"case/combo/bubble_combo.html":{"ref":"case/combo/bubble_combo.html","tf":0.005780346820809248}}}}}}}},"n":{"docs":{},"t":{"docs":{},"h":{"docs":{"case/calendar.html":{"ref":"case/calendar.html","tf":0.013888888888888888}},",":{"docs":{"case/calendar.html":{"ref":"case/calendar.html","tf":0.013888888888888888}}},":":{"docs":{"case/calendar.html":{"ref":"case/calendar.html","tf":0.013888888888888888},"detailed/date/date_pane_widget.html":{"ref":"detailed/date/date_pane_widget.html","tf":0.02702702702702703}}},"_":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"b":{"docs":{},"o":{"docs":{"detailed/month_combo.html":{"ref":"detailed/month_combo.html","tf":10.035714285714286}}}}}}}},"b":{"docs":{},"e":{"docs":{},"h":{"docs":{},"a":{"docs":{},"v":{"docs":{},"i":{"docs":{},"o":{"docs":{},"r":{"docs":{"detailed/date/year_month_combo.html":{"ref":"detailed/date/year_month_combo.html","tf":0.029411764705882353},"detailed/date/year_quarter_combo.html":{"ref":"detailed/date/year_quarter_combo.html","tf":0.03225806451612903}}}}}}}}}}}}}},"i":{"docs":{},"n":{"docs":{"case/calendar.html":{"ref":"case/calendar.html","tf":0.013888888888888888},"detailed/year_combo.html":{"ref":"detailed/year_combo.html","tf":0.025},"detailed/numeric_interval.html":{"ref":"detailed/numeric_interval.html","tf":0.017241379310344827},"detailed/date/date_pane_widget.html":{"ref":"detailed/date/date_pane_widget.html","tf":0.02702702702702703},"detailed/slider.html":{"ref":"detailed/slider.html","tf":0.029411764705882353}},"h":{"docs":{},"e":{"docs":{},"i":{"docs":{},"g":{"docs":{},"h":{"docs":{},"t":{"docs":{"core/layer/layer_popup.html":{"ref":"core/layer/layer_popup.html","tf":0.0058823529411764705}}}}}}}},"w":{"docs":{},"i":{"docs":{},"d":{"docs":{},"t":{"docs":{},"h":{"docs":{"core/layer/layer_popup.html":{"ref":"core/layer/layer_popup.html","tf":0.0058823529411764705},"base/button/button.html":{"ref":"base/button/button.html","tf":0.005681818181818182},"case/combo/icon_combo.html":{"ref":"case/combo/icon_combo.html","tf":0.007751937984496124}}}}}}},"_":{"docs":{},"w":{"docs":{},"i":{"docs":{},"d":{"docs":{},"t":{"docs":{},"h":{"docs":{"base/message.html":{"ref":"base/message.html","tf":0.02127659574468085}}}}}}}},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},"u":{"docs":{},"m":{"docs":{},"n":{"docs":{},"s":{"docs":{"base/table/resizable_table.html":{"ref":"base/table/resizable_table.html","tf":0.00625},"case/table/adaptive_table.html":{"ref":"case/table/adaptive_table.html","tf":0.006060606060606061},"case/table/tree_table.html":{"ref":"case/table/tree_table.html","tf":0.00510204081632653},"case/table/layer_tree_table.html":{"ref":"case/table/layer_tree_table.html","tf":0.00510204081632653},"detailed/table/bi.page_table.html":{"ref":"detailed/table/bi.page_table.html","tf":0.004651162790697674}},"i":{"docs":{},"z":{"docs":{},"e":{"docs":{},":":{"docs":{"case/table/tree_table.html":{"ref":"case/table/tree_table.html","tf":0.00510204081632653},"case/table/layer_tree_table.html":{"ref":"case/table/layer_tree_table.html","tf":0.00510204081632653}}}}}}}}}}}}},":":{"docs":{"case/calendar.html":{"ref":"case/calendar.html","tf":0.013888888888888888},"detailed/slider.html":{"ref":"detailed/slider.html","tf":0.029411764705882353}}}}},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{},"a":{"docs":{},"g":{"docs":{"base/message.html":{"ref":"base/message.html","tf":10}},"e":{"docs":{},",":{"docs":{"base/message.html":{"ref":"base/message.html","tf":0.0851063829787234}}}}}}}},"r":{"docs":{},"g":{"docs":{},"e":{"docs":{},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{"base/table/table_view.html":{"ref":"base/table/table_view.html","tf":0.006289308176100629},"base/table/collection_table.html":{"ref":"base/table/collection_table.html","tf":0.006535947712418301},"base/table/resizable_table.html":{"ref":"base/table/resizable_table.html","tf":0.00625},"case/table/adaptive_table.html":{"ref":"case/table/adaptive_table.html","tf":0.006060606060606061},"case/table/tree_table.html":{"ref":"case/table/tree_table.html","tf":0.00510204081632653},"case/table/layer_tree_table.html":{"ref":"case/table/layer_tree_table.html","tf":0.00510204081632653},"detailed/table/bi.excel_table.html":{"ref":"detailed/table/bi.excel_table.html","tf":0.0055248618784530384},"detailed/table/bi.page_table.html":{"ref":"detailed/table/bi.page_table.html","tf":0.004651162790697674}},"s":{"docs":{},":":{"docs":{"base/table/table_view.html":{"ref":"base/table/table_view.html","tf":0.006289308176100629},"detailed/table/bi.responsive_table.html":{"ref":"detailed/table/bi.responsive_table.html","tf":0.005263157894736842}}}}}}},"r":{"docs":{},"u":{"docs":{},"l":{"docs":{"base/table/table_view.html":{"ref":"base/table/table_view.html","tf":0.006289308176100629},"base/table/collection_table.html":{"ref":"base/table/collection_table.html","tf":0.006535947712418301},"case/table/adaptive_table.html":{"ref":"case/table/adaptive_table.html","tf":0.006060606060606061},"case/table/tree_table.html":{"ref":"case/table/tree_table.html","tf":0.00510204081632653},"case/table/layer_tree_table.html":{"ref":"case/table/layer_tree_table.html","tf":0.00510204081632653},"detailed/table/bi.responsive_table.html":{"ref":"detailed/table/bi.responsive_table.html","tf":0.005263157894736842},"detailed/table/bi.excel_table.html":{"ref":"detailed/table/bi.excel_table.html","tf":0.0055248618784530384},"detailed/table/bi.page_table.html":{"ref":"detailed/table/bi.page_table.html","tf":0.004651162790697674}}}}}}}}},"u":{"docs":{},"l":{"docs":{},"t":{"docs":{},"i":{"docs":{},"f":{"docs":{},"i":{"docs":{},"l":{"docs":{},"e":{"docs":{},"_":{"docs":{},"e":{"docs":{},"d":{"docs":{},"i":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{"base/editor/multifile_editor.html":{"ref":"base/editor/multifile_editor.html","tf":10}}}}}}}}}}}}},"p":{"docs":{},"l":{"docs":{"base/editor/multifile_editor.html":{"ref":"base/editor/multifile_editor.html","tf":0.015384615384615385}}}},"_":{"docs":{},"s":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"_":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{"case/button/multi_select_item.html":{"ref":"case/button/multi_select_item.html","tf":10}}}}}},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"b":{"docs":{},"o":{"docs":{"detailed/multi_select_combo.html":{"ref":"detailed/multi_select_combo.html","tf":10.04}}}}}}}}}}}}}},"p":{"docs":{},"o":{"docs":{},"p":{"docs":{},"u":{"docs":{},"p":{"docs":{},"_":{"docs":{},"l":{"docs":{},"a":{"docs":{},"y":{"docs":{"case/layer/multi_popup_layer.html":{"ref":"case/layer/multi_popup_layer.html","tf":10}}}}}}}}}}},"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":10}}}}}}}}}}}}},"l":{"docs":{},"a":{"docs":{},"y":{"docs":{},"e":{"docs":{},"r":{"docs":{},"_":{"docs":{},"s":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"l":{"docs":{},"e":{"docs":{},"_":{"docs":{},"t":{"docs":{},"r":{"docs":{},"e":{"docs":{},"e":{"docs":{},"_":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"b":{"docs":{},"o":{"docs":{"detailed/combo/multilayer_single_tree_combo.html":{"ref":"detailed/combo/multilayer_single_tree_combo.html","tf":10}}}}}}}}}}}}}}}}}},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"_":{"docs":{},"t":{"docs":{},"r":{"docs":{},"e":{"docs":{},"e":{"docs":{},"_":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"b":{"docs":{},"o":{"docs":{"detailed/combo/multilayer_select_tree_combo.html":{"ref":"detailed/combo/multilayer_select_tree_combo.html","tf":10}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"}":{"docs":{},")":{"docs":{"detailed/date/date_pane_widget.html":{"ref":"detailed/date/date_pane_widget.html","tf":0.02702702702702703}}}}},"x":{"1":{"docs":{},",":{"docs":{"base/canvas.html":{"ref":"base/canvas.html","tf":0.03333333333333333},"case/complex_canvas.html":{"ref":"case/complex_canvas.html","tf":0.020833333333333332}}}},"2":{"docs":{},",":{"docs":{"case/complex_canvas.html":{"ref":"case/complex_canvas.html","tf":0.020833333333333332}},"y":{"2":{"docs":{},".":{"docs":{},".":{"docs":{},".":{"docs":{},")":{"docs":{"case/complex_canvas.html":{"ref":"case/complex_canvas.html","tf":0.020833333333333332}}}}}}},"docs":{}}}},"docs":{},":":{"docs":{"core/abstract/collection_view.html":{"ref":"core/abstract/collection_view.html","tf":0.0070921985815602835}}}},"y":{"0":{"docs":{},",":{"docs":{"base/canvas.html":{"ref":"base/canvas.html","tf":0.03333333333333333},"case/complex_canvas.html":{"ref":"case/complex_canvas.html","tf":0.020833333333333332}}},"为":{"docs":{},"根":{"docs":{},"节":{"docs":{},"点":{"docs":{},",":{"docs":{},"分":{"docs":{},"支":{"docs":{},"到":{"docs":{},"x":{"1":{"docs":{},",":{"docs":{},"y":{"1":{"docs":{},",":{"docs":{"case/complex_canvas.html":{"ref":"case/complex_canvas.html","tf":0.020833333333333332}}}},"docs":{}}}},"docs":{}}}}}}}}}}},"1":{"docs":{},")":{"docs":{"base/canvas.html":{"ref":"base/canvas.html","tf":0.016666666666666666}}},",":{"docs":{"base/canvas.html":{"ref":"base/canvas.html","tf":0.016666666666666666},"case/complex_canvas.html":{"ref":"case/complex_canvas.html","tf":0.020833333333333332}}}},"2":{"docs":{},")":{"docs":{"case/complex_canvas.html":{"ref":"case/complex_canvas.html","tf":0.020833333333333332}}}},"docs":{},":":{"docs":{"core/abstract/collection_view.html":{"ref":"core/abstract/collection_view.html","tf":0.0070921985815602835}}},",":{"docs":{"base/svg.html":{"ref":"base/svg.html","tf":0.011235955056179775},"base/canvas.html":{"ref":"base/canvas.html","tf":0.016666666666666666},"detailed/date/date_pane_widget.html":{"ref":"detailed/date/date_pane_widget.html","tf":0.02702702702702703}}},"e":{"docs":{},"a":{"docs":{},"r":{"docs":{"case/calendar.html":{"ref":"case/calendar.html","tf":0.013888888888888888}},":":{"docs":{"case/calendar.html":{"ref":"case/calendar.html","tf":0.013888888888888888}}},"_":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"b":{"docs":{},"o":{"docs":{"detailed/year_combo.html":{"ref":"detailed/year_combo.html","tf":10.025}}}}}}},"m":{"docs":{},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{},"h":{"docs":{},"_":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"b":{"docs":{},"o":{"docs":{"detailed/date/year_month_combo.html":{"ref":"detailed/date/year_month_combo.html","tf":10.029411764705882}}}}}}}}}}}}},"q":{"docs":{},"u":{"docs":{},"a":{"docs":{},"r":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"_":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"b":{"docs":{},"o":{"docs":{"detailed/date/year_quarter_combo.html":{"ref":"detailed/date/year_quarter_combo.html","tf":10.03225806451613}}}}}}}}}}}}}}}},"b":{"docs":{},"e":{"docs":{},"h":{"docs":{},"a":{"docs":{},"v":{"docs":{},"i":{"docs":{},"o":{"docs":{},"r":{"docs":{"detailed/date/year_month_combo.html":{"ref":"detailed/date/year_month_combo.html","tf":0.029411764705882353},"detailed/date/year_quarter_combo.html":{"ref":"detailed/date/year_quarter_combo.html","tf":0.03225806451612903}}}}}}}}}}}}}},"+":{"docs":{"core/abstract/virtual_list.html":{"ref":"core/abstract/virtual_list.html","tf":0.0375},"core/combination/navigation.html":{"ref":"core/combination/navigation.html","tf":0.02158273381294964}}},"看":{"docs":{},"不":{"docs":{},"见":{"docs":{},"的":{"docs":{},"元":{"docs":{},"素":{"docs":{},"全":{"docs":{},"部":{"docs":{},"删":{"docs":{},"除":{"docs":{},"的":{"docs":{},"l":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{},",":{"docs":{},"基":{"docs":{},"类":{"docs":{},"b":{"docs":{},"i":{"docs":{},".":{"docs":{},"w":{"docs":{},"i":{"docs":{},"d":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{"core/abstract/virtual_list.html":{"ref":"core/abstract/virtual_list.html","tf":0.0125}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"组":{"docs":{},"件":{"docs":{},"挂":{"docs":{},"载":{"docs":{"core/abstract/virtual_list.html":{"ref":"core/abstract/virtual_list.html","tf":0.0125},"core/widget.html":{"ref":"core/widget.html","tf":0.00510204081632653}},"之":{"docs":{},"前":{"docs":{"core/widget.html":{"ref":"core/widget.html","tf":0.00510204081632653}}}}}},"是":{"docs":{},"否":{"docs":{},"可":{"docs":{},"见":{"docs":{"core/combination/searcher.html":{"ref":"core/combination/searcher.html","tf":0.004608294930875576}}}}}},"不":{"docs":{},"在":{"docs":{},"页":{"docs":{},"面":{"docs":{},"展":{"docs":{},"示":{"docs":{},",":{"docs":{},"组":{"docs":{},"件":{"docs":{},"事":{"docs":{},"件":{"docs":{},"和":{"docs":{},"内":{"docs":{},"容":{"docs":{},"都":{"docs":{},"在":{"docs":{"core/widget.html":{"ref":"core/widget.html","tf":0.00510204081632653}}}}}}}}}}}}}}}}}},"实":{"docs":{},"例":{"docs":{},"刚":{"docs":{},"被":{"docs":{},"创":{"docs":{},"建":{"docs":{"core/widget.html":{"ref":"core/widget.html","tf":0.00510204081632653}}}}}},"创":{"docs":{},"建":{"docs":{},"完":{"docs":{},"成":{"docs":{"core/widget.html":{"ref":"core/widget.html","tf":0.00510204081632653}}}}}}}},"更":{"docs":{},"新":{"docs":{"core/widget.html":{"ref":"core/widget.html","tf":0.00510204081632653}}}},"销":{"docs":{},"毁":{"docs":{},"前":{"docs":{},"调":{"docs":{},"用":{"docs":{"core/widget.html":{"ref":"core/widget.html","tf":0.00510204081632653}}}}},"后":{"docs":{},"调":{"docs":{},"用":{"docs":{"core/widget.html":{"ref":"core/widget.html","tf":0.00510204081632653}}}}}}},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{},"e":{"docs":{},"值":{"docs":{"core/single.html":{"ref":"core/single.html","tf":0.013888888888888888},"core/basic_button.html":{"ref":"core/basic_button.html","tf":0.007936507936507936},"case/combo/bubble_combo.html":{"ref":"case/combo/bubble_combo.html","tf":0.005780346820809248}}}}}}}},"t":{"docs":{},"e":{"docs":{},"x":{"docs":{},"t":{"docs":{},"值":{"docs":{"case/combo/bubble_combo.html":{"ref":"case/combo/bubble_combo.html","tf":0.005780346820809248}}}}}}}}},"|":{"docs":{"core/combination/bi.combo.html":{"ref":"core/combination/bi.combo.html","tf":0.03365384615384615},"core/combination/bi.expander.html":{"ref":"core/combination/bi.expander.html","tf":0.038461538461538464},"core/combination/group_combo.html":{"ref":"core/combination/group_combo.html","tf":0.05511811023622047},"detailed/down_list_combo.html":{"ref":"detailed/down_list_combo.html","tf":0.046052631578947366}}},"下":{"docs":{},"拉":{"docs":{},"列":{"docs":{},"表":{"docs":{},"弹":{"docs":{},"出":{"docs":{},"前":{"docs":{},"触":{"docs":{},"发":{"docs":{"core/combination/bi.combo.html":{"ref":"core/combination/bi.combo.html","tf":0.004807692307692308},"core/combination/bi.expander.html":{"ref":"core/combination/bi.expander.html","tf":0.005494505494505495},"detailed/down_list_combo.html":{"ref":"detailed/down_list_combo.html","tf":0.006578947368421052}}}}},"后":{"docs":{},"触":{"docs":{},"发":{"docs":{"core/combination/bi.combo.html":{"ref":"core/combination/bi.combo.html","tf":0.004807692307692308},"core/combination/bi.expander.html":{"ref":"core/combination/bi.expander.html","tf":0.005494505494505495}}}}}}},"收":{"docs":{},"起":{"docs":{},"前":{"docs":{},"触":{"docs":{},"发":{"docs":{"core/combination/bi.combo.html":{"ref":"core/combination/bi.combo.html","tf":0.004807692307692308},"core/combination/bi.expander.html":{"ref":"core/combination/bi.expander.html","tf":0.005494505494505495}}}}},"后":{"docs":{},"触":{"docs":{},"发":{"docs":{"core/combination/bi.combo.html":{"ref":"core/combination/bi.combo.html","tf":0.004807692307692308},"core/combination/bi.expander.html":{"ref":"core/combination/bi.expander.html","tf":0.005494505494505495}}}}}}},"的":{"docs":{},"弹":{"docs":{},"出":{"docs":{},"方":{"docs":{},"式":{"docs":{"core/combination/bi.combo.html":{"ref":"core/combination/bi.combo.html","tf":0.004807692307692308},"core/combination/bi.expander.html":{"ref":"core/combination/bi.expander.html","tf":0.005494505494505495},"core/combination/group_combo.html":{"ref":"core/combination/group_combo.html","tf":0.007874015748031496},"core/combination/switcher.html":{"ref":"core/combination/switcher.html","tf":0.00625},"detailed/down_list_combo.html":{"ref":"detailed/down_list_combo.html","tf":0.006578947368421052},"detailed/combo/single_tree_combo.html":{"ref":"detailed/combo/single_tree_combo.html","tf":0.01694915254237288}}}}}}}}},"框":{"docs":{},"初":{"docs":{},"始":{"docs":{},"化":{"docs":{},"后":{"docs":{},"触":{"docs":{},"发":{"docs":{"core/combination/bi.combo.html":{"ref":"core/combination/bi.combo.html","tf":0.004807692307692308}}}}}}}},"展":{"docs":{},"开":{"docs":{},"触":{"docs":{},"发":{"docs":{"core/combination/bi.combo.html":{"ref":"core/combination/bi.combo.html","tf":0.004807692307692308}}}}}},"收":{"docs":{},"起":{"docs":{},"触":{"docs":{},"发":{"docs":{"core/combination/bi.combo.html":{"ref":"core/combination/bi.combo.html","tf":0.004807692307692308}}}}}},"弹":{"docs":{},"出":{"docs":{},"层":{"docs":{},",":{"docs":{"core/layer/layer_popup.html":{"ref":"core/layer/layer_popup.html","tf":0.0058823529411764705}}},"的":{"docs":{},"多":{"docs":{},"选":{"docs":{},"版":{"docs":{},"本":{"docs":{},",":{"docs":{},"t":{"docs":{},"o":{"docs":{},"o":{"docs":{},"l":{"docs":{},"b":{"docs":{},"a":{"docs":{},"r":{"docs":{},"带":{"docs":{},"有":{"docs":{},"若":{"docs":{},"干":{"docs":{},"按":{"docs":{},"钮":{"docs":{},",":{"docs":{"case/layer/multi_popup_layer.html":{"ref":"case/layer/multi_popup_layer.html","tf":0.04}}}}}}}}}}}}}}}}}}}}}}},"前":{"docs":{},"触":{"docs":{},"发":{"docs":{"detailed/combo/single_tree_combo.html":{"ref":"detailed/combo/single_tree_combo.html","tf":0.01694915254237288}}}}}}}}},"一":{"docs":{},"页":{"docs":{"core/combination/loader.html":{"ref":"core/combination/loader.html","tf":0.006289308176100629},"base/pager.html":{"ref":"base/pager.html","tf":0.006666666666666667}}}}},"切":{"docs":{},"换":{"docs":{},"状":{"docs":{},"态":{"docs":{"core/combination/bi.combo.html":{"ref":"core/combination/bi.combo.html","tf":0.004807692307692308},"core/combination/bi.expander.html":{"ref":"core/combination/bi.expander.html","tf":0.005494505494505495},"core/combination/switcher.html":{"ref":"core/combination/switcher.html","tf":0.00625}}}},"显":{"docs":{},"示":{"docs":{},"或":{"docs":{},"隐":{"docs":{},"藏":{"docs":{},"面":{"docs":{},"板":{"docs":{},",":{"docs":{},"b":{"docs":{},"i":{"docs":{},".":{"docs":{},"w":{"docs":{},"i":{"docs":{},"d":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{"core/combination/switcher.html":{"ref":"core/combination/switcher.html","tf":0.00625},"core/combination/tab.html":{"ref":"core/combination/tab.html","tf":0.00684931506849315}}}}}}}}}}}}}}}}}}},"类":{"docs":{"core/combination/switcher.html":{"ref":"core/combination/switcher.html","tf":0.00625}}},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"g":{"docs":{},"g":{"docs":{},"e":{"docs":{},"r":{"docs":{},"图":{"docs":{},"标":{"docs":{},"的":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"b":{"docs":{},"o":{"docs":{"case/combo/icon_combo.html":{"ref":"case/combo/icon_combo.html","tf":0.007751937984496124}}}}}}}}}}}}}}}}},"树":{"docs":{},"结":{"docs":{},"构":{"docs":{"detailed/tree/bi.switch_tree.html":{"ref":"detailed/tree/bi.switch_tree.html","tf":0.013157894736842105}}}}}}},"弹":{"docs":{},"出":{"docs":{},"列":{"docs":{},"表":{"docs":{},"和":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"g":{"docs":{},"g":{"docs":{},"e":{"docs":{},"r":{"docs":{},"的":{"docs":{},"位":{"docs":{},"置":{"docs":{},"关":{"docs":{},"系":{"docs":{"core/combination/bi.combo.html":{"ref":"core/combination/bi.combo.html","tf":0.004807692307692308},"core/combination/bi.expander.html":{"ref":"core/combination/bi.expander.html","tf":0.005494505494505495},"core/combination/group_combo.html":{"ref":"core/combination/group_combo.html","tf":0.007874015748031496},"detailed/down_list_combo.html":{"ref":"detailed/down_list_combo.html","tf":0.006578947368421052}}}}}},"距":{"docs":{},"离":{"docs":{"core/combination/bi.combo.html":{"ref":"core/combination/bi.combo.html","tf":0.004807692307692308},"core/combination/bi.expander.html":{"ref":"core/combination/bi.expander.html","tf":0.005494505494505495},"core/combination/group_combo.html":{"ref":"core/combination/group_combo.html","tf":0.007874015748031496},"case/combo/icon_combo.html":{"ref":"case/combo/icon_combo.html","tf":0.007751937984496124},"detailed/down_list_combo.html":{"ref":"detailed/down_list_combo.html","tf":0.006578947368421052}}}}}}}}}}}}}}},"层":{"docs":{"core/combination/bi.combo.html":{"ref":"core/combination/bi.combo.html","tf":0.004807692307692308},"core/combination/bi.expander.html":{"ref":"core/combination/bi.expander.html","tf":0.005494505494505495},"core/combination/group_combo.html":{"ref":"core/combination/group_combo.html","tf":0.007874015748031496},"core/combination/searcher.html":{"ref":"core/combination/searcher.html","tf":0.004608294930875576},"core/combination/switcher.html":{"ref":"core/combination/switcher.html","tf":0.00625},"case/combo/icon_combo.html":{"ref":"case/combo/icon_combo.html","tf":0.007751937984496124}},"显":{"docs":{},"示":{"docs":{},"位":{"docs":{},"置":{"docs":{"core/combination/bi.combo.html":{"ref":"core/combination/bi.combo.html","tf":0.004807692307692308},"case/combo/icon_combo.html":{"ref":"case/combo/icon_combo.html","tf":0.007751937984496124}}}},"的":{"docs":{},"位":{"docs":{},"置":{"docs":{},"元":{"docs":{},"素":{"docs":{"core/combination/searcher.html":{"ref":"core/combination/searcher.html","tf":0.004608294930875576}}}}}}}}},"点":{"docs":{},"击":{"docs":{},"触":{"docs":{},"发":{"docs":{"core/combination/bi.combo.html":{"ref":"core/combination/bi.combo.html","tf":0.004807692307692308},"core/combination/bi.expander.html":{"ref":"core/combination/bi.expander.html","tf":0.005494505494505495}}}}}},"的":{"docs":{},"位":{"docs":{},"置":{"docs":{"core/combination/switcher.html":{"ref":"core/combination/switcher.html","tf":0.00625}}}}},"宽":{"docs":{},"度":{"docs":{"core/layer/layer_float_box.html":{"ref":"core/layer/layer_float_box.html","tf":0.012345679012345678}}}},"高":{"docs":{},"度":{"docs":{"core/layer/layer_float_box.html":{"ref":"core/layer/layer_float_box.html","tf":0.012345679012345678}}}},"最":{"docs":{},"大":{"docs":{},"宽":{"docs":{},"度":{"docs":{"core/layer/layer_popup.html":{"ref":"core/layer/layer_popup.html","tf":0.0058823529411764705}}}},"高":{"docs":{},"度":{"docs":{"core/layer/layer_popup.html":{"ref":"core/layer/layer_popup.html","tf":0.0058823529411764705}}}}},"小":{"docs":{},"宽":{"docs":{},"度":{"docs":{"core/layer/layer_popup.html":{"ref":"core/layer/layer_popup.html","tf":0.0058823529411764705}}}},"高":{"docs":{},"度":{"docs":{"core/layer/layer_popup.html":{"ref":"core/layer/layer_popup.html","tf":0.0058823529411764705}}}}}}},"框":{"docs":{},"弹":{"docs":{},"出":{"docs":{},"前":{"docs":{},"触":{"docs":{},"发":{"docs":{"detailed/date/year_month_combo.html":{"ref":"detailed/date/year_month_combo.html","tf":0.029411764705882353},"detailed/date/year_quarter_combo.html":{"ref":"detailed/date/year_quarter_combo.html","tf":0.03225806451612903}}}}}}}}},"窗":{"docs":{},"层":{"docs":{},"是":{"docs":{},"否":{"docs":{},"可":{"docs":{},"见":{"docs":{"core/combination/bi.combo.html":{"ref":"core/combination/bi.combo.html","tf":0.004807692307692308},"core/combination/bi.expander.html":{"ref":"core/combination/bi.expander.html","tf":0.005494505494505495},"core/combination/switcher.html":{"ref":"core/combination/switcher.html","tf":0.00625}}}}}}}}},"显":{"docs":{},"示":{"docs":{"core/layer/layer_float_box.html":{"ref":"core/layer/layer_float_box.html","tf":0.012345679012345678}},"弹":{"docs":{},"出":{"docs":{},"层":{"docs":{"core/combination/bi.combo.html":{"ref":"core/combination/bi.combo.html","tf":0.004807692307692308},"core/combination/bi.expander.html":{"ref":"core/combination/bi.expander.html","tf":0.005494505494505495},"core/combination/switcher.html":{"ref":"core/combination/switcher.html","tf":0.00625},"case/combo/icon_combo.html":{"ref":"case/combo/icon_combo.html","tf":0.007751937984496124}}}}},"内":{"docs":{},"容":{"docs":{"base/toast.html":{"ref":"base/toast.html","tf":0.020833333333333332}}}},"页":{"docs":{},"码":{"docs":{},"的":{"docs":{},"分":{"docs":{},"页":{"docs":{},"控":{"docs":{},"件":{"docs":{"case/pager/direction_pager.html":{"ref":"case/pager/direction_pager.html","tf":0.00819672131147541}}}}}}}}},"总":{"docs":{},"页":{"docs":{},"数":{"docs":{"detailed/table/bi.page_table.html":{"ref":"detailed/table/bi.page_table.html","tf":0.004651162790697674}}}}}}},"调":{"docs":{},"整":{"docs":{},"宽":{"docs":{},"度":{"docs":{"core/combination/bi.combo.html":{"ref":"core/combination/bi.combo.html","tf":0.004807692307692308}}}},"横":{"docs":{},"向":{"docs":{},"偏":{"docs":{},"移":{"docs":{"core/combination/bi.combo.html":{"ref":"core/combination/bi.combo.html","tf":0.004807692307692308},"case/combo/icon_combo.html":{"ref":"case/combo/icon_combo.html","tf":0.007751937984496124}}}}}},"纵":{"docs":{},"向":{"docs":{},"偏":{"docs":{},"移":{"docs":{"core/combination/bi.combo.html":{"ref":"core/combination/bi.combo.html","tf":0.004807692307692308},"case/combo/icon_combo.html":{"ref":"case/combo/icon_combo.html","tf":0.007751937984496124}}}}}},"高":{"docs":{},"度":{"docs":{"core/combination/bi.combo.html":{"ref":"core/combination/bi.combo.html","tf":0.004807692307692308},"core/combination/searcher.html":{"ref":"core/combination/searcher.html","tf":0.004608294930875576}}}},"搜":{"docs":{},"索":{"docs":{},"列":{"docs":{},"表":{"docs":{},"栏":{"docs":{"core/combination/searcher.html":{"ref":"core/combination/searcher.html","tf":0.004608294930875576}}}}}}},"弹":{"docs":{},"出":{"docs":{},"层":{"docs":{},"显":{"docs":{},"示":{"docs":{},"的":{"docs":{},"位":{"docs":{},"置":{"docs":{},"元":{"docs":{},"素":{"docs":{"core/combination/switcher.html":{"ref":"core/combination/switcher.html","tf":0.00625}}}}}}}}}}}},"表":{"docs":{},"格":{"docs":{"base/table/table_view.html":{"ref":"base/table/table_view.html","tf":0.006289308176100629},"detailed/table/bi.preview_table.html":{"ref":"detailed/table/bi.preview_table.html","tf":0.006756756756756757},"detailed/table/bi.responsive_table.html":{"ref":"detailed/table/bi.responsive_table.html","tf":0.005263157894736842},"detailed/table/bi.excel_table.html":{"ref":"detailed/table/bi.excel_table.html","tf":0.0055248618784530384}}},"头":{"docs":{"detailed/table/bi.preview_table.html":{"ref":"detailed/table/bi.preview_table.html","tf":0.006756756756756757},"detailed/table/bi.responsive_table.html":{"ref":"detailed/table/bi.responsive_table.html","tf":0.005263157894736842},"detailed/table/bi.excel_table.html":{"ref":"detailed/table/bi.excel_table.html","tf":0.0055248618784530384}}}}}},"重":{"docs":{},"置":{"docs":{"base/editor/multifile_editor.html":{"ref":"base/editor/multifile_editor.html","tf":0.015384615384615385}},"列":{"docs":{},"表":{"docs":{},"宽":{"docs":{},"度":{"docs":{"core/combination/bi.combo.html":{"ref":"core/combination/bi.combo.html","tf":0.004807692307692308}}}},"高":{"docs":{},"度":{"docs":{"core/combination/bi.combo.html":{"ref":"core/combination/bi.combo.html","tf":0.004807692307692308}}}}}},"宽":{"docs":{},"度":{"docs":{"core/layer/layer_popup.html":{"ref":"core/layer/layer_popup.html","tf":0.0058823529411764705}}}},"高":{"docs":{},"度":{"docs":{"core/layer/layer_popup.html":{"ref":"core/layer/layer_popup.html","tf":0.0058823529411764705}}}},"文":{"docs":{},"本":{"docs":{},"框":{"docs":{},"最":{"docs":{},"后":{"docs":{},"一":{"docs":{},"次":{"docs":{},"输":{"docs":{},"入":{"docs":{},"的":{"docs":{},"有":{"docs":{},"效":{"docs":{},"值":{"docs":{"base/editor/editor.html":{"ref":"base/editor/editor.html","tf":0.005405405405405406}}}}}}}}}}}}}}},"画":{"docs":{},"布":{"docs":{"base/canvas.html":{"ref":"base/canvas.html","tf":0.016666666666666666}}}}},"新":{"docs":{},"设":{"docs":{},"置":{"docs":{},"高":{"docs":{},"度":{"docs":{"case/list/list.select.html":{"ref":"case/list/list.select.html","tf":0.009433962264150943},"case/loader/list_loader.html":{"ref":"case/loader/list_loader.html","tf":0.010752688172043012},"case/loader/sort_list.html":{"ref":"case/loader/sort_list.html","tf":0.010752688172043012}}}}}}},"心":{"docs":{},"偏":{"docs":{},"移":{"docs":{},"量":{"docs":{"case/tree/branch_relation.html":{"ref":"case/tree/branch_relation.html","tf":0.02040816326530612}}}}}}},"阻":{"docs":{},"止":{"docs":{},"事":{"docs":{},"件":{"docs":{"core/basic_button.html":{"ref":"core/basic_button.html","tf":0.007936507936507936},"case/combo/bubble_combo.html":{"ref":"case/combo/bubble_combo.html","tf":0.005780346820809248}},"冒":{"docs":{},"泡":{"docs":{"core/combination/bi.combo.html":{"ref":"core/combination/bi.combo.html","tf":0.004807692307692308}}}}}},"冒":{"docs":{},"泡":{"docs":{"core/basic_button.html":{"ref":"core/basic_button.html","tf":0.007936507936507936},"case/combo/bubble_combo.html":{"ref":"case/combo/bubble_combo.html","tf":0.005780346820809248}}}}}},"隐":{"docs":{},"藏":{"docs":{"core/layer/layer_float_box.html":{"ref":"core/layer/layer_float_box.html","tf":0.012345679012345678}},"弹":{"docs":{},"出":{"docs":{},"层":{"docs":{"core/combination/bi.combo.html":{"ref":"core/combination/bi.combo.html","tf":0.004807692307692308},"core/combination/bi.expander.html":{"ref":"core/combination/bi.expander.html","tf":0.005494505494505495},"core/combination/switcher.html":{"ref":"core/combination/switcher.html","tf":0.00625},"case/combo/icon_combo.html":{"ref":"case/combo/icon_combo.html","tf":0.007751937984496124}}}},"窗":{"docs":{},"层":{"docs":{},"是":{"docs":{},"否":{"docs":{},"销":{"docs":{},"毁":{"docs":{"core/combination/bi.combo.html":{"ref":"core/combination/bi.combo.html","tf":0.004807692307692308}}}}}}}}}}},"展":{"docs":{},"开":{"docs":{},"类":{"docs":{"core/combination/bi.expander.html":{"ref":"core/combination/bi.expander.html","tf":0.005494505494505495}}}}},"某":{"docs":{},"个":{"docs":{},"可":{"docs":{},"以":{"docs":{},"展":{"docs":{},"开":{"docs":{},"的":{"docs":{},"节":{"docs":{},"点":{"docs":{},",":{"docs":{},"基":{"docs":{},"类":{"docs":{},"b":{"docs":{},"i":{"docs":{},".":{"docs":{},"w":{"docs":{},"i":{"docs":{},"d":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{"core/combination/bi.expander.html":{"ref":"core/combination/bi.expander.html","tf":0.005494505494505495}}}}}}}}}}}}}}}}}}}}}}},"节":{"docs":{},"点":{"docs":{},"是":{"docs":{},"否":{"docs":{},"展":{"docs":{},"开":{"docs":{"core/combination/bi.expander.html":{"ref":"core/combination/bi.expander.html","tf":0.005494505494505495},"core/combination/switcher.html":{"ref":"core/combination/switcher.html","tf":0.00625},"core/node_button.html":{"ref":"core/node_button.html","tf":0.02631578947368421}}}}}},"展":{"docs":{},"开":{"docs":{"core/node_button.html":{"ref":"core/node_button.html","tf":0.02631578947368421}}}},"收":{"docs":{},"起":{"docs":{"core/node_button.html":{"ref":"core/node_button.html","tf":0.02631578947368421}}}},"数":{"docs":{},"组":{"docs":{"case/tree/display_tree.html":{"ref":"case/tree/display_tree.html","tf":0.030303030303030304}}}}}},"判":{"docs":{},"断":{"docs":{},"是":{"docs":{},"否":{"docs":{},"有":{"docs":{},"上":{"docs":{},"一":{"docs":{},"页":{"docs":{"core/combination/loader.html":{"ref":"core/combination/loader.html","tf":0.006289308176100629},"base/pager.html":{"ref":"base/pager.html","tf":0.006666666666666667},"base/svg.html":{"ref":"base/svg.html","tf":0.011235955056179775}},",":{"docs":{},"p":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"s":{"docs":{},"不":{"docs":{},"可":{"docs":{},"用":{"docs":{},"时":{"docs":{},"有":{"docs":{},"效":{"docs":{"base/pager.html":{"ref":"base/pager.html","tf":0.006666666666666667}}}}}}}}}}}}}}}}},"下":{"docs":{},"一":{"docs":{},"页":{"docs":{"core/combination/loader.html":{"ref":"core/combination/loader.html","tf":0.012578616352201259},"base/pager.html":{"ref":"base/pager.html","tf":0.006666666666666667}},",":{"docs":{},"p":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"s":{"docs":{},"不":{"docs":{},"可":{"docs":{},"用":{"docs":{},"时":{"docs":{},"有":{"docs":{},"效":{"docs":{"base/pager.html":{"ref":"base/pager.html","tf":0.006666666666666667}}}}}}}}}}}}}}}}},"效":{"docs":{"core/widget.html":{"ref":"core/widget.html","tf":0.00510204081632653}}},"该":{"docs":{},"组":{"docs":{},"件":{"docs":{"core/widget.html":{"ref":"core/widget.html","tf":0.00510204081632653}}}}},"前":{"docs":{},"一":{"docs":{},"页":{"docs":{},"的":{"docs":{},"方":{"docs":{},"法":{"docs":{"case/pager/direction_pager.html":{"ref":"case/pager/direction_pager.html","tf":0.00819672131147541}}}},"函":{"docs":{},"数":{"docs":{"detailed/table/bi.page_table.html":{"ref":"detailed/table/bi.page_table.html","tf":0.004651162790697674}}}}}}}},"后":{"docs":{},"一":{"docs":{},"页":{"docs":{},"的":{"docs":{},"方":{"docs":{},"法":{"docs":{"case/pager/direction_pager.html":{"ref":"case/pager/direction_pager.html","tf":0.00819672131147541}}}}}}}}},"怎":{"docs":{},"么":{"docs":{},"点":{"docs":{},"击":{"docs":{},"都":{"docs":{},"不":{"docs":{},"会":{"docs":{},"被":{"docs":{},"选":{"docs":{},"中":{"docs":{"core/basic_button.html":{"ref":"core/basic_button.html","tf":0.007936507936507936},"case/combo/bubble_combo.html":{"ref":"case/combo/bubble_combo.html","tf":0.005780346820809248}}}}}}}}}}}},"点":{"docs":{},"击":{"docs":{},"即":{"docs":{},"选":{"docs":{},"中":{"docs":{"core/basic_button.html":{"ref":"core/basic_button.html","tf":0.007936507936507936},"case/combo/bubble_combo.html":{"ref":"case/combo/bubble_combo.html","tf":0.005780346820809248}}}}}}},"让":{"docs":{},"选":{"docs":{},"中":{"docs":{"core/basic_button.html":{"ref":"core/basic_button.html","tf":0.007936507936507936},"case/combo/bubble_combo.html":{"ref":"case/combo/bubble_combo.html","tf":0.005780346820809248}}}}},"显":{"docs":{},"示":{"docs":{"case/color_chooser.html":{"ref":"case/color_chooser.html","tf":0.038461538461538464}}}}}},"组":{"docs":{},"件":{"docs":{},"是":{"docs":{},"否":{"docs":{},"挂":{"docs":{},"载":{"docs":{"core/widget.html":{"ref":"core/widget.html","tf":0.00510204081632653}}}}}}}},"节":{"docs":{},"点":{"docs":{},"是":{"docs":{},"否":{"docs":{},"展":{"docs":{},"开":{"docs":{"core/node_button.html":{"ref":"core/node_button.html","tf":0.02631578947368421}}}}}}}}}},"加":{"docs":{},"载":{"docs":{},"中":{"docs":{"core/combination/loader.html":{"ref":"core/combination/loader.html","tf":0.006289308176100629},"core/pane.html":{"ref":"core/pane.html","tf":0.0196078431372549}}},"控":{"docs":{},"件":{"docs":{},",":{"docs":{},"b":{"docs":{},"i":{"docs":{},".":{"docs":{},"w":{"docs":{},"i":{"docs":{},"d":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{"core/combination/loader.html":{"ref":"core/combination/loader.html","tf":0.006289308176100629}}}}}}}}}}}}}},"完":{"docs":{},"毕":{"docs":{"core/pane.html":{"ref":"core/pane.html","tf":0.0196078431372549}}},"成":{"docs":{},"的":{"docs":{},"回":{"docs":{},"调":{"docs":{},"(":{"docs":{},"测":{"docs":{},"试":{"docs":{},"了":{"docs":{},"无":{"docs":{},"效":{"docs":{},"果":{"docs":{},")":{"docs":{"case/list/list.select.html":{"ref":"case/list/list.select.html","tf":0.009433962264150943}}}}}}}}}}}}},"回":{"docs":{},"调":{"docs":{"case/loader/list_loader.html":{"ref":"case/loader/list_loader.html","tf":0.010752688172043012},"case/loader/sort_list.html":{"ref":"case/loader/sort_list.html","tf":0.010752688172043012}}}}}},"t":{"docs":{},"r":{"docs":{},"e":{"docs":{},"e":{"docs":{},"结":{"docs":{},"构":{"docs":{"case/tree/display_tree.html":{"ref":"case/tree/display_tree.html","tf":0.030303030303030304}}}}}}}}}},"创":{"docs":{},"建":{"docs":{},"卡":{"docs":{},"导":{"docs":{},"航":{"docs":{},"页":{"docs":{},"页":{"docs":{},"之":{"docs":{},"后":{"docs":{"core/combination/navigation.html":{"ref":"core/combination/navigation.html","tf":0.007194244604316547}}}}}}}}}}},"导":{"docs":{},"航":{"docs":{},"栏":{"docs":{"core/layer/layer_popup.html":{"ref":"core/layer/layer_popup.html","tf":0.0058823529411764705}},"控":{"docs":{},"件":{"docs":{},",":{"docs":{},"b":{"docs":{},"i":{"docs":{},".":{"docs":{},"w":{"docs":{},"i":{"docs":{},"d":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{"core/combination/navigation.html":{"ref":"core/combination/navigation.html","tf":0.007194244604316547}}}}}}}}}}}}}}},"页":{"docs":{},"展":{"docs":{},"示":{"docs":{},"之":{"docs":{},"后":{"docs":{"core/combination/navigation.html":{"ref":"core/combination/navigation.html","tf":0.007194244604316547}}}}}}}}},"挂":{"docs":{},"载":{"docs":{},"组":{"docs":{},"件":{"docs":{"core/combination/navigation.html":{"ref":"core/combination/navigation.html","tf":0.007194244604316547},"core/combination/tab.html":{"ref":"core/combination/tab.html","tf":0.00684931506849315}}}}}},"面":{"docs":{},"板":{"docs":{},"显":{"docs":{},"示":{"docs":{},"之":{"docs":{},"后":{"docs":{"core/combination/navigation.html":{"ref":"core/combination/navigation.html","tf":0.007194244604316547},"core/combination/switcher.html":{"ref":"core/combination/switcher.html","tf":0.00625}}},"前":{"docs":{"core/combination/switcher.html":{"ref":"core/combination/switcher.html","tf":0.00625}}}},"的":{"docs":{},"位":{"docs":{},"置":{"docs":{"core/combination/switcher.html":{"ref":"core/combination/switcher.html","tf":0.00625}}}}}}},"构":{"docs":{},"造":{"docs":{},"之":{"docs":{},"后":{"docs":{"core/combination/navigation.html":{"ref":"core/combination/navigation.html","tf":0.007194244604316547}}}},"器":{"docs":{"core/combination/navigation.html":{"ref":"core/combination/navigation.html","tf":0.007194244604316547},"core/combination/tab.html":{"ref":"core/combination/tab.html","tf":0.00684931506849315}}}}},"切":{"docs":{},"换":{"docs":{"core/combination/switcher.html":{"ref":"core/combination/switcher.html","tf":0.00625}}}},"展":{"docs":{},"开":{"docs":{"core/combination/switcher.html":{"ref":"core/combination/switcher.html","tf":0.00625}}}},"收":{"docs":{},"起":{"docs":{"core/combination/switcher.html":{"ref":"core/combination/switcher.html","tf":0.00625}}}},"隐":{"docs":{},"藏":{"docs":{},"之":{"docs":{},"前":{"docs":{"core/combination/switcher.html":{"ref":"core/combination/switcher.html","tf":0.00625}}},"后":{"docs":{"core/combination/switcher.html":{"ref":"core/combination/switcher.html","tf":0.00625}}}}}}}},"停":{"docs":{},"止":{"docs":{},"搜":{"docs":{},"索":{"docs":{"core/combination/searcher.html":{"ref":"core/combination/searcher.html","tf":0.009216589861751152}},"触":{"docs":{},"发":{"docs":{},"(":{"docs":{},"搜":{"docs":{},"索":{"docs":{},"框":{"docs":{},"为":{"docs":{},"空":{"docs":{},")":{"docs":{"core/combination/searcher.html":{"ref":"core/combination/searcher.html","tf":0.004608294930875576}}}}}}}}}}}}},"输":{"docs":{},"入":{"docs":{},"触":{"docs":{},"发":{"docs":{"base/editor/editor.html":{"ref":"base/editor/editor.html","tf":0.005405405405405406},"case/editor/shelter_editor.html":{"ref":"case/editor/shelter_editor.html","tf":0.0051813471502590676},"case/editor/sign_editor.html":{"ref":"case/editor/sign_editor.html","tf":0.005494505494505495},"case/editor/sign_initial_editor.html":{"ref":"case/editor/sign_initial_editor.html","tf":0.005154639175257732},"case/editor/state_editor.html":{"ref":"case/editor/state_editor.html","tf":0.005747126436781609}}}}}}}},"初":{"docs":{},"始":{"docs":{},"化":{"docs":{},"之":{"docs":{},"后":{"docs":{"core/combination/searcher.html":{"ref":"core/combination/searcher.html","tf":0.004608294930875576},"core/combination/switcher.html":{"ref":"core/combination/switcher.html","tf":0.00625}}}},"当":{"docs":{},"前":{"docs":{},"页":{"docs":{"base/pager.html":{"ref":"base/pager.html","tf":0.006666666666666667}}}}}}}},"即":{"docs":{},"是":{"docs":{},"否":{"docs":{},"保":{"docs":{},"持":{"docs":{},"搜":{"docs":{},"索":{"docs":{},"面":{"docs":{},"板":{"docs":{},"和":{"docs":{},"a":{"docs":{},"d":{"docs":{},"a":{"docs":{},"p":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"面":{"docs":{},"板":{"docs":{},"状":{"docs":{},"态":{"docs":{},"值":{"docs":{},"的":{"docs":{},"统":{"docs":{},"一":{"docs":{"core/combination/searcher.html":{"ref":"core/combination/searcher.html","tf":0.004608294930875576}}}}}}}}}}}}}}}}}}}}}}}}}}},"搜":{"docs":{},"索":{"docs":{},"中":{"docs":{"core/combination/searcher.html":{"ref":"core/combination/searcher.html","tf":0.004608294930875576}}},"列":{"docs":{},"表":{"docs":{},"位":{"docs":{},"置":{"docs":{"core/combination/searcher.html":{"ref":"core/combination/searcher.html","tf":0.004608294930875576}}}}}},"暂":{"docs":{},"停":{"docs":{},"触":{"docs":{},"发":{"docs":{},"(":{"docs":{},"搜":{"docs":{},"索":{"docs":{},"文":{"docs":{},"本":{"docs":{},"以":{"docs":{},"空":{"docs":{},"白":{"docs":{},"字":{"docs":{},"符":{"docs":{},"结":{"docs":{},"尾":{"docs":{},")":{"docs":{"core/combination/searcher.html":{"ref":"core/combination/searcher.html","tf":0.004608294930875576}}}}}}}}}}}}}}}}}}},"结":{"docs":{},"果":{"docs":{},"面":{"docs":{},"板":{"docs":{},"初":{"docs":{},"始":{"docs":{},"化":{"docs":{},"完":{"docs":{},"成":{"docs":{},"后":{"docs":{},"触":{"docs":{},"发":{"docs":{"core/combination/searcher.html":{"ref":"core/combination/searcher.html","tf":0.004608294930875576}}}}}}}}}},"发":{"docs":{},"生":{"docs":{},"改":{"docs":{},"变":{"docs":{},"触":{"docs":{},"发":{"docs":{"core/combination/searcher.html":{"ref":"core/combination/searcher.html","tf":0.004608294930875576}}}}}}}}}}}},"逻":{"docs":{},"辑":{"docs":{},"控":{"docs":{},"件":{"docs":{},",":{"docs":{},"b":{"docs":{},"i":{"docs":{},".":{"docs":{},"w":{"docs":{},"i":{"docs":{},"d":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{"core/combination/searcher.html":{"ref":"core/combination/searcher.html","tf":0.004608294930875576}}}}}}}}}}}}}}}},"到":{"docs":{},"的":{"docs":{},"元":{"docs":{},"素":{"docs":{"core/layer/layer_searcher.html":{"ref":"core/layer/layer_searcher.html","tf":0.009259259259259259}}}}}},"面":{"docs":{},"板":{"docs":{},",":{"docs":{"core/layer/layer_searcher.html":{"ref":"core/layer/layer_searcher.html","tf":0.009259259259259259}}}}},"框":{"docs":{"detailed/text_input/bi.search_editor.html":{"ref":"detailed/text_input/bi.search_editor.html","tf":0.010101010101010102}}}}},"暂":{"docs":{},"停":{"docs":{},"搜":{"docs":{},"索":{"docs":{"core/combination/searcher.html":{"ref":"core/combination/searcher.html","tf":0.004608294930875576}}}},"输":{"docs":{},"入":{"docs":{},"触":{"docs":{},"发":{"docs":{},"(":{"docs":{},"输":{"docs":{},"入":{"docs":{},"空":{"docs":{},"白":{"docs":{},"字":{"docs":{},"符":{"docs":{},")":{"docs":{"base/editor/editor.html":{"ref":"base/editor/editor.html","tf":0.005405405405405406},"case/editor/shelter_editor.html":{"ref":"case/editor/shelter_editor.html","tf":0.0051813471502590676},"case/editor/sign_editor.html":{"ref":"case/editor/sign_editor.html","tf":0.005494505494505495},"case/editor/sign_initial_editor.html":{"ref":"case/editor/sign_initial_editor.html","tf":0.005154639175257732},"case/editor/state_editor.html":{"ref":"case/editor/state_editor.html","tf":0.005747126436781609}}}}}}}}}}}}}}}},"正":{"docs":{},"在":{"docs":{},"搜":{"docs":{},"索":{"docs":{},"时":{"docs":{},"触":{"docs":{},"发":{"docs":{"core/combination/searcher.html":{"ref":"core/combination/searcher.html","tf":0.004608294930875576}}}}}}},"加":{"docs":{},"载":{"docs":{"case/layer/pane_list.html":{"ref":"case/layer/pane_list.html","tf":0.006802721088435374}}}}}},"=":{"docs":{"core/layer/layer_float_box.html":{"ref":"core/layer/layer_float_box.html","tf":0.012345679012345678},"core/layer/layer_searcher.html":{"ref":"core/layer/layer_searcher.html","tf":0.009259259259259259},"base/table/table_view.html":{"ref":"base/table/table_view.html","tf":0.006289308176100629},"base/table/collection_table.html":{"ref":"base/table/collection_table.html","tf":0.006535947712418301},"base/svg.html":{"ref":"base/svg.html","tf":0.011235955056179775},"base/canvas.html":{"ref":"base/canvas.html","tf":0.016666666666666666},"case/tree/display_tree.html":{"ref":"case/tree/display_tree.html","tf":0.030303030303030304},"case/tree/simple_tree.html":{"ref":"case/tree/simple_tree.html","tf":0.022222222222222223},"case/tree/level_tree.html":{"ref":"case/tree/level_tree.html","tf":0.017857142857142856},"case/tree/branch_relation.html":{"ref":"case/tree/branch_relation.html","tf":0.02040816326530612},"case/table/adaptive_table.html":{"ref":"case/table/adaptive_table.html","tf":0.006060606060606061},"case/table/tree_table.html":{"ref":"case/table/tree_table.html","tf":0.01020408163265306},"case/table/layer_tree_table.html":{"ref":"case/table/layer_tree_table.html","tf":0.01020408163265306},"case/pager/direction_pager.html":{"ref":"case/pager/direction_pager.html","tf":0.00819672131147541},"case/complex_canvas.html":{"ref":"case/complex_canvas.html","tf":0.020833333333333332},"detailed/bi.button/tooltip.html":{"ref":"detailed/bi.button/tooltip.html","tf":0.011363636363636364},"detailed/tree/bi.multi_tree_combo.html":{"ref":"detailed/tree/bi.multi_tree_combo.html","tf":0.010869565217391304},"detailed/tree/bi.switch_tree.html":{"ref":"detailed/tree/bi.switch_tree.html","tf":0.02631578947368421},"detailed/table/bi.excel_table.html":{"ref":"detailed/table/bi.excel_table.html","tf":0.0055248618784530384},"detailed/table/bi.page_table.html":{"ref":"detailed/table/bi.page_table.html","tf":0.004651162790697674},"detailed/combo/single_tree_combo.html":{"ref":"detailed/combo/single_tree_combo.html","tf":0.01694915254237288},"detailed/combo/multilayer_single_tree_combo.html":{"ref":"detailed/combo/multilayer_single_tree_combo.html","tf":0.018867924528301886},"detailed/combo/select_tree_combo.html":{"ref":"detailed/combo/select_tree_combo.html","tf":0.02040816326530612},"detailed/combo/multilayer_select_tree_combo.html":{"ref":"detailed/combo/multilayer_select_tree_combo.html","tf":0.02040816326530612}}},"z":{"docs":{"core/layer/layer_float_box.html":{"ref":"core/layer/layer_float_box.html","tf":0.012345679012345678},"core/layer/layer_popup.html":{"ref":"core/layer/layer_popup.html","tf":0.0058823529411764705}},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"x":{"docs":{},"在":{"1":{"0":{"0":{"0":{"docs":{},"w":{"docs":{},",":{"docs":{},"b":{"docs":{},"i":{"docs":{},".":{"docs":{},"w":{"docs":{},"i":{"docs":{},"d":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{"core/layer/layer_popup.html":{"ref":"core/layer/layer_popup.html","tf":0.0058823529411764705}}}}}}}}}}}},",":{"docs":{},"基":{"docs":{},"类":{"docs":{},"b":{"docs":{},"i":{"docs":{},".":{"docs":{},"m":{"docs":{},"u":{"docs":{},"l":{"docs":{},"t":{"docs":{},"i":{"docs":{},"p":{"docs":{},"o":{"docs":{},"p":{"docs":{},"u":{"docs":{},"p":{"docs":{},"v":{"docs":{},"i":{"docs":{},"e":{"docs":{},"w":{"docs":{"case/layer/multi_popup_layer.html":{"ref":"case/layer/multi_popup_layer.html","tf":0.04}}}}}}}}}}}}}}}}}}}}}}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}}}}}}}},"关":{"docs":{},"闭":{"docs":{},"弹":{"docs":{},"出":{"docs":{},"层":{"docs":{"core/layer/layer_float_box.html":{"ref":"core/layer/layer_float_box.html","tf":0.024691358024691357}}}}}},"键":{"docs":{},"字":{"docs":{},"标":{"docs":{},"红":{"docs":{},"字":{"docs":{},"符":{"docs":{},"串":{"docs":{"case/tree/simple_tree.html":{"ref":"case/tree/simple_tree.html","tf":0.022222222222222223}}}}}}}}},"联":{"docs":{},"视":{"docs":{},"图":{"docs":{"detailed/relation_view.html":{"ref":"detailed/relation_view.html","tf":0.019230769230769232}}}}}},"打":{"docs":{},"开":{"docs":{},"弹":{"docs":{},"出":{"docs":{},"层":{"docs":{"core/layer/layer_float_box.html":{"ref":"core/layer/layer_float_box.html","tf":0.024691358024691357}}}}}}},"值":{"docs":{"core/layer/layer_popup.html":{"ref":"core/layer/layer_popup.html","tf":0.0058823529411764705},"core/layer/layer_searcher.html":{"ref":"core/layer/layer_searcher.html","tf":0.009259259259259259},"case/table/adaptive_table.html":{"ref":"case/table/adaptive_table.html","tf":0.006060606060606061},"case/table/tree_table.html":{"ref":"case/table/tree_table.html","tf":0.00510204081632653},"case/table/layer_tree_table.html":{"ref":"case/table/layer_tree_table.html","tf":0.00510204081632653},"detailed/table/bi.page_table.html":{"ref":"detailed/table/bi.page_table.html","tf":0.004651162790697674}}},"工":{"docs":{},"具":{"docs":{},"栏":{"docs":{},"的":{"docs":{},"方":{"docs":{},"向":{"docs":{"core/layer/layer_popup.html":{"ref":"core/layer/layer_popup.html","tf":0.0058823529411764705}}}}}}}},"完":{"docs":{},"全":{"docs":{},"匹":{"docs":{},"配":{"docs":{},"的":{"docs":{},"构":{"docs":{},"造":{"docs":{},"器":{"docs":{"core/layer/layer_searcher.html":{"ref":"core/layer/layer_searcher.html","tf":0.009259259259259259}}}}}}}}},"成":{"docs":{},"拷":{"docs":{},"贝":{"docs":{},"后":{"docs":{},"执":{"docs":{},"行":{"docs":{},"的":{"docs":{},"方":{"docs":{},"法":{"docs":{"case/clipboard.html":{"ref":"case/clipboard.html","tf":0.03125}}}}}}}}}}}},",":{"docs":{},"一":{"docs":{},"些":{"docs":{},"需":{"docs":{},"要":{"docs":{},"在":{"docs":{},"设":{"docs":{},"置":{"docs":{},"状":{"docs":{},"态":{"docs":{},"后":{"docs":{},"做":{"docs":{},"的":{"docs":{},"额":{"docs":{},"外":{"docs":{},"工":{"docs":{},"作":{"docs":{},"可":{"docs":{},"以":{"docs":{},"通":{"docs":{},"过":{"docs":{},"重":{"docs":{},"写":{"docs":{},"_":{"docs":{},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{},"x":{"docs":{},"x":{"docs":{},"x":{"docs":{},"来":{"docs":{},"实":{"docs":{},"现":{"docs":{},")":{"docs":{"core/widget.html":{"ref":"core/widget.html","tf":0.00510204081632653}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"u":{"docs":{},"p":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{"core/widget.html":{"ref":"core/widget.html","tf":0.00510204081632653}}}}},"l":{"docs":{},"o":{"docs":{},"a":{"docs":{},"d":{"docs":{"base/editor/multifile_editor.html":{"ref":"base/editor/multifile_editor.html","tf":0.015384615384615385}}}}}}},"n":{"docs":{},"h":{"docs":{},"i":{"docs":{},"g":{"docs":{},"h":{"docs":{},"l":{"docs":{},"i":{"docs":{},"g":{"docs":{},"h":{"docs":{},"t":{"docs":{"base/label.html":{"ref":"base/label.html","tf":0.006711409395973154},"base/button/button.html":{"ref":"base/button/button.html","tf":0.005681818181818182},"base/button/text_button.html":{"ref":"base/button/text_button.html","tf":0.009433962264150943},"case/editor/shelter_editor.html":{"ref":"case/editor/shelter_editor.html","tf":0.0051813471502590676},"case/editor/sign_editor.html":{"ref":"case/editor/sign_editor.html","tf":0.005494505494505495},"case/editor/sign_initial_editor.html":{"ref":"case/editor/sign_initial_editor.html","tf":0.005154639175257732},"case/editor/state_editor.html":{"ref":"case/editor/state_editor.html","tf":0.005747126436781609}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"d":{"docs":{},"m":{"docs":{},"a":{"docs":{},"r":{"docs":{},"k":{"docs":{"base/label.html":{"ref":"base/label.html","tf":0.006711409395973154},"base/button/button.html":{"ref":"base/button/button.html","tf":0.005681818181818182},"base/button/text_button.html":{"ref":"base/button/text_button.html","tf":0.009433962264150943},"case/button/multi_select_item.html":{"ref":"case/button/multi_select_item.html","tf":0.017543859649122806},"case/button/single_select_item.html":{"ref":"case/button/single_select_item.html","tf":0.016129032258064516},"case/button/single_select_radio_item.html":{"ref":"case/button/single_select_radio_item.html","tf":0.016129032258064516},"case/editor/shelter_editor.html":{"ref":"case/editor/shelter_editor.html","tf":0.0051813471502590676},"case/editor/sign_editor.html":{"ref":"case/editor/sign_editor.html","tf":0.005494505494505495},"case/editor/sign_initial_editor.html":{"ref":"case/editor/sign_initial_editor.html","tf":0.005154639175257732},"case/editor/state_editor.html":{"ref":"case/editor/state_editor.html","tf":0.005747126436781609}}}}}}}}}},"r":{"docs":{},"l":{"docs":{"base/editor/multifile_editor.html":{"ref":"base/editor/multifile_editor.html","tf":0.015384615384615385}}}}},"属":{"docs":{},"性":{"docs":{"core/widget.html":{"ref":"core/widget.html","tf":0.00510204081632653}}}},"所":{"docs":{},"有":{"docs":{},"控":{"docs":{},"件":{"docs":{},"的":{"docs":{},"超":{"docs":{},"类":{"docs":{"core/widget.html":{"ref":"core/widget.html","tf":0.00510204081632653}}}}}}},"简":{"docs":{},"单":{"docs":{},"控":{"docs":{},"件":{"docs":{},"的":{"docs":{},"基":{"docs":{},"类":{"docs":{},",":{"docs":{},"类":{"docs":{},"的":{"docs":{},"控":{"docs":{},"制":{"docs":{},",":{"docs":{},"t":{"docs":{},"i":{"docs":{},"t":{"docs":{},"l":{"docs":{},"e":{"docs":{},"的":{"docs":{},"控":{"docs":{},"制":{"docs":{},",":{"docs":{},"文":{"docs":{},"字":{"docs":{},"超":{"docs":{},"过":{"docs":{},"边":{"docs":{},"界":{"docs":{},"显":{"docs":{},"示":{"3":{"docs":{},"个":{"docs":{},"点":{"docs":{},",":{"docs":{},"c":{"docs":{},"u":{"docs":{},"r":{"docs":{},"s":{"docs":{},"o":{"docs":{},"r":{"docs":{},"默":{"docs":{},"认":{"docs":{},"p":{"docs":{},"o":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},",":{"docs":{},"基":{"docs":{},"类":{"docs":{},"b":{"docs":{},"i":{"docs":{},".":{"docs":{},"w":{"docs":{},"i":{"docs":{},"d":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{"core/single.html":{"ref":"core/single.html","tf":0.013888888888888888}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"扩":{"docs":{},"展":{"docs":{},"c":{"docs":{},"l":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{},"类":{"docs":{"core/widget.html":{"ref":"core/widget.html","tf":0.00510204081632653}}}}}}}}}},"数":{"docs":{},"据":{"docs":{"core/widget.html":{"ref":"core/widget.html","tf":0.00510204081632653}}},"值":{"docs":{},"微":{"docs":{},"调":{"docs":{},"器":{"docs":{"detailed/text_input/finetuning_number_editor.html":{"ref":"detailed/text_input/finetuning_number_editor.html","tf":0.037037037037037035}}}}},"区":{"docs":{},"间":{"docs":{},"控":{"docs":{},"件":{"docs":{"detailed/numeric_interval.html":{"ref":"detailed/numeric_interval.html","tf":0.017241379310344827}}}}}}}},"添":{"docs":{},"加":{"docs":{},"组":{"docs":{},"件":{"docs":{"core/widget.html":{"ref":"core/widget.html","tf":0.00510204081632653}}}},"字":{"docs":{},"段":{"docs":{"base/editor/formula_editor.html":{"ref":"base/editor/formula_editor.html","tf":0.010101010101010102}}}},"对":{"docs":{},"象":{"docs":{},"到":{"docs":{},"j":{"docs":{},"s":{"docs":{},"o":{"docs":{},"n":{"docs":{},"数":{"docs":{},"组":{"docs":{"base/svg.html":{"ref":"base/svg.html","tf":0.011235955056179775}}}}}}}}}}}}},"取":{"docs":{},"消":{"docs":{},"h":{"docs":{},"o":{"docs":{},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},"事":{"docs":{},"件":{"docs":{"core/single.html":{"ref":"core/single.html","tf":0.013888888888888888},"core/basic_button.html":{"ref":"core/basic_button.html","tf":0.007936507936507936},"case/combo/bubble_combo.html":{"ref":"case/combo/bubble_combo.html","tf":0.005780346820809248}}}}}}}}},"文":{"docs":{},"本":{"docs":{},"标":{"docs":{},"红":{"docs":{"base/label.html":{"ref":"base/label.html","tf":0.006711409395973154},"base/button/button.html":{"ref":"base/button/button.html","tf":0.005681818181818182},"base/button/text_button.html":{"ref":"base/button/text_button.html","tf":0.009433962264150943},"case/editor/shelter_editor.html":{"ref":"case/editor/shelter_editor.html","tf":0.0051813471502590676},"case/editor/sign_editor.html":{"ref":"case/editor/sign_editor.html","tf":0.005494505494505495},"case/editor/sign_initial_editor.html":{"ref":"case/editor/sign_initial_editor.html","tf":0.005154639175257732},"case/editor/state_editor.html":{"ref":"case/editor/state_editor.html","tf":0.005747126436781609}}}},"高":{"docs":{},"亮":{"docs":{"base/label.html":{"ref":"base/label.html","tf":0.006711409395973154},"base/button/button.html":{"ref":"base/button/button.html","tf":0.005681818181818182},"base/button/text_button.html":{"ref":"base/button/text_button.html","tf":0.009433962264150943},"case/editor/shelter_editor.html":{"ref":"case/editor/shelter_editor.html","tf":0.0051813471502590676},"case/editor/sign_editor.html":{"ref":"case/editor/sign_editor.html","tf":0.005494505494505495},"case/editor/sign_initial_editor.html":{"ref":"case/editor/sign_initial_editor.html","tf":0.005154639175257732},"case/editor/state_editor.html":{"ref":"case/editor/state_editor.html","tf":0.005747126436781609}}}}}},"标":{"docs":{},"红":{"docs":{"case/button/multi_select_item.html":{"ref":"case/button/multi_select_item.html","tf":0.017543859649122806},"case/button/single_select_item.html":{"ref":"case/button/single_select_item.html","tf":0.016129032258064516},"case/button/single_select_radio_item.html":{"ref":"case/button/single_select_radio_item.html","tf":0.016129032258064516}}}}}},"恢":{"docs":{},"复":{"docs":{},"h":{"docs":{},"o":{"docs":{},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},"可":{"docs":{},"用":{"docs":{"core/single.html":{"ref":"core/single.html","tf":0.013888888888888888}}}}}}}}},"文":{"docs":{},"本":{"docs":{},"框":{"docs":{},"p":{"docs":{},"l":{"docs":{},"a":{"docs":{},"c":{"docs":{},"e":{"docs":{},"h":{"docs":{},"o":{"docs":{},"l":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{},"可":{"docs":{},"用":{"docs":{"base/editor/editor.html":{"ref":"base/editor/editor.html","tf":0.005405405405405406}}}}}}}}}}}}}}}}}}}},"这":{"docs":{},"仅":{"docs":{},"仅":{"docs":{},"只":{"docs":{},"是":{"docs":{},"一":{"docs":{},"个":{"docs":{},"超":{"docs":{},"类":{"docs":{},",":{"docs":{"core/single.html":{"ref":"core/single.html","tf":0.013888888888888888}}}}}}}}}}}},"错":{"docs":{},"误":{"docs":{},"t":{"docs":{},"i":{"docs":{},"t":{"docs":{},"l":{"docs":{"core/single.html":{"ref":"core/single.html","tf":0.013888888888888888}}}}}},"提":{"docs":{},"示":{"docs":{"base/editor/editor.html":{"ref":"base/editor/editor.html","tf":0.005405405405405406},"case/editor/shelter_editor.html":{"ref":"case/editor/shelter_editor.html","tf":0.0051813471502590676},"case/editor/sign_editor.html":{"ref":"case/editor/sign_editor.html","tf":0.005494505494505495},"case/editor/sign_initial_editor.html":{"ref":"case/editor/sign_initial_editor.html","tf":0.005154639175257732},"case/editor/state_editor.html":{"ref":"case/editor/state_editor.html","tf":0.005747126436781609},"detailed/text_input/bi.text_editor.html":{"ref":"detailed/text_input/bi.text_editor.html","tf":0.010309278350515464},"detailed/text_input/bi.search_editor.html":{"ref":"detailed/text_input/bi.search_editor.html","tf":0.010101010101010102},"detailed/text_input/bi.clear_editor.html":{"ref":"detailed/text_input/bi.clear_editor.html","tf":0.00980392156862745}},"t":{"docs":{},"i":{"docs":{},"t":{"docs":{},"l":{"docs":{"base/label.html":{"ref":"base/label.html","tf":0.006711409395973154}}}}}}}},"信":{"docs":{},"息":{"docs":{"case/trigger/editor_trigger.html":{"ref":"case/trigger/editor_trigger.html","tf":0.02}}}}}},"无":{"docs":{"base/label.html":{"ref":"base/label.html","tf":0.006711409395973154},"detailed/numeric_interval.html":{"ref":"detailed/numeric_interval.html","tf":0.034482758620689655}},"论":{"docs":{},"怎":{"docs":{},"么":{"docs":{},"点":{"docs":{},"击":{"docs":{},"都":{"docs":{},"不":{"docs":{},"会":{"docs":{},"被":{"docs":{},"选":{"docs":{},"中":{"docs":{"core/basic_button.html":{"ref":"core/basic_button.html","tf":0.007936507936507936},"case/combo/bubble_combo.html":{"ref":"case/combo/bubble_combo.html","tf":0.005780346820809248}}}}}}}}}}}}}},"点":{"docs":{},"击":{"docs":{},"一":{"docs":{},"次":{"docs":{},"选":{"docs":{},"中":{"docs":{},"有":{"docs":{},"效":{"docs":{},",":{"docs":{},"再":{"docs":{},"点":{"docs":{},"无":{"docs":{},"效":{"docs":{"core/basic_button.html":{"ref":"core/basic_button.html","tf":0.007936507936507936},"case/combo/bubble_combo.html":{"ref":"case/combo/bubble_combo.html","tf":0.005780346820809248}}}}}}}}}}},"后":{"docs":{},"失":{"docs":{},"效":{"docs":{"core/node_button.html":{"ref":"core/node_button.html","tf":0.02631578947368421}}}}}},"级":{"docs":{},"节":{"docs":{},"点":{"docs":{},"触":{"docs":{},"发":{"docs":{"detailed/tree/bi.multi_tree_combo.html":{"ref":"detailed/tree/bi.multi_tree_combo.html","tf":0.010869565217391304},"detailed/down_list_combo.html":{"ref":"detailed/down_list_combo.html","tf":0.006578947368421052}}}}}}}},"事":{"docs":{},"件":{"docs":{"core/basic_button.html":{"ref":"core/basic_button.html","tf":0.007936507936507936},"base/button/button.html":{"ref":"base/button/button.html","tf":0.005681818181818182},"base/button/text_button.html":{"ref":"base/button/text_button.html","tf":0.009433962264150943},"base/button/icon_button.html":{"ref":"base/button/icon_button.html","tf":0.02564102564102564},"base/button/image_button.html":{"ref":"base/button/image_button.html","tf":0.014925373134328358},"case/button/multi_select_item.html":{"ref":"case/button/multi_select_item.html","tf":0.017543859649122806},"case/button/single_select_item.html":{"ref":"case/button/single_select_item.html","tf":0.016129032258064516},"case/button/single_select_radio_item.html":{"ref":"case/button/single_select_radio_item.html","tf":0.016129032258064516},"case/combo/bubble_combo.html":{"ref":"case/combo/bubble_combo.html","tf":0.005780346820809248}},"之":{"docs":{},"前":{"docs":{"core/basic_button.html":{"ref":"core/basic_button.html","tf":0.007936507936507936},"case/combo/bubble_combo.html":{"ref":"case/combo/bubble_combo.html","tf":0.005780346820809248}}}},"回":{"docs":{},"调":{"docs":{"core/basic_button.html":{"ref":"core/basic_button.html","tf":0.007936507936507936},"case/combo/bubble_combo.html":{"ref":"case/combo/bubble_combo.html","tf":0.005780346820809248}}}}}},"即":{"docs":{},"选":{"docs":{},"中":{"docs":{},",":{"docs":{"core/basic_button.html":{"ref":"core/basic_button.html","tf":0.007936507936507936},"case/combo/bubble_combo.html":{"ref":"case/combo/bubble_combo.html","tf":0.005780346820809248}}}}}},"展":{"docs":{},"开":{"docs":{"core/node_button.html":{"ref":"core/node_button.html","tf":0.02631578947368421}}}},"编":{"docs":{},"辑":{"docs":{},"框":{"docs":{},"触":{"docs":{},"发":{"docs":{},"(":{"docs":{},"不":{"docs":{},"在":{"docs":{},"编":{"docs":{},"辑":{"docs":{},"状":{"docs":{},"态":{"docs":{},"时":{"docs":{},")":{"docs":{"base/editor/editor.html":{"ref":"base/editor/editor.html","tf":0.005405405405405406},"case/editor/shelter_editor.html":{"ref":"case/editor/shelter_editor.html","tf":0.0051813471502590676},"case/editor/sign_editor.html":{"ref":"case/editor/sign_editor.html","tf":0.005494505494505495},"case/editor/sign_initial_editor.html":{"ref":"case/editor/sign_initial_editor.html","tf":0.005154639175257732},"case/editor/state_editor.html":{"ref":"case/editor/state_editor.html","tf":0.005747126436781609}}}}}}}}}}}}}}}},"工":{"docs":{},"具":{"docs":{},"栏":{"docs":{},"事":{"docs":{},"件":{"docs":{"case/layer/layer_panel.html":{"ref":"case/layer/layer_panel.html","tf":0.010752688172043012}}}}}}},"清":{"docs":{},"空":{"docs":{},"按":{"docs":{},"钮":{"docs":{},"触":{"docs":{},"发":{"docs":{"detailed/text_input/bi.search_editor.html":{"ref":"detailed/text_input/bi.search_editor.html","tf":0.010101010101010102},"detailed/text_input/bi.clear_editor.html":{"ref":"detailed/text_input/bi.clear_editor.html","tf":0.00980392156862745}}}}}}}},"增":{"docs":{},"加":{"docs":{},"/":{"docs":{},"减":{"docs":{},"少":{"docs":{},"按":{"docs":{},"钮":{"docs":{},"或":{"docs":{},"者":{"docs":{},"编":{"docs":{},"辑":{"docs":{},"框":{"docs":{},"确":{"docs":{},"定":{"docs":{},"时":{"docs":{},"触":{"docs":{},"发":{"docs":{"detailed/text_input/finetuning_number_editor.html":{"ref":"detailed/text_input/finetuning_number_editor.html","tf":0.037037037037037035}}}}}}}}}}}}}}}}}}},"二":{"docs":{},"级":{"docs":{},"节":{"docs":{},"点":{"docs":{},"触":{"docs":{},"发":{"docs":{"detailed/down_list_combo.html":{"ref":"detailed/down_list_combo.html","tf":0.006578947368421052}}}}}}}},"确":{"docs":{},"定":{"docs":{},"触":{"docs":{},"发":{"docs":{"detailed/multi_select_combo.html":{"ref":"detailed/multi_select_combo.html","tf":0.04}}}}},"认":{"docs":{},"触":{"docs":{},"发":{"docs":{"detailed/date/year_month_combo.html":{"ref":"detailed/date/year_month_combo.html","tf":0.029411764705882353},"detailed/date/year_quarter_combo.html":{"ref":"detailed/date/year_quarter_combo.html","tf":0.03225806451612903},"detailed/date/custom_date_time.html":{"ref":"detailed/date/custom_date_time.html","tf":0.045454545454545456}}}}}},"取":{"docs":{},"消":{"docs":{},"触":{"docs":{},"发":{"docs":{"detailed/date/custom_date_time.html":{"ref":"detailed/date/custom_date_time.html","tf":0.045454545454545456}}}}}}}},"绑":{"docs":{},"定":{"docs":{},"事":{"docs":{},"件":{"docs":{"core/basic_button.html":{"ref":"core/basic_button.html","tf":0.007936507936507936},"case/combo/bubble_combo.html":{"ref":"case/combo/bubble_combo.html","tf":0.005780346820809248}}}}}},"被":{"docs":{},"选":{"docs":{},"元":{"docs":{},"素":{"docs":{},"要":{"docs":{},"触":{"docs":{},"发":{"docs":{},"的":{"docs":{},"事":{"docs":{},"件":{"docs":{"core/basic_button.html":{"ref":"core/basic_button.html","tf":0.007936507936507936},"case/combo/bubble_combo.html":{"ref":"case/combo/bubble_combo.html","tf":0.005780346820809248}}}}}}}}}}}},"返":{"docs":{},"回":{"docs":{},"该":{"docs":{},"对":{"docs":{},"象":{"docs":{"core/basic_button.html":{"ref":"core/basic_button.html","tf":0.007936507936507936},"case/combo/bubble_combo.html":{"ref":"case/combo/bubble_combo.html","tf":0.005780346820809248}}}}}}},"不":{"docs":{},"仅":{"docs":{},"有":{"docs":{},"选":{"docs":{},"中":{"docs":{},"状":{"docs":{},"态":{"docs":{},"而":{"docs":{},"且":{"docs":{},"有":{"docs":{},"展":{"docs":{},"开":{"docs":{},"状":{"docs":{},"态":{"docs":{},",":{"docs":{"core/node_button.html":{"ref":"core/node_button.html","tf":0.02631578947368421},"case/combo/bubble_combo.html":{"ref":"case/combo/bubble_combo.html","tf":0.005780346820809248}}}}}}}}}}}}}}}},"考":{"docs":{},"虑":{"docs":{},"超":{"docs":{},"出":{"docs":{},"边":{"docs":{},"界":{"docs":{},"的":{"docs":{},"情":{"docs":{},"况":{"docs":{},",":{"docs":{"base/label.html":{"ref":"base/label.html","tf":0.006711409395973154},"base/button/button.html":{"ref":"base/button/button.html","tf":0.005681818181818182},"base/button/text_button.html":{"ref":"base/button/text_button.html","tf":0.009433962264150943}}}}}}}}}}}},"变":{"docs":{},"\"":{"docs":{},",":{"docs":{"case/combo/static_combo.html":{"ref":"case/combo/static_combo.html","tf":0.0125}}}}}},"表":{"docs":{},"示":{"docs":{},"一":{"docs":{},"个":{"docs":{},"可":{"docs":{},"以":{"docs":{},"展":{"docs":{},"开":{"docs":{},"的":{"docs":{},"节":{"docs":{},"点":{"docs":{},",":{"docs":{"core/node_button.html":{"ref":"core/node_button.html","tf":0.02631578947368421},"case/combo/bubble_combo.html":{"ref":"case/combo/bubble_combo.html","tf":0.005780346820809248}}}}}}}}}}}}},"头":{"docs":{"base/table/table_view.html":{"ref":"base/table/table_view.html","tf":0.006289308176100629},"base/table/grid_table.html":{"ref":"base/table/grid_table.html","tf":0.008771929824561403},"base/table/resizable_table.html":{"ref":"base/table/resizable_table.html","tf":0.00625},"case/table/adaptive_table.html":{"ref":"case/table/adaptive_table.html","tf":0.006060606060606061},"case/table/tree_table.html":{"ref":"case/table/tree_table.html","tf":0.00510204081632653},"case/table/layer_tree_table.html":{"ref":"case/table/layer_tree_table.html","tf":0.00510204081632653},"detailed/table/bi.page_table.html":{"ref":"detailed/table/bi.page_table.html","tf":0.004651162790697674}},"高":{"docs":{},"度":{"docs":{"base/table/table_view.html":{"ref":"base/table/table_view.html","tf":0.006289308176100629},"base/table/grid_table.html":{"ref":"base/table/grid_table.html","tf":0.008771929824561403},"base/table/collection_table.html":{"ref":"base/table/collection_table.html","tf":0.006535947712418301},"base/table/resizable_table.html":{"ref":"base/table/resizable_table.html","tf":0.00625},"case/table/adaptive_table.html":{"ref":"case/table/adaptive_table.html","tf":0.006060606060606061},"case/table/tree_table.html":{"ref":"case/table/tree_table.html","tf":0.00510204081632653},"case/table/layer_tree_table.html":{"ref":"case/table/layer_tree_table.html","tf":0.00510204081632653},"detailed/table/bi.excel_table.html":{"ref":"detailed/table/bi.excel_table.html","tf":0.0055248618784530384},"detailed/table/bi.page_table.html":{"ref":"detailed/table/bi.page_table.html","tf":0.004651162790697674}}}},"内":{"docs":{},"容":{"docs":{"detailed/table/bi.preview_table.html":{"ref":"detailed/table/bi.preview_table.html","tf":0.006756756756756757},"detailed/table/bi.responsive_table.html":{"ref":"detailed/table/bi.responsive_table.html","tf":0.005263157894736842}}}},"行":{"docs":{},"高":{"docs":{"detailed/table/bi.preview_table.html":{"ref":"detailed/table/bi.preview_table.html","tf":0.006756756756756757},"detailed/table/bi.responsive_table.html":{"ref":"detailed/table/bi.responsive_table.html","tf":0.005263157894736842}}}}},"尾":{"docs":{"base/table/table_view.html":{"ref":"base/table/table_view.html","tf":0.006289308176100629}},"高":{"docs":{},"度":{"docs":{"base/table/table_view.html":{"ref":"base/table/table_view.html","tf":0.006289308176100629},"detailed/table/bi.excel_table.html":{"ref":"detailed/table/bi.excel_table.html","tf":0.0055248618784530384}}}},"行":{"docs":{},"高":{"docs":{"detailed/table/bi.responsive_table.html":{"ref":"detailed/table/bi.responsive_table.html","tf":0.005263157894736842}}}}},"关":{"docs":{},"联":{"docs":{},"树":{"docs":{"case/tree/branch_relation.html":{"ref":"case/tree/branch_relation.html","tf":0.02040816326530612}}}}}},"已":{"docs":{},"经":{"docs":{},"加":{"docs":{},"载":{"docs":{"core/pane.html":{"ref":"core/pane.html","tf":0.0196078431372549}}}}}},"当":{"docs":{},"没":{"docs":{},"有":{"docs":{},"元":{"docs":{},"素":{"docs":{},"时":{"docs":{},"有":{"docs":{},"提":{"docs":{},"示":{"docs":{},"信":{"docs":{},"息":{"docs":{},"的":{"docs":{},"v":{"docs":{},"i":{"docs":{},"e":{"docs":{},"w":{"docs":{},",":{"docs":{"core/pane.html":{"ref":"core/pane.html","tf":0.0196078431372549}}}}}}}}}}}}}}}}}},"前":{"docs":{},"页":{"docs":{"case/pager/all_count_pager.html":{"ref":"case/pager/all_count_pager.html","tf":0.014705882352941176},"detailed/table/bi.page_table.html":{"ref":"detailed/table/bi.page_table.html","tf":0.004651162790697674}},",":{"docs":{"case/pager/direction_pager.html":{"ref":"case/pager/direction_pager.html","tf":0.00819672131147541}}}},"状":{"docs":{},"态":{"docs":{},"是":{"docs":{},"否":{"docs":{},"有":{"docs":{},"效":{"docs":{},"(":{"docs":{},"输":{"docs":{},"入":{"docs":{},"是":{"docs":{},"否":{"docs":{},"合":{"docs":{},"法":{"docs":{},",":{"docs":{"detailed/numeric_interval.html":{"ref":"detailed/numeric_interval.html","tf":0.017241379310344827}}}}}}}}}}}}}}}}}},"检":{"docs":{},"查":{"docs":{},"是":{"docs":{},"否":{"docs":{},"为":{"docs":{},"空":{"docs":{"core/pane.html":{"ref":"core/pane.html","tf":0.0196078431372549}}}}}}}},"在":{"docs":{},"未":{"docs":{},"知":{"docs":{},"宽":{"docs":{},"度":{"docs":{},"和":{"docs":{},"高":{"docs":{},"度":{"docs":{},"时":{"docs":{},"有":{"docs":{},"效":{"docs":{"base/label.html":{"ref":"base/label.html","tf":0.006711409395973154},"base/button/button.html":{"ref":"base/button/button.html","tf":0.005681818181818182},"base/button/text_button.html":{"ref":"base/button/text_button.html","tf":0.009433962264150943}}}}}}}}}}}}},"拼":{"docs":{},"音":{"docs":{"base/label.html":{"ref":"base/label.html","tf":0.006711409395973154},"base/button/text_button.html":{"ref":"base/button/text_button.html","tf":0.009433962264150943}}}},"提":{"docs":{},"示":{"docs":{},"t":{"docs":{},"i":{"docs":{},"t":{"docs":{},"l":{"docs":{"base/label.html":{"ref":"base/label.html","tf":0.006711409395973154}}}}}},"类":{"docs":{},"型":{"docs":{"base/toast.html":{"ref":"base/toast.html","tf":0.020833333333333332},"base/editor/editor.html":{"ref":"base/editor/editor.html","tf":0.005405405405405406}}}},"消":{"docs":{},"息":{"docs":{},"框":{"docs":{"base/message.html":{"ref":"base/message.html","tf":0.02127659574468085}}}}},"性":{"docs":{},"信":{"docs":{},"息":{"docs":{"detailed/bi.button/tooltip.html":{"ref":"detailed/bi.button/tooltip.html","tf":10.011363636363637}}}}}}},"灰":{"docs":{},"化":{"docs":{"base/label.html":{"ref":"base/label.html","tf":0.006711409395973154}}}},"空":{"docs":{"base/label.html":{"ref":"base/label.html","tf":0.026845637583892617}}},"需":{"docs":{},"要":{"docs":{},"设":{"docs":{},"置":{"docs":{},"的":{"docs":{},"文":{"docs":{},"本":{"docs":{},"值":{"docs":{},"t":{"docs":{},"e":{"docs":{},"x":{"docs":{},"t":{"docs":{"base/label.html":{"ref":"base/label.html","tf":0.013422818791946308},"base/bubble.html":{"ref":"base/bubble.html","tf":0.023255813953488372},"base/toast.html":{"ref":"base/toast.html","tf":0.020833333333333332},"base/button/button.html":{"ref":"base/button/button.html","tf":0.011363636363636364},"base/button/text_button.html":{"ref":"base/button/text_button.html","tf":0.018867924528301886}}}}}}},"标":{"docs":{},"签":{"docs":{},"样":{"docs":{},"式":{"docs":{},",":{"docs":{},"例":{"docs":{},"{":{"docs":{},"\"":{"docs":{},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},"o":{"docs":{},"r":{"docs":{},"\"":{"docs":{},":":{"docs":{},"\"":{"docs":{},"#":{"0":{"0":{"0":{"docs":{},"\"":{"docs":{},"}":{"docs":{"base/label.html":{"ref":"base/label.html","tf":0.006711409395973154},"base/button/text_button.html":{"ref":"base/button/text_button.html","tf":0.009433962264150943}}}}},"docs":{}},"docs":{}},"docs":{}}}}}}}}}}}}}},"s":{"docs":{},"t":{"docs":{},"y":{"docs":{},"l":{"docs":{},"e":{"docs":{},",":{"docs":{},"例":{"docs":{},"{":{"docs":{},"\"":{"docs":{},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},"o":{"docs":{},"r":{"docs":{},"\"":{"docs":{},":":{"docs":{},"\"":{"docs":{},"#":{"0":{"0":{"0":{"docs":{},"\"":{"docs":{},"}":{"docs":{"base/editor/code_editor.html":{"ref":"base/editor/code_editor.html","tf":0.012658227848101266}}}}},"docs":{}},"docs":{}},"docs":{}}}}}}}}}}}}}}}}}}}}}}},"域":{"docs":{},"样":{"docs":{},"式":{"docs":{},"s":{"docs":{},"t":{"docs":{},"y":{"docs":{},"l":{"docs":{},"e":{"docs":{},",":{"docs":{},"例":{"docs":{},"{":{"docs":{},"\"":{"docs":{},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},"o":{"docs":{},"r":{"docs":{},"\"":{"docs":{},":":{"docs":{},"\"":{"docs":{},"#":{"0":{"0":{"0":{"docs":{},"\"":{"docs":{},"}":{"docs":{"base/editor/textarea_editor.html":{"ref":"base/editor/textarea_editor.html","tf":0.021739130434782608}}}}},"docs":{}},"docs":{}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}},"高":{"docs":{},"度":{"docs":{},"值":{"docs":{},"h":{"docs":{},"e":{"docs":{},"i":{"docs":{},"g":{"docs":{},"h":{"docs":{},"t":{"docs":{"base/toast.html":{"ref":"base/toast.html","tf":0.020833333333333332}}}}}}}}}}}}}}}},"高":{"docs":{},"级":{"docs":{},"属":{"docs":{},"性":{"docs":{"base/label.html":{"ref":"base/label.html","tf":0.006711409395973154},"base/button/button.html":{"ref":"base/button/button.html","tf":0.005681818181818182},"base/button/text_button.html":{"ref":"base/button/text_button.html","tf":0.009433962264150943}}}}},"度":{"docs":{"base/toast.html":{"ref":"base/toast.html","tf":0.020833333333333332},"base/button/button.html":{"ref":"base/button/button.html","tf":0.005681818181818182},"case/button/multi_select_item.html":{"ref":"case/button/multi_select_item.html","tf":0.017543859649122806},"case/button/single_select_item.html":{"ref":"case/button/single_select_item.html","tf":0.016129032258064516},"case/button/single_select_radio_item.html":{"ref":"case/button/single_select_radio_item.html","tf":0.016129032258064516},"case/editor/shelter_editor.html":{"ref":"case/editor/shelter_editor.html","tf":0.0051813471502590676},"case/editor/sign_editor.html":{"ref":"case/editor/sign_editor.html","tf":0.005494505494505495},"case/editor/sign_initial_editor.html":{"ref":"case/editor/sign_initial_editor.html","tf":0.005154639175257732},"case/editor/state_editor.html":{"ref":"case/editor/state_editor.html","tf":0.005747126436781609},"case/combo/icon_combo.html":{"ref":"case/combo/icon_combo.html","tf":0.007751937984496124},"case/combo/static_combo.html":{"ref":"case/combo/static_combo.html","tf":0.0125},"case/combo/text_value_combo.html":{"ref":"case/combo/text_value_combo.html","tf":0.013513513513513514},"case/combo/text_value_downlist_combo.html":{"ref":"case/combo/text_value_downlist_combo.html","tf":0.013513513513513514},"case/table/adaptive_table.html":{"ref":"case/table/adaptive_table.html","tf":0.006060606060606061},"case/table/tree_table.html":{"ref":"case/table/tree_table.html","tf":0.00510204081632653},"case/table/layer_tree_table.html":{"ref":"case/table/layer_tree_table.html","tf":0.00510204081632653},"case/color_chooser_popup.html":{"ref":"case/color_chooser_popup.html","tf":0.029411764705882353},"case/segment.html":{"ref":"case/segment.html","tf":0.009345794392523364},"detailed/bi.button/tooltip.html":{"ref":"detailed/bi.button/tooltip.html","tf":0.011363636363636364},"detailed/bi.button/items.html":{"ref":"detailed/bi.button/items.html","tf":0.010638297872340425},"detailed/bi.button/node.html":{"ref":"detailed/bi.button/node.html","tf":0.009259259259259259},"detailed/bi.button/segment.html":{"ref":"detailed/bi.button/segment.html","tf":0.009345794392523364},"detailed/tree/bi.multi_tree_combo.html":{"ref":"detailed/tree/bi.multi_tree_combo.html","tf":0.010869565217391304},"detailed/table/bi.page_table.html":{"ref":"detailed/table/bi.page_table.html","tf":0.004651162790697674},"detailed/combo/single_tree_combo.html":{"ref":"detailed/combo/single_tree_combo.html","tf":0.01694915254237288},"detailed/combo/multilayer_single_tree_combo.html":{"ref":"detailed/combo/multilayer_single_tree_combo.html","tf":0.018867924528301886},"detailed/combo/select_tree_combo.html":{"ref":"detailed/combo/select_tree_combo.html","tf":0.02040816326530612},"detailed/combo/multilayer_select_tree_combo.html":{"ref":"detailed/combo/multilayer_select_tree_combo.html","tf":0.02040816326530612}},"h":{"docs":{},"e":{"docs":{},"i":{"docs":{},"g":{"docs":{},"h":{"docs":{},"t":{"docs":{"base/button/image_button.html":{"ref":"base/button/image_button.html","tf":0.029850746268656716}}}}}}}}}},"气":{"docs":{},"泡":{"docs":{},"提":{"docs":{},"示":{"docs":{"base/bubble.html":{"ref":"base/bubble.html","tf":0.023255813953488372}}}},"显":{"docs":{},"示":{"docs":{},"位":{"docs":{},"置":{"docs":{"base/bubble.html":{"ref":"base/bubble.html","tf":0.023255813953488372}}}},"内":{"docs":{},"容":{"docs":{"base/bubble.html":{"ref":"base/bubble.html","tf":0.023255813953488372}}}}}},"高":{"docs":{},"度":{"docs":{"base/bubble.html":{"ref":"base/bubble.html","tf":0.023255813953488372}}}}}},"消":{"docs":{},"息":{"docs":{},"提":{"docs":{},"示":{"docs":{"base/message.html":{"ref":"base/message.html","tf":0.02127659574468085}}}}}},"确":{"docs":{},"认":{"docs":{},"消":{"docs":{},"息":{"docs":{},"框":{"docs":{"base/message.html":{"ref":"base/message.html","tf":0.02127659574468085}}}}}},"定":{"docs":{},"输":{"docs":{},"入":{"docs":{},"触":{"docs":{},"发":{"docs":{},"(":{"docs":{},"b":{"docs":{},"l":{"docs":{},"u":{"docs":{},"r":{"docs":{},"时":{"docs":{},"且":{"docs":{},"输":{"docs":{},"入":{"docs":{},"值":{"docs":{},"有":{"docs":{},"效":{"docs":{},")":{"docs":{"base/editor/editor.html":{"ref":"base/editor/editor.html","tf":0.005405405405405406},"case/editor/shelter_editor.html":{"ref":"case/editor/shelter_editor.html","tf":0.0051813471502590676},"case/editor/sign_editor.html":{"ref":"case/editor/sign_editor.html","tf":0.005494505494505495},"case/editor/sign_initial_editor.html":{"ref":"case/editor/sign_initial_editor.html","tf":0.005154639175257732},"case/editor/state_editor.html":{"ref":"case/editor/state_editor.html","tf":0.005747126436781609}}}}}}}}}}}}}}}}}}}}},"警":{"docs":{},"告":{"docs":{},"消":{"docs":{},"息":{"docs":{},"框":{"docs":{"base/message.html":{"ref":"base/message.html","tf":0.02127659574468085}}}}}}},"!":{"docs":{},"=":{"docs":{},"=":{"docs":{"base/button/button.html":{"ref":"base/button/button.html","tf":0.005681818181818182}}}}},"图":{"docs":{},"标":{"docs":{},"类":{"docs":{},"型":{"docs":{"base/button/button.html":{"ref":"base/button/button.html","tf":0.005681818181818182}}}},"b":{"docs":{},"u":{"docs":{},"t":{"docs":{},"t":{"docs":{},"o":{"docs":{},"n":{"docs":{},",":{"docs":{},"基":{"docs":{},"类":{"docs":{},"b":{"docs":{},"i":{"docs":{},".":{"docs":{},"b":{"docs":{},"a":{"docs":{},"s":{"docs":{},"i":{"docs":{},"c":{"docs":{},"b":{"docs":{},"u":{"docs":{},"t":{"docs":{},"t":{"docs":{},"o":{"docs":{},"n":{"docs":{"base/button/icon_button.html":{"ref":"base/button/icon_button.html","tf":0.02564102564102564}}}}}}}}}}}}}}}}}}}}}}}}},"宽":{"docs":{},"度":{"docs":{"base/button/icon_button.html":{"ref":"base/button/icon_button.html","tf":0.02564102564102564},"base/button/image_button.html":{"ref":"base/button/image_button.html","tf":0.014925373134328358}}}},"高":{"docs":{},"度":{"docs":{"base/button/icon_button.html":{"ref":"base/button/icon_button.html","tf":0.02564102564102564},"base/button/image_button.html":{"ref":"base/button/image_button.html","tf":0.014925373134328358}}}},"按":{"docs":{},"钮":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"g":{"docs":{},"g":{"docs":{},"e":{"docs":{},"r":{"docs":{"case/trigger/icon_trigger.html":{"ref":"case/trigger/icon_trigger.html","tf":0.1111111111111111}}}}}}}}}}}},"片":{"docs":{},"的":{"docs":{},"b":{"docs":{},"u":{"docs":{},"t":{"docs":{},"t":{"docs":{},"o":{"docs":{},"n":{"docs":{},",":{"docs":{},"基":{"docs":{},"类":{"docs":{},"b":{"docs":{},"i":{"docs":{},".":{"docs":{},"b":{"docs":{},"a":{"docs":{},"s":{"docs":{},"i":{"docs":{},"c":{"docs":{},"b":{"docs":{},"u":{"docs":{},"t":{"docs":{},"t":{"docs":{},"o":{"docs":{},"n":{"docs":{"base/button/image_button.html":{"ref":"base/button/image_button.html","tf":0.014925373134328358}}}}}}}}}}}}}}}}}}}}}}}}}},"路":{"docs":{},"径":{"docs":{"base/button/image_button.html":{"ref":"base/button/image_button.html","tf":0.014925373134328358}}}}}},"宽":{"docs":{},"度":{"docs":{"base/button/button.html":{"ref":"base/button/button.html","tf":0.005681818181818182},"case/combo/icon_combo.html":{"ref":"case/combo/icon_combo.html","tf":0.007751937984496124},"case/table/adaptive_table.html":{"ref":"case/table/adaptive_table.html","tf":0.006060606060606061},"case/table/tree_table.html":{"ref":"case/table/tree_table.html","tf":0.00510204081632653},"case/table/layer_tree_table.html":{"ref":"case/table/layer_tree_table.html","tf":0.00510204081632653},"case/segment.html":{"ref":"case/segment.html","tf":0.009345794392523364},"detailed/bi.button/tooltip.html":{"ref":"detailed/bi.button/tooltip.html","tf":0.011363636363636364},"detailed/bi.button/items.html":{"ref":"detailed/bi.button/items.html","tf":0.010638297872340425},"detailed/bi.button/node.html":{"ref":"detailed/bi.button/node.html","tf":0.009259259259259259},"detailed/bi.button/segment.html":{"ref":"detailed/bi.button/segment.html","tf":0.009345794392523364},"detailed/tree/bi.multi_tree_combo.html":{"ref":"detailed/tree/bi.multi_tree_combo.html","tf":0.010869565217391304},"detailed/table/bi.page_table.html":{"ref":"detailed/table/bi.page_table.html","tf":0.004651162790697674}},"w":{"docs":{},"i":{"docs":{},"d":{"docs":{},"t":{"docs":{},"h":{"docs":{"base/button/image_button.html":{"ref":"base/button/image_button.html","tf":0.029850746268656716}}}}}}}}},"按":{"docs":{},"钮":{"docs":{},"文":{"docs":{},"本":{"docs":{},"宽":{"docs":{},"度":{"docs":{"base/button/button.html":{"ref":"base/button/button.html","tf":0.005681818181818182},"base/button/text_button.html":{"ref":"base/button/text_button.html","tf":0.009433962264150943}}}},"高":{"docs":{},"度":{"docs":{"base/button/button.html":{"ref":"base/button/button.html","tf":0.005681818181818182},"base/button/text_button.html":{"ref":"base/button/text_button.html","tf":0.009433962264150943}}}},"内":{"docs":{},"容":{"docs":{"base/button/text_button.html":{"ref":"base/button/text_button.html","tf":0.009433962264150943}}}}}},"类":{"docs":{},"型":{"docs":{"base/button/button.html":{"ref":"base/button/button.html","tf":0.005681818181818182}}}},"组":{"docs":{"case/layer/multi_popup_layer.html":{"ref":"case/layer/multi_popup_layer.html","tf":0.04}}}},"下":{"docs":{},"b":{"docs":{},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{},"s":{"docs":{},"p":{"docs":{},"a":{"docs":{},"c":{"docs":{},"e":{"docs":{},"触":{"docs":{},"发":{"docs":{"base/editor/editor.html":{"ref":"base/editor/editor.html","tf":0.005405405405405406},"case/editor/shelter_editor.html":{"ref":"case/editor/shelter_editor.html","tf":0.0051813471502590676},"case/editor/sign_editor.html":{"ref":"case/editor/sign_editor.html","tf":0.005494505494505495},"case/editor/sign_initial_editor.html":{"ref":"case/editor/sign_initial_editor.html","tf":0.005154639175257732},"case/editor/state_editor.html":{"ref":"case/editor/state_editor.html","tf":0.005747126436781609}}}}}}}}}}}}},"空":{"docs":{},"格":{"docs":{},"触":{"docs":{},"发":{"docs":{"base/editor/editor.html":{"ref":"base/editor/editor.html","tf":0.005405405405405406},"case/editor/shelter_editor.html":{"ref":"case/editor/shelter_editor.html","tf":0.0051813471502590676},"case/editor/sign_editor.html":{"ref":"case/editor/sign_editor.html","tf":0.005494505494505495},"case/editor/sign_initial_editor.html":{"ref":"case/editor/sign_initial_editor.html","tf":0.005154639175257732},"case/editor/state_editor.html":{"ref":"case/editor/state_editor.html","tf":0.005747126436781609}}}}}}},"键":{"docs":{},"事":{"docs":{},"件":{"docs":{"base/editor/editor.html":{"ref":"base/editor/editor.html","tf":0.005405405405405406},"case/editor/shelter_editor.html":{"ref":"case/editor/shelter_editor.html","tf":0.0051813471502590676}}}}}},"最":{"docs":{},"小":{"docs":{},"宽":{"docs":{},"度":{"docs":{"case/combo/icon_combo.html":{"ref":"case/combo/icon_combo.html","tf":0.007751937984496124}},",":{"docs":{},"如":{"docs":{},"果":{"docs":{},"b":{"docs":{},"l":{"docs":{},"o":{"docs":{},"c":{"docs":{},"k":{"docs":{},"/":{"docs":{},"c":{"docs":{},"l":{"docs":{},"e":{"docs":{},"a":{"docs":{},"r":{"docs":{},"中":{"docs":{},"某":{"docs":{},"一":{"docs":{},"项":{"docs":{},"为":{"docs":{},"t":{"docs":{},"r":{"docs":{},"u":{"docs":{},"e":{"docs":{},",":{"docs":{},"此":{"docs":{},"项":{"docs":{},"值":{"docs":{},"为":{"0":{"docs":{},",":{"docs":{},"否":{"docs":{},"则":{"docs":{},"为":{"9":{"0":{"docs":{"base/button/button.html":{"ref":"base/button/button.html","tf":0.005681818181818182}}},"docs":{}},"docs":{}}}}}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"列":{"docs":{},"宽":{"docs":{"base/table/resizable_table.html":{"ref":"base/table/resizable_table.html","tf":0.00625},"case/table/adaptive_table.html":{"ref":"case/table/adaptive_table.html","tf":0.006060606060606061},"case/table/tree_table.html":{"ref":"case/table/tree_table.html","tf":0.00510204081632653},"case/table/layer_tree_table.html":{"ref":"case/table/layer_tree_table.html","tf":0.00510204081632653},"detailed/table/bi.page_table.html":{"ref":"detailed/table/bi.page_table.html","tf":0.004651162790697674}}}},"日":{"docs":{},"期":{"docs":{"case/calendar.html":{"ref":"case/calendar.html","tf":0.013888888888888888}}}},"值":{"docs":{"detailed/slider.html":{"ref":"detailed/slider.html","tf":0.029411764705882353}},"初":{"docs":{},"始":{"docs":{},"值":{"docs":{"detailed/numeric_interval.html":{"ref":"detailed/numeric_interval.html","tf":0.017241379310344827}}}}}}},"大":{"docs":{},"可":{"docs":{},"选":{"docs":{},"数":{"docs":{},"量":{"docs":{"base/editor/multifile_editor.html":{"ref":"base/editor/multifile_editor.html","tf":0.015384615384615385}}}}}},"列":{"docs":{},"宽":{"docs":{"base/table/resizable_table.html":{"ref":"base/table/resizable_table.html","tf":0.00625},"case/table/adaptive_table.html":{"ref":"case/table/adaptive_table.html","tf":0.006060606060606061},"case/table/tree_table.html":{"ref":"case/table/tree_table.html","tf":0.00510204081632653},"case/table/layer_tree_table.html":{"ref":"case/table/layer_tree_table.html","tf":0.00510204081632653},"detailed/table/bi.page_table.html":{"ref":"detailed/table/bi.page_table.html","tf":0.004651162790697674}}}},"宽":{"docs":{},"度":{"docs":{"case/combo/icon_combo.html":{"ref":"case/combo/icon_combo.html","tf":0.007751937984496124}}}},"高":{"docs":{},"度":{"docs":{"case/combo/icon_combo.html":{"ref":"case/combo/icon_combo.html","tf":0.007751937984496124}}}},"日":{"docs":{},"期":{"docs":{"case/calendar.html":{"ref":"case/calendar.html","tf":0.013888888888888888}}}},"值":{"docs":{"detailed/slider.html":{"ref":"detailed/slider.html","tf":0.029411764705882353}},"初":{"docs":{},"始":{"docs":{},"值":{"docs":{"detailed/numeric_interval.html":{"ref":"detailed/numeric_interval.html","tf":0.017241379310344827}}}}}}},"后":{"docs":{},"一":{"docs":{},"页":{"docs":{"case/pager/direction_pager.html":{"ref":"case/pager/direction_pager.html","tf":0.00819672131147541},"detailed/table/bi.page_table.html":{"ref":"detailed/table/bi.page_table.html","tf":0.004651162790697674}},",":{"docs":{},"在":{"docs":{},"万":{"docs":{},"不":{"docs":{},"得":{"docs":{},"已":{"docs":{},"时":{"docs":{},"才":{"docs":{},"会":{"docs":{},"调":{"docs":{},"用":{"docs":{},"这":{"docs":{},"个":{"docs":{},"函":{"docs":{},"数":{"docs":{},"获":{"docs":{},"取":{"docs":{},"最":{"docs":{},"后":{"docs":{},"一":{"docs":{},"页":{"docs":{},"的":{"docs":{},"页":{"docs":{},"码":{"docs":{},",":{"docs":{"base/pager.html":{"ref":"base/pager.html","tf":0.006666666666666667}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"q":{"docs":{},"u":{"docs":{},"i":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{},"e":{"docs":{},"c":{"docs":{},"k":{"docs":{"base/editor/editor.html":{"ref":"base/editor/editor.html","tf":0.005405405405405406},"case/editor/shelter_editor.html":{"ref":"case/editor/shelter_editor.html","tf":0.0051813471502590676},"case/editor/sign_editor.html":{"ref":"case/editor/sign_editor.html","tf":0.005494505494505495},"case/editor/sign_initial_editor.html":{"ref":"case/editor/sign_initial_editor.html","tf":0.005154639175257732},"case/editor/state_editor.html":{"ref":"case/editor/state_editor.html","tf":0.005747126436781609},"case/trigger/editor_trigger.html":{"ref":"case/trigger/editor_trigger.html","tf":0.02},"detailed/text_input/bi.text_editor.html":{"ref":"detailed/text_input/bi.text_editor.html","tf":0.010309278350515464},"detailed/text_input/bi.search_editor.html":{"ref":"detailed/text_input/bi.search_editor.html","tf":0.010101010101010102},"detailed/text_input/bi.clear_editor.html":{"ref":"detailed/text_input/bi.clear_editor.html","tf":0.00980392156862745}}}}}}}}},"a":{"docs":{},"r":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"_":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"b":{"docs":{},"o":{"docs":{"detailed/quarter_combo.html":{"ref":"detailed/quarter_combo.html","tf":10.035714285714286}}}}}}}}}}}}}}},"输":{"docs":{},"入":{"docs":{},"为":{"docs":{},"空":{"docs":{},"时":{"docs":{},"按":{"docs":{},"下":{"docs":{},"b":{"docs":{},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{},"s":{"docs":{},"p":{"docs":{},"a":{"docs":{},"c":{"docs":{"base/editor/editor.html":{"ref":"base/editor/editor.html","tf":0.005405405405405406},"case/editor/shelter_editor.html":{"ref":"case/editor/shelter_editor.html","tf":0.0051813471502590676},"case/editor/sign_editor.html":{"ref":"case/editor/sign_editor.html","tf":0.005494505494505495},"case/editor/sign_initial_editor.html":{"ref":"case/editor/sign_initial_editor.html","tf":0.005154639175257732},"case/editor/state_editor.html":{"ref":"case/editor/state_editor.html","tf":0.005747126436781609}}}}}}}}}}}}}}},"值":{"docs":{},"无":{"docs":{},"效":{"docs":{},"的":{"docs":{},"状":{"docs":{},"态":{"docs":{},"事":{"docs":{},"件":{"docs":{"base/editor/editor.html":{"ref":"base/editor/editor.html","tf":0.005405405405405406},"case/editor/shelter_editor.html":{"ref":"case/editor/shelter_editor.html","tf":0.0051813471502590676},"case/editor/sign_editor.html":{"ref":"case/editor/sign_editor.html","tf":0.005494505494505495},"case/editor/sign_initial_editor.html":{"ref":"case/editor/sign_initial_editor.html","tf":0.005154639175257732},"case/editor/state_editor.html":{"ref":"case/editor/state_editor.html","tf":0.005747126436781609}}}}}}}}},"有":{"docs":{},"效":{"docs":{},"的":{"docs":{},"状":{"docs":{},"态":{"docs":{},"事":{"docs":{},"件":{"docs":{"base/editor/editor.html":{"ref":"base/editor/editor.html","tf":0.005405405405405406},"case/editor/shelter_editor.html":{"ref":"case/editor/shelter_editor.html","tf":0.0051813471502590676},"case/editor/sign_editor.html":{"ref":"case/editor/sign_editor.html","tf":0.005494505494505495},"case/editor/sign_initial_editor.html":{"ref":"case/editor/sign_initial_editor.html","tf":0.005154639175257732},"case/editor/state_editor.html":{"ref":"case/editor/state_editor.html","tf":0.005747126436781609}}}}}}}}}},"框":{"docs":{},"为":{"docs":{},"空":{"docs":{},"时":{"docs":{},"触":{"docs":{},"发":{"docs":{"base/editor/editor.html":{"ref":"base/editor/editor.html","tf":0.005405405405405406},"case/editor/shelter_editor.html":{"ref":"case/editor/shelter_editor.html","tf":0.0051813471502590676},"case/editor/sign_editor.html":{"ref":"case/editor/sign_editor.html","tf":0.005494505494505495},"case/editor/sign_initial_editor.html":{"ref":"case/editor/sign_initial_editor.html","tf":0.005154639175257732},"case/editor/state_editor.html":{"ref":"case/editor/state_editor.html","tf":0.005747126436781609}}}}}}},"类":{"docs":{},"型":{"docs":{"base/editor/editor.html":{"ref":"base/editor/editor.html","tf":0.005405405405405406}}}}},"较":{"docs":{},"验":{"docs":{},"函":{"docs":{},"数":{"docs":{"base/editor/editor.html":{"ref":"base/editor/editor.html","tf":0.005405405405405406},"case/editor/shelter_editor.html":{"ref":"case/editor/shelter_editor.html","tf":0.0051813471502590676},"case/editor/sign_editor.html":{"ref":"case/editor/sign_editor.html","tf":0.005494505494505495},"case/editor/sign_initial_editor.html":{"ref":"case/editor/sign_initial_editor.html","tf":0.005154639175257732},"case/editor/state_editor.html":{"ref":"case/editor/state_editor.html","tf":0.005747126436781609},"detailed/text_input/bi.text_editor.html":{"ref":"detailed/text_input/bi.text_editor.html","tf":0.010309278350515464},"detailed/text_input/bi.search_editor.html":{"ref":"detailed/text_input/bi.search_editor.html","tf":0.010101010101010102},"detailed/text_input/bi.clear_editor.html":{"ref":"detailed/text_input/bi.clear_editor.html","tf":0.00980392156862745}}}}}}}},"插":{"docs":{},"入":{"docs":{},"参":{"docs":{},"数":{"docs":{"base/editor/code_editor.html":{"ref":"base/editor/code_editor.html","tf":0.012658227848101266}}}},"字":{"docs":{},"符":{"docs":{},"串":{"docs":{"base/editor/code_editor.html":{"ref":"base/editor/code_editor.html","tf":0.012658227848101266},"base/editor/formula_editor.html":{"ref":"base/editor/formula_editor.html","tf":0.010101010101010102}}}}},"函":{"docs":{},"数":{"docs":{"base/editor/formula_editor.html":{"ref":"base/editor/formula_editor.html","tf":0.010101010101010102}}}},"操":{"docs":{},"作":{"docs":{},"符":{"docs":{"base/editor/formula_editor.html":{"ref":"base/editor/formula_editor.html","tf":0.010101010101010102}}}}}}},"允":{"docs":{},"许":{"docs":{},"上":{"docs":{},"传":{"docs":{},"的":{"docs":{},"文":{"docs":{},"件":{"docs":{},"类":{"docs":{},"型":{"docs":{"base/editor/multifile_editor.html":{"ref":"base/editor/multifile_editor.html","tf":0.015384615384615385}}}}}}}}}}},"多":{"docs":{},"文":{"docs":{},"件":{"docs":{},",":{"docs":{},"基":{"docs":{},"类":{"docs":{},"b":{"docs":{},"i":{"docs":{},".":{"docs":{},"s":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"l":{"docs":{"base/editor/multifile_editor.html":{"ref":"base/editor/multifile_editor.html","tf":0.015384615384615385}}}}}}}}}}}}}}},"层":{"docs":{},"下":{"docs":{},"拉":{"docs":{},"列":{"docs":{},"表":{"docs":{},"的":{"docs":{},"下":{"docs":{},"拉":{"docs":{},"框":{"docs":{"detailed/down_list_combo.html":{"ref":"detailed/down_list_combo.html","tf":0.006578947368421052}}}}}}}}}},"级":{"docs":{},"下":{"docs":{},"拉":{"docs":{},"单":{"docs":{},"选":{"docs":{},"树":{"docs":{"detailed/combo/multilayer_single_tree_combo.html":{"ref":"detailed/combo/multilayer_single_tree_combo.html","tf":0.018867924528301886}}}}},"可":{"docs":{},"选":{"docs":{},"节":{"docs":{},"点":{"docs":{},"树":{"docs":{"detailed/combo/multilayer_select_tree_combo.html":{"ref":"detailed/combo/multilayer_select_tree_combo.html","tf":0.02040816326530612}}}}}}}}}}}},"公":{"docs":{},"式":{"docs":{},"编":{"docs":{},"辑":{"docs":{},"控":{"docs":{},"件":{"docs":{},",":{"docs":{},"基":{"docs":{},"类":{"docs":{},"b":{"docs":{},"i":{"docs":{},".":{"docs":{},"s":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"l":{"docs":{"base/editor/formula_editor.html":{"ref":"base/editor/formula_editor.html","tf":0.010101010101010102}}}}}}}}}}}}}}}}}}},"字":{"docs":{},"段":{"docs":{},"集":{"docs":{},"合":{"docs":{"base/editor/formula_editor.html":{"ref":"base/editor/formula_editor.html","tf":0.010101010101010102}}}}}},"合":{"docs":{},"并":{"docs":{},"的":{"docs":{},"单":{"docs":{},"元":{"docs":{},"格":{"docs":{},"列":{"docs":{},"号":{"docs":{"base/table/table_view.html":{"ref":"base/table/table_view.html","tf":0.006289308176100629},"base/table/collection_table.html":{"ref":"base/table/collection_table.html","tf":0.006535947712418301},"base/table/resizable_table.html":{"ref":"base/table/resizable_table.html","tf":0.00625},"case/table/adaptive_table.html":{"ref":"case/table/adaptive_table.html","tf":0.006060606060606061},"case/table/tree_table.html":{"ref":"case/table/tree_table.html","tf":0.00510204081632653},"case/table/layer_tree_table.html":{"ref":"case/table/layer_tree_table.html","tf":0.00510204081632653},"detailed/table/bi.excel_table.html":{"ref":"detailed/table/bi.excel_table.html","tf":0.0055248618784530384},"detailed/table/bi.page_table.html":{"ref":"detailed/table/bi.page_table.html","tf":0.004651162790697674}}}}}}}},"规":{"docs":{},"则":{"docs":{},",":{"docs":{"base/table/table_view.html":{"ref":"base/table/table_view.html","tf":0.006289308176100629},"base/table/collection_table.html":{"ref":"base/table/collection_table.html","tf":0.006535947712418301},"case/table/adaptive_table.html":{"ref":"case/table/adaptive_table.html","tf":0.006060606060606061},"case/table/tree_table.html":{"ref":"case/table/tree_table.html","tf":0.00510204081632653},"case/table/layer_tree_table.html":{"ref":"case/table/layer_tree_table.html","tf":0.00510204081632653},"detailed/table/bi.responsive_table.html":{"ref":"detailed/table/bi.responsive_table.html","tf":0.005263157894736842},"detailed/table/bi.excel_table.html":{"ref":"detailed/table/bi.excel_table.html","tf":0.0055248618784530384},"detailed/table/bi.page_table.html":{"ref":"detailed/table/bi.page_table.html","tf":0.004651162790697674}}}}}}},"得":{"docs":{},"到":{"docs":{},"列":{"docs":{},"宽":{"docs":{"base/table/table_view.html":{"ref":"base/table/table_view.html","tf":0.006289308176100629},"base/table/grid_table.html":{"ref":"base/table/grid_table.html","tf":0.008771929824561403},"base/table/collection_table.html":{"ref":"base/table/collection_table.html","tf":0.006535947712418301},"base/table/resizable_table.html":{"ref":"base/table/resizable_table.html","tf":0.00625},"case/table/adaptive_table.html":{"ref":"case/table/adaptive_table.html","tf":0.006060606060606061},"case/table/tree_table.html":{"ref":"case/table/tree_table.html","tf":0.00510204081632653},"case/table/layer_tree_table.html":{"ref":"case/table/layer_tree_table.html","tf":0.00510204081632653},"detailed/table/bi.preview_table.html":{"ref":"detailed/table/bi.preview_table.html","tf":0.006756756756756757},"detailed/table/bi.responsive_table.html":{"ref":"detailed/table/bi.responsive_table.html","tf":0.005263157894736842},"detailed/table/bi.excel_table.html":{"ref":"detailed/table/bi.excel_table.html","tf":0.0055248618784530384},"detailed/table/bi.page_table.html":{"ref":"detailed/table/bi.page_table.html","tf":0.004651162790697674}}}}}},"时":{"docs":{},"合":{"docs":{},"并":{"docs":{"base/table/table_view.html":{"ref":"base/table/table_view.html","tf":0.006289308176100629},"base/table/collection_table.html":{"ref":"base/table/collection_table.html","tf":0.006535947712418301},"case/table/adaptive_table.html":{"ref":"case/table/adaptive_table.html","tf":0.006060606060606061},"case/table/tree_table.html":{"ref":"case/table/tree_table.html","tf":0.00510204081632653},"case/table/layer_tree_table.html":{"ref":"case/table/layer_tree_table.html","tf":0.00510204081632653},"detailed/table/bi.excel_table.html":{"ref":"detailed/table/bi.excel_table.html","tf":0.0055248618784530384},"detailed/table/bi.page_table.html":{"ref":"detailed/table/bi.page_table.html","tf":0.004651162790697674}}}}},"普":{"docs":{},"通":{"docs":{},"单":{"docs":{},"元":{"docs":{},"格":{"docs":{},"高":{"docs":{},"度":{"docs":{"base/table/table_view.html":{"ref":"base/table/table_view.html","tf":0.006289308176100629},"base/table/grid_table.html":{"ref":"base/table/grid_table.html","tf":0.008771929824561403},"base/table/collection_table.html":{"ref":"base/table/collection_table.html","tf":0.006535947712418301},"base/table/resizable_table.html":{"ref":"base/table/resizable_table.html","tf":0.00625},"case/table/adaptive_table.html":{"ref":"case/table/adaptive_table.html","tf":0.006060606060606061},"case/table/tree_table.html":{"ref":"case/table/tree_table.html","tf":0.00510204081632653},"case/table/layer_tree_table.html":{"ref":"case/table/layer_tree_table.html","tf":0.00510204081632653},"detailed/table/bi.excel_table.html":{"ref":"detailed/table/bi.excel_table.html","tf":0.0055248618784530384},"detailed/table/bi.page_table.html":{"ref":"detailed/table/bi.page_table.html","tf":0.004651162790697674}}}}}}}}},"能":{"docs":{},"处":{"docs":{},"理":{"docs":{},"静":{"docs":{},"态":{"docs":{},"宽":{"docs":{},"度":{"docs":{},"以":{"docs":{},"及":{"docs":{},"动":{"docs":{},"态":{"docs":{},"宽":{"docs":{},"度":{"docs":{},"的":{"docs":{},"表":{"docs":{"base/table/table_view.html":{"ref":"base/table/table_view.html","tf":0.006289308176100629}}}}}}}}}}}}}}}}},"储":{"docs":{},"存":{"docs":{"base/table/grid_table.html":{"ref":"base/table/grid_table.html","tf":0.008771929824561403}}}},"冻":{"docs":{},"结":{"docs":{},"列":{"docs":{"base/table/grid_table.html":{"ref":"base/table/grid_table.html","tf":0.008771929824561403}}},"的":{"docs":{},"列":{"docs":{"base/table/collection_table.html":{"ref":"base/table/collection_table.html","tf":0.006535947712418301},"base/table/resizable_table.html":{"ref":"base/table/resizable_table.html","tf":0.00625},"case/table/adaptive_table.html":{"ref":"case/table/adaptive_table.html","tf":0.006060606060606061},"case/table/tree_table.html":{"ref":"case/table/tree_table.html","tf":0.00510204081632653},"case/table/layer_tree_table.html":{"ref":"case/table/layer_tree_table.html","tf":0.00510204081632653},"detailed/table/bi.preview_table.html":{"ref":"detailed/table/bi.preview_table.html","tf":0.006756756756756757},"detailed/table/bi.page_table.html":{"ref":"detailed/table/bi.page_table.html","tf":0.004651162790697674}},"号":{"docs":{},",":{"docs":{},"从":{"0":{"docs":{},"开":{"docs":{},"始":{"docs":{},",":{"docs":{},"i":{"docs":{},"s":{"docs":{},"n":{"docs":{},"e":{"docs":{},"e":{"docs":{},"d":{"docs":{},"f":{"docs":{},"r":{"docs":{},"e":{"docs":{},"e":{"docs":{},"z":{"docs":{},"e":{"docs":{},"为":{"docs":{},"t":{"docs":{},"r":{"docs":{},"u":{"docs":{},"e":{"docs":{},"时":{"docs":{},"生":{"docs":{},"效":{"docs":{"detailed/table/bi.responsive_table.html":{"ref":"detailed/table/bi.responsive_table.html","tf":0.005263157894736842}}}}}}}}}}}}}}}}}}}}}}}}}},"docs":{}}}}}}}},"存":{"docs":{},"储":{"docs":{"case/table/adaptive_table.html":{"ref":"case/table/adaptive_table.html","tf":0.006060606060606061},"case/table/tree_table.html":{"ref":"case/table/tree_table.html","tf":0.00510204081632653},"case/table/layer_tree_table.html":{"ref":"case/table/layer_tree_table.html","tf":0.00510204081632653}},"数":{"docs":{},"据":{"docs":{"base/table/collection_table.html":{"ref":"base/table/collection_table.html","tf":0.006535947712418301}}}}}},"继":{"docs":{},"承":{"docs":{},"b":{"docs":{},"i":{"docs":{},".":{"docs":{},"w":{"docs":{},"i":{"docs":{},"d":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{"base/table/collection_table.html":{"ref":"base/table/collection_table.html","tf":0.006535947712418301}}}}}}}}}}}}},"保":{"docs":{},"存":{"docs":{},"表":{"docs":{"base/table/resizable_table.html":{"ref":"base/table/resizable_table.html","tf":0.00625}}}}},"j":{"docs":{},"u":{"docs":{},"m":{"docs":{},"p":{"docs":{"base/pager.html":{"ref":"base/pager.html","tf":0.006666666666666667}}}}},"s":{"docs":{},"o":{"docs":{},"n":{"docs":{"base/svg.html":{"ref":"base/svg.html","tf":0.011235955056179775}}}}}},"主":{"docs":{},"要":{"docs":{},"作":{"docs":{},"用":{"docs":{},"于":{"docs":{},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{},"e":{"docs":{},"方":{"docs":{},"法":{"docs":{"base/pager.html":{"ref":"base/pager.html","tf":0.006666666666666667}}}}}}}}}}}}}}}}},"分":{"docs":{},"页":{"docs":{},"控":{"docs":{},"件":{"docs":{},",":{"docs":{},"基":{"docs":{},"类":{"docs":{},"b":{"docs":{},"i":{"docs":{},".":{"docs":{},"w":{"docs":{},"i":{"docs":{},"d":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{"base/pager.html":{"ref":"base/pager.html","tf":0.006666666666666667}}}}}}}}}}}}}}}},"计":{"docs":{},"数":{"docs":{"case/loader/list_loader.html":{"ref":"case/loader/list_loader.html","tf":0.010752688172043012},"case/loader/sort_list.html":{"ref":"case/loader/sort_list.html","tf":0.010752688172043012}}}},"表":{"docs":{},"格":{"docs":{"detailed/table/bi.page_table.html":{"ref":"detailed/table/bi.page_table.html","tf":0.004651162790697674}}}},"选":{"docs":{},"项":{"docs":{"detailed/table/bi.page_table.html":{"ref":"detailed/table/bi.page_table.html","tf":0.004651162790697674}}}}}},"第":{"docs":{},"一":{"docs":{},"页":{"docs":{"base/pager.html":{"ref":"base/pager.html","tf":0.006666666666666667},"case/pager/direction_pager.html":{"ref":"case/pager/direction_pager.html","tf":0.00819672131147541},"detailed/table/bi.page_table.html":{"ref":"detailed/table/bi.page_table.html","tf":0.004651162790697674}}}}},"若":{"docs":{},"为":{"docs":{},"f":{"docs":{},"a":{"docs":{},"l":{"docs":{},"s":{"docs":{},"e":{"docs":{},",":{"docs":{},"则":{"docs":{},"指":{"docs":{},"对":{"docs":{},"其":{"docs":{},"设":{"docs":{},"置":{"docs":{},"使":{"docs":{},"能":{"docs":{},"状":{"docs":{},"态":{"docs":{"base/pager.html":{"ref":"base/pager.html","tf":0.006666666666666667}}}}}}}}}}}}}}}}}}}},"连":{"docs":{},"续":{"docs":{},"显":{"docs":{},"示":{"docs":{},"分":{"docs":{},"页":{"docs":{},"数":{"docs":{"base/pager.html":{"ref":"base/pager.html","tf":0.006666666666666667}}}}}}}}},"页":{"docs":{},"数":{"docs":{},"跳":{"docs":{},"转":{"docs":{"base/pager.html":{"ref":"base/pager.html","tf":0.006666666666666667}}}}},"码":{"docs":{"detailed/table/bi.page_table.html":{"ref":"detailed/table/bi.page_table.html","tf":0.009302325581395349}}}},".":{"docs":{},"a":{"docs":{},"t":{"docs":{},"t":{"docs":{},"r":{"docs":{},"(":{"docs":{},"{":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"o":{"docs":{},"k":{"docs":{},"e":{"docs":{},":":{"docs":{"base/svg.html":{"ref":"base/svg.html","tf":0.011235955056179775}}}}}}}}}}}}}}},".":{"docs":{},".":{"docs":{"case/tree/branch_tree.html":{"ref":"case/tree/branch_tree.html","tf":0.02},"case/tree/handstand_branch_tree.html":{"ref":"case/tree/handstand_branch_tree.html","tf":0.019230769230769232}}}}},"结":{"docs":{},"束":{"docs":{},"绘":{"docs":{},"制":{"docs":{"base/svg.html":{"ref":"base/svg.html","tf":0.011235955056179775}}}}}},"绘":{"docs":{},"制":{"docs":{"base/canvas.html":{"ref":"base/canvas.html","tf":0.016666666666666666},"case/complex_canvas.html":{"ref":"case/complex_canvas.html","tf":0.020833333333333332}},"图":{"docs":{},"片":{"docs":{"base/svg.html":{"ref":"base/svg.html","tf":0.011235955056179775}}}},"圆":{"docs":{},"形":{"docs":{"base/svg.html":{"ref":"base/svg.html","tf":0.011235955056179775},"base/canvas.html":{"ref":"base/canvas.html","tf":0.016666666666666666}}}},"形":{"docs":{},"状":{"docs":{},"的":{"docs":{},"集":{"docs":{},"合":{"docs":{"base/svg.html":{"ref":"base/svg.html","tf":0.011235955056179775}}}}}}},"文":{"docs":{},"本":{"docs":{"base/svg.html":{"ref":"base/svg.html","tf":0.011235955056179775}}}},"椭":{"docs":{},"圆":{"docs":{"base/svg.html":{"ref":"base/svg.html","tf":0.011235955056179775}}}},"矩":{"docs":{},"形":{"docs":{"base/svg.html":{"ref":"base/svg.html","tf":0.011235955056179775},"base/canvas.html":{"ref":"base/canvas.html","tf":0.016666666666666666}}}},"路":{"docs":{},"径":{"docs":{"base/svg.html":{"ref":"base/svg.html","tf":0.011235955056179775}}}},"渐":{"docs":{},"变":{"docs":{},"色":{"docs":{"base/canvas.html":{"ref":"base/canvas.html","tf":0.016666666666666666}}}}},"线":{"docs":{},"段":{"docs":{"base/canvas.html":{"ref":"base/canvas.html","tf":0.016666666666666666}}}},"树":{"docs":{},"枝":{"docs":{},"节":{"docs":{},"点":{"docs":{"case/complex_canvas.html":{"ref":"case/complex_canvas.html","tf":0.020833333333333332}}}}}}}},"填":{"docs":{},"充":{"docs":{},"中":{"docs":{},"空":{"docs":{},"的":{"docs":{},"路":{"docs":{},"径":{"docs":{"base/canvas.html":{"ref":"base/canvas.html","tf":0.016666666666666666}}}}}}},"实":{"docs":{},"心":{"docs":{},"的":{"docs":{},"路":{"docs":{},"径":{"docs":{"base/canvas.html":{"ref":"base/canvas.html","tf":0.016666666666666666}}}}}}}}},"复":{"docs":{},"选":{"docs":{},"框":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},",":{"docs":{},"基":{"docs":{},"类":{"docs":{},"b":{"docs":{},"i":{"docs":{},".":{"docs":{},"b":{"docs":{},"a":{"docs":{},"s":{"docs":{},"i":{"docs":{},"c":{"docs":{},"b":{"docs":{},"u":{"docs":{},"t":{"docs":{},"t":{"docs":{},"o":{"docs":{},"n":{"docs":{"case/button/multi_select_item.html":{"ref":"case/button/multi_select_item.html","tf":0.017543859649122806}}}}}}}}}}}}}}}}}}}}}}}}},"杂":{"docs":{},"的":{"docs":{},"c":{"docs":{},"a":{"docs":{},"n":{"docs":{},"v":{"docs":{},"a":{"docs":{},"s":{"docs":{},"绘":{"docs":{},"图":{"docs":{"case/complex_canvas.html":{"ref":"case/complex_canvas.html","tf":0.020833333333333332}}}}}}}}}}}}},"标":{"docs":{},"红":{"docs":{"case/button/multi_select_item.html":{"ref":"case/button/multi_select_item.html","tf":0.017543859649122806},"case/button/single_select_item.html":{"ref":"case/button/single_select_item.html","tf":0.016129032258064516},"case/button/single_select_radio_item.html":{"ref":"case/button/single_select_radio_item.html","tf":0.016129032258064516}}},"题":{"docs":{"case/layer/layer_panel.html":{"ref":"case/layer/layer_panel.html","tf":0.010752688172043012},"case/layer/panel.html":{"ref":"case/layer/panel.html","tf":0.015873015873015872}},"后":{"docs":{},"的":{"docs":{},"按":{"docs":{},"钮":{"docs":{},"组":{"docs":{"case/layer/panel.html":{"ref":"case/layer/panel.html","tf":0.015873015873015872}}}}}}}}},"带":{"docs":{},"标":{"docs":{},"记":{"docs":{},"的":{"docs":{},"文":{"docs":{},"本":{"docs":{},"框":{"docs":{},",":{"docs":{},"需":{"docs":{},"手":{"docs":{},"动":{"docs":{},"控":{"docs":{},"制":{"docs":{},"进":{"docs":{},"入":{"docs":{},"编":{"docs":{},"辑":{"docs":{},"状":{"docs":{},"态":{"docs":{"case/editor/shelter_editor.html":{"ref":"case/editor/shelter_editor.html","tf":0.0051813471502590676}}}}}}}}}}}}},"基":{"docs":{},"类":{"docs":{},"b":{"docs":{},"i":{"docs":{},".":{"docs":{},"w":{"docs":{},"i":{"docs":{},"d":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{"case/editor/sign_editor.html":{"ref":"case/editor/sign_editor.html","tf":0.005494505494505495}}}}}}}}}}}}}}}}}}}},"有":{"docs":{},"标":{"docs":{},"题":{"docs":{},"栏":{"docs":{},"的":{"docs":{},"p":{"docs":{},"a":{"docs":{},"n":{"docs":{},"e":{"docs":{},"l":{"docs":{},",":{"docs":{},"基":{"docs":{},"类":{"docs":{},"b":{"docs":{},"i":{"docs":{},".":{"docs":{},"w":{"docs":{},"i":{"docs":{},"d":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{"case/layer/panel.html":{"ref":"case/layer/panel.html","tf":0.015873015873015872}}}}}}}}}}}}}}}}}}}}}}}},"清":{"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.00980392156862745}}}}}}}}}},"确":{"docs":{},"定":{"docs":{},"的":{"docs":{},"复":{"docs":{},"选":{"docs":{},"下":{"docs":{},"拉":{"docs":{},"框":{"docs":{"detailed/multi_select_combo.html":{"ref":"detailed/multi_select_combo.html","tf":0.04}}}}}}}}}},"方":{"docs":{},"向":{"docs":{},"的":{"docs":{},"路":{"docs":{},"径":{"docs":{},"选":{"docs":{},"择":{"docs":{"detailed/path/direction_path_chooser.html":{"ref":"detailed/path/direction_path_chooser.html","tf":0.02}}}}}}}}}},"之":{"docs":{},"后":{"docs":{},"初":{"docs":{},"始":{"docs":{},"值":{"docs":{},"会":{"docs":{},"一":{"docs":{},"直":{"docs":{},"显":{"docs":{},"示":{"docs":{},"的":{"docs":{},"e":{"docs":{},"d":{"docs":{},"i":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{"case/editor/sign_initial_editor.html":{"ref":"case/editor/sign_initial_editor.html","tf":0.005154639175257732}}}}}}}}}}}}}}}}}}},"指":{"docs":{},"定":{"docs":{},"初":{"docs":{},"始":{"docs":{},"值":{"docs":{"case/editor/sign_initial_editor.html":{"ref":"case/editor/sign_initial_editor.html","tf":0.005154639175257732}}}}}}},"记":{"docs":{},"录":{"docs":{},"状":{"docs":{},"态":{"docs":{},"的":{"docs":{},"输":{"docs":{},"入":{"docs":{},"框":{"docs":{},",":{"docs":{},"基":{"docs":{},"类":{"docs":{},"b":{"docs":{},"i":{"docs":{},".":{"docs":{},"w":{"docs":{},"i":{"docs":{},"d":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{"case/editor/state_editor.html":{"ref":"case/editor/state_editor.html","tf":0.005747126436781609}}}}}}}}}}}}}}}}}}}}}},"替":{"docs":{},"换":{"docs":{},"内":{"docs":{},"容":{"docs":{"case/list/list.select.html":{"ref":"case/list/list.select.html","tf":0.009433962264150943},"case/loader/lazy_loader.html":{"ref":"case/loader/lazy_loader.html","tf":0.01694915254237288},"case/loader/list_loader.html":{"ref":"case/loader/list_loader.html","tf":0.010752688172043012},"case/loader/sort_list.html":{"ref":"case/loader/sort_list.html","tf":0.010752688172043012}}}},"为":{"docs":{},"新":{"docs":{},"的":{"docs":{},"内":{"docs":{},"容":{"docs":{"detailed/table/bi.preview_table.html":{"ref":"detailed/table/bi.preview_table.html","tf":0.006756756756756757}}}}},"内":{"docs":{},"容":{"docs":{"detailed/table/bi.responsive_table.html":{"ref":"detailed/table/bi.responsive_table.html","tf":0.005263157894736842}}}}}}}},"懒":{"docs":{},"加":{"docs":{},"载":{"docs":{},"l":{"docs":{},"o":{"docs":{},"a":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{"case/loader/lazy_loader.html":{"ref":"case/loader/lazy_loader.html","tf":0.01694915254237288}}}}}}}}}}},"为":{"docs":{},"解":{"docs":{},"决":{"docs":{},"排":{"docs":{},"序":{"docs":{},"问":{"docs":{},"题":{"docs":{},"引":{"docs":{},"入":{"docs":{},"的":{"docs":{},"控":{"docs":{},"件":{"docs":{"case/loader/list_loader.html":{"ref":"case/loader/list_loader.html","tf":0.010752688172043012}}}}}}}}}}}}}},"排":{"docs":{},"序":{"docs":{},"列":{"docs":{},"表":{"docs":{"case/loader/sort_list.html":{"ref":"case/loader/sort_list.html","tf":0.010752688172043012}}}}}},"触":{"docs":{},"发":{"docs":{},"器":{"docs":{},"宽":{"docs":{},"度":{"docs":{"case/trigger/editor_trigger.html":{"ref":"case/trigger/editor_trigger.html","tf":0.02}}}}}}},"退":{"docs":{},"出":{"docs":{},"时":{"docs":{},"验":{"docs":{},"证":{"docs":{},"函":{"docs":{},"数":{"docs":{"case/trigger/editor_trigger.html":{"ref":"case/trigger/editor_trigger.html","tf":0.02}}}}}}}}},"验":{"docs":{},"证":{"docs":{},"函":{"docs":{},"数":{"docs":{"case/trigger/editor_trigger.html":{"ref":"case/trigger/editor_trigger.html","tf":0.02}}}}}},"有":{"docs":{},"二":{"docs":{},"级":{"docs":{},"下":{"docs":{},"拉":{"docs":{},"菜":{"docs":{},"单":{"docs":{},"的":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"b":{"docs":{},"o":{"docs":{"case/combo/text_value_downlist_combo.html":{"ref":"case/combo/text_value_downlist_combo.html","tf":0.013513513513513514}}}}}}}}}}}}}},"总":{"docs":{},"页":{"docs":{},"数":{"docs":{},"和":{"docs":{},"总":{"docs":{},"行":{"docs":{},"数":{"docs":{},"的":{"docs":{},"分":{"docs":{},"页":{"docs":{},"控":{"docs":{},"件":{"docs":{"case/pager/all_count_pager.html":{"ref":"case/pager/all_count_pager.html","tf":0.014705882352941176}}}}}}}}}}}}}}},"去":{"docs":{},"掉":{"docs":{},"所":{"docs":{},"有":{"docs":{},"内":{"docs":{},"容":{"docs":{"case/tree/branch_tree.html":{"ref":"case/tree/branch_tree.html","tf":0.02},"case/tree/handstand_branch_tree.html":{"ref":"case/tree/handstand_branch_tree.html","tf":0.019230769230769232},"case/tree/simple_tree.html":{"ref":"case/tree/simple_tree.html","tf":0.022222222222222223},"case/tree/level_tree.html":{"ref":"case/tree/level_tree.html","tf":0.017857142857142856},"case/tree/branch_relation.html":{"ref":"case/tree/branch_relation.html","tf":0.02040816326530612}}}}}}}},"摧":{"docs":{},"毁":{"docs":{},"元":{"docs":{},"素":{"docs":{"case/tree/display_tree.html":{"ref":"case/tree/display_tree.html","tf":0.030303030303030304}}}},"表":{"docs":{"case/table/adaptive_table.html":{"ref":"case/table/adaptive_table.html","tf":0.006060606060606061},"case/table/tree_table.html":{"ref":"case/table/tree_table.html","tf":0.00510204081632653},"case/table/layer_tree_table.html":{"ref":"case/table/layer_tree_table.html","tf":0.00510204081632653},"detailed/table/bi.preview_table.html":{"ref":"detailed/table/bi.preview_table.html","tf":0.006756756756756757},"detailed/table/bi.responsive_table.html":{"ref":"detailed/table/bi.responsive_table.html","tf":0.005263157894736842},"detailed/table/bi.excel_table.html":{"ref":"detailed/table/bi.excel_table.html","tf":0.0055248618784530384},"detailed/table/bi.page_table.html":{"ref":"detailed/table/bi.page_table.html","tf":0.004651162790697674}}}}},"树":{"docs":{},"展":{"docs":{},"示":{"docs":{},"控":{"docs":{},"件":{"docs":{"case/tree/display_tree.html":{"ref":"case/tree/display_tree.html","tf":0.030303030303030304}}}}}},"状":{"docs":{},"结":{"docs":{},"构":{"docs":{},"的":{"docs":{},"表":{"docs":{},"格":{"docs":{"case/table/tree_table.html":{"ref":"case/table/tree_table.html","tf":0.00510204081632653}}}}}}}},"下":{"docs":{},"拉":{"docs":{},"框":{"docs":{},",":{"docs":{},"继":{"docs":{},"承":{"docs":{},"b":{"docs":{},"i":{"docs":{},".":{"docs":{},"w":{"docs":{},"i":{"docs":{},"d":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{"detailed/tree/bi.multi_tree_combo.html":{"ref":"detailed/tree/bi.multi_tree_combo.html","tf":0.010869565217391304}}}}}}}}}}}}}}}}}},"配":{"docs":{},"置":{"docs":{},"项":{"docs":{"case/tree/display_tree.html":{"ref":"case/tree/display_tree.html","tf":0.030303030303030304}}}}},"简":{"docs":{},"单":{"docs":{},"的":{"docs":{},"多":{"docs":{},"选":{"docs":{},"树":{"docs":{"case/tree/simple_tree.html":{"ref":"case/tree/simple_tree.html","tf":0.022222222222222223}}}}}}}},"二":{"docs":{},"级":{"docs":{},"树":{"docs":{"case/tree/level_tree.html":{"ref":"case/tree/level_tree.html","tf":0.017857142857142856}},"下":{"docs":{},"拉":{"docs":{},"框":{"docs":{"detailed/combo/single_tree_combo.html":{"ref":"detailed/combo/single_tree_combo.html","tf":0.01694915254237288}}}}}},"参":{"docs":{},"数":{"docs":{"case/pager/direction_pager.html":{"ref":"case/pager/direction_pager.html","tf":0.00819672131147541},"detailed/table/bi.page_table.html":{"ref":"detailed/table/bi.page_table.html","tf":0.004651162790697674}}}},"可":{"docs":{},"选":{"docs":{},"节":{"docs":{},"点":{"docs":{},"下":{"docs":{},"拉":{"docs":{},"框":{"docs":{},"树":{"docs":{"detailed/combo/select_tree_combo.html":{"ref":"detailed/combo/select_tree_combo.html","tf":0.02040816326530612}}}}}}}}}}},"维":{"docs":{},"数":{"docs":{},"组":{"docs":{},",":{"docs":{},"每":{"docs":{},"个":{"docs":{},"元":{"docs":{},"素":{"docs":{},"代":{"docs":{},"表":{"docs":{},"一":{"docs":{},"条":{"docs":{},"路":{"docs":{},"径":{"docs":{"detailed/path/path_chooser.html":{"ref":"detailed/path/path_chooser.html","tf":0.019230769230769232}},",":{"docs":{},"相":{"docs":{},"较":{"docs":{},"于":{"docs":{},"p":{"docs":{},"a":{"docs":{},"t":{"docs":{},"h":{"docs":{},"_":{"docs":{},"c":{"docs":{},"h":{"docs":{},"o":{"docs":{},"o":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"多":{"docs":{},"一":{"docs":{},"个":{"docs":{},"属":{"docs":{},"性":{"docs":{},"d":{"docs":{},"i":{"docs":{},"r":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"来":{"docs":{},"指":{"docs":{},"定":{"docs":{},"方":{"docs":{},"向":{"docs":{"detailed/path/direction_path_chooser.html":{"ref":"detailed/path/direction_path_chooser.html","tf":0.02}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"交":{"docs":{},"叉":{"docs":{},"表":{"docs":{},"头":{"docs":{"case/table/adaptive_table.html":{"ref":"case/table/adaptive_table.html","tf":0.006060606060606061},"case/table/tree_table.html":{"ref":"case/table/tree_table.html","tf":0.00510204081632653},"case/table/layer_tree_table.html":{"ref":"case/table/layer_tree_table.html","tf":0.00510204081632653},"detailed/table/bi.responsive_table.html":{"ref":"detailed/table/bi.responsive_table.html","tf":0.005263157894736842},"detailed/table/bi.page_table.html":{"ref":"detailed/table/bi.page_table.html","tf":0.004651162790697674}}},"内":{"docs":{},"容":{"docs":{},"二":{"docs":{},"维":{"docs":{},"数":{"docs":{},"组":{"docs":{"detailed/table/bi.responsive_table.html":{"ref":"detailed/table/bi.responsive_table.html","tf":0.005263157894736842}}}}}}}}},"项":{"docs":{"case/table/adaptive_table.html":{"ref":"case/table/adaptive_table.html","tf":0.006060606060606061},"case/table/tree_table.html":{"ref":"case/table/tree_table.html","tf":0.00510204081632653},"case/table/layer_tree_table.html":{"ref":"case/table/layer_tree_table.html","tf":0.00510204081632653},"detailed/table/bi.page_table.html":{"ref":"detailed/table/bi.page_table.html","tf":0.004651162790697674}}}}},"键":{"docs":{"case/table/adaptive_table.html":{"ref":"case/table/adaptive_table.html","tf":0.006060606060606061},"case/table/tree_table.html":{"ref":"case/table/tree_table.html","tf":0.00510204081632653},"case/table/layer_tree_table.html":{"ref":"case/table/layer_tree_table.html","tf":0.00510204081632653},"detailed/table/bi.page_table.html":{"ref":"detailed/table/bi.page_table.html","tf":0.004651162790697674}}},"层":{"docs":{},"级":{"docs":{},"树":{"docs":{},"状":{"docs":{},"结":{"docs":{},"构":{"docs":{},"的":{"docs":{},"表":{"docs":{},"格":{"docs":{"case/table/layer_tree_table.html":{"ref":"case/table/layer_tree_table.html","tf":0.00510204081632653}}}}}}}}}}},"总":{"docs":{},"行":{"docs":{},"数":{"docs":{"case/pager/all_count_pager.html":{"ref":"case/pager/all_count_pager.html","tf":0.014705882352941176}}}},"页":{"docs":{},"数":{"docs":{"case/pager/all_count_pager.html":{"ref":"case/pager/all_count_pager.html","tf":0.014705882352941176},"case/pager/direction_pager.html":{"ref":"case/pager/direction_pager.html","tf":0.00819672131147541}}}}},"日":{"docs":{},"历":{"docs":{},"控":{"docs":{},"件":{"docs":{"case/calendar.html":{"ref":"case/calendar.html","tf":0.013888888888888888}}}}},"期":{"docs":{},"选":{"docs":{},"择":{"docs":{},"下":{"docs":{},"拉":{"docs":{},"框":{"docs":{},"(":{"docs":{},"弹":{"docs":{},"出":{"docs":{},"的":{"docs":{},"年":{"docs":{},"月":{"docs":{},"选":{"docs":{},"择":{"docs":{},"可":{"docs":{},"以":{"docs":{},"进":{"docs":{},"一":{"docs":{},"步":{"docs":{},"选":{"docs":{},"择":{"docs":{},"日":{"docs":{},"期":{"docs":{},")":{"docs":{"detailed/date/date_combo.html":{"ref":"detailed/date/date_combo.html","tf":0.058823529411764705}}}}}}}}}}}}}}}}}}},"可":{"docs":{},"以":{"docs":{},"选":{"docs":{},"择":{"docs":{},"时":{"docs":{},"分":{"docs":{},"秒":{"docs":{},")":{"docs":{"detailed/date/custom_date_time.html":{"ref":"detailed/date/custom_date_time.html","tf":0.045454545454545456}}}}}}}}}}},"的":{"docs":{},"弹":{"docs":{},"出":{"docs":{},"面":{"docs":{},"板":{"docs":{"detailed/date/date_pane_widget.html":{"ref":"detailed/date/date_pane_widget.html","tf":0.02702702702702703}}}}}}}}}}}}}},"剪":{"docs":{},"切":{"docs":{},"板":{"docs":{"case/clipboard.html":{"ref":"case/clipboard.html","tf":0.03125}}}}},"(":{"docs":{},"以":{"docs":{},"x":{"0":{"docs":{},",":{"docs":{"case/complex_canvas.html":{"ref":"case/complex_canvas.html","tf":0.020833333333333332}}}},"docs":{}}}},"颜":{"docs":{},"色":{"docs":{},"值":{"docs":{},"改":{"docs":{},"变":{"docs":{},"时":{"docs":{},"触":{"docs":{},"发":{"docs":{"case/color_chooser_popup.html":{"ref":"case/color_chooser_popup.html","tf":0.029411764705882353}}}}}}}}}},"各":{"docs":{},"种":{"docs":{},"s":{"docs":{},"e":{"docs":{},"g":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"case/segment.html":{"ref":"case/segment.html","tf":0.009345794392523364},"detailed/bi.button/segment.html":{"ref":"detailed/bi.button/segment.html","tf":10.009345794392523}}}}}}}}},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{"detailed/bi.button/items.html":{"ref":"detailed/bi.button/items.html","tf":10.01063829787234}}}}}},"节":{"docs":{},"点":{"docs":{},"n":{"docs":{},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{"detailed/bi.button/node.html":{"ref":"detailed/bi.button/node.html","tf":10.00925925925926}}}}}}}}}},"三":{"docs":{},"级":{"docs":{},"参":{"docs":{},"数":{"docs":{"detailed/table/bi.page_table.html":{"ref":"detailed/table/bi.page_table.html","tf":0.004651162790697674}}}}}},"其":{"docs":{},"他":{"docs":{},"事":{"docs":{},"件":{"docs":{},"详":{"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.010101010101010102}}}}}}}},"i":{"docs":{},"n":{"docs":{},"p":{"docs":{},"u":{"docs":{},"t":{"docs":{"detailed/text_input/bi.clear_editor.html":{"ref":"detailed/text_input/bi.clear_editor.html","tf":0.00980392156862745},"detailed/combo/single_tree_combo.html":{"ref":"detailed/combo/single_tree_combo.html","tf":0.01694915254237288}}}}}}}}}}}}},"编":{"docs":{},"辑":{"docs":{},"框":{"docs":{},"中":{"docs":{},"的":{"docs":{},"值":{"docs":{},",":{"docs":{"detailed/text_input/finetuning_number_editor.html":{"ref":"detailed/text_input/finetuning_number_editor.html","tf":0.037037037037037035}}}}}}}}},"年":{"docs":{},"份":{"docs":{},"选":{"docs":{},"择":{"docs":{},"下":{"docs":{},"拉":{"docs":{},"框":{"docs":{"detailed/year_combo.html":{"ref":"detailed/year_combo.html","tf":0.025}}}}}}}},"月":{"docs":{},"选":{"docs":{},"择":{"docs":{},"下":{"docs":{},"拉":{"docs":{},"框":{"docs":{"detailed/date/year_month_combo.html":{"ref":"detailed/date/year_month_combo.html","tf":0.029411764705882353}}}}}}}},"季":{"docs":{},"度":{"docs":{},"选":{"docs":{},"择":{"docs":{},"下":{"docs":{},"拉":{"docs":{},"框":{"docs":{"detailed/date/year_quarter_combo.html":{"ref":"detailed/date/year_quarter_combo.html","tf":0.03225806451612903}}}}}}}}}},"限":{"docs":{},"定":{"docs":{},"可":{"docs":{},"选":{"docs":{},"日":{"docs":{},"期":{"docs":{},"的":{"docs":{},"上":{"docs":{},"限":{"docs":{"detailed/year_combo.html":{"ref":"detailed/year_combo.html","tf":0.025},"detailed/date/date_pane_widget.html":{"ref":"detailed/date/date_pane_widget.html","tf":0.02702702702702703}}}},"下":{"docs":{},"限":{"docs":{"detailed/year_combo.html":{"ref":"detailed/year_combo.html","tf":0.025},"detailed/date/date_pane_widget.html":{"ref":"detailed/date/date_pane_widget.html","tf":0.02702702702702703}}}}}}}}}}},"月":{"docs":{},"份":{"docs":{},"选":{"docs":{},"择":{"docs":{},"下":{"docs":{},"拉":{"docs":{},"框":{"docs":{"detailed/month_combo.html":{"ref":"detailed/month_combo.html","tf":0.03571428571428571}}}}}}}}},"季":{"docs":{},"度":{"docs":{},"选":{"docs":{},"择":{"docs":{},"下":{"docs":{},"拉":{"docs":{},"框":{"docs":{"detailed/quarter_combo.html":{"ref":"detailed/quarter_combo.html","tf":0.03571428571428571}}}}}}}}},"具":{"docs":{},"体":{"docs":{},"配":{"docs":{},"置":{"docs":{},"方":{"docs":{},"法":{"docs":{},"见":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"b":{"docs":{},"o":{"docs":{"detailed/down_list_combo.html":{"ref":"detailed/down_list_combo.html","tf":0.006578947368421052}}}}}}}}}}}}}},"区":{"docs":{},"间":{"docs":{},"不":{"docs":{},"合":{"docs":{},"法":{"docs":{},"的":{"docs":{},"状":{"docs":{},"态":{"docs":{},"事":{"docs":{},"件":{"docs":{"detailed/numeric_interval.html":{"ref":"detailed/numeric_interval.html","tf":0.017241379310344827}}}}}}}}}},"合":{"docs":{},"法":{"docs":{},"的":{"docs":{},"状":{"docs":{},"态":{"docs":{},"事":{"docs":{},"件":{"docs":{"detailed/numeric_interval.html":{"ref":"detailed/numeric_interval.html","tf":0.017241379310344827}}}}}}}}},"是":{"docs":{},"否":{"docs":{},"成":{"docs":{},"立":{"docs":{},")":{"docs":{"detailed/numeric_interval.html":{"ref":"detailed/numeric_interval.html","tf":0.017241379310344827}}}}}}}}},"路":{"docs":{},"径":{"docs":{},"选":{"docs":{},"择":{"docs":{"detailed/path/path_chooser.html":{"ref":"detailed/path/path_chooser.html","tf":0.019230769230769232}}}}}}},"length":9351},"corpusTokens":["!==","\"","\"\"","\"\",","\"\"]","\"\"],","\"\"}","\"#wrapper\",","\"+\"","\".\"","\"0\",","\"0fbd0dc648f41e97\",","\"1\"","\"1\",","\"100%\"","\"100%\",","\"11\",","\"12\",","\"123\",","\"1f4711c201ef1842\",","\"2\",","\"2010年\",","\"3\"","\"3\",","\"456\",","\"5\"","\"8c4460bc3605685e\",","\"a\"","\"a\");","\"a\",","\"a1\",","\"a1字段\"},","\"aaa\"","\"aaa\",","\"aba\"","\"aba\",","\"acc\"","\"acc\",","\"auto\"","\"b\",","\"b2\",","\"b2...\",","\"b2字段\"","\"bbb\"","\"bbb\",","\"bi","\"bi.adaptive_table\",","\"bi.arrow_group_node\",","\"bi.branch_relation\",","\"bi.branch_tree\",","\"bi.bubble_combo\",","\"bi.button\",","\"bi.button_group\"","\"bi.button_group\",","\"bi.button_group\",behaviors:","\"bi.button_group\",items:","\"bi.button_tree\",","\"bi.button_tree\",choosetype:","\"bi.canvas\",","\"bi.center\",","\"bi.center\",hgap:","\"bi.center_adapt\",","\"bi.code_editor\",","\"bi.collection_table\",","\"bi.collection_view\",","\"bi.color_chooser\",","\"bi.color_chooser_popup\",","\"bi.combo\",","\"bi.combo_group\",","\"bi.complex_canvas\",","\"bi.custom_date_time_combo\",","\"bi.custom_tree\",","\"bi.custom_tree\"}}","\"bi.date_combo\",","\"bi.date_pane_widget\",","\"bi.direction_path_chooser\",","\"bi.display_tree\",","\"bi.editor\",","\"bi.editor_trigger\",","\"bi.excel_table\",","\"bi.expander\",","\"bi.file_manager\",","\"bi.formula_editor\",","\"bi.grid_table\",","\"bi.grid_view\",","\"bi.handstand_branch_tree\",","\"bi.horizontal_adapt\",","\"bi.horizontal_auto\",","\"bi.horizontal_float\",","\"bi.htape\",","\"bi.icon_combo\",","\"bi.icon_text_icon_item\",","\"bi.icon_text_item\",","\"bi.icon_text_node\",","\"bi.icon_trigger\",","\"bi.label\",","\"bi.label\"},","\"bi.label\"}}","\"bi.layer_tree_table\",","\"bi.lazy_loader\",","\"bi.left\",","\"bi.level_tree\",","\"bi.list_loader\",","\"bi.loader\",","\"bi.multi_popup_view\",","\"bi.multi_select_combo\",","\"bi.multi_select_item\",","\"bi.multi_tree_combo\",","\"bi.multifile_editor\",","\"bi.multilayer_select_tree_combo\",","\"bi.multilayer_single_tree_combo\",","\"bi.navigation\",","\"bi.numerical_interval\",","\"bi.page_table\",","\"bi.pager\",","\"bi.panel\",","\"bi.path_chooser\",","\"bi.plus_group_node\",","\"bi.popup_panel\",","\"bi.popup_view\",","\"bi.preview_table\",","\"bi.relation_view\",","\"bi.resizable_table\",","\"bi.responsive_table\",","\"bi.right\",","\"bi.search_editor\"}","\"bi.searcher\",","\"bi.searcher_view\",","\"bi.searcher_view\"}","\"bi.segment\",","\"bi.select_list\",","\"bi.select_tree_combo\",","\"bi.shelter_editor\",","\"bi.sign_editor\",","\"bi.sign_initial_editor\",","\"bi.simple_tree\",","\"bi.single_select_item\",","\"bi.single_select_radio_item\",","\"bi.single_tree_combo\",","\"bi.slider\",","\"bi.sort_list\",","\"bi.state_editor\",","\"bi.static_combo\",","\"bi.svg\",","\"bi.switch_tree\",","\"bi.switcher\",","\"bi.tab\",","\"bi.table\",","\"bi.table_view\",","\"bi.td\",","\"bi.text_button\",","\"bi.text_editor\",","\"bi.text_item\",","\"bi.text_value_combo\",","\"bi.text_value_down_list_combo\",","\"bi.textarea_editor\",","\"bi.tree_table\",","\"bi.triangle_group_node\",","\"bi.vertical\"","\"bi.vertical\",","\"bi.vertical\"}]}","\"bi.vertical\"}]}}","\"bi.vertical_adapt\",","\"bi.virtual_group\",","\"bi.virtual_list\",","\"bi.vtape\",","\"bi.year_month_combo\",","\"bi.year_quarter_combo\",","\"body\",","\"bottom\"","\"button_group\"","\"c\",","\"c1\",","\"c1字段\"}","\"c2\",","\"c2字段\"}","\"c6d72d6c7e19a667\",","\"center","\"chart","\"check","\"click\"","\"close","\"column","\"defa1f7ba8b2684a客户id\"","\"delet","\"direction\":","\"div\"","\"dot","\"e351e9f1d8147947合同id\",","\"expander\"","\"fill\",","\"floatcenter与center的不同在于,它可以控制最小宽度和最大宽度\",","\"green\");","\"horizont","\"http://www.easyicon.net/api/resizeapi.php?id=1206741&size=128\",","\"id\",","\"item\"","\"label1\",","\"layout","\"left","\"left\"","\"left,right,center\"","\"middle\"","\"move","\"mvc","\"normal\"","\"pull","\"red\",","\"red\"});","\"region\":","\"regiontext\":","\"renam","\"right","\"success\"","\"switcher\"","\"tab1\",","\"tab2\",","\"tab3","\"text\"","\"text\",","\"text\":","\"toast测试\"","\"top\"","\"valu","\"value\":","\"value_combo\",","\"vertic","\"warning\"","\"warning\",","\"xxxx\"}],","\"一月\",","\"三角形的节点\"","\"上一页\"","\"下一页\"","\"主键\",","\"供应商基本信息\",","\"前进\",","\"十字形的节点\"","\"单选item\"","\"单选项\"","\"原始值\",","\"右边的垂直居中\",","\"合同id\",","\"合同信息\",","\"合同的回款信息\",","\"后退\",","\"基本标签\"","\"复选item\"","\"复选项\"","\"字段不可重名!\",","\"学号\",","\"客户id\",","\"客户信息\",","\"尾页\"","\"左边的垂直居中\",","\"张三\"","\"标题\",","\"根目录\"","\"根目录\",","\"比\",","\"测试\"","\"测试\",","\"点击弹出floatbox\",","\"第\"","\"第一级子目录1\"","\"第一级子目录2\"","\"第一级目录1\"","\"第一级目录1\",","\"第一行第一列\"","\"第一行第三列\"","\"第一行第二列\"","\"第一项\",","\"第三项\",","\"第二级文件1\"","\"第二级文件1\",","\"第二行第一列\"","\"第二行第二列\"","\"第二项\",","\"箭头节点\"","\"表头1\"","\"表头2\"","\"表头3\"","\"这个是带标记的\"","\"这里设置了hgap(水平间距),vgap(垂直间距)\",","\"这里设置了lgap,rgap,tgap,bgap\",","\"采购订单\",","\"采购订单xxx\",","\"面板1\"","\"面板2\"","\"页\"","\"项目1\",","\"项目2\",","\"首页\",","\"默认值\",","\"默认风格\"","%","'#wrapper',","''","'',","'1',","'1900","'2',","'2099","'3',","'bi.all_count_pager',","'bi.border',","'bi.bubble',","'bi.button',","'bi.calendar',","'bi.clear_editor',","'bi.clipboard',","'bi.direction_pager',","'bi.down_list_combo',","'bi.fine_tuning_number_editor',","'bi.float_center',","'bi.grid',","'bi.horizontal',","'bi.icon_button',","'bi.image_button',","'bi.label',","'bi.left_right_vertical_adapt',","'bi.list_pane',","'bi.month_combo',","'bi.quarter_combo',","'bi.search_editor',","'bi.text_button',","'bi.toast',","'bi.vertical',","'bi.year_combo',","'body'","'body',","'button1'}},{height:","'button1'}},{width:","'button2'}},{height:","'button2'}},{width:","'button3'}}","'button3'}}]","'common',","'demo.vertical',","'fill',","'fill',el:","'fill']","'fill'],","'label1'}},{","'label2'},{","'label3'}","'sum(c5,","'一般按钮',","'文字按钮',","'点击我弹出一个消息框',","'简单toast测试',","()","(family,","(i","(i,","(index)","(options,","(row1,","(src,x,y,w,h)分别表示图片路径,绘制的原点横、纵坐标,宽、高","(v)","(width,height)分别表示画布宽高","(x,","(x,y)","(x,y,r)分别表示原点的横坐标,纵坐标,以及半径","(x,y,rx,ry)分别表示原点的横、纵坐标,以及水平半径和垂直半径","(x,y,text)分别表示绘制的原点横、纵坐标以及要绘制的文本内容","(x,y,w,h,color)分别表示左上角的横坐标、纵坐标,矩形宽、高、以及绘制的颜色","(x,y,w,h,r)分别表示左上角的横坐标、纵坐标,矩形宽、高、以及矩形的圆角bord","(x,y,width,height,fit)分别表示可视区域原点坐标以及可视区域宽高,以及是否根据可视区域进行调整","(x0,","(注:","*","+",",一些需要在设置状态后做的额外工作可以通过重写_setxxx来实现)","...",".attr({stroke:","/","//","//7表示八月","//width:","//初始化当前页,","//必选项","//最大日期","//最小日期","0","0\",","0,","0,behaviors:","0,layouts:","0,vgap:","01","01'","01',","0}]","1","1\",","1)","1,","1.1\",","1.222222222222222222222222222222222222\",","10","10)","10,","100","100,","100,el:","100;","100],","11","11,","110,","1111\",","12","12,","130],","145","16,","18,","1:","1;}","1],","1表示自动","1,这里虽然设置label的高度30,但是最终影响高度的是center布局\",","2","2\",","2,","2.1\",","2.2\",","20","20,","200","200,","200,el:","200]","200],","2010,","2015","2015,","21,","22,","24","25","25,","26)',","2:","2,为了演示label是占满整个的,用了一个whitespace:normal\",","3","30","30,","300","300,","30;","31'","31',","35","37","4","400","400,","5,","50","50,","500","500,","500],","50],","6,","600","600,","7","7,","70,","8),","80,","90","90,",":","=","[","[\"\",","[0,","[10,","[100,","[20,","[200,","[200,200],","[50,50,200,250,400],","[82,","[[{","[[{el:","[]","[],","[{","[{type:","[{width:","]","accept","adapt","adapter:","adaptive_t","adapt上下自适应\",","adapt左右自适应\",","add","additem","additem(arr)","addwidget","adjustheight","adjustlength","adjustlength:","adjustview","adjustwidth","adjustxoffset","adjustyoffset","aftercardcr","aftercardshow","aftercopi","aftercopy:","alert","align","align:","all_count_pag","allowblank","api","array","array/numb","attr","attribut","auto左右自适应\",","b","b:","basecl","basic_button","basic_sure\")","beforeclick","beforecr","beforedestroy","beforemount","behavior","bg\"","bg1\"","bg1\",","bg2\"","bg2\",","bg3\"","bg3\",","bg4\",","bg5\"","bg5\",","bg6\"","bgap","bi.adaptive_t","bi.all_count_pag","bi.barpopoversection()).open(id);","bi.basic_button","bi.basicbutton","bi.bord","bi.branch_rel","bi.branch_tre","bi.bubbl","bi.bubble_combo","bi.button","bi.button_group","bi.button_tre","bi.buttongroup.choose_type_multi,","bi.buttongroup.choose_type_singl","bi.buttongroup.choose_type_single,","bi.calendar","bi.canva","bi.cent","bi.center_adapt","bi.clear_editor","bi.cleareditor.event_clear","bi.clipboard","bi.code_editor","bi.collection_t","bi.collection_view","bi.collectionview.event_scrol","bi.color_choos","bi.color_chooser_popup","bi.combo","bi.combo.event_after_hideview","bi.combo.event_after_init","bi.combo.event_after_popupview","bi.combo.event_before_hideview","bi.combo.event_before_popupview","bi.combo.event_chang","bi.combo.event_collaps","bi.combo.event_expand","bi.combo.event_trigger_chang","bi.combo_group","bi.createwidget();}","bi.createwidget({","bi.custom_tre","bi.customdatetimecombo.event_cancel","bi.customdatetimecombo.event_confirm","bi.direction.bottom","bi.direction.right,","bi.direction.top","bi.direction_pag","bi.display_tre","bi.downlistcombo.event_before_popupview","bi.downlistcombo.event_chang","bi.downlistcombo.event_son_value_chang","bi.editor","bi.editor.event_backspac","bi.editor.event_blur","bi.editor.event_chang","bi.editor.event_click","bi.editor.event_confirm","bi.editor.event_empti","bi.editor.event_ent","bi.editor.event_error","bi.editor.event_focu","bi.editor.event_key_down","bi.editor.event_paus","bi.editor.event_remov","bi.editor.event_restrict","bi.editor.event_spac","bi.editor.event_start","bi.editor.event_stop","bi.editor.event_valid","bi.editor_trigg","bi.emptyfn","bi.excel_t","bi.expand","bi.expander.event_after_hideview","bi.expander.event_after_init","bi.expander.event_after_popupview","bi.expander.event_before_hideview","bi.expander.event_before_popupview","bi.expander.event_chang","bi.expander.event_collaps","bi.expander.event_expand","bi.expander.event_trigger_chang","bi.extend(v,","bi.extend({},","bi.finetuningnumbereditor.event_confirm","bi.float_box","bi.float_cent","bi.flow","bi.formula_editor","bi.grid","bi.grid_t","bi.grid_view","bi.gridview.event_scrol","bi.handstand_branch_tre","bi.horizont","bi.horizontal_adapt","bi.horizontal_auto","bi.horizontal_float","bi.horizontalalign.right,","bi.htap","bi.i18ntext(\"bi","bi.icon_button","bi.icon_combo","bi.icon_trigg","bi.image_button","bi.label","bi.layer_tree_t","bi.lazy_load","bi.left_right_vertical_adapt","bi.level_tre","bi.list_load","bi.list_pan","bi.load","bi.makearray(100,","bi.map([{value:","bi.monthcombo.event_before_popupview","bi.monthcombo.event_confirm","bi.msg","bi.msg.alert(title,","bi.msg.confirm('测试消息框',\"我是测试消息框的内容\");","bi.msg.toast(\"这是一条简单的数据\");","bi.multi_popup_view","bi.multi_select_item","bi.multi_tree_combo","bi.multifile_editor","bi.multifileeditor.event_progress","bi.multifileeditor.event_upload","bi.multifileeditor.event_uploadstart","bi.multilayer_select_tree_combo","bi.multilayer_single_tree_combo","bi.multiselectcombo.event_confirm","bi.multitreecombo.event_confirm","bi.navig","bi.nodebutton","bi.numericalinterval.event_error","bi.numericalinterval.event_valid","bi.pag","bi.page_t","bi.pager.event_after_popul","bi.pan","bi.panel","bi.popovers.create(id,","bi.popovers.remove(id);","bi.popup_panel","bi.popup_view","bi.popuppanel.event_chang","bi.popuppanel.event_click_toolbar_button","bi.popuppanel.event_clos","bi.preview_t","bi.quartercombo.event_before_popupview","bi.quartercombo.event_confirm","bi.random(1,","bi.resizable_t","bi.responsive_t","bi.search","bi.search_editor","bi.searcheditor.event_clear","bi.searcher.event_after_init","bi.searcher.event_chang","bi.searcher.event_paus","bi.searcher.event_search","bi.searcher.event_start","bi.searcher.event_stop","bi.searcher_view","bi.select_list","bi.select_tree_combo","bi.selection.singl","bi.sgement","bi.shelter_editor","bi.sign_editor","bi.sign_initial_editor","bi.simple_tre","bi.singl","bi.single_select_item","bi.single_select_radio_item","bi.single_tree_combo","bi.singletreecombo.event_before_popupview","bi.slid","bi.sort_list","bi.state_editor","bi.static_combo","bi.svg","bi.switch","bi.switch_tre","bi.tabl","bi.table.event_table_after_init","bi.table.event_table_res","bi.table.event_table_scrol","bi.table_view","bi.td","bi.text_button","bi.text_editor","bi.text_trigg","bi.text_value_combo","bi.text_value_down_list_combo","bi.textarea_editor","bi.toast","bi.tree_t","bi.uuid()","bi.uuid();","bi.vert","bi.vertical_adapt","bi.verticalalign.middl","bi.verticalalign.top","bi.virtual_group","bi.virtual_list","bi.vtap","bi.widget","bi.yearcombo.event_before_popupview","bi.yearcombo.event_confirm","bi.yearmonthcombo.event_before_popupview","bi.yearmonthcombo.event_confirm","bi.yearquartercombo.event_before_popupview","bi.yearquartercombo.event_confirm","bindev","block","blocksiz","blur","blur事件","boolean","border","border\",","bottom","bottom,left","bottom,right","bottom:","branch","branch_expander组件配置项","branch_expander配置","branch_rel","branch_tre","bubbl","bubble_combo","button","button_group","button_tre","button的选中状态","calendar","callback","callback({","callback)","callback,","canva","canvas.branch(55,","canvas.circle(150,","canvas.stroke();","canvas绘图,基类bi.widget","card\",","cardcreat","cardcreator:","cardnam","case","cellsizeandpositiongett","cellsizeandpositiongetter:","center","center:","center_adapt","centeroffset","centeroffset:","check","childern","children:","choose_type_singl","choose_type_single,choose_type_multi,choose_type_all,choose_type_none,choose_type_default","choosetyp","choosetype:","choosetype可选值为","circl","cl","class类名","clear","click","click,","click,hov","clipboard","close","closemax","closemin","cls:","cls:\"layout","cneter","code_editor","codingpages:","collection_t","collection_view","collectionview,指定行列可以删除看不见的元素","color","color)分别表示原点的横坐标,纵坐标,半径以及颜色","color_choos","color_chooser_popup","column","column:","columns","columns:","columnsize:","columnwidthgett","columnwidthgetter:","combo","combo,基类bi.widget","comboclass","combo弹出层位置","combo类","common","common,success,warning,ignor","complex_canva","confirm","const","content","content)","context","copi","copy:","count","count:","creat","crosshead","crossheader,","crossheader:","crossitem","crossitems,","crossitems:","curr","curr:","custom_date_tim","custom_tre","data","date_combo","date_pane_widget","day","day:","day}","dblclick,","defaultshowindex","demo","destroy","destroywhenhid","dialog","direct","direction:","direction_pag","direction_path_choos","disabl","disabled\",","disabled:","disabledhov","disableerror","disableselect","disablewatermark","dishov","display_tre","dobehavior","doclick","dohighlight","doredmark","dosearch","down_list_combo","dynamic:","dynamic:false}","dynamic:true}","dynamicshow","dynamicshowfirstlast","dynamicshowprevnext","e","east:","editor","editor_trigg","editor的value发生改变触发","el","el:","element:","element:\"#wrapper\",","element:\"body\",","ellips","empti","enabl","enableerror","enablehov","enablewatermark","end)","errortext","errortext:","estimatedcolumns","estimatedcolumnsize:","estimatedrows","estimatedrowsize:","event_after_hideview","event_after_init","event_after_popupview","event_before_hideview","event_before_popupview","event_collaps","event_expand","event_float_box_clos","event_paus","event_search","event_start","event_stop","event_trigger_chang","event_value_chang","excel_t","expand","expanderclass","expander初始化后触发","expander展开触发","expander收起触发","extracl","faker.name.findname(),","fals","false,","field","fieldtextvaluemap","file_manag","finetuning_number_editor","fineui2.0引入生命周期后,widget的实现类不需要重写setenable,setvalid等方法,会自动调用子组件的对应方法","fineuidoc","fineui文档","first","first:","firstpag","firstpage:","float_box","float_cent","floatbox弹出层,bi.widget","float左右自适应\",","flow","fn","focu","focus事件","font\"","font\",","font,","footer","footerrows","forcecent","forcenotselect","forceselect","foreign:","formula_editor","freezecol","freezecols:","function","function()","function(){","function(){return","function(i,","function(idx,","function(op.callback)","function(option)","function(options,","function(row1,","function(v)","getallbutton","getallleav","getbyid","getcalculatecolumns","getcalculateregioncolumns","getcalculateregionrows","getcheckstr","getclientregioncolumns","getcolumn","getcolumns","getcurrentpag","getelementbypoint","getelementsbypoint","geterrortext","getfont","getformulastr","getheight","gethpag","getimageheight","getimagewidth","getindexbyvalu","getitems:","getkeyword","getlastvalidvalu","getlefthorizontalscrol","getmaxscrollleft","getmaxscrolltop","getnam","getnodebyid","getnodebyvalu","getnotselectedbutton","getnotselectedvalu","getpopupposit","getregioncolumns","getregions","getrighthorizontalscrol","getscrollleft","getscrollregioncolumns","getscrollregionrows","getscrolltop","getselect","getselectedbutton","getselectedcard","getselectedid","getselectedtab","getselectedvalue()","getsrc","getstat","getstyl","gettab","gettag","gettext","gettiptyp","gettitl","getusedfield","getvalu","getvalue,","getverticalscrol","getview","getvlau","getvpag","getwarningtitl","getwidgetbynam","getwidth","githubpages:","gradient","grid","grid_tabl","grid_view","group","group_combo","groups:","h","ha","handl","handler","handler:","handstand_branch_tre","hashnext","hashprev","hasmatch","hasnext","hasnext:","hasprev","hasverticalscrol","hasvnext","hasvprev","haswidget","header","header,","header:","headercellstylegett","headerrows","height","height:","height:30","height:50,","hgap","hgap:","hide","hidecheck","hideview","hollow","horizont","horizontal:","horizontal_adapt","horizontal_auto","horizontal_float","horizontaloverscans","hover","hover\"","hoverclass","hover事件","hover类","htape","html标签","http://fanruan.coding.me/fineui","http://fanruan.coding.me/fineui/dist/index.html","http://www.finedevelop.com/display/dr/fineui","http://www.finedevelop.com/pages/viewpage.action?pageid=15330077","https://fanruan.github.io/fineui","icon_button","icon_combo","icon_trigg","iconclass","iconclass:","iconcls1:","iconcls:","iconheight","iconwidth","icon的类名","id","id:","imag","image_button","index","inittre","inputtyp","insertfield","insertfunct","insertoper","insertparam","insertstr","invalid","invis","isallselect","isautosearch","isautosearch为false时启用","isautosync","isdefaultinit","isdisableselect","isedit","isen","isexpand","isfinald","isforcenotselect","isforceselect","isfrontd","ismount","isneedadjustheight","isneedadjustwidth","isneedfreez","isneedfreeze:","isneedmerg","isneedmerge:","isneedres","isneedresize:","isol","isonc","isopen","isreadonli","isresizeadapt","isresizeadapt:","issearch","isselect","isshadowshowingonselect","isstatevalid()","isvalid","isviewvis","isvis","item","item)","item,","item.text,","items,","items:","items:[]","itemscr","itemscreator:","items构造器","json","jump","key","key,valu","key:","keydown时触发","keyword","keywords:","key:键,value:值","kms:","label","last","last:","lastpag","lastpage:","layer_panel","layer_tree_t","layout","layouts:","lazy_load","lclick","left","left,center,right","left,right,cent","left:","left_right_vertical_adapt","letter_spacing,","level","level,","level:","level_tre","lgap","lhgap","lhgap:","line","line_spacing)","lineheight","linewidth:","list_load","list面板,基类bi.widget","llgap","load","loader","logic","logic:","lrgap","mark","masker","masker:","masker层","matcher","matchresult,","math.floor(index","max","max:","maxcolumns","maxheight","maxheight:","maxsiz","maxwidth","mergecol","mergecols:","mergerul","messag","message,","min","min:","min_width","mincolumns","mincolumnsize:","minheight","minwidth","month","month,","month:","month_combo","monthbehavior","mount","mousedown,","mouseup,","multi_popup_lay","multi_select_combo","multi_select_item","multi_tree_combo","multifile_editor","multilayer_select_tree_combo","multilayer_single_tree_combo","multipl","m})","name","name,widget","nameorwidget","navig","new","next","no_select\")","no_selected_item\")","node","node:","node_button","normal,nowrap","north,east,west,south,cent","north:","nowrap","null","null),","number","number,funct","number/boolean","number/funct","number/str","numeric_interv","obejct","obj({year:","object","object:","offset:","offsetstyl","onc","once:","onject","onkeydown","onload","onsearch","op","open","open:","opt","option.count","origin,","overflowi","overflowx","overlap","overscancolumncount","overscanheight","overscanrowcount","padding值","page","page_t","pager","pager:","pager刷新完成事件","pages:","pages为数字时可用","pages为数字时可用,","pane","pane_list","panel","panel的value发生改变触发","panel的关闭事件","param","paramformatt","path","path_choos","pathstr","pid:","poplulate(items)","popul","populate(bi.map(bi.map(bi.makearray(3,","populate)","populate这几个方法来设置值,获取值(展示类控件除外)和刷新控件","popup","popup\"","popup:","popup组件","prependitem","prev","preview_t","primary:","print","prompt","props.clear","py","quarter_combo","quitcheck","radius,","radius大小","readonli","rect","redmark:","refresh","region:","regioncolumns","regiontext:","relation_view","remov","removeitem","removeitemat","removetab","removewidget","render","reset","resetheight","resetlastvalidvalu","resetlistheight","resetlistwidth","resetwidth","resiz","resizable_t","resizehead","responsive_t","restor","result,","return","rgap","rhgap","rhgap:","right","right:","root","row","row2","row2)","row:","rowheightgett","rowheightgetter:","rows:","rowsiz","rowsize:","rrgap","scrolli","scrollleft","scrollleft,","scrollleft:","scrolltop","scrolltop:","scrolltop}","scrollx","searcher","searcher.populate([{","searchresult,","sectionprovid","segment","select","select_list","select_tree_combo","selectal","selected:","selectedtim","sequencecellstylegett","set","setadapt","setallpag","setallselect","setclosemaxenable(boolean)","setcloseminenable(boolean)","setcolumns","setcount","seten","setenabledvalu","seterrortext","seterrorvis","setestimatedcolumns","setestimatedrows","setfieldtextvaluemap","setfinish","setfunct","setheadercolumns","setheight","sethpag","sethpagervis","setimageheight","setimagewidth","setlefthorizontalscrol","setmaxenable(boolean)","setminenable(boolean)","setnotselectedvalu","setnumtip(string)","setopen","setoverflowi","setoverflowx","setpagervis","setregioncolumns","setrighthorizontalscrol","setscrollleft","setscrolltop","setselect","setsiz","setsrc","setstart","setstat","setstorecolor","setstyl","settag","settext","settextstyl","settings:","settipvis","settitl","settoolbarvis","setvalid","setvalid这几个方法来设置使能,是否可见,是否有效状态,并且在fineui2.0之后,会自动给子组件设置同样的状态,不要重写这些方法,一些需要在设置状态时的额外操作可以通过重写_setxxx来实现","setvalu","setverticalscrol","setviewbox","setvis","setvisible,","setvpag","setvpagervis","setwarningtitl","setwidth","setzindex","shadow","shelter_editor","show","showhint","showview","sign_editor","sign_initial_editor","simple_tre","singl","single_select_item","single_select_radio_item","single_tree_combo","size,","slider","slider插件","solid","sort_list","sourc","south:","src","src:","start,","state_editor","static_combo","sting,object","stopev","stoppropag","stopsearch","str","stretch)","string","string,","string,object","string/funct","string/numb","stroke","strokestyle:","style","style,","success,warn","summarycellstylegett","svg","svg.path(\"m10,10l50,50m50,10l10,50\")","svg绘图,基类bi.widget","switch","switch_tre","switcher","switcherclass","switchselect","tab","tab:","tabl","table_view","table作为一个列表集合存在,继承bi.widget","table初始化完成后触发","table大小调整时触发(窗口变化等)","tab标签页","tab页元素","tag","tagnam","td","text","text:","text_button","text_trigg","text_value_combo","text_value_downlist_combo","textalign","textarea_editor","textheight","textheight:","textwidth","textwidth:","tgap","this.button_group,","tiptext","tiptyp","titl","title,","title,opt","title:","titlebutton","titlebuttons:","title文本","title类型","toast","toast提示","toggl","tool","toolbar位置","toolbar栏","top","top,bottom,left,right,(top,left),(top,right),(bottom,left),(bottom,right)","top,bottom,left,right,custom","top,left","top,right","top:","tree","tree.inittree({","tree.populate(items);","tree_tabl","trigger","triggercollaps","triggerexpand","triggerwidth","trigger发生改变触发","true","true,","true,fals","true/fals","true;}","true;}},","type","type:","unhighlight","unredmark","updat","upload","url","v","v)","v:","valid","validationcheck","valu","value){","value,","value,可以是单个值也可以是个数组","value:","value值","var","vertic","vertical:","vertical_adapt","verticalalign","verticaloverscans","vgap","vgap:","vgap:10","virtual_group","virtual_list","visibl","vtape","warningtitl","watermark","watermark:","watermark:\"带清除按钮的输入框\",","watermark:\"搜索\",","watermark:\"请输入内容\"","watermark:'请输入公式',","weight,","west:","whitespac","whitespace:","widget","width","width:","x1,","x2,","x2,y2...)","x:","y,","y0,","y0为根节点,分支到x1,y1,","y1)","y1,","y2)","y:","year","year:","year_combo","year_month_combo","year_quarter_combo","yearbehavior","z","zindex在1000w,bi.widget","zindex在1000w,基类bi.multipopupview","{","{dynamic:false}","{dynamic:true,scrolly:true}","{dynamic:true}","{el:","{height:","{offset:","{redmark:","{region:","{return","{scrollleft:","{text:","{type:","{type:\"bi.horizontal\",hgap:10,vgap:0}","{year,","{}","{},","{},layouts:","{},popup:","{}}","|","}","})","}))","}),","});","},","},items:","},{","};","}]","}],","}];","}]]","}]],","}]}","—","一组具有相同属性的元素集合,基类bi.buttongroup","一组具有相同属性的元素集合,基类bi.widget","一般的button父级,基类bi.singl","三级参数","上一页","上下的高度固定/左右的宽度固定,中间的高度/宽度自适应","上传结束后触发","上传过程中触发","下一页","下拉列表弹出前触发","下拉列表弹出后触发","下拉列表收起前触发","下拉列表收起后触发","下拉列表的弹出方式","下拉框初始化后触发","下拉框展开触发","下拉框弹出前触发","下拉框弹出层,","下拉框弹出层的多选版本,toolbar带有若干按钮,","下拉框收起触发","不仅有选中状态而且有展开状态,","不变\",","不考虑超出边界的情况,","为解决排序问题引入的控件","主要作用于setvalue方法","之后初始值会一直显示的editor","事件","事件名称","事件方法","事件详见editor","二级参数","二级可选节点下拉框树","二级树","二级树下拉框","二维数组,每个元素代表一条路径","二维数组,每个元素代表一条路径,相较于path_chooser多一个属性direction来指定方向","交叉表内容二维数组","交叉表头","交叉项","代码文本框,基类bi.singl","代码设计文档","优化过的buttongroup,删除看不见的元素","使用populate来清空或者重置布局,不要使用empty,","使能选中","保存表","值","停止搜索","停止搜索触发(搜索框为空)","停止输入触发","储存","允许上传的文件类型","元素","元素内的空白处理方式","元素内空白处理方式","元素创造器","元素的垂直对齐方式","公式编辑控件,基类bi.singl","关联视图","关键字标红字符串","关闭弹出层","其他事件详见editor","其他事件详见input","具体配置方法见combo","内容项","内部元素间横向距离","内部元素间纵向距离","内部前插入","内部后插入","冻结列","冻结的列","冻结的列号,从0开始,isneedfreeze为true时生效","分页控件,基类bi.widget","分页表格","分页计数","分页选项","切换trigger图标的combo","切换显示或隐藏面板,bi.widget","切换树结构","切换状态","切换类","列宽","列宽数组","列宽,必设","列数","列表","列表创建器","列表展示的table,继承bi.widget","列表最前添加元素","列表最后添加元素","列项宽度","列项间的","创建卡导航页页之后","初始化之后","初始化当前页","判断是否怎么点击都不会被选中","判断是否显示","判断是否有上一页","判断是否有上一页,pages不可用时有效","判断是否有下一页","判断是否有下一页,pages不可用时有效","判断是否有前一页的函数","判断是否有前一页的方法","判断是否有后一页的方法","判断是否有效","判断是否有该组件","判断是否点击即选中","判断是否让选中","判断组件是否挂载","判断节点是否展开","刷新内容","刷新列表","刷新或者清空列表","刷新文本框","剪切板","加载tree结构","加载中","加载完成回调","加载完成的回调(测试了无效果)","加载完毕","加载控件,bi.widget","区间不合法的状态事件","区间合法的状态事件","区间是否成立)","单元格宽度集合","单元格控件,继承bi.layout","单选combo,trigger显示项不会改变","单选框item,基类bi.basicbutton","即是否保持搜索面板和adapter面板状态值的统一","去掉所有内容","参数","参数显示值构造函数","参数设置","参考button_group","参考input输入框类型","参考相关css属性","取消hover事件","取消文本标红","取消文本高亮","取消标红","可以单选多选切换的树,继承bi.widget","可以合并单元格,指定行列可以删除看不见的元素,基类bi.widget","可以点击的label,基类bi.basicbutton","可以点击的一行文字,基类bi.basicbutton","可以理解为multipopupview和panel两个面板的结合体,基类bi.multipopupview","可调整列宽的grid表格,继承bi.widget","可选值","右区间初始状态","右边容器left","右边容器right","右边容器左右padding值","各种item","各种segment","各种节点node","合并的单元格列号","合并规则,","名称","回调参数","回车事件","回车但是值不合法","图标button,基类bi.basicbutton","图标宽度","图标按钮trigger","图标类型","图标高度","图片的button,基类bi.basicbutton","图片路径","在未知宽度和高度时有效","垂直tape布局,两列定高,一列自适应","垂直流式布局","基本的表格","基础class类","基础元素","基础属性","基础用法","基类bi.widget","填充中空的路径","填充实心的路径","增加","增加内容","增加行","增加项","复杂的canvas绘图","复选框item,基类bi.basicbutton","多层下拉列表的下拉框","多层级下拉单选树","多层级下拉可选节点树","多文件,基类bi.singl","子控件对象","子控件数组","子组件","子组件二维数组","子组件数组","子组件构造器","子项","子项创建函数","子项数组","子项,pid代表父节点id","字段集合","存储","存储数据","季度选择下拉框","完全匹配的构造器","完成拷贝后执行的方法","宽度","宽度width","对外方法","对话框","对话框内容","对话框标题","对齐方向","对齐方式","导航栏","导航栏控件,bi.widget","导航页展示之后","层级树状结构的表格","展开类","属性","工具栏的方向","左区间初始状态","左右分离,垂直方向居中容器","左边容器left","左边容器right","左边容器左右padding值","已经加载","布局","布局逻辑","带方向的路径选择","带有标题栏的panel,基类bi.widget","带标记的文本框,基类bi.widget","带标记的文本框,需手动控制进入编辑状态","带清除按钮的输入框","带确定的复选下拉框","年份选择下拉框","年季度选择下拉框","年月选择下拉框","开发教程","开启panel的元素","开启popup元素","开启弹出层的元素","开启或者隐藏弹出层","开始上传时触发","开始搜索","开始搜索触发","开始绘制","开始输入触发","弹出列表和trigger的位置关系","弹出列表和trigger的距离","弹出层","弹出层宽度","弹出层显示位置","弹出层显示的位置元素","弹出层最大宽度","弹出层最大高度","弹出层最小宽度","弹出层最小高度","弹出层点击触发","弹出层的位置","弹出层高度","弹出框弹出前触发","弹窗层是否可见","当前状态是否有效(输入是否合法,","当前页","当前页,","当没有元素时有提示信息的view,","得到列宽","总行数","总页数","恢复hover可用","恢复文本框placeholder可用","慎用resiz","懒加载loader","所有控件的超类","所有简单控件的基类,类的控制,title的控制,文字超过边界显示3个点,cursor默认pointor,基类bi.widget","打开弹出层","扩展class类","拼音","挂载组件","指定初始值","按下backspace触发","按下空格触发","按钮文本内容","按钮文本宽度","按钮文本高度","按钮类型","按钮组","按键事件","排序列表","控件位置","控件都会提供setenable,","控件都会提供setvalue,","控件高度","提示titl","提示性信息","提示消息框","提示类型","插入函数","插入参数","插入字符串","插入操作符","搜索中","搜索列表位置","搜索到的元素","搜索暂停触发(搜索文本以空白字符结尾)","搜索框","搜索结果面板初始化完成后触发","搜索结果面板发生改变触发","搜索逻辑控件,bi.widget","搜索面板,","摧毁元素","摧毁表","效果相当于容器bottom","效果相当于容器left","效果相当于容器right","效果相当于容器top","效果相当于容器上下padding值","效果相当于容器左右padding值","效果相当于文本框bottom","效果相当于文本框left","效果相当于文本框right","效果相当于文本框top","效果相当于文本框上下padding值","效果相当于文本框左右padding值","效果相当于文本框左右padding值,如果clear属性为true,该属性值置0","数值区间控件","数值微调器","数据","文件上传","文件管理器","文件路径","文字布局","文字类型的按钮,基类bi.basicbutton","文本value值","文本内容","文本域,基类bi.singl","文本域失焦","文本域的值","文本域获取焦点","文本对齐方式","文本标签","文本标签宽度","文本标红","文本框,基类bi.singl","文本框placehold","文本框值","文本框值是否有效","文本框失焦","文本框宽度","文本框是否处于编辑状态","文本框获取焦点","文本框高度","文本框默认值","文本输入框trigger","文本高亮","文档地址","方法","方法名","无","无论怎么点击都不会被选中","日历控件","日期选择下拉框的弹出面板","日期选择下拉框(可以选择时分秒)","日期选择下拉框(弹出的年月选择可以进一步选择日期)","时合并","是否为单页","是否为最大日期","是否为最小日期","是否停止mousedown、mouseup事件","是否停止mousedown、mouseup向上冒泡","是否允许为空","是否允许空值","是否允许退出编辑函数","是否全选中","是否冻结","是否冻结列","是否出现滚动条","是否动态显示上一页、下一页,dynamicshow为false时生效","是否动态显示上一页、下一页、首页、尾页,","是否动态显示首页、尾页,dynamicshow为false时生效","是否匹配","是否去掉边框和背景","是否只允许点击一次","是否只读","是否可改变列大小","是否可用","是否可见","是否含有数值滚动条","是否含有遮罩层","是否块状显示,即不显示边框,没有最小宽度的限制","是否支持多选","是否无论如何都要居中,","是否显示尾页","是否显示总页数","是否显示提示信息","是否显示横向滚动条","是否显示纵向滚动条","是否显示阴影","是否显示首页","是否有上一页","是否有下一页","是否有前一页","是否有匹配的元素","是否有后一页","是否有效","是否正在搜索","是否自动同步数据,","是否自动搜索","是否被选中","是否调整时自适应","是否阻止事件","是否隐藏弹出层检测","是否需要冻结","是否需要冻结列","是否需要冻结单元格","是否需要冻结表头","是否需要合并单元格","是否需要在调整列宽或区域宽度的时候它们自适应变化","是否需要宽度调整","是否需要表尾","是否需要调整列宽","是否需要调整大小","是否需要高度调整","是否默认初始化子数据","是否默认初始化子节点","是否默认显示","是否默认显示tab页","显示","显示内容","显示弹出层","显示总页数","显示页码的分页控件","普通单元格高度","暂停搜索","暂停输入触发(输入空白字符)","更换新的内容","更改树结构内容","替换为新内容","替换为新的内容","替换内容","最后一页","最后一页,在万不得已时才会调用这个函数获取最后一页的页码,","最大值","最大值初始值","最大列宽","最大可选数量","最大宽度","最大日期","最大高度","最小值","最小值初始值","最小列宽","最小宽度","最小宽度,如果block/clear中某一项为true,此项值为0,否则为90","最小日期","月份选择下拉框","有二级下拉菜单的combo","有总页数和总行数的分页控件","构造树结构","某个可以展开的节点,基类bi.widget","标红","标题","标题后的按钮组","树下拉框,继承bi.widget","树展示控件","树状结构的表格","根据id获取nod","根据id获取节点","根据id返回元素","根据value值获取value在数组中的索引","根据value值获取节点","根据值获取node","根据值获取索引","根据值获取节点","根据制定参数打印出路径","根据组件名称获取组件","根组件","根节点所在方向","检查是否为空","概览","横向分支的树","横向坐标是否有上一页","横向坐标是否有下一页","横向滚动距离","横向翻页设置","横向超出可视范围区域预加载的数量","横向间隙","正在加载","正在搜索时触发","每列宽度所组成的数组","每格列宽","每格行宽","气泡提示","气泡显示位置","气泡显示内容","气泡高度","水印","水平tape布局,两列定宽,一列自适应","水平分页选项","水平和垂直方向都居中容器,","水平方向居中自适应容器","水平流式布局","浮动布局实现的居中容器","浮动的水平居中布局","消息提示","添加字段","添加对象到json数组","添加组件","清空","清空label","清空内容","清空树","清空组件","渲染列表","渲染组件","滚动事件","滚动加载的个数","滚动时触发的事件","滚动条相对于左边的偏移","滚动条相对于顶部的偏移","灰化","点击一次后失效","点击一次选中有效,再点无效","点击一级节点触发","点击事件","点击事件之前","点击事件回调","点击二级节点触发","点击即选中,","点击取消触发","点击增加/减少按钮或者编辑框确定时触发","点击展开","点击工具栏事件","点击清空按钮触发","点击确定触发","点击确认触发","点击编辑框触发(不在编辑状态时)","生命周期函数","生成树方法","用于表格预览,继承bi.widget","用法","看不见的元素全部删除的list,基类bi.widget","确定输入触发(blur时且输入值有效)","确认消息框","移除tab面板页","移除制定元素","移除指定索引处的item","移除组件","空","第一页","简单的多选树","类似excel式的表格,继承bi.widget","类型","纵向分支的树","纵向分页,参数与horizont","纵向坐标是否有上一页","纵向坐标是否有下一页","纵向滚动距离","纵向翻页设置,参数与horizontal相同","纵向超出可视范围区域预加载的数量","纵向间隙","组件text值","组件value值","组件不在页面展示,组件事件和内容都在","组件实例刚被创建","组件实例创建完成","组件挂载","组件挂载之前","组件是否可见","组件更新","组件销毁前调用","组件销毁后调用","绑定事件","结束绘制","绘制","绘制图片","绘制圆形","绘制形状的集合","绘制文本","绘制树枝节点","绘制椭圆","绘制渐变色","绘制矩形","绘制线段","绘制路径","继承bi.widget","编辑框中的值,","网格布局","能处理静态宽度以及动态宽度的表","自定义下拉列表中item项的行为,如高亮,标红等","自定义下拉列表中item项的行为,如高亮,标红等(详见button_group)","自定义下拉框trigger","自定义列表中item项的行为,如高亮,标红等","自定义工具栏","自定义年份选择的行为(详见button_group)","自定义树,基类bi.widget","自适应垂直居中布局","自适应宽度的表格","自适应宽度的表格,继承bi.widget","自适应左右垂直居中布局","自适应左右居中布局","节点展开","节点收起","节点数组","节点是否展开","若为false,则指对其设置使能状态","获取combo","获取tab面板页","获取tag","获取text值","获取tiptyp","获取titl","获取value值","获取warningtitl","获取值","获取公式框内容","获取列项","获取可用字段","获取右往左横向滚动距离","获取图片宽度","获取图片路径","获取图片高度","获取左到右横向滚动距离","获取弹出层","获取弹出层的位置","获取当前选中项内容","获取当前选中项的id属性","获取当前选中项的value值","获取当前页码","获取所有button","获取所有叶节点","获取所有未被选中的元素","获取所有的叶子节点","获取所有被选中的元素","获取所选项值","获取搜索关键词","获取搜索关键词数组","获取搜索列表栏","获取文件名称","获取文本值","获取文本域值","获取文本域样式","获取文本样式","获取文本框值","获取文本框最后一次输入的有效值","获取未选中植","获取未选中的根节点","获取校验内容","获取横向滚动条宽度","获取水平向页码","获取没有被选中的值","获取浏览器中显示的列项之间的间隙","获取滚动条相对于左边的偏移","获取滚动条相对于左边的最大偏移","获取滚动条相对于顶部的偏移","获取滚动条相对于顶部的最大偏移","获取纵向滚动条宽度","获取纵向滚动距离","获取纵向页码","获取组件名称","获取组件宽度","获取组件高度","获取被选中的值","获取计算后的列项上下之间的间隙","获取计算后的列项之间的间隙","获取选中的index","获取选中的tab面板页","获取选中的导航页","获取选中的根节点","获取选中项","获取错误文本","获取间隙大小","获取需要拷贝的值","获取颜色值","获得值","获得列项之间的间隙","获得垂直页数","获得当前值","获得所以根节点","获得所有叶节点","获得日期","获得水平页数","获得计算后的列宽","获根据给定的点坐标返回元素","行宽,必设","行数","行高","表关联树","表头","表头内容","表头行高","表头高度","表尾","表尾行高","表尾高度","表示一个可以展开的节点,","被选元素要触发的事件","见上","触发器宽度","警告消息框","记录状态的输入框,基类bi.widget","设tip可见","设定的年份","设定的日期","设定的月份","设置combo","设置error不可用","设置error可用","设置tag","设置text值","设置titl","设置toolbar是否可见","设置valu","设置value值","设置value值可用","设置z","设置值","设置储存的颜色值","设置全选","设置函数","设置列宽","设置列项之间的间隙","设置右区间开闭combo的disable状态","设置右区间输入框disable状态","设置右往左横向滚动距离","设置图片宽度","设置图片路径","设置图片高度","设置垂直方向是否有滚动条","设置字段集合","设置宽度","设置属性","设置左到右横向滚动距离","设置左区间开闭combo的disable状态","设置左区间输入框disable状态","设置弹出层显示的位置元素","设置当前值","设置当前选中项内容","设置当前页码","设置总页数","设置按钮宽度","设置按钮高度","设置数值区间的tip提示","设置文本值","设置文本域值","设置文本域样式","设置文本样式","设置文本框placeholder不可用","设置文本框值","设置文本框样式","设置日期","设置是否显示横向滚动条","设置未被选中的值","设置未选中值","设置标红的关键词","设置标题","设置横向分页键可见","设置每个单元格的位置坐标和宽高","设置水平方向是否有滚动条","设置水平页数","设置滚动条相对于左边的偏移","设置滚动条相对于顶部的偏移","设置画布可视区域","设置画布尺寸","设置纵向分页键可见","设置纵向滚动距离","设置纵向页数","设置组件不可用","设置组件不可见","设置组件可用","设置组件可见","设置组件宽度","设置组件属性","设置组件无效","设置组件是否可用","设置组件是否可见","设置组件是否有效","设置组件有效","设置组件高度","设置节点展开状态","设置行宽","设置表头的列宽","设置计数","设置选中值","设置选中的index","设置选中的文本","设置选中项","设置错误titl","设置错误文本","设置错误文本可见","设置页码是否可见","设置颜色值","设置高度","说明","调整宽度","调整弹出层显示的位置元素","调整搜索列表栏","调整横向偏移","调整纵向偏移","调整表头","调整表格","调整高度","谨慎监听和触发bi.controller.event_change事件,一般来说,控件都会有一个bi.classname.event_change事件,一些特殊的事件会在对应控件文档中列出","起步","超出可视范围区域的高度","超出可视范围区域预加载多少列","超出可视范围区域预加载多少行","路径选择","输入为空时按下backspac","输入值无效的状态事件","输入值有效的状态事件","输入框为空时触发","输入框类型","输入较验函数","返回该对象","还原列表设置","这仅仅只是一个超类,","连续显示分页数","退出时验证函数","选中了就不会被取消,与once的区别是forceselected不影响事件的触发","选中文本框文本","选中日期或者退出编辑状态触发","选中状态下是否显示阴影","选中的初始年月","选择列表","选择文件","选择类型","选色控件","选色控件弹窗","通用按钮","通用按钮,详情见bi.button","通用规范","通过给定的参数在已注册的字体中找到字体对象","通过鼠标或键盘输入字符","配置项","重心偏移量","重新设置高度","重置","重置列表宽度","重置列表高度","重置宽度","重置文本框最后一次输入的有效值","重置画布","重置高度","销毁事件","销毁组件","错误titl","错误信息","错误提示","错误提示titl","键","阻止事件","阻止事件冒泡","阻止冒泡","限定可选日期的上限","限定可选日期的下限","隐藏","隐藏弹出层","隐藏弹窗层是否销毁","需要设置的文本值text","需要设置的文本域样式style,例{\"color\":\"#000\"}","需要设置的文本标签样式,例{\"color\":\"#000\"}","需要设置的文本标签样式style,例{\"color\":\"#000\"}","需要设置的高度值height","非自适应,用于宽度高度固定的面板","靠左/右对齐的自由浮动布局","面板切换","面板展开","面板收起","面板显示之前","面板显示之后","面板显示的位置","面板构造之后","面板构造器","面板隐藏之前","面板隐藏之后","页数跳转","页码","预估列宽,rowheightgetter为function时必设","预估行宽,columnwidthgetter为function时必设","颜色值改变时触发","验证函数","高度","高度height","高级属性","默认row1","默认值","默认相等时合并","(以x0,"],"pipeline":["stopWordFilter","stemmer"]},"store":{"./":{"url":"./","title":"概览","keywords":"","body":"FineUIdocs\nFineUI文档\n文档地址\nGithubPages: https://fanruan.github.io/fineui\nCodingPages: http://fanruan.coding.me/fineui\nDemo\nCodingPages: http://fanruan.coding.me/fineui/dist/index.html\n代码设计文档\nKMS: http://www.finedevelop.com/display/DR/FineUI\n"},"START.html":{"url":"START.html","title":"起步","keywords":"","body":"开发教程\nKMS: http://www.finedevelop.com/pages/viewpage.action?pageId=15330077\n"},"OVERVIEW.html":{"url":"OVERVIEW.html","title":"通用规范","keywords":"","body":"通用规范\n\n控件都会提供setValue, getValue, populate这几个方法来设置值,获取值(展示类控件除外)和刷新控件\n控件都会提供setEnable, setVisible, setValid这几个方法来设置使能,是否可见,是否有效状态,并且在fineui2.0之后,会自动给子组件设置同样的状态,不要重写这些方法,一些需要在设置状态时的额外操作可以通过重写_setXXX来实现\n使用populate来清空或者重置布局,不要使用empty, 慎用resize\n谨慎监听和触发BI.Controller.EVENT_CHANGE事件,一般来说,控件都会有一个BI.ClassName.EVENT_CHANGE事件,一些特殊的事件会在对应控件文档中列出\n\n"},"core/layout/vertical.html":{"url":"core/layout/vertical.html","title":"vertical","keywords":"","body":"bi.vertical\n垂直流式布局\nsource\n\nBI.createWidget({\n type: 'demo.vertical',\n element: \"#wrapper\",\n items: [{\n type: \"bi.label\",\n cls: \"layout-bg1\",\n text: \"这里设置了hgap(水平间距),vgap(垂直间距)\",\n height: 30\n }, {\n type: \"bi.label\",\n cls: \"layout-bg2\",\n text: \"这里设置了hgap(水平间距),vgap(垂直间距)\",\n height: 30\n }]\n});\n\n\n\n\nAPI\n基础属性\n\n\n\n参数\n说明\n类型\n可选值\n默认值\n\n\n\n\nhgap\n效果相当于容器左右padding值\nnumber\n—\n0\n\n\nvgap\n效果相当于容器上下padding值\nnumber\n—\n0\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\nscrolly\n设置垂直方向是否有滚动条\nboolean\ntrue,false\ntrue\n\n\n\n\n"},"core/layout/horizontal.html":{"url":"core/layout/horizontal.html","title":"horizontal","keywords":"","body":"bi.horizontal\n水平流式布局\nsource\n\nBI.createWidget({\n type: 'bi.horizontal',\n element: \"#wrapper\",\n items: [{\n type: \"bi.text_button\",\n cls: \"layout-bg1\",\n text: \"这里设置了lgap,rgap,tgap,bgap\",\n height: 30,\n width: 200\n }, {\n type: \"bi.text_button\",\n cls: \"layout-bg2\",\n text: \"这里设置了lgap,rgap,tgap,bgap\",\n height: 30,\n width: 200\n }]\n});\n\n\n\n\nAPI\n基础属性\n\n\n\n参数\n说明\n类型\n可选值\n默认值\n\n\n\n\nhgap\n效果相当于容器左右padding值\nnumber\n—\n0\n\n\nvgap\n效果相当于容器上下padding值\nnumber\n—\n0\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\ncolumnSize\n每列宽度所组成的数组\narray\n—\n[ ]\n\n\nverticalAlign\n元素的垂直对齐方式\nstring\n参考相关css属性\n\"middle\"\n\n\nscrollx\n设置水平方向是否有滚动条\nboolean\ntrue,false\ntrue\n\n\n\n\n"},"core/layout/htape.html":{"url":"core/layout/htape.html","title":"htape","keywords":"","body":"bi.htape\n水平tape布局,两列定宽,一列自适应\nsource\n\nBI.createWidget({\n type: \"bi.htape\",\n element: \"#wrapper\", \n items : [\n {\n width: 100,\n el : {\n type : 'bi.label',\n text : '1',\n cls: \"layout-bg1\"\n }\n }, {\n width: 200,\n el : {\n type : 'bi.label',\n text : '2',\n cls: \"layout-bg2\"\n }\n }, {\n width: 'fill',\n el : {\n type : 'bi.label',\n text : '3',\n cls: \"layout-bg3\"\n }\n }\n ]\n});\n\n\n\n\nAPI\n基础属性\n\n\n\n参数\n说明\n类型\n可选值\n默认值\n\n\n\n\nhgap\n效果相当于容器左右padding值\nnumber\n—\n0\n\n\nvgap\n效果相当于容器上下padding值\nnumber\n—\n0\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\nitems\n子控件数组\narray\n—\n[{width: 100,el: {type: 'bi.button', text: 'button1'}},{width: 'fill',el: {type: 'bi.button', text: 'button2'}},{width: 200,el: {type: 'bi.button', text: 'button3'}}]\n\n\n\n\n"},"core/layout/vtape.html":{"url":"core/layout/vtape.html","title":"vtape","keywords":"","body":"bi.vtape\n垂直tape布局,两列定高,一列自适应\nsource\n\nBI.createWidget({\n type: \"bi.vtape\",\n element: \"#wrapper\", \n items : [\n {\n height: 100,\n el : {\n type : 'bi.label',\n text : '1',\n cls: \"layout-bg1\"\n }\n }, {\n height: 200,\n el : {\n type : 'bi.label',\n text : '2',\n cls: \"layout-bg2\"\n }\n }, {\n height: 'fill',\n el : {\n type : 'bi.label',\n text : '3',\n cls: \"layout-bg3\"\n }\n }\n ]\n});\n\n\n\n\nAPI\n基础属性\n\n\n\n参数\n说明\n类型\n可选值\n默认值\n\n\n\n\nhgap\n效果相当于容器左右padding值\nnumber\n—\n0\n\n\nvgap\n效果相当于容器上下padding值\nnumber\n—\n0\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\nitems\n子控件数组\narray\n—\n{height: 100,el: {type: 'bi.button', text: 'button1'}},{height: 'fill',el: {type: 'bi.button', text: 'button2'}},{height: 200,el: {type: 'bi.button', text: 'button3'}}\n\n\n\n\n"},"core/layout/center_adapt.html":{"url":"core/layout/center_adapt.html","title":"center_adapt","keywords":"","body":"bi.center_adapt\n自适应左右垂直居中布局\nsource\n\nBI.createWidget({\n type: \"bi.center_adapt\",\n element: \"#wrapper\",\n hgap: 10,\n items: [{\n type: \"bi.label\",\n text: \"Center Adapt 1\",\n cls: \"layout-bg1\",\n height: 30\n }, {\n type: \"bi.label\",\n text: \"Center Adapt 2\",\n cls: \"layout-bg2\",\n height: 30\n }]\n})\n\n\n\n\nAPI\n基础属性\n\n\n\n参数\n说明\n类型\n可选值\n默认值\n\n\n\n\nhgap\n效果相当于容器左右padding值\nnumber\n—\n0\n\n\nvgap\n效果相当于容器上下padding值\nnumber\n—\n0\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\ncolumnSize\n每列宽度所组成的数组\narray\n—\n[ ]\n\n\n\n\n"},"core/layout/vertical_adapt.html":{"url":"core/layout/vertical_adapt.html","title":"vertical_adapt","keywords":"","body":"bi.vertical_adapt\n自适应垂直居中布局\nsource\n\nBI.createWidget({\n type: \"bi.vertical_adapt\",\n element: \"#wrapper\",\n vgap: 10,\n items: [{\n type: \"bi.label\",\n text: \"Vertical Adapt上下自适应\",\n cls: \"layout-bg1\",\n width: 300,\n height: 30\n }, {\n type: \"bi.label\",\n text: \"Vertical Adapt上下自适应\",\n cls: \"layout-bg2\",\n width: 300,\n height: 30\n }]\n})\n\n\n\n\nAPI\n基础属性\n\n\n\n参数\n说明\n类型\n可选值\n默认值\n\n\n\n\nhgap\n效果相当于容器左右padding值\nnumber\n—\n0\n\n\nvgap\n效果相当于容器上下padding值\nnumber\n—\n0\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\ncolumnSize\n每列宽度所组成的数组\narray\n—\n[ ]\n\n\n\n\n"},"core/layout/left_right_vertical_adapt.html":{"url":"core/layout/left_right_vertical_adapt.html","title":"left_right_vertical_adapt","keywords":"","body":"bi.left_right_vertical_adapt\n左右分离,垂直方向居中容器\nsource\n\nBI.createWidget({\n type: 'bi.left_right_vertical_adapt',\n element: \"#wrapper\",\n lhgap: 10,\n rhgap: 10,\n items: {\n left: [{\n type: \"bi.label\",\n text: \"左边的垂直居中\",\n cls: \"layout-bg1\",\n width: 100,\n height: 30\n }],\n right: [{\n type: \"bi.label\",\n text: \"右边的垂直居中\",\n cls: \"layout-bg1\",\n width: 100,\n height: 30\n }]\n }\n});\n\n\n\n\nAPI\n基础属性\n\n\n\n参数\n说明\n类型\n可选值\n默认值\n\n\n\n\nlhgap\n左边容器左右padding值\nnumber\n—\n0\n\n\nlrgap\n左边容器right-padding值\nnumber\n—\n0\n\n\nllgap\n左边容器left-padding值\nnumber\n—\n0\n\n\nrhgap\n右边容器左右padding值\nnumber\n—\n0\n\n\nrrgap\n右边容器right-padding值\nnumber\n—\n0\n\n\nrhgap\n右边容器left-padding值\nnumber\n—\n0\n\n\nitems\n子控件数组\narray\n—\n[ ]\n\n\n\n\n"},"core/layout/flow.html":{"url":"core/layout/flow.html","title":"flow","keywords":"","body":"bi.flow\n靠左/右对齐的自由浮动布局\nsource\n\nBI.createWidget({\n type: \"bi.center_adapt\",\n element: \"#wrapper\",\n items: [{\n type: \"bi.left\",\n items: [{\n type: \"bi.label\",\n height: 30,\n text: \"Left-1\",\n cls: \"layout-bg1\",\n hgap: 20\n }, {\n type: \"bi.label\",\n height: 30,\n text: \"Left-2\",\n cls: \"layout-bg2\",\n hgap: 20\n }],\n hgap: 20,\n vgap: 20\n }, {\n type: \"bi.right\",\n items: [{\n type: \"bi.label\",\n height: 30,\n text: \"Right-1\",\n cls: \"layout-bg3\",\n hgap: 20\n }, {\n type: \"bi.label\",\n height: 30,\n text: \"Right-2\",\n cls: \"layout-bg4\",\n hgap: 20\n }],\n hgap: 20,\n vgap: 20\n }]\n});\n\n\n\n\nAPI\n基础属性\n\n\n\n参数\n说明\n类型\n可选值\n默认值\n\n\n\n\nhgap\n效果相当于容器左右padding值\nnumber\n—\n0\n\n\nvgap\n效果相当于容器上下padding值\nnumber\n—\n0\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\nitems\n子控件数组\narray\n—\n—\n\n\n\n\n"},"core/layout/center.html":{"url":"core/layout/center.html","title":"center","keywords":"","body":"bi.center\n水平和垂直方向都居中容器, 非自适应,用于宽度高度固定的面板\nsource\n\nBI.createWidget({\n type: \"bi.center\",\n element: \"#wrapper\",\n items: [{\n type: \"bi.label\",\n text: \"Center 1,这里虽然设置label的高度30,但是最终影响高度的是center布局\",\n cls: \"layout-bg1\",\n whiteSpace: \"normal\"\n },{\n type: \"bi.label\",\n text: \"Center 2,为了演示label是占满整个的,用了一个whiteSpace:normal\",\n cls: \"layout-bg2\",\n whiteSpace: \"normal\"\n }],\n hgap: 20,\n vgap: 20\n});\n\n\n\n\nAPI\n基础属性\n\n\n\n参数\n说明\n类型\n可选值\n默认值\n\n\n\n\nhgap\n效果相当于容器左右padding值\nnumber\n—\n0\n\n\nvgap\n效果相当于容器上下padding值\nnumber\n—\n0\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\n\n\n"},"core/layout/horizontal_adapt.html":{"url":"core/layout/horizontal_adapt.html","title":"horizontal_adapt","keywords":"","body":"bi.horizontal_adapt\n自适应左右居中布局\nsource\n\nBI.createWidget({\n type: \"bi.horizontal_adapt\",\n element: \"#wrapper\",\n vgap: 10,\n items: [{\n type: \"bi.label\",\n text: \"Horizontal Adapt左右自适应\",\n cls: \"layout-bg1\",\n width: 300,\n height: 30\n }, {\n type: \"bi.label\",\n text: \"Horizontal Adapt左右自适应\",\n cls: \"layout-bg2\",\n //width: 300,\n height: 30\n }]\n})\n\n\n\n\nAPI\n基础属性\n\n\n\n参数\n说明\n类型\n可选值\n默认值\n\n\n\n\nhgap\n效果相当于容器左右padding值\nnumber\n—\n0\n\n\nvgap\n效果相当于容器上下padding值\nnumber\n—\n0\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\ncolumnSize\n每列宽度所组成的数组\narray\n—\n[ ]\n\n\nverticalAlign\n元素的垂直对齐方式\nconst\n参考相关css属性\nBI.VerticalAlign.Middle\n\n\n\n\n"},"core/layout/horizontal_auto.html":{"url":"core/layout/horizontal_auto.html","title":"horizontal_auto","keywords":"","body":"bi.horizontal_auto\n水平方向居中自适应容器\nsource\n\nBI.createWidget({\n type: \"bi.horizontal_auto\",\n element: \"#wrapper\",\n vgap: 10,\n items: [{\n type: \"bi.label\",\n text: \"Horizontal Auto左右自适应\",\n cls: \"layout-bg1\",\n width: 300,\n height: 30\n }, {\n type: \"bi.label\",\n text: \"Horizontal Auto左右自适应\",\n cls: \"layout-bg2\",\n width: 300,\n height: 30\n }]\n})\n\n\n\n\nAPI\n基础属性\n\n\n\n参数\n说明\n类型\n可选值\n默认值\n\n\n\n\nhgap\n效果相当于容器左右padding值\nnumber\n—\n0\n\n\nvgap\n效果相当于容器上下padding值\nnumber\n—\n0\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\n\n\n"},"core/layout/horizontal_float.html":{"url":"core/layout/horizontal_float.html","title":"horizontal_float","keywords":"","body":"bi.horizontal_float\n浮动的水平居中布局\nsource\n\nBI.createWidget({\n type: \"bi.horizontal_float\",\n element: \"#wrapper\",\n vgap: 10,\n items: [{\n type: \"bi.label\",\n text: \"Horizontal Float左右自适应\",\n cls: \"layout-bg1\",\n width: 200,\n height:30\n }]\n})\n\n\n\n\nAPI\n基础属性\n\n\n\n参数\n说明\n类型\n可选值\n默认值\n\n\n\n\nhgap\n效果相当于容器左右padding值\nnumber\n—\n0\n\n\nvgap\n效果相当于容器上下padding值\nnumber\n—\n0\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\nitems\n子控件数组\narray\n—\n[ ]\n\n\n\n\n"},"core/layout/float_center.html":{"url":"core/layout/float_center.html","title":"float_center","keywords":"","body":"bi.float_center\n浮动布局实现的居中容器\nsource\n\nBI.createWidget({\n type: 'bi.float_center',\n element: \"#wrapper\",\n items: [{\n type: \"bi.label\",\n text: \"floatCenter与center的不同在于,它可以控制最小宽度和最大宽度\",\n cls: \"layout-bg1\",\n whiteSpace: \"normal\"\n }, {\n type: \"bi.label\",\n text: \"floatCenter与center的不同在于,它可以控制最小宽度和最大宽度\",\n cls: \"layout-bg2\",\n whiteSpace: \"normal\"\n }],\n height: 300,\n hgap: 20,\n vgap: 20\n});\n\n\n\n\nAPI\n基础属性\n\n\n\n参数\n说明\n类型\n可选值\n默认值\n\n\n\n\nhgap\n效果相当于容器左右padding值\nnumber\n—\n0\n\n\nvgap\n效果相当于容器上下padding值\nnumber\n—\n0\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\n\n\n"},"core/layout/border.html":{"url":"core/layout/border.html","title":"border","keywords":"","body":"bi.border\n上下的高度固定/左右的宽度固定,中间的高度/宽度自适应\nsource\nBI.createWidget({\n type: 'bi.border',\n element: \"#wrapper\",\n items: {\n north: {\n el: {type: \"bi.label\"},\n height: 30,\n top: 20,\n left: 20,\n right: 20\n },\n south: {\n el: {type: \"bi.label\"},\n height: 50,\n bottom: 20,\n left: 20,\n right: 20\n },\n west: {\n el: {type: \"bi.label\"},\n width: 200,\n left: 20\n },\n east: {\n el: {type: \"bi.label\"},\n width: 300,\n right: 20\n },\n center: {el: {type: \"bi.label\"}}\n }\n});\n\n\n\n\nAPI\n基础属性\n\n\n\n参数\n说明\n类型\n可选值\n默认值\n\n\n\n\nitems\n子控件对象\nobject\nnorth,east,west,south,center\n[ ]\n\n\n\n\n"},"core/layout/grid.html":{"url":"core/layout/grid.html","title":"grid","keywords":"","body":"bi.grid\n网格布局\nsource\n\nBI.createWidget({\n type: 'bi.grid',\n element: \"#wrapper\",\n columns: 2,\n rows: 2,\n items: [{\n column: 0,\n row: 0,\n el: {\n type: \"bi.label\",\n text: \"column-0, row-0\",\n cls: \"layout-bg1\"\n }\n }, {\n column: 1,\n row: 0,\n el: {\n type: \"bi.label\",\n text: \"column-1, row-0\",\n cls: \"layout-bg2\"\n }\n } {\n column: 0,\n row: 1,\n el: {\n type: \"bi.label\",\n text: \"column-0, row-1\",\n cls: \"layout-bg5\"\n }\n }, {\n column: 1,\n row: 1,\n el: {\n type: \"bi.label\",\n text: \"column-1, row-1\",\n cls: \"layout-bg6\"\n }\n }]\n});\n\n\n\n\nAPI\n基础属性\n\n\n\n参数\n说明\n类型\n可选值\n默认值\n\n\n\n\ncolumns\n列数\nnumber\n—\nnull\n\n\nrows\n行数\nnumber\n—\nnull\n\n\nitems\n子控件数组\narray\n—\n[]\n\n\n\n\n"},"core/layout/table.html":{"url":"core/layout/table.html","title":"table","keywords":"","body":"bi.table\ntable作为一个列表集合存在,继承BI.Widget\nsource\nBI.createWidget({\n element: \"body\",\n type: \"bi.table\",\n items: [],\n columnSize: [100, \"fill\", 200],\n rowSize: [10, 30, 50, 70, 90, 110, 130],\n hgap: 20,\n vgap: 10\n});\n\n\n\n参数设置\n\n\n\n参数\n说明\n类型\n默认值\n\n\n\n\nscrolly\n是否出现滚动条\nboolean\ntrue\n\n\ncolumnSize\n列项宽度\narray/number\n[200, 200, 'fill']\n\n\nrowSize\n行高\narray/number\n30\n\n\nhgap\n内部元素间纵向距离\nnumber\n0\n\n\nvgap\n内部元素间横向距离\nnumber\n0\n\n\nitems\n子项\narray\n[{width: 100,el: {type: 'bi.button', text: 'button1'}},{width: 'fill',el: {type: 'bi.button', text: 'button2'}},{width: 200,el: {type: 'bi.button', text: 'button3'}}]\n\n\n\n方法\n\n\n\n方法名\n说明\n用法\n\n\n\n\naddItem\n增加内容\naddItem(arr)\n\n\npopulate\n更换新的内容\npoplulate(items)\n\n\n\n"},"core/layout/td.html":{"url":"core/layout/td.html","title":"td","keywords":"","body":"bi.td\n单元格控件,继承BI.Layout\nsource\nBI.createWidget({\n type: \"bi.td\",\n element: 'body',\n columnSize: [20, 20, 'fill'],\n items: []\n});\n\n\n\n\n\n参数\n\n\n\n参数\n说明\n类型\n默认值\n\n\n\n\ncolumnSize\n列宽\narray\n[200, 200, 200]\n\n\nhgap\n纵向间隙\nnumber\n0\n\n\nvgap\n横向间隙\nnumber\n0\n\n\nitems\n内容项\narray\n[[{el: {text: 'label1'}},{ el: {text: 'label2'},{ el: {text: 'label3'}\n\n\n\n方法\n\n\n\n方法名\n说明\n用法\n\n\n\n\naddItem\n增加内容\naddItem(arr)\n\n\npopulate\n更换新的内容\npoplulate(items)\n\n\n\n"},"core/abstract/button_group.html":{"url":"core/abstract/button_group.html","title":"button_group","keywords":"","body":"bi.button_group\n一组具有相同属性的元素集合,基类BI.Widget\nsource\n\nBI.createWidget({\n element: \"#wrapper\",\n type: \"bi.button_group\",\n chooseType: BI.ButtonGroup.CHOOSE_TYPE_SINGLE,\n layouts: [{\n type: \"bi.vertical\"\n }],\n items: [{\n el: {\n type: \"bi.label\",\n text: \"button_group\"\n },\n height: 50,\n }]\n})\n\n\n\nAPI\n基础属性\nchooseType可选值为 CHOOSE_TYPE_SINGLE,CHOOSE_TYPE_MULTI,CHOOSE_TYPE_ALL,CHOOSE_TYPE_NONE,CHOOSE_TYPE_DEFAULT\n\n\n\n参数\n说明\n类型\n可选值\n默认值\n\n\n\n\nbehaviors\n自定义列表中item项的行为,如高亮,标红等\nobject\n—\n{ }\n\n\nitems\n子组件数组\narray\n—\n[ ]\n\n\nchooseType\n选择类型\nconst\n见上\nBI.ButtonGroup.CHOOSE_TYPE_SINGLE\n\n\nlayouts\n布局\narray\n—\n[{type: \"bi.center\",hgap: 0,vgap: 0}]\n\n\n\n对外方法\n\n\n\n名称\n说明\n回调参数 \n\n\n\n\ndoBehavior\n自定义列表中item项的行为,如高亮,标红等\n—\n\n\nprependItems\n内部前插入\nitems\n\n\naddItems\n内部后插入\nitems\n\n\nremoveItemAt\n移除指定索引处的item\nindexs\n\n\nremoveItems\n移除制定元素\nvalues\n\n\npopulate\n刷新列表\nitems\n\n\nsetNotSelectedValue\n设置未被选中的值\nvalue,可以是单个值也可以是个数组\n\n\nsetEnabledValue\n设置value值可用\nvalue,可以是单个值也可以是个数组\n\n\nsetValue\n设置value值\nvalue,可以是单个值也可以是个数组\n\n\ngetNotSelectedValue\n获取没有被选中的值\n—\n\n\ngetValue\n获取被选中的值\n—\n\n\ngetAllButtons\n获取所有button\n—\n\n\ngetAllLeaves\n获取所有的叶子节点\n—\n\n\ngetSelectedButtons\n获取所有被选中的元素\n—\n\n\ngetNotSelectedButtons\n获取所有未被选中的元素\n—\n\n\ngetIndexByValue\n根据value值获取value在数组中的索引\nvalue\n\n\ngetNodeById\n根据id获取节点\nid\n\n\ngetNodeByValue\n根据value值获取节点\nvalue\n\n\nempty\n清空组件\n—\n\n\ndestroy\n销毁组件\n—\n\n\n\n\n"},"core/abstract/button_tree.html":{"url":"core/abstract/button_tree.html","title":"button_tree","keywords":"","body":"bi.button_tree\n一组具有相同属性的元素集合,基类BI.ButtonGroup\nsource\n\nBI.createWidget({\n element: \"#wrapper\",\n type: \"bi.button_tree\",\n chooseType: BI.ButtonGroup.CHOOSE_TYPE_MULTI,\n layouts: [{\n type: \"bi.vertical\"\n }],\n items: [{\n type: \"bi.label\",\n text: \"0\",\n value: \"label1\",\n height:50,\n vgap:10\n }]\n})\n\n\n\n对外方法\n\n\n\n名称\n说明\n回调参数 \n\n\n\n\nsetNotSelectedValue\n设置未被选中的值\nvalue,可以是单个值也可以是个数组\n\n\nsetEnabledValue\n设置value值可用\nvalue,可以是单个值也可以是个数组\n\n\nsetValue\n设置value值\nvalue,可以是单个值也可以是个数组\n\n\ngetNotSelectedValue\n获取没有被选中的值\n—\n\n\ngetValue\n获取被选中的值\n—\n\n\ngetAllButtons\n获取所有button\n—\n\n\ngetAllLeaves\n获取所有的叶子节点\n—\n\n\ngetSelectedButtons\n获取所有被选中的元素\n—\n\n\ngetNotSelectedButtons\n获取所有未被选中的元素\n—\n\n\ngetIndexByValue\n根据value值获取value在数组中的索引\nvalue\n\n\ngetNodeById\n根据id获取节点\nid\n\n\ngetNodeByValue\n根据value值获取节点\nvalue\n\n\n\n\n"},"core/abstract/virtual_group.html":{"url":"core/abstract/virtual_group.html","title":"virtual_group","keywords":"","body":"bi.virtual_group\n优化过的buttonGroup,删除看不见的元素 基类BI.Widget\nsource\n\nBI.createWidget({\n element: \"#wrapper\",\n type: \"bi.virtual_group\",\n width: 500,\n height: 300,\n chooseType: BI.ButtonGroup.CHOOSE_TYPE_MULTI,\n layouts: [{\n type: \"bi.vertical\"\n }, {\n type: \"bi.center_adapt\",\n }],\n items:[]\n})\n\n\n\nAPI\n基础属性\n\n\n\n参数\n说明\n类型\n可选值\n默认值\n\n\n\n\nitems\n子组件数组\narray\n—\n[ ]\n\n\nlayouts\n布局\narray\n—\n[{type: \"bi.center\",hgap: 0,vgap: 0}]\n\n\n\n对外方法\n\n\n\n名称\n说明\n回调参数 \n\n\n\n\nsetValue\n设置value值\nvalue,可以是单个值也可以是个数组\n\n\ngetValue\n获取被选中的值\n—\n\n\nprependItems\n内部前插入\nitems\n\n\naddItems\n内部后插入\nitems\n\n\npopulate\n刷新列表\nitems\n\n\nrender\n渲染列表\n—\n\n\n\n\n"},"core/abstract/custom_tree.html":{"url":"core/abstract/custom_tree.html","title":"custom_tree","keywords":"","body":"bi.custom_tree\n自定义树,基类BI.Widget\nsource\n\nBI.createWidget({\n type: \"bi.custom_tree\",\n el: {\n type: \"bi.button_tree\",\n chooseType: 0,\n layouts: [{\n type: \"bi.vertical\",\n hgap: 30\n }]\n },\n items: [{\n id: -1,\n pId: -2,\n value: \"根目录\",\n open: true,\n type: \"bi.plus_group_node\",\n height: 25\n },\n {\n id: 1,\n pId: -1,\n value: \"第一级目录1\",\n type: \"bi.plus_group_node\",\n height: 25\n },\n {\n id: 11,\n pId: 1,\n value: \"第二级文件1\",\n type: \"bi.single_select_item\",\n height: 25\n }]\n});\n\n\n\nAPI\n基础属性\n\n\n\n参数\n说明\n类型\n可选值\n默认值\n\n\n\n\nitems\n子组件数组\narray\n—\n[ ]\n\n\nitemsCreator\n子组件构造器\nobject\n—\n{ }\n\n\nexpander\npopup组件\nobject\n—\n{el: {},popup: {type: \"bi.custom_tree\"}}\n\n\nel\n开启popup元素\nobject\n—\n{type: \"bi.button_tree\",chooseType: 0,layouts: [{type: \"bi.vertical\"}]}\n\n\n\n对外方法\n\n\n\n名称\n说明\n回调参数 \n\n\n\n\ninitTree\n构造树结构\nnodes\n\n\nstroke\n生成树方法\nnodes\n\n\nprependItems\n内部前插入\nitems\n\n\naddItems\n内部后插入\nitems\n\n\npopulate\n刷新列表\nnodes\n\n\nrender\n渲染列表\n—\n\n\nsetValue\n设置value值\nvalue,可以是单个值也可以是个数组\n\n\ngetValue\n获取被选中的值\n—\n\n\ngetAllButtons\n获取所有button\n—\n\n\ngetAllLeaves\n获取所有的叶子节点\n—\n\n\ngetNodeById\n根据id获取节点\nid\n\n\ngetNodeByValue\n根据value值获取节点\nvalue\n\n\nempty\n清空组件\n—\n\n\n\n\n"},"core/abstract/grid_view.html":{"url":"core/abstract/grid_view.html","title":"grid_view","keywords":"","body":"bi.grid_view\n可以合并单元格,指定行列可以删除看不见的元素,基类BI.Widget\nsource\n\nBI.createWidget({\n type: \"bi.grid_view\",\n width: 400,\n height: 300,\n estimatedRowSize: 30,\n estimatedColumnSize: 100,\n items: [],\n scrollTop: 100,\n rowHeightGetter: function () {\n return 30;\n },\n columnWidthGetter: function () {\n return 100;\n }\n});\n\n\n\nAPI\n基础属性\n\n\n\n参数\n说明\n类型\n可选值\n默认值\n\n\n\n\nitems\n子组件数组\narray\n—\n[ ]\n\n\noverflowX\n是否显示横向滚动条\nboolean\ntrue,false\ntrue\n\n\noverflowY\n是否显示纵向滚动条\nboolean\ntrue,false\ntrue\n\n\noverscanColumnCount\n超出可视范围区域预加载多少列\nnumber\n—\n0\n\n\noverscanRowCount\n超出可视范围区域预加载多少行\nnumber\n—\n0\n\n\nwidth\n行宽,必设\nnumber\n—\n—\n\n\nheight\n列宽,必设\nnumber\n—\n—\n\n\nrowHeightGetter\n每格行宽\nnumber,function\n—\nfunction\n\n\ncolumnWidthGetter\n每格列宽\nnumber,function\n—\nfunction\n\n\nestimatedColumnSize\n预估行宽,columnWidthGetter为function时必设\nnumber,function\n—\nfunction\n\n\nestimatedRowSize\n预估列宽,rowHeightGetter为function时必设\nnumber,function\n—\nfunction\n\n\nscrollLeft\n滚动条相对于左边的偏移\nnumber\n—\n0\n\n\nscrollTop\n滚动条相对于顶部的偏移\nnumber\n—\n0\n\n\n\n对外方法\n\n\n\n名称\n说明\n回调参数 \n\n\n\n\nsetScrollLeft\n设置滚动条相对于左边的偏移\nscrollLeft\n\n\nsetScrollTop\n设置滚动条相对于顶部的偏移\nscrollTop\n\n\nsetOverflowX\n设置是否显示横向滚动条\nb\n\n\nsetOverflowY\n设置是否显示横向滚动条\nb\n\n\ngetScrollLeft\n获取滚动条相对于左边的偏移\n—\n\n\ngetScrollTop\n获取滚动条相对于顶部的偏移\n—\n\n\ngetMaxScrollLeft\n获取滚动条相对于左边的最大偏移\n—\n\n\ngetMaxScrollTop\n获取滚动条相对于顶部的最大偏移\n—\n\n\nsetEstimatedColumnSize\n设置列宽\nwidth\n\n\nsetEstimatedRowSize\n设置行宽\nheight\n\n\nrestore\n还原列表设置\n—\n\n\npopulate\n刷新列表\nitems\n\n\n\n事件\n\n\n\n事件\n说明\n回调参数\n\n\n\n\nBI.GridView.EVENT_SCROLL\n滚动时触发的事件\n{scrollLeft: scrollLeft, scrollTop: scrollTop}\n\n\n\n\n"},"core/abstract/collection_view.html":{"url":"core/abstract/collection_view.html","title":"collection_view","keywords":"","body":"bi.collection_view\nCollectionView,指定行列可以删除看不见的元素 基类BI.Widget\nsource\n\nBI.createWidget({\n type: \"bi.collection_view\",\n element:\"#wrapper\",\n width: 400,\n height: 300,\n items: [],\n cellSizeAndPositionGetter: function (index) {\n return {\n x: index % 10 * 50,\n y: Math.floor(index / 10) * 50,\n width: 50,\n height: 50\n }\n }\n});\n\n\n\nAPI\n基础属性\n\n\n\n参数\n说明\n类型\n可选值\n默认值\n\n\n\n\nitems\n子组件数组\narray\n—\n[ ]\n\n\noverflowX\n是否显示横向滚动条\nboolean\ntrue,false\ntrue\n\n\noverflowY\n是否显示纵向滚动条\nboolean\ntrue,false\ntrue\n\n\ncellSizeAndPositionGetter\n设置每个单元格的位置坐标和宽高\nfunction\n—\n—\n\n\nhorizontalOverscanSize\n横向超出可视范围区域预加载的数量\nnumber\n—\n0\n\n\nverticalOverscanSize\n纵向超出可视范围区域预加载的数量\nnumber\n—\n0\n\n\nwidth\n行宽,必设\nnumber\n—\n—\n\n\nheight\n列宽,必设\nnumber\n—\n—\n\n\nscrollLeft\n滚动条相对于左边的偏移\nnumber\n—\n0\n\n\nscrollTop\n滚动条相对于顶部的偏移\nnumber\n—\n0\n\n\n\n对外方法\n\n\n\n名称\n说明\n回调参数 \n\n\n\n\nsetScrollLeft\n设置滚动条相对于左边的偏移\nscrollLeft\n\n\nsetScrollTop\n设置滚动条相对于顶部的偏移\nscrollTop\n\n\nsetOverflowX\n设置是否显示横向滚动条\nb\n\n\nsetOverflowY\n设置是否显示横向滚动条\nb\n\n\ngetScrollLeft\n获取滚动条相对于左边的偏移\n—\n\n\ngetScrollTop\n获取滚动条相对于顶部的偏移\n—\n\n\ngetMaxScrollLeft\n获取滚动条相对于左边的最大偏移\n—\n\n\ngetMaxScrollTop\n获取滚动条相对于顶部的最大偏移\n—\n\n\nrestore\n还原列表设置\n—\n\n\npopulate\n刷新列表\nitems\n\n\n\n事件\n\n\n\n事件\n说明\n回调参数\n\n\n\n\nBI.CollectionView.EVENT_SCROLL\n滚动时触发的事件\n{scrollLeft: scrollLeft, scrollTop: scrollTop}\n\n\n\n\n"},"core/abstract/virtual_list.html":{"url":"core/abstract/virtual_list.html","title":"virtual_list","keywords":"","body":"bi.virtual_list\n看不见的元素全部删除的list,基类BI.Widget\nsource\n\nBI.createWidget({\n type: \"bi.virtual_list\",\n element:\"body\",\n items: BI.map([{value: \"xxxx\"}], function (i, item) {\n return BI.extend({}, item, {\n type: \"bi.label\",\n height: 30,\n text: (i + 1) + \".\" + item.text,\n });\n })\n })\n\n\n\nAPI\n基础属性\n\n\n\n参数\n说明\n类型\n可选值\n默认值\n\n\n\n\nitems\n子组件数组\narray\n—\n[ ]\n\n\nblockSize\n滚动加载的个数\nnumber\n—\n10\n\n\noverscanHeight\n超出可视范围区域的高度\nnumber\n—\n100\n\n\nscrollTop\n滚动条相对于顶部的偏移\nnumber\n—\n0\n\n\n\n对外方法\n\n\n\n名称\n说明\n回调参数 \n\n\n\n\nrender\n渲染列表\n—\n\n\nmounted\n组件挂载\n—\n\n\nrestore\n还原列表设置\n—\n\n\npopulate\n刷新列表\nitems\n\n\ndestroyed\n销毁组件\n—\n\n\n\n\n"},"core/combination/bi.combo.html":{"url":"core/combination/bi.combo.html","title":"combo","keywords":"","body":"bi.combo\ncombo,基类BI.Widget\nsource\n\nBI.createWidget({\n type: \"bi.combo\",\n element: \"body\",\n adjustLength: 2,\n el: {\n type: \"bi.button\",\n text: \"测试\",\n height: 25\n },\n popup: {}\n});\n\n\n\nAPI\n基础属性\n\n\n\n参数\n说明\n类型\n可选值\n默认值\n\n\n\n\nel\n自定义下拉框trigger\nobject\n—\n{ }\n\n\ntrigger\n下拉列表的弹出方式\nstring\nclick,hover\n\"click\"\n\n\nadjustLength\n弹出列表和trigger的距离\nnumber\n—\n0\n\n\ntoggle\n切换状态\nboolean\ntrue,false\ntrue\n\n\ndirection\n弹出列表和trigger的位置关系\nstring\ntop | bottom | left | right | top,left | top,right | bottom,left | bottom,right\n\"bottom\"\n\n\nisDefaultInit\n是否默认初始化子节点\nboolean\ntrue,false\nfalse\n\n\ndestroyWhenHide\n隐藏弹窗层是否销毁\nboolean\ntrue,false\nfalse\n\n\nisNeedAdjustHeight\n是否需要高度调整\nboolean\ntrue,false\ntrue\n\n\nisNeedAdjustWidth\n是否需要宽度调整\nboolean\ntrue,false\ntrue\n\n\nstopEvent\n是否阻止事件\nboolean\ntrue,false\nfalse\n\n\nstopPropagation\n阻止事件冒泡\nboolean\ntrue,false\nfalse\n\n\nadjustXOffset\n调整横向偏移\nnumber\n—\n0\n\n\nadjustYOffset\n调整纵向偏移\nnumber\n—\n0\n\n\nhideChecker\n是否隐藏弹出层检测\nfunction\n—\n—\n\n\noffsetStyle\n弹出层显示位置\nstring\nleft,right,center\n\"left,right,center\"\n\n\npopup\n弹出层\nobject\n—\n{ }\n\n\ncomboClass\ncombo类\nstring\n—\n\"bi-combo-popup\"\n\n\nhoverClass\nhover类\nstring\n—\n\"bi-combo-hover\"\n\n\n\n对外方法\n\n\n\n名称\n说明\n回调参数 \n\n\n\n\nadjustWidth\n调整宽度\n—\n\n\nadjustHeight\n调整高度\n—\n\n\nresetListHeight\n重置列表高度\nheight\n\n\nresetListWidth\n重置列表宽度\nwidth\n\n\npopulate\n刷新列表\nitems\n\n\nsetValue\n设置combo value值\nv\n\n\ngetValue\n获取combo value值\n—\n\n\nisViewVisible\n弹窗层是否可见\n—\n\n\nshowView\n显示弹出层\n—\n\n\nhideView\n隐藏弹出层\n—\n\n\ngetView\n获取弹出层\n—\n\n\ngetPopupPosition\n获取弹出层的位置\n—\n\n\ntoggle\n开启或者隐藏弹出层\n—\n\n\ndestroy\n销毁组件\n—\n\n\n\n事件\n\n\n\n名称\n说明\n\n\n\n\nBI.Combo.EVENT_TRIGGER_CHANGE\ntrigger发生改变触发\n\n\nBI.Combo.EVENT_CHANGE\n弹出层点击触发\n\n\nBI.Combo.EVENT_EXPAND\n下拉框展开触发\n\n\nBI.Combo.EVENT_COLLAPSE\n下拉框收起触发\n\n\nBI.Combo.EVENT_AFTER_INIT\n下拉框初始化后触发\n\n\nBI.Combo.EVENT_BEFORE_POPUPVIEW\n下拉列表弹出前触发\n\n\nBI.Combo.EVENT_AFTER_POPUPVIEW\n下拉列表弹出后触发\n\n\nBI.Combo.EVENT_BEFORE_HIDEVIEW\n下拉列表收起前触发\n\n\nBI.Combo.EVENT_AFTER_HIDEVIEW\n下拉列表收起后触发\n\n\n\n\n"},"core/combination/bi.expander.html":{"url":"core/combination/bi.expander.html","title":"expander","keywords":"","body":"bi.expander\n某个可以展开的节点,基类BI.Widget\nsource\n\nBI.createWidget({\n type: \"bi.expander\",\n element: \"#wrapper\",\n el: {\n type: \"bi.icon_text_node\",\n cls: \"pull-right-ha-font\",\n height: 25,\n text: \"Expander\"\n },\n popup: {\n items: [{\n type: \"bi.single_select_item\",\n height: 25,\n text: \"项目1\",\n value: 1\n }, {\n type: \"bi.single_select_item\",\n height: 25,\n text: \"项目2\",\n value: 2\n }]\n }\n});\n\n\n\nAPI\n基础属性\n\n\n\n参数\n说明\n类型\n可选值\n默认值\n\n\n\n\nel\n自定义下拉框trigger\nobject\n—\n{ }\n\n\ntrigger\n下拉列表的弹出方式\nstring\nclick,hover\n\"click\"\n\n\nadjustLength\n弹出列表和trigger的距离\nnumber\n—\n0\n\n\ntoggle\n切换状态\nboolean\ntrue,false\ntrue\n\n\ndirection\n弹出列表和trigger的位置关系\nstring\ntop | bottom | left | right | top,left | top,right | bottom,left | bottom,right\n\"bottom\"\n\n\nisDefaultInit\n是否默认初始化子节点\nboolean\ntrue,false\nfalse\n\n\npopup\n弹出层\nobject\n—\n{ }\n\n\nexpanderClass\n展开类\nstring\n—\n\"bi-expander-popup\"\n\n\nhoverClass\nhover类\nstring\n—\n\"bi-expander-hover\"\n\n\n\n对外方法\n\n\n\n名称\n说明\n回调参数 \n\n\n\n\npopulate\n刷新列表\nitems\n\n\nsetValue\n设置combo value值\nv\n\n\ngetValue\n获取combo value值\n—\n\n\nisViewVisible\n弹窗层是否可见\n—\n\n\nshowView\n显示弹出层\n—\n\n\nhideView\n隐藏弹出层\n—\n\n\ngetView\n获取弹出层\n—\n\n\ngetAllLeaves\n获取所有的叶子节点\n—\n\n\ngetNodeById\n根据id获取节点\nid\n\n\ngetNodeByValue\n根据value值获取节点\nvalue\n\n\nisExpanded\n节点是否展开\n—\n\n\ndestroy\n销毁组件\n—\n\n\n\n事件\n\n\n\n名称\n说明\n\n\n\n\nBI.Expander.EVENT_TRIGGER_CHANGE\ntrigger发生改变触发\n\n\nBI.Expander.EVENT_CHANGE\n弹出层点击触发\n\n\nBI.Expander.EVENT_EXPAND\nExpander展开触发\n\n\nBI.Expander.EVENT_COLLAPSE\nExpander收起触发\n\n\nBI.Expander.EVENT_AFTER_INIT\nExpander初始化后触发\n\n\nBI.Expander.EVENT_BEFORE_POPUPVIEW\n下拉列表弹出前触发\n\n\nBI.Expander.EVENT_AFTER_POPUPVIEW\n下拉列表弹出后触发\n\n\nBI.Expander.EVENT_BEFORE_HIDEVIEW\n下拉列表收起前触发\n\n\nBI.Expander.EVENT_AFTER_HIDEVIEW\n下拉列表收起后触发\n\n\n\n\n"},"core/combination/group_combo.html":{"url":"core/combination/group_combo.html","title":"group_combo","keywords":"","body":"bi.combo_group\n基类BI.Widget\nsource\n\nBI.createWidget({\n element: \"#wrapper\",\n type: \"bi.combo_group\",\n el: {\n type: \"bi.icon_text_icon_item\",\n text: \"2010年\",\n value: 2010,\n height: 25,\n iconCls: \"close-ha-font\"\n },\n children: [{\n type: \"bi.single_select_item\",\n height: 25,\n text: \"一月\",\n value: 11\n }]\n});\n\n\n\n\nAPI\n基础属性\n\n\n\n参数\n说明\n类型\n可选值\n默认值\n\n\n\n\nchildern\n子组件\narray\n—\n[ ]\n\n\npopup\n弹出层\nobject\n—\n{el: {type: \"bi.button_tree\",chooseType: 0,layouts: [{type: \"bi.vertical\"}]}}\n\n\nisDefaultInit\n是否默认初始化子节点\nboolean\ntrue,false\nfalse\n\n\nisNeedAdjustHeight\n是否需要高度调整\nboolean\ntrue,false\nfalse\n\n\nisNeedAdjustWidth\n是否需要宽度调整\nboolean\ntrue,false\nfalse\n\n\nel\n自定义下拉框trigger\nobject\n—\n{type: \"bi.text_button\", text: \"\", value: \"\"}\n\n\ntrigger\n下拉列表的弹出方式\nstring\nclick,hover\n\"click\"\n\n\nadjustLength\n弹出列表和trigger的距离\nnumber\n—\n0\n\n\ndirection\n弹出列表和trigger的位置关系\nstring\ntop | bottom | left | right | top,left | top,right | bottom,left | bottom,right\n\"bottom\"\n\n\n\n对外方法\n\n\n\n名称\n说明\n回调参数 \n\n\n\n\npopulate\n刷新列表\nitems\n\n\nsetValue\n设置combo value值\nv\n\n\ngetValue\n获取combo value值\n—\n\n\n\n\n"},"core/combination/loader.html":{"url":"core/combination/loader.html","title":"loader","keywords":"","body":"bi.loader\n加载控件,BI.Widget\nsource\n\nBI.createWidget({\n element: \"#wrapper\",\n type: \"bi.loader\",\n itemsCreator: function(options, populate) {\n populate(BI.map(BI.map(BI.makeArray(3, null), function(idx, value){\n return {\n text: faker.name.findName(),\n value: BI.UUID()\n };\n }), function(i, v) {\n return BI.extend(v, {\n type: \"bi.single_select_item\",\n height: 25\n })\n }))\n },\n hasNext: function(option) {\n return option.count \n\n\n\nAPI\n基础属性\n\n\n\n参数\n说明\n类型\n可选值\n默认值\n\n\n\n\ndirection\ncombo弹出层位置\nstring\ntop,bottom,left,right,(top,left),(top,right),(bottom,left),(bottom,right)\n\"top\"\n\n\nisDefaultInit\n是否默认初始化子数据\nboolean\ntrue,false\ntrue\n\n\nlogic\n布局逻辑\nobject\n—\n{dynamic:true,scrolly:true}\n\n\nitems\n子组件\narray\n—\n[]\n\n\nitemsCreator\n子组件构造器\nfunction\n—\n—\n\n\nonLoaded\n加载中\nfunction\n—\n—\n\n\ncount\n是否显示总页数\nboolean\ntrue,false\nboolean\n\n\nprev\n上一页\nboolean\ntrue,false\nboolean\n\n\nnext\n下一页\nboolean\ntrue,false\nboolean\n\n\nhasPrev\n判断是否有上一页\nfunction\n—\n—\n\n\nhasNext\n判断是否有下一页\nfunction\n—\n—\n\n\n\n对外方法\n\n\n\n名称\n说明\n回调参数 \n\n\n\n\nhasNext\n判断是否有下一页\n—\n\n\nprependItems\n内部前插入\nitems\n\n\naddItems\n内部后插入\nitems\n\n\npopulate\n刷新列表\nitems\n\n\nsetNotSelectedValue\n设置未被选中的值\nvalue,可以是单个值也可以是个数组\n\n\nsetValue\n设置value值\nvalue,可以是单个值也可以是个数组\n\n\ngetNotSelectedValue\n获取没有被选中的值\n—\n\n\ngetValue\n获取被选中的值\n—\n\n\ngetAllButtons\n获取所有button\n—\n\n\ngetAllLeaves\n获取所有的叶子节点\n—\n\n\ngetSelectedButtons\n获取所有被选中的元素\n—\n\n\ngetNotSelectedButtons\n获取所有未被选中的元素\n—\n\n\ngetIndexByValue\n根据value值获取value在数组中的索引\nvalue\n\n\ngetNodeById\n根据id获取节点\nid\n\n\ngetNodeByValue\n根据value值获取节点\nvalue\n\n\nempty\n清空组件\n—\n\n\ndestroy\n销毁组件\n—\n\n\n\n\n"},"core/combination/navigation.html":{"url":"core/combination/navigation.html","title":"navigation","keywords":"","body":"bi.navigation\n导航栏控件,BI.Widget\nsource\n\n\nBI.createWidget({\n element: \"#wrapper\",\n type: \"bi.navigation\",\n tab: {\n height: 30,\n items: [{\n once: false,\n text: \"后退\",\n value: -1\n }, {\n once: false,\n text: \"前进\",\n value: 1\n }]\n },\n cardCreator: function(v) {\n return BI.createWidget({\n type: \"bi.label\",\n cls: \"layout-bg\" + BI.random(1, 8),\n text: \"第\" + v + \"页\"\n })\n }\n})\n\n\n\nAPI\n基础属性\n\n\n\n参数\n说明\n类型\n可选值\n默认值\n\n\n\n\ndirection\n控件位置\nstring\ntop,bottom,left,right,custom\n\"bottom\"\n\n\nsingle\n是否为单页\nboolean\ntrue,false\ntrue\n\n\ndefaultShowIndex\n是否默认显示\nboolean\ntrue,false\ntrue\n\n\ntab\ntab页元素\nboolean\ntrue,false\ntrue\n\n\nlogic\n布局逻辑\nobject\n—\n{dynamic:true}\n\n\ncardCreator\n面板构造器\nfunction\n—\nv\n\n\nafterCardCreated\n面板构造之后\nfunction\n—\n—\n\n\nafterCardShow\n面板显示之后\nfunction\n—\n—\n\n\n\n对外方法\n\n\n\n名称\n说明\n回调参数 \n\n\n\n\nrender\n渲染组件\n—\n\n\nmounted\n挂载组件\n—\n\n\nafterCardCreated\n创建卡导航页页之后\nv\n\n\nafterCardShow\n导航页展示之后\nv\n\n\nsetSelect\n设置选中的index\nv\n\n\ngetSelect\n获取选中的index\n—\n\n\ngetSelectedCard\n获取选中的导航页\n—\n\n\npopulate\n刷新列表\nitems\n\n\nsetValue\n设置value值\nvalue\n\n\ngetValue\n获取被选中的值\n—\n\n\nempty\n清空组件\n—\n\n\ndestroy\n销毁组件\n—\n\n\n\n\n"},"core/combination/searcher.html":{"url":"core/combination/searcher.html","title":"searcher","keywords":"","body":"bi.searcher\n搜索逻辑控件,BI.Widget\nsource\n\nBI.createWidget({\n type: \"bi.searcher\",\n element:\"#wrapper\",\n adapter: {\n getItems: function () {\n return [{\n type: \"bi.label\",\n value: \"张三\"\n }]\n }\n },\n popup: {\n type: \"bi.button_group\",\n cls: \"bi-border\",\n items: items,\n layouts: [{\n type: \"bi.vertical\"\n }],\n },\n masker: false\n })\n\n\n\nAPI\n基础属性\n\n\n\n参数\n说明\n类型\n可选值\n默认值\n\n\n\n\nhgap\n效果相当于容器左右padding值\nnumber\n—\n0\n\n\nvgap\n效果相当于容器上下padding值\nnumber\n—\n0\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\nchooseType\n选择类型\nconst\n\nCHOOSE_TYPE_SINGLE\n\n\nisDefaultInit\n是否默认初始化子节点\nboolean\ntrue,false\nfalse\n\n\nisAutoSearch\n是否自动搜索\nboolean\ntrue,false\ntrue\n\n\nisAutoSync\n是否自动同步数据, 即是否保持搜索面板和adapter面板状态值的统一\nboolean\ntrue,false\ntrue\n\n\nonSearch\nisAutoSearch为false时启用\nfunction(op.callback)\n—\n—\n\n\nel\n开启弹出层的元素\nobject\n—\n{type: \"bi.search_editor\"}\n\n\npopup\n弹出层\nobject\n—\n{type: \"bi.searcher_view\"}\n\n\nadapter\n弹出层显示的位置元素\nobject\n—\nnull\n\n\nmasker\nmasker层\nobject\n—\n{offset: {}}\n\n\n\n对外方法\n\n\n\n名称\n说明\n回调参数 \n\n\n\n\npopulate\n刷新列表\nresult, searchResult, keyword\n\n\nsetValue\n设置value值\nvalue\n\n\ngetValue\n获取被选中的值\n—\n\n\nempty\n清空组件\n—\n\n\ndestroy\n销毁组件\n—\n\n\nadapter\n搜索列表位置\n—\n\n\ndoSearch\n开始搜索\n—\n\n\nstopSearch\n停止搜索\n—\n\n\nisSearching\n是否正在搜索\n—\n\n\nisViewVisible\n组件是否可见\n—\n\n\ngetView\n获取搜索列表栏\n—\n\n\nhasMatched\n是否匹配\n—\n\n\nadjustHeight\n调整高度\n—\n\n\nadjustView\n调整搜索列表栏\n—\n\n\ngetKeyword\n获取搜索关键词\n—\n\n\ngetKeywords\n获取搜索关键词数组\n—\n\n\n\n事件方法\n\n\n\n事件名称\n说明\n回调参数\n\n\n\n\nEVENT_START\n开始搜索\n—\n\n\nEVENT_STOP\n停止搜索\n—\n\n\nEVENT_PAUSE\n暂停搜索\n—\n\n\nEVENT_SEARCHING\n搜索中\n—\n\n\nEVENT_AFTER_INIT\n初始化之后\n—\n\n\n\n事件\n\n\n\n事件\n说明\n\n\n\n\nBI.Searcher.EVENT_CHANGE\n搜索结果面板发生改变触发\n\n\nBI.Searcher.EVENT_START\n开始搜索触发\n\n\nBI.Searcher.EVENT_STOP\n停止搜索触发(搜索框为空)\n\n\nBI.Searcher.EVENT_PAUSE\n搜索暂停触发(搜索文本以空白字符结尾)\n\n\nBI.Searcher.EVENT_SEARCHING\n正在搜索时触发\n\n\nBI.Searcher.EVENT_AFTER_INIT\n搜索结果面板初始化完成后触发\n\n\n\n\n"},"core/combination/switcher.html":{"url":"core/combination/switcher.html","title":"switcher","keywords":"","body":"bi.switcher\n切换显示或隐藏面板,BI.Widget\nsource\n\nBI.createWidget({\n element: \"#wrapper\",\n type: \"bi.switcher\",\n el: {\n type: \"bi.button\",\n height: 25,\n text: \"Switcher\"\n },\n popup: {\n\n },\n adapter: { \n\n }\n})\n\n\n\nAPI\n基础属性\n\n\n\n参数\n说明\n类型\n可选值\n默认值\n\n\n\n\ntrigger\n下拉列表的弹出方式\nstring\nclick,hover\n\"click\"\n\n\ntoggle\n切换状态\nboolean\ntrue,false\ntrue\n\n\ndirection\n面板显示的位置\nstring\n—\nBI.Direction.Top\n\n\nel\n自定义下拉框trigger\nobject\n—\n{ }\n\n\npopup\n弹出层\nobject\n—\n{ }\n\n\nadapter\n弹出层的位置\nobject\n—\nnull\n\n\nmasker\nmasker层\nobejct\n—\n{ }\n\n\nswitcherClass\n切换类\nstring\n—\n\"bi-switcher-popup\"\n\n\nhoverClass\nhover类\nstring\n—\n\"bi-switcher-hover\"\n\n\n\n对外方法\n\n\n\n名称\n说明\n回调参数 \n\n\n\n\nsetValue\n设置value值\nvalue\n\n\ngetValue\n获取被选中的值\n—\n\n\nempty\n清空组件\n—\n\n\ndestroy\n销毁组件\n—\n\n\npopulate\n刷新列表\nitems\n\n\nisViewVisible\n弹窗层是否可见\n—\n\n\nshowView\n显示弹出层\n—\n\n\nhideView\n隐藏弹出层\n—\n\n\ngetView\n获取弹出层\n—\n\n\ngetAllLeaves\n获取所有的叶子节点\n—\n\n\ngetNodeById\n根据id获取节点\nid\n\n\ngetNodeByValue\n根据value值获取节点\nvalue\n\n\nisExpanded\n节点是否展开\n—\n\n\nsetAdapter\n设置弹出层显示的位置元素\nadapter\n\n\nadjustView\n调整弹出层显示的位置元素\n—\n\n\n\n事件方法\n\n\n\n事件名称\n说明\n回调参数\n\n\n\n\nEVENT_EXPAND\n面板展开\n—\n\n\nEVENT_COLLAPSE\n面板收起\n—\n\n\nEVENT_TRIGGER_CHANGE\n面板切换\n—\n\n\nEVENT_AFTER_INIT\n初始化之后\n—\n\n\nEVENT_BEFORE_POPUPVIEW\n面板显示之前\n—\n\n\nEVENT_AFTER_POPUPVIEW\n面板显示之后\n—\n\n\nEVENT_BEFORE_HIDEVIEW\n面板隐藏之前\n—\n\n\nEVENT_AFTER_HIDEVIEW\n面板隐藏之后\n—\n\n\n\n\n"},"core/combination/tab.html":{"url":"core/combination/tab.html","title":"tab","keywords":"","body":"bi.switcher\n切换显示或隐藏面板,BI.Widget\nsource\n\nBI.createWidget({\n element: \"#wrapper\",\n type: \"bi.tab\",\n tab: {\n type: \"bi.button_group\",\n height: 30,\n items: [{\n text: \"Tab1\",\n value: 1,\n width: 50\n }, {\n text: \"Tab2\",\n value: 2,\n width: 50\n }]\n },\n cardCreator: function(v) {\n switch (v) {\n case 1:\n return BI.createWidget({\n type: \"bi.label\",\n cls: \"bi-card\",\n text: \"面板1\"\n })\n case 2:\n return BI.createWidget({\n type: \"bi.label\",\n cls: \"bi-card\",\n text: \"面板2\"\n })\n }\n }\n})\n\n\n\nAPI\n基础属性\n\n\n\n参数\n说明\n类型\n可选值\n默认值\n\n\n\n\ndirection\n控件位置\nstring\ntop,bottom,left,right,custom\n\"bottom\"\n\n\nsingle\n是否为单页\nboolean\ntrue,false\nfalse\n\n\ndefaultShowIndex\n是否默认显示tab页\nboolean\ntrue,false\nfalse\n\n\ntab\ntab标签页\nobject\n—\n{ }\n\n\nlogic\n布局逻辑\nobject\n—\n{dynamic:false}\n\n\ncardCreator\n面板构造器\nfunction\n—\nfunction (v) {return BI.createWidget();}\n\n\n\n对外方法\n\n\n\n名称\n说明\n回调参数 \n\n\n\n\nrender\n渲染组件\n—\n\n\nmounted\n挂载组件\n—\n\n\nremoveTab\n移除tab面板页\ncardname\n\n\ngetTab\n获取tab面板页\nv\n\n\nsetSelect\n设置选中的index\nv\n\n\ngetSelect\n获取选中的index\n—\n\n\ngetSelectedTab\n获取选中的tab面板页\n—\n\n\npopulate\n刷新列表\nitems\n\n\nsetValue\n设置value值\nvalue\n\n\ngetValue\n获取被选中的值\n—\n\n\nempty\n清空组件\n—\n\n\ndestroy\n销毁组件\n—\n\n\n\n\n"},"core/layer/layer_float_box.html":{"url":"core/layer/layer_float_box.html","title":"float_box","keywords":"","body":"bi.float_box\nfloatBox弹出层,BI.Widget\nsource\n\nvar id = BI.UUID();\n\nBI.createWidget({\n element: \"#wrapper\",\n type: \"bi.text_button\",\n text: \"点击弹出FloatBox\",\n width: 200,\n height: 80,\n handler: function() {\n BI.Popovers.remove(id);\n BI.Popovers.create(id, new BI.BarPopoverSection()).open(id);\n }\n})\n\n\n\nAPI\n基础属性\n\n\n\n参数\n说明\n类型\n可选值\n默认值\n\n\n\n\nwidth\n弹出层宽度\nnumber\n—\n600\n\n\nheight\n弹出层高度\nnumber\n—\n500\n\n\n\n对外方法\n\n\n\n名称\n说明\n回调参数 \n\n\n\n\npopulate\n刷新列表\nsectionProvider\n\n\ndestroyed\n销毁组件\n—\n\n\nshow\n显示\n—\n\n\nhide\n隐藏\n—\n\n\nopen\n打开弹出层\n—\n\n\nclose\n关闭弹出层\n—\n\n\nsetZindex\n设置z-index\nz-index\n\n\n\n事件方法\n\n\n\n事件名称\n说明\n回调参数\n\n\n\n\nEVENT_FLOAT_BOX_CLOSED\n关闭弹出层\n—\n\n\nEVENT_FLOAT_BOX_CLOSED\n打开弹出层\n—\n\n\n\n\n"},"core/layer/layer_popup.html":{"url":"core/layer/layer_popup.html","title":"popup","keywords":"","body":"bi.popup_view\n下拉框弹出层, zIndex在1000w,BI.Widget\nsource\n\nBI.createWidget({\n element: \"#wrapper\",\n type: \"bi.popup_view\",\n el: {\n type: \"bi.button_group\",\n items: [{\n text: \"aaa\",\n value: \"aaa\"\n }, {\n text: \"bbb\",\n value: \"bbb\"\n }],\n layouts: [{\n type: \"bi.vertical\"\n }]\n }\n})\n\n\n\nAPI\n基础属性\n\n\n\n参数\n说明\n类型\n可选值\n默认值\n\n\n\n\nmaxWidth\n弹出层最大宽度\nnumber/string\n—\n\"auto\"\n\n\nminWidth\n弹出层最小宽度\nnumber\n—\n100\n\n\nmaxHeight\n弹出层最大高度\nnumber/string\n—\n—\n\n\nminHeight\n弹出层最小高度\nnumber\n—\n25\n\n\nhgap\n效果相当于容器左右padding值\nnumber\n—\n0\n\n\nvgap\n效果相当于容器上下padding值\nnumber\n—\n0\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\ndirection\n工具栏的方向\nconst\n参考button_group\nBI.Direction.Top\n\n\nstopEvent\n是否停止mousedown、mouseup事件\nboolean\ntrue,false\nfalse\n\n\nstopPropagation\n是否停止mousedown、mouseup向上冒泡\nboolean\ntrue,false\nfalse\n\n\ntabs\n导航栏\narray\n—\n[]\n\n\nlogic\n布局逻辑\nobject\n—\n{dynamic:true}\n\n\ntools\n自定义工具栏\nboolean\ntrue,false\nfalse\n\n\nbuttons\ntoolbar栏\narray\n—\n[]\n\n\nel\n子组件\nobject\n—\n{ type: \"bi.button_group\",items: [], chooseType: 0,behaviors: {},layouts: [{type: \"bi.vertical\"}]}\n\n\n\n对外方法\n\n\n\n名称\n说明\n回调参数 \n\n\n\n\npopulate\n刷新列表\nitems\n\n\nresetWidth\n重置宽度\nwidth\n\n\nresetHeight\n重置高度\nheight\n\n\nsetValue\n设置value 值\nvalue\n\n\ngetValue\n获取value值\n—\n\n\nsetZindex\n设置z-index\nz-index\n\n\ngetView\n获取弹出层\n—\n\n\n\n\n"},"core/layer/layer_searcher.html":{"url":"core/layer/layer_searcher.html","title":"searcher","keywords":"","body":"bi.searcher_view\n搜索面板, 基类BI.Widget\nsource\n\nvar searcher = BI.createWidget({\n element: \"#wrapper\",\n type: \"bi.searcher_view\",\n});\nsearcher.populate([{\n text: \"aba\",\n value: \"aba\"\n},{\n text: \"acc\",\n value: \"acc\"\n}], [{\n text: \"a\",\n value: \"a\"\n}], \"a\");\n\n\n\nAPI\n基础属性\n\n\n\n参数\n说明\n类型\n可选值\n默认值\n\n\n\n\ntipText\ntitle文本\nstring\n—\nBI.i18nText(\"BI-No_Select\")\n\n\nchooseType\n选择类型\nconst\n参考button_group\nBI.Selection.Single\n\n\nmatcher\n完全匹配的构造器\nobject\n—\n{type: \"bi.button_group\",behaviors: { redmark: function () { return true;} },items: [], layouts: [{ type: \"bi.vertical\"}]}\n\n\nsearcher\n搜索到的元素\nobject\n—\n{type: \"bi.button_group\",behaviors: {redmark: function () {return true;}}, items: [], layouts: [{ type: \"bi.vertical\" }]}\n\n\n\n对外方法\n\n\n\n名称\n说明\n回调参数 \n\n\n\n\npopulate\n刷新列表\nsearchResult, matchResult, keyword\n\n\nsetValue\n设置value 值\nvalue\n\n\ngetValue\n获取value值\n—\n\n\nempty\n清空组件\n—\n\n\nhasMatched\n是否有匹配的元素\n—\n\n\n\n\n"},"core/widget.html":{"url":"core/widget.html","title":"widget","keywords":"","body":"bi.widget\n所有控件的超类\nAPI\n基础属性\n\n\n\n参数\n说明\n类型\n可选值\n默认值\n\n\n\n\nroot\n根组件\nboolean\ntrue,false\nfalse\n\n\ntagName\nhtml标签\nstring\n—\n\"div\"\n\n\nattributes\n属性\nobject\n—\nnull\n\n\ndata\n数据\nobject\n—\nnull\n\n\ndisabled\n是否可用\nboolean\ntrue,false\nfalse\n\n\ninvisible\n是否可见\nboolean\ntrue,false\nfalse\n\n\ninvalid\n是否有效\nboolean\ntrue,false\nfalse\n\n\nbaseCls\n基础class类\nstring\n—\n\" \"\n\n\nextraCls\n扩展class类\nstring\n—\n\" \"\n\n\ncls\nclass类名\nstring\n—\n\" \"\n\n\n\n生命周期函数\n\n\n\n名称\n说明\n回调参数 \n\n\n\n\nbeforeCreate\n组件实例刚被创建\n—\n\n\ncreated\n组件实例创建完成\n—\n\n\nrender\n渲染组件\n—\n\n\nbeforeMounted\n组件挂载之前\n—\n\n\nmounted\n组件挂载\n—\n\n\nupdate\n组件更新\n—\n\n\nbeforeDestroyed\n组件销毁前调用\n—\n\n\ndestroyed\n组件销毁后调用\n—\n\n\n\n对外方法\n(注: fineui2.0引入生命周期后,widget的实现类不需要重写setEnable,setValid等方法,会自动调用子组件的对应方法\n,一些需要在设置状态后做的额外工作可以通过重写_setXXX来实现)\n\n\n\n名称\n说明\n回调参数 \n\n\n\n\nisMounted\n判断组件是否挂载\n—\n\n\nsetWidth\n设置组件宽度\nwidth\n\n\nsetHeight\n设置组件高度\nheight\n\n\nsetEnable\n设置组件是否可用\nenable\n\n\nsetVisible\n设置组件是否可见\nvisible\n\n\nsetValid\n设置组件是否有效\nvalid\n\n\ndoBehavior\n自定义下拉列表中item项的行为,如高亮,标红等\n—\n\n\ngetWidth\n获取组件宽度\n—\n\n\ngetHeight\n获取组件高度\n—\n\n\nisValid\n判断是否有效\n—\n\n\naddWidget\n添加组件\nname,widget\n\n\ngetWidgetByName\n根据组件名称获取组件\nname\n\n\nremoveWidget\n移除组件\nnameOrWidget\n\n\nhasWidget\n判断是否有该组件\nname\n\n\ngetName\n获取组件名称\n—\n\n\nsetTag\n设置tag\ntag\n\n\ngetTag\n获取tag\n—\n\n\nattr\n设置组件属性\nkey,value\n\n\ngetText\n获取text值\n—\n\n\nsetText\n设置text值\ntext\n\n\ngetValue\n获取value值\n—\n\n\nsetValue\n设置value值\nvalue\n\n\nisEnabled\n是否可用\n—\n\n\nisVisible\n是否可见\n—\n\n\ndisable\n设置组件不可用\n—\n\n\nenable\n设置组件可用\n—\n\n\nvalid\n设置组件有效\n—\n\n\ninvalid\n设置组件无效\n—\n\n\ninvisible\n设置组件不可见\n—\n\n\nvisible\n设置组件可见\n—\n\n\nisolate\n组件不在页面展示,组件事件和内容都在\n—\n\n\nempty\n清空组件\n—\n\n\ndestroy\n销毁组件\n—\n\n\n\n\n"},"core/single.html":{"url":"core/single.html","title":"single","keywords":"","body":"bi.single\n这仅仅只是一个超类, 所有简单控件的基类,类的控制,title的控制,文字超过边界显示3个点,cursor默认pointor,基类BI.Widget\nAPI\n基础属性\n\n\n\n参数\n说明\n类型\n可选值\n默认值\n\n\n\n\nreadonly\n是否只读\nboolean\ntrue,false\nfalse\n\n\ntitle\ntitle\nstring\n—\nnull\n\n\nwarningTitle\n错误title\nstring\n—\nnull\n\n\ntipType\ntitle类型\nstring\nsuccess,warning\nnull\n\n\nvalue\n组件value值\nstring\n—\nnull\n\n\n\n对外方法\n\n\n\n名称\n说明\n回调参数 \n\n\n\n\nenableHover\n恢复hover可用\nopt\n\n\ndisabledHover\n取消hover事件\n—\n\n\npopulate\n刷新或者清空列表\nitems\n\n\nsetTitle\n设置title\ntitle,opt\n\n\nsetWarningTitle\n设置错误title\ntitle,opt\n\n\ngetTipType\n获取tipType\n—\n\n\nisReadOnly\n是否只读\n—\n\n\ngetTitle\n获取title\n—\n\n\ngetWarningTitle\n获取warningtitle\n—\n\n\nsetValue\n设置value值\nvalue\n\n\ngetValue\n获取value值\n—\n\n\n\n\n"},"core/basic_button.html":{"url":"core/basic_button.html","title":"basic_button","keywords":"","body":"bi.basic_button\n一般的button父级,基类BI.Single\nAPI\n基础属性\n\n\n\n参数\n说明\n类型\n可选值\n默认值\n\n\n\n\nvalue\n组件value值\nstring\n—\nnull\n\n\nstopEvent\n阻止事件\nboolean\ntrue,false\nfalse\n\n\nstopPropagation\n阻止冒泡\nboolean\ntrue,false\nfalse\n\n\nselected\nbutton的选中状态\nboolean\ntrue,false\nfalse\n\n\nonce\n点击一次选中有效,再点无效\nboolean\ntrue,false\nfalse\n\n\nforceSelected\n点击即选中, 选中了就不会被取消,与once的区别是forceSelected不影响事件的触发\nboolean\ntrue,false\nfalse\n\n\nforceNotSelected\n无论怎么点击都不会被选中\nboolean\ntrue,false\nfalse\n\n\ndisableSelected\n使能选中\nboolean\ntrue,false\nfalse\n\n\nshadow\n是否显示阴影\nboolean\ntrue,false\nfalse\n\n\nisShadowShowingOnSelected\n选中状态下是否显示阴影\nboolean\ntrue,false\nfalse\n\n\ntrigger\n被选元素要触发的事件\nstring\nmousedown, mouseup, click, dblclick, lclick\nnull\n\n\nhandler\n点击事件回调\nfunction\n—\nBI.emptyFn\n\n\n\n对外方法\n\n\n\n名称\n说明\n回调参数 \n\n\n\n\nbindEvent\n绑定事件\n—\n\n\nbeforeClick\n点击事件之前\n—\n\n\ndoClick\n点击事件\n—\n\n\nhandle\n返回该对象\n—\n\n\nhover\nhover事件\n—\n\n\ndishover\n取消hover事件\n—\n\n\nsetSelected\n设置选中的文本\nb\n\n\nisSelected\n是否被选中\n—\n\n\nisOnce\n是否只允许点击一次\n—\n\n\nisForceSelected\n判断是否点击即选中\n—\n\n\nisForceNotSelected\n判断是否怎么点击都不会被选中\n—\n\n\nisDisableSelected\n判断是否让选中\n—\n\n\nsetText\n设置文本值\n—\n\n\ngetText\n获取文本值\n—\n\n\nempty\n清空组件\n—\n\n\ndestroy\n销毁组件\n—\n\n\n\n\n"},"core/node_button.html":{"url":"core/node_button.html","title":"node_button","keywords":"","body":"bi.NodeButton\n表示一个可以展开的节点, 不仅有选中状态而且有展开状态, BI.BasicButton\nAPI\n基础属性\n\n\n\n参数\n说明\n类型\n可选值\n默认值\n\n\n\n\nopen\n节点是否展开\nboolean\ntrue,false\nfalse\n\n\n\n对外方法\n\n\n\n名称\n说明\n回调参数 \n\n\n\n\ndoClick\n点击展开\n—\n\n\nisOnce\n点击一次后失效\n—\n\n\nisOpened\n判断节点是否展开\n—\n\n\nsetOpened\n设置节点展开状态\nb\n\n\ntriggerCollapse\n节点收起\n—\n\n\ntriggerExpand\n节点展开\n—\n\n\n\n\n"},"core/pane.html":{"url":"core/pane.html","title":"pane","keywords":"","body":"bi.pane\n当没有元素时有提示信息的view, BI.Widget\nAPI\n基础属性\n\n\n\n参数\n说明\n类型\n可选值\n默认值\n\n\n\n\ntipText\ntitle文本\nstring\n—\nBI.i18nText(\"BI-No_Selected_Item\")\n\n\noverlap\n是否含有遮罩层\nboolean\ntrue,false\ntrue\n\n\nonLoaded\n已经加载\nfunction\n—\n—\n\n\n\n对外方法\n\n\n\n名称\n说明\n回调参数 \n\n\n\n\npopulate\n刷新列表\nitems\n\n\nempty\n清空组件\n—\n\n\nhasMatched\n是否有匹配的元素\n—\n\n\nloading\n加载中\n—\n\n\nloaded\n加载完毕\n—\n\n\ncheck\n检查是否为空\n—\n\n\nsetTipVisible\n设tip可见\n—\n\n\n\n\n"},"base/label.html":{"url":"base/label.html","title":"label","keywords":"","body":"bi.label\n文本标签\nsource\n\nBI.createWidget({\n type: \"bi.label\",\n textWidth: 100,\n textHeight: 30,\n text: \"基本标签\"\n});\n\n\n\n\nAPI\n基础属性\n\n\n\n参数\n说明\n类型\n可选值\n默认值\n\n\n\n\nhgap\n效果相当于容器左右padding值\nnumber\n—\n0\n\n\nvgap\n效果相当于容器上下padding值\nnumber\n—\n0\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\ntextWidth\n文本标签宽度\nnumber\n—\nnull\n\n\ntextHeight\n文本标签宽度\nnumber\n—\nnull\n\n\ntext\n文本内容\nstring\n—\n\" \"\n\n\n\n高级属性\n\n\n\n参数\n说明\n类型\n可选值\n默认值\n\n\n\n\ntextAlign\n文本对齐方式\nstring\nleft,center,right\ncenter\n\n\nwhiteSpace\n元素内空白处理方式\nstring\nnormal,nowrap\nnowrap\n\n\nforceCenter\n是否无论如何都要居中, 不考虑超出边界的情况, 在未知宽度和高度时有效\nboolean\ntrue,false\ntrue\n\n\npy\n拼音\nstring\n—\n空\n\n\nkeyword\n设置标红的关键词\nstring\n—\n空\n\n\ndisabled\n灰化\nboolean\ntrue,false\n无\n\n\ntitle\n提示title\nstring\n—\n空\n\n\nwarningTitle\n错误提示title\nstring\n—\n空\n\n\n\n对外方法\n\n\n\n名称\n说明\n回调参数 \n\n\n\n\ndoRedMark\n文本标红\n—\n\n\nunRedMark\n取消文本标红\n—\n\n\ndoHighLight\n文本高亮\n—\n\n\nunHighLight\n取消文本高亮\n—\n\n\nsetText\n设置文本值\n需要设置的文本值text\n\n\ngetText\n获取文本值\n—\n\n\nsetStyle\n设置文本样式\n需要设置的文本标签样式,例{\"color\":\"#000\"}\n\n\nsetValue\n设置文本值\n需要设置的文本值text\n\n\npopulate\n清空label\n—\n\n\n\n\n"},"base/bubble.html":{"url":"base/bubble.html","title":"bubble","keywords":"","body":"bi.bubble\n气泡提示\nsource\n\nBI.createWidget({\n type: 'bi.bubble',\n element: \"#wrapper\",\n height: 30,\n text: \"测试\"\n})\n\n\n\n\nAPI\n基础属性\n\n\n\n参数\n说明\n类型\n可选值\n默认值\n\n\n\n\ndirection\n气泡显示位置\nstring\n—\n\"top\"\n\n\nheight\n气泡高度\nnumber\n—\n35\n\n\ntext\n气泡显示内容\nstring\n—\n\" \"\n\n\n\n对外方法\n\n\n\n名称\n说明\n回调参数 \n\n\n\n\nsetText\n设置文本值\n需要设置的文本值text\n\n\n\n\n"},"base/toast.html":{"url":"base/toast.html","title":"toast","keywords":"","body":"bi.toast\ntoast提示\nsource\n\nBI.createWidget({\n type: 'bi.toast',\n element: \"#wrapper\",\n height: 30,\n level: \"warning\",\n text: \"toast测试\"\n})\n\n\n\n\nAPI\n基础属性\n\n\n\n参数\n说明\n类型\n可选值\n默认值\n\n\n\n\nlevel\n提示类型\nstring\nsuccess,warning\n\"success\"\n\n\nheight\n高度\nnumber\n—\n30\n\n\ntext\n显示内容\nstring\n—\n\" \"\n\n\n\n对外方法\n\n\n\n名称\n说明\n回调参数 \n\n\n\n\nsetText\n设置文本值\n需要设置的文本值text\n\n\nsetHeight\n设置高度\n需要设置的高度值height\n\n\n\n\n"},"base/message.html":{"url":"base/message.html","title":"message","keywords":"","body":"bi.Msg\n消息提示\nsource\n\nBI.createWidget({\n type: \"bi.button\",\n element: \"#wrapper\",\n text : '点击我弹出一个消息框',\n height : 30,\n handler : function() {\n BI.Msg.confirm('测试消息框',\"我是测试消息框的内容\");\n }\n});\n\n\n\n\n\n\n对外方法\n\n\n\n名称\n说明\n回调参数 \n\n\n\n\nalert\n警告消息框\ntitle, message, callback\n\n\nconfirm\n确认消息框\ntitle, message, callback\n\n\nprompt\n提示消息框\ntitle, message, value, callback, min_width\n\n\ntoast\ntoast提示\nmessage, level, context\n\n\n\n\n"},"base/button/button.html":{"url":"base/button/button.html","title":"button","keywords":"","body":"bi.button\n文字类型的按钮,基类BI.BasicButton\nsource\n\nBI.createWidget({\n type: 'bi.button',\n element: \"#wrapper\",\n text: '一般按钮',\n level: 'common',\n height: 30\n});\n\n\n\nAPI\n基础属性\n\n\n\n参数\n说明\n类型\n可选值\n默认值\n\n\n\n\nhgap\n效果相当于文本框左右padding值,如果clear属性为true,该属性值置0\nnumber\n—\n10\n\n\nvgap\n效果相当于文本框上下padding值\nnumber\n—\n0\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\nitems\n子控件数组\narray\n—\n[ ]\n\n\nwidth\n宽度\nnumber\n—\n—\n\n\nheight\n高度\nnumber\n—\n—\n\n\n\n高级属性\n\n\n\n参数\n说明\n类型\n可选值\n默认值\n\n\n\n\nlevel\n按钮类型\nstring\ncommon,success,warning,ignore\ncommon\n\n\nminWidth\n最小宽度,如果block/clear中某一项为true,此项值为0,否则为90\nnumber\n—\n90\n\n\nshadow\n是否显示阴影\nboolean\ntrue,false\nprops.clear !== true\n\n\nisShadowShowingOnSelected\n选中状态下是否显示阴影\nboolean\ntrue,false\ntrue\n\n\nreadonly\n是否只读\nboolean\ntrue,false\ntrue\n\n\niconClass\n图标类型\nstring\n—\n\" \"\n\n\nblock\n是否块状显示,即不显示边框,没有最小宽度的限制\nboolean\ntrue,false\nfalse\n\n\nclear\n是否去掉边框和背景\nboolean\ntrue,false\nfalse\n\n\ntextAlign\n文字布局\nstring\nleft,center,right\ncneter\n\n\nwhiteSpace\n元素内的空白处理方式\nstring\nnormal,nowrap\nnowrap\n\n\nforceCenter\n是否无论如何都要居中, 不考虑超出边界的情况, 在未知宽度和高度时有效\nboolean\ntrue,false\nfalse\n\n\ntextWidth\n按钮文本宽度\nnumber\n—\nnull\n\n\ntextHeight\n按钮文本高度\nnumber\n—\nnull\n\n\n\n对外方法\n\n\n\n名称\n说明\n回调参数 \n\n\n\n\ndoRedMark\n文本标红\n—\n\n\nunRedMark\n取消文本标红\n—\n\n\ndoHighLight\n文本高亮\n—\n\n\nunHighLight\n取消文本高亮\n—\n\n\nsetText\n设置文本值\n需要设置的文本值text\n\n\ndoClick\n点击事件\n—\n\n\ndestroy\n销毁事件\n—\n\n\nsetValue\n设置文本值\n需要设置的文本值text\n\n\n\n\n"},"base/button/text_button.html":{"url":"base/button/text_button.html","title":"text_button","keywords":"","body":"bi.text_button\n可以点击的一行文字,基类BI.BasicButton\nsource\n\nBI.createWidget({\n type: 'bi.text_button',\n text: '文字按钮',\n height: 30\n});\n\n\n\nAPI\n基础属性\n\n\n\n参数\n说明\n类型\n可选值\n默认值\n\n\n\n\nhgap\n效果相当于文本框左右padding值,如果clear属性为true,该属性值置0\nnumber\n—\n10\n\n\nlgap\n效果相当于文本框left-padding值\nnumber\n—\n0\n\n\nrgap\n效果相当于文本框right-padding值\nnumber\n—\n0\n\n\ntext\n按钮文本内容\nstring\n—\n—\n\n\ntextWidth\n按钮文本宽度\nnumber\n—\nnull\n\n\ntextHeight\n按钮文本高度\nnumber\n—\nnull\n\n\n\n高级属性\n\n\n\n参数\n说明\n类型\n可选值\n默认值\n\n\n\n\npy\n拼音\nstring\n\n\" \"\n\n\ntextAlign\n文字布局\nstring\nleft,center,right\ncneter\n\n\nwhiteSpace\n元素内的空白处理方式\nstring\nnormal,nowrap\nnowrap\n\n\nforceCenter\n是否无论如何都要居中, 不考虑超出边界的情况, 在未知宽度和高度时有效\nboolean\ntrue,false\nfalse\n\n\n\n对外方法\n\n\n\n名称\n说明\n回调参数 \n\n\n\n\ndoRedMark\n文本标红\n—\n\n\nunRedMark\n取消文本标红\n—\n\n\ndoHighLight\n文本高亮\n—\n\n\nunHighLight\n取消文本高亮\n—\n\n\nsetText\n设置文本值\n需要设置的文本值text\n\n\ndoClick\n点击事件\n—\n\n\nsetValue\n设置文本值\n需要设置的文本值text\n\n\nsetStyle\n设置文本样式\n需要设置的文本标签样式,例{\"color\":\"#000\"}\n\n\n\n\n"},"base/button/icon_button.html":{"url":"base/button/icon_button.html","title":"icon_button","keywords":"","body":"bi.icon_button\n图标button,基类BI.BasicButton\nsource\n\nBI.createWidget({\n type: 'bi.icon_button',\n cls: \"close-ha-font\",\n width: 20,\n height: 20\n});\n\n\n\nAPI\n基础属性\n\n\n\n参数\n说明\n类型\n可选值\n默认值\n\n\n\n\niconWidth\n图标宽度\nnumber\n—\nnull\n\n\niconHeight\n图标高度\nnumber\n—\nnull\n\n\n\n对外方法\n\n\n\n名称\n说明\n回调参数 \n\n\n\n\ndoClick\n点击事件\n—\n\n\n\n\n"},"base/button/image_button.html":{"url":"base/button/image_button.html","title":"image_button","keywords":"","body":"bi.image_button\n图片的button,基类BI.BasicButton\nsource\n\nBI.createWidget({\n type: 'bi.image_button',\n src: \"http://www.easyicon.net/api/resizeApi.php?id=1206741&size=128\",\n width: 100,\n height: 100\n});\n\n\n\nAPI\n基础属性\n\n\n\n参数\n说明\n类型\n可选值\n默认值\n\n\n\n\nsrc\n图片路径\nstring\n—\n\" \"\n\n\niconWidth\n图标宽度\nnumber/string\n—\n\"100%\"\n\n\niconHeight\n图标高度\nnumber/string\n—\n\"100%\"\n\n\n\n对外方法\n\n\n\n名称\n说明\n回调参数 \n\n\n\n\ndoClick\n点击事件\n—\n\n\nsetWidth\n设置按钮宽度\n宽度width\n\n\nsetHeight\n设置按钮高度\n高度height\n\n\nsetImageWidth\n设置图片宽度\n宽度width\n\n\nsetImageHeight\n设置图片高度\n高度height\n\n\ngetImageWidth\n获取图片宽度\n—\n\n\ngetImageHeight\n获取图片高度\n—\n\n\nsetSrc\n设置图片路径\nsrc\n\n\ngetSrc\n获取图片路径\n—\n\n\n\n\n"},"base/editor/editor.html":{"url":"base/editor/editor.html","title":"editor","keywords":"","body":"bi.editor\n文本框,基类BI.Single\nsource\n\nBI.createWidget({\n type: \"bi.editor\",\n element: \"#wrapper\",\n errorText: \"字段不可重名!\",\n width: 200,\n height: 30\n});\n\n\n\nAPI\n基础属性\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\nallowBlank\n是否允许空值\nboolean\ntrue,false\nfalse\n\n\nwatermark\n文本框placeholder\nstring\n—\n\" \"\n\n\nerrorText\n错误提示\nstring/function\n—\n\" \"\n\n\ntipType\n提示类型\nstring\nsuccess,warning\n\"warning\"\n\n\ninputType\n输入框类型\nstring\n参考input输入框类型\n\"text\"\n\n\n\n对外方法\n\n\n\n名称\n说明\n回调参数 \n\n\n\n\nsetErrorText\n设置错误文本\ntext\n\n\ngetErrorText\n获取错误文本\n—\n\n\nsetErrorVisible\n设置错误文本可见\nb\n\n\ndisableError\n设置error不可用\n—\n\n\nenableError\n设置error可用\n—\n\n\ndisableWaterMark\n设置文本框placeholder不可用\n—\n\n\nenableWaterMark\n恢复文本框placeholder可用\n—\n\n\nfocus\n文本框获取焦点\n—\n\n\nblur\n文本框失焦\n—\n\n\nselectAll\n选中文本框文本\n—\n\n\nonKeyDown\n按键事件\nkey\n\n\nsetValue\n设置文本框值\nvalue\n\n\ngetLastValidValue\n获取文本框最后一次输入的有效值\n—\n\n\nresetLastValidValue\n重置文本框最后一次输入的有效值\nvalue\n\n\ngetValue\n获取文本框值\n—\n\n\nisEditing\n文本框是否处于编辑状态\n—\n\n\nisValid\n文本框值是否有效\n—\n\n\n\n事件\n\n\n\n事件\n说明\n\n\n\n\nBI.Editor.EVENT_CHANGE\neditor的value发生改变触发\n\n\nBI.Editor.EVENT_FOCUS\nfocus事件\n\n\nBI.Editor.EVENT_BLUR\nblur事件\n\n\nBI.Editor.EVENT_CLICK\n点击编辑框触发(不在编辑状态时)\n\n\nBI.Editor.EVENT_KEY_DOWN\nkeyDown时触发\n\n\nBI.Editor.EVENT_SPACE\n按下空格触发\n\n\nBI.Editor.EVENT_BACKSPACE\n按下Backspace触发\n\n\nBI.Editor.EVENT_START\n开始输入触发\n\n\nBI.Editor.EVENT_PAUSE\n暂停输入触发(输入空白字符)\n\n\nBI.Editor.EVENT_STOP\n停止输入触发\n\n\nBI.Editor.EVENT_CONFIRM\n确定输入触发(blur时且输入值有效)\n\n\nBI.Editor.EVENT_VALID\n输入值有效的状态事件\n\n\nBI.Editor.EVENT_ERROR\n输入值无效的状态事件\n\n\nBI.Editor.EVENT_ENTER\n回车事件\n\n\nBI.Editor.EVENT_RESTRICT\n回车但是值不合法\n\n\nBI.Editor.EVENT_REMOVE\n输入为空时按下backspace\n\n\nBI.Editor.EVENT_EMPTY\n输入框为空时触发\n\n\n\n\n"},"base/editor/code_editor.html":{"url":"base/editor/code_editor.html","title":"code_editor","keywords":"","body":"bi.code_editor\n代码文本框,基类BI.Single\nsource\n\nBI.createWidget({\n type: \"bi.code_editor\",\n cls: \"mvc-border\",\n width: 600,\n height: 400\n});\n\n\n\nAPI\n基础属性\n\n\n\n参数\n说明\n类型\n可选值\n默认值\n\n\n\n\nwatermark\n文本框placeholder\nstring\n—\n\" \"\n\n\nreadOnly\n是否只读\nboolean\ntrue,false\nfalse\n\n\nlineHeight\n行高\nnumber\n—\n2\n\n\nvalue\n文本框值\nstring\n—\n\" \"\n\n\nparamFormatter\n参数显示值构造函数\nfunction\n—\nvalue\n\n\n\n对外方法\n\n\n\n名称\n说明\n回调参数 \n\n\n\n\ninsertParam\n插入参数\nparam\n\n\ninsertString\n插入字符串\nstr\n\n\ngetValue\n获取文本框值\n—\n\n\nsetValue\n设置文本框值\nvalue\n\n\nfocus\n文本框获取焦点\n—\n\n\nblur\n文本框失焦\n—\n\n\nsetStyle\n设置文本样式\n需要设置的文本标签样式style,例{\"color\":\"#000\"}\n\n\ngetStyle\n获取文本样式\n—\n\n\nrefresh\n刷新文本框\n—\n\n\n\n\n"},"base/editor/multifile_editor.html":{"url":"base/editor/multifile_editor.html","title":"multifile_editor","keywords":"","body":"bi.multifile_editor\n多文件,基类BI.Single\nsource\n\nBI.createWidget({\n type: \"bi.multifile_editor\",\n width: 400,\n height: 300\n});\n\n\n\nAPI\n基础属性\n\n\n\n参数\n说明\n类型\n可选值\n默认值\n\n\n\n\nmultiple\n是否支持多选\nboolean\ntrue,false\nfalse\n\n\nmaxSize\n最大可选数量\nnumber\n—\n-1\n\n\naccept\n允许上传的文件类型\nstring\n—\n\" \"\n\n\nurl\n文件路径\nstring\n—\n\" \"\n\n\n\n对外方法\n\n\n\n名称\n说明\n回调参数 \n\n\n\n\nselect\n选择文件\n—\n\n\ngetValue\n获取文件名称\n—\n\n\nupload\n文件上传\n—\n\n\nreset\n重置\n—\n\n\n\n事件\n\n\n\n事件\n说明\n\n\n\n\nBI.MultifileEditor.EVENT_UPLOADSTART\n开始上传时触发\n\n\nBI.MultifileEditor.EVENT_PROGRESS\n上传过程中触发\n\n\nBI.MultifileEditor.EVENT_UPLOADED\n上传结束后触发\n\n\n\n\n"},"base/editor/textarea_editor.html":{"url":"base/editor/textarea_editor.html","title":"textarea_editor","keywords":"","body":"bi.textarea_editor\n文本域,基类BI.Single\nsource\n\nBI.createWidget({\n type: \"bi.textarea_editor\",\n width: 400,\n height: 300\n});\n\n\n\nAPI\n基础属性\n\n\n\n参数\n说明\n类型\n可选值\n默认值\n\n\n\n\nvalue\n文本域的值\nstring\n—\n\" \"\n\n\n\n对外方法\n\n\n\n名称\n说明\n回调参数 \n\n\n\n\ngetValue\n获取文本域值\n—\n\n\nsetValue\n设置文本域值\nvalue\n\n\nsetStyle\n设置文本域样式\n需要设置的文本域样式style,例{\"color\":\"#000\"}\n\n\ngetStyle\n获取文本域样式\n—\n\n\nfocus\n文本域获取焦点\n—\n\n\nblur\n文本域失焦\n—\n\n\n\n\n"},"base/editor/formula_editor.html":{"url":"base/editor/formula_editor.html","title":"formula_editor","keywords":"","body":"bi.formula_editor\n公式编辑控件,基类BI.Single\nsource\n\nBI.createWidget({\n type: \"bi.formula_editor\",\n cls: \"bi-border\",\n watermark:'请输入公式',\n value: 'SUM(C5, 16, 26)',\n width: \"100%\",\n height: \"100%\"\n});\n\n\n\nAPI\n基础属性\n\n\n\n参数\n说明\n类型\n可选值\n默认值\n\n\n\n\nvalue\n文本域的值\nstring\n—\n\" \"\n\n\nwatermark\n文本框placeholder\nstring\n—\n\" \"\n\n\nfieldTextValueMap\n字段集合\nonject\n—\n{}\n\n\nshowHint\n是否显示提示信息\nboolean\ntrue,false\ntrue\n\n\nlineHeight\n行高\nnumber\n—\n2\n\n\n\n对外方法\n\n\n\n名称\n说明\n回调参数 \n\n\n\n\ndisableWaterMark\n设置文本框placeholder不可用\n—\n\n\nfocus\n文本框获取焦点\n—\n\n\ninsertField\n添加字段\nfield\n\n\ninsertFunction\n插入函数\nfn\n\n\ninsertOperator\n插入操作符\nop\n\n\nsetFunction\n设置函数\nv\n\n\ninsertString\n插入字符串\nstr\n\n\ngetFormulaString\n获取公式框内容\n—\n\n\ngetUsedFields\n获取可用字段\n—\n\n\ngetCheckString\n获取校验内容\n—\n\n\ngetValue\n获取文本框值\n—\n\n\nsetValue\n设置文本框值\nvalue\n\n\nsetFieldTextValueMap\n设置字段集合\nfieldTextValueMap\n\n\nrefresh\n刷新文本框\n—\n\n\n\n\n"},"base/table/table_view.html":{"url":"base/table/table_view.html","title":"table_view","keywords":"","body":"bi.table_view\n能处理静态宽度以及动态宽度的表\nsource\nBI.createWidget({\n type: \"bi.table_view\",\n element: 'body',\n isNeedMerge: true,\n isNeedFreeze: true,\n freezeCols: [0, 1],\n mergeCols: [0, 1],\n columnSize: [100, 200, 300, 400, 500],\n items: [],\n header: []\n});\n\n\n\n参数设置\n\n\n\n参数\n说明\n类型\n默认值\n\n\n\n\nisNeedMerge\n是否需要合并单元格\nboolean\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\n25\n\n\nfooterRowSize\n表尾高度\nnumber\n25\n\n\nrowSize\n普通单元格高度\nnumber\n25\n\n\nregionColumnSize\n列项间的\narray\nfalse\n\n\nheader\n表头\narray\n[]\n\n\nfooter\n表尾\narray\nfalse\n\n\nitems\n子组件\narray\n[]\n\n\n\n方法\n\n\n\n方法名\n说明\n参数\n\n\n\n\nresize\n调整表格\n—\n\n\nsetColumnSize\n设置列宽\ncolumnSize\n\n\ngetColumnSize\n得到列宽\n—\n\n\ngetCalculateColumnSize\n获得计算后的列宽\n—\n\n\nsetHeaderColumnSize\n设置表头的列宽\ncolumnSize\n\n\nsetRegionColumnSize\n设置列项之间的间隙\ncolumnSize\n\n\ngetRegionColumnSize\n获得列项之间的间隙\n—\n\n\ngetCalculateRegionColumnSize\n获取计算后的列项之间的间隙\n—\n\n\ngetCalculateRegionRowSize\n获取计算后的列项上下之间的间隙\n—\n\n\ngetClientRegionColumnSize\n获取浏览器中显示的列项之间的间隙\n—\n\n\ngetScrollRegionColumnSize\n获取横向滚动条宽度\n—\n\n\ngetScrollRegionRowSize\n获取纵向滚动条宽度\n—\n\n\nhasVerticalScroll\n是否含有数值滚动条\n—\n\n\nsetVerticalScroll\n设置纵向滚动距离\nscrollTop\n\n\nsetLeftHorizontalScroll\n设置左到右横向滚动距离\nscrollLeft\n\n\nsetRightHorizontalScroll\n设置右往左横向滚动距离\nscrollLeft\n\n\ngetVerticalScroll\n获取纵向滚动距离\n—\n\n\ngetLeftHorizontalScroll\n获取左到右横向滚动距离\n—\n\n\ngetRightHorizontalScroll\n获取右往左横向滚动距离\n—\n\n\ngetColumns\n获取列项\n—\n\n\npopulate\n刷新内容\nrows\n\n\n\n事件\n\n\n\n事件\n说明\n\n\n\n\nBI.Table.EVENT_TABLE_AFTER_INIT\ntable初始化完成后触发\n\n\nBI.Table.EVENT_TABLE_RESIZE\ntable大小调整时触发(窗口变化等)\n\n\nBI.Table.EVENT_TABLE_SCROLL\n滚动事件\n\n\n\n\n"},"base/table/grid_table.html":{"url":"base/table/grid_table.html","title":"grid_table","keywords":"","body":"bi.grid_table\n列表展示的table,继承BI.Widget\nsource\nBI.createWidget({\n type: \"bi.grid_table\",\n element: 'body',\n width: 600,\n height: 500,\n isResizeAdapt: true,\n isNeedResize: true,\n isNeedFreeze: true,\n freezeCols: [0, 1],\n columnSize: [50,50,200,250,400],\n items: items,\n header: header\n});\n\n\n\n参数设置\n\n\n\n参数\n说明\n类型\n默认值\n\n\n\n\nisNeedFreeze\n是否需要冻结\nboolean\nfalse\n\n\nfreezeCols\n冻结列\narray\n[]\n\n\ncolumnSize\n单元格宽度集合\narray\n[]\n\n\nheaderRowSize\n表头高度\nnumber\n25\n\n\nrowSize\n普通单元格高度\nnumber\n25\n\n\nregionColumnSize\n列项间的\narray\n[]\n\n\nheader\n表头\narray\n[]\n\n\nitems\n子组件\narray\n[]\n\n\n\n方法\n\n\n\n方法名\n说明\n参数\n\n\n\n\nsetWidth\n设置宽度\nwidth\n\n\nsetHeight\n设置高度\nheight\n\n\ngetRegionSize\n获取间隙大小\n—\n\n\nsetColumnSize\n设置列宽\ncolumnSize\n\n\ngetColumnSize\n得到列宽\n—\n\n\nsetRegionColumnSize\n设置列项之间的间隙\ncolumnSize\n\n\ngetRegionColumnSize\n获得列项之间的间隙\n—\n\n\nsetVerticalScroll\n设置纵向滚动距离\nscrollTop\n\n\nsetLeftHorizontalScroll\n设置左到右横向滚动距离\nscrollLeft\n\n\nsetRightHorizontalScroll\n设置右往左横向滚动距离\nscrollLeft\n\n\ngetVerticalScroll\n获取纵向滚动距离\n—\n\n\ngetLeftHorizontalScroll\n获取左到右横向滚动距离\n—\n\n\ngetRightHorizontalScroll\n获取右往左横向滚动距离\n—\n\n\npopulate\n刷新内容\nrows\n\n\nrestore\n储存\n—\n\n\n\n\n"},"base/table/collection_table.html":{"url":"base/table/collection_table.html","title":"collection_table","keywords":"","body":"bi.collection_table\n基本的表格 继承BI.Widget\nsource\nBI.createWidget({\n type: \"bi.collection_table\",\n element: \"body\",\n columnSize: [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\n\nisNeedFreeze\n是否冻结列\nboolean\nfalse\n\n\nfreezeCols\n冻结的列\narray\n[]\n\n\nisNeedMerge\n是否需要合并单元格\nboolean\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\n25\n\n\nrowSize\n普通单元格高度\nnumber\n25\n\n\nregionColumnSize\n列项间的\narray\n[]\n\n\nitems\n子组件\narray\n[]\n\n\n\n方法\n\n\n\n方法名\n说明\n参数\n\n\n\n\nsetWidth\n设置宽度\nwidth\n\n\nsetHeight\n设置高度\nheight\n\n\nsetColumnSize\n设置列宽\ncolumnSize\n\n\ngetColumnSize\n得到列宽\n—\n\n\nsetRegionColumnSize\n设置列项之间的间隙\ncolumnSize\n\n\ngetRegionColumnSize\n获得列项之间的间隙\n—\n\n\ngetScrollRegionColumnSize\n获取横向滚动条宽度\n—\n\n\nsetVerticalScroll\n设置纵向滚动距离\nscrollTop\n\n\nsetLeftHorizontalScroll\n设置左到右横向滚动距离\nscrollLeft\n\n\nsetRightHorizontalScroll\n设置右往左横向滚动距离\nscrollLeft\n\n\ngetVerticalScroll\n获取纵向滚动距离\n—\n\n\ngetLeftHorizontalScroll\n获取左到右横向滚动距离\n—\n\n\ngetRightHorizontalScroll\n获取右往左横向滚动距离\n—\n\n\ngetColumns\n获取列项\n—\n\n\npopulate\n增加行\nrows\n\n\nrestore\n存储数据\n—\n\n\n\n\n"},"base/table/resizable_table.html":{"url":"base/table/resizable_table.html","title":"resizable_table","keywords":"","body":"bi.resizable_table\n可调整列宽的grid表格,继承BI.Widget\nsource\nBI.createWidget({\n type: \"bi.resizable_table\",\n element: \"body\",\n columnSize: [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\n\nisNeedFreeze\n是否需要冻结列\nboolean\nfalse\n\n\nfreezeCols\n冻结的列\narray\n[]\n\n\nisNeedResize\n是否需要调整大小\nboolean\nfalse\n\n\nisResizeAdapt\n是否调整时自适应\nboolean\ntrue\n\n\nisNeedMerge\n是否需要合并单元格\nboolean\nfalse\n\n\nmergeCols\n合并的单元格列号\narray\n[]\n\n\ncolumnSize\n单元格宽度集合\narray\n[]\n\n\nminColumnSize\n最小列宽\narray\n[]\n\n\nmaxColumnSize\n最大列宽\narray\n[]\n\n\nheaderRowSize\n表头高度\nnumber\n25\n\n\nrowSize\n普通单元格高度\nnumber\n25\n\n\nheader\n表头\narray\n[]\n\n\nregionColumnSize\n列项间的\narray\n[]\n\n\nitems\n子组件\narray\n[]\n\n\n\n方法\n\n\n\n方法名\n说明\n参数\n\n\n\n\nsetWidth\n设置宽度\n—\n\n\nsetHeight\n设置高度\n—\n\n\nsetColumnSize\n设置列宽\ncolumnSize\n\n\ngetColumnSize\n得到列宽\n—\n\n\nsetRegionColumnSize\n设置列项之间的间隙\ncolumnSize\n\n\ngetRegionColumnSize\n获得列项之间的间隙\n—\n\n\nsetVerticalScroll\n设置纵向滚动距离\nscrollTop\n\n\nsetLeftHorizontalScroll\n设置左到右横向滚动距离\nscrollLeft\n\n\nsetRightHorizontalScroll\n设置右往左横向滚动距离\nscrollLeft\n\n\ngetVerticalScroll\n获取纵向滚动距离\n—\n\n\ngetLeftHorizontalScroll\n获取左到右横向滚动距离\n—\n\n\ngetRightHorizontalScroll\n获取右往左横向滚动距离\n—\n\n\nattr\n设置属性\nkey:键,value:值\n\n\npopulate\n刷新内容\nrows\n\n\nrestore\n保存表\n—\n\n\n\n\n"},"base/pager.html":{"url":"base/pager.html","title":"pager","keywords":"","body":"bi.pager\n分页控件,基类BI.Widget\nsource\n\nBI.createWidget({\n type: \"bi.pager\",\n height: 50,\n pages: 18,\n groups: 5,\n curr: 6,\n first: \"首页\",\n last: \"尾页\"\n});\n\n\n\nAPI\n基础属性\n\n\n\n参数\n说明\n类型\n可选值\n默认值\n\n\n\n\nbehaviors\n自定义列表中item项的行为,如高亮,标红等\nobject\n—\n{}\n\n\nlayouts\n布局\narray\n—\n{type:\"bi.horizontal\",hgap:10,vgap:0}\n\n\ndynamicShow\n是否动态显示上一页、下一页、首页、尾页, 若为false,则指对其设置使能状态\nboolean\ntrue,false\ntrue\n\n\ndynamicShowFirstLast\n是否动态显示首页、尾页,dynamicShow为false时生效\nboolean\ntrue,false\nfalse\n\n\ndynamicShowPrevNext\n是否动态显示上一页、下一页,dynamicShow为false时生效\nboolean\ntrue,false\nfalse\n\n\npages\n是否显示总页数\nboolean\ntrue,false\nfalse\n\n\ncurr\n初始化当前页\nfunction\n—\nfunction(){return 1;}\n\n\ngroups\n连续显示分页数\nnumber\n—\n0\n\n\njump\n页数跳转\nfunction\n—\n—\n\n\nfirst\n是否显示首页\nboolean\ntrue,false\nfalse\n\n\nlast\n是否显示尾页\nboolean\ntrue,false\nfalse\n\n\nprev\n上一页\nstring,object —\n—\n\"上一页\"\n\n\nnext\n下一页\nsting,object\n—\n\"下一页\"\n\n\nfirstPage\n第一页\nnumber\n—\n1\n\n\nlastPage\n最后一页,在万不得已时才会调用这个函数获取最后一页的页码, 主要作用于setValue方法\nfunction\n—\nfunction(){ return 1;}\n\n\nhasPrev\n判断是否有上一页,pages不可用时有效\nfunction\n—\n—\n\n\nhasNext\n判断是否有下一页,pages不可用时有效\nfunction\n—\n—\n\n\n\n对外方法\n\n\n\n名称\n说明\n回调参数 \n\n\n\n\ngetCurrentPage\n获取当前页码\n—\n\n\nsetAllPages\n设置总页数\npages\n\n\nhasPrev\n判断是否有上一页\nv\n\n\nhasNext\n判断是否有下一页\nv\n\n\nsetValue\n设置当前页码\nv\n\n\ngetValue\n获取当前页码\n—\n\n\nattr\n设置属性\nkey,value\n\n\npopulate\n刷新或者清空列表\n—\n\n\n\n事件\n\n\n\n名称\n说明\n\n\n\n\nBI.Pager.EVENT_AFTER_POPULATE\npager刷新完成事件\n\n\n\n\n"},"base/svg.html":{"url":"base/svg.html","title":"svg","keywords":"","body":"bi.svg\nsvg绘图,基类BI.Widget\nsource\n\nvar svg = BI.createWidget({\n type: \"bi.svg\",\n width: 500,\n height: 600\n});\n\nsvg.path(\"M10,10L50,50M50,10L10,50\")\n .attr({stroke: \"red\"});\n\n\n\n\n对外方法\n\n\n\n名称\n说明\n回调参数 \n\n\n\n\nadd\n添加对象到json数组\njson\n\n\npath\n绘制路径\npathString\n\n\nimage\n绘制图片\n(src,x,y,w,h)分别表示图片路径,绘制的原点横、纵坐标,宽、高\n\n\nrect\n绘制矩形\n(x,y,w,h,r)分别表示左上角的横坐标、纵坐标,矩形宽、高、以及矩形的圆角border-radius大小\n\n\ncircle\n绘制圆形\n(x,y,r)分别表示原点的横坐标,纵坐标,以及半径\n\n\nellipse\n绘制椭圆\n(x,y,rx,ry)分别表示原点的横、纵坐标,以及水平半径和垂直半径\n\n\ntext\n绘制文本\n(x,y,text)分别表示绘制的原点横、纵坐标以及要绘制的文本内容\n\n\nprint\n根据制定参数打印出路径\n(x, y, string, font, size, origin, letter_spacing, line_spacing)\n\n\nsetStart\n开始绘制\n—\n\n\nsetFinish\n结束绘制\n—\n\n\nsetSize\n设置画布尺寸\n(width,height)分别表示画布宽高\n\n\nsetViewBox\n设置画布可视区域\n(x,y,width,height,fit)分别表示可视区域原点坐标以及可视区域宽高,以及是否根据可视区域进行调整\n\n\ngetById\n根据id返回元素\nid\n\n\ngetElementByPoint\n获根据给定的点坐标返回元素\n(x,y)\n\n\ngetElementsByPoint\n获根据给定的点坐标返回元素\n(x,y)\n\n\ngetFont\n通过给定的参数在已注册的字体中找到字体对象\n(family, weight, style, stretch)\n\n\nset\n绘制形状的集合\n—\n\n\nremove\n设置总页数\npages\n\n\nclear\n判断是否有上一页\nv\n\n\n\n\n"},"base/canvas.html":{"url":"base/canvas.html","title":"canvas","keywords":"","body":"bi.canvas\ncanvas绘图,基类BI.Widget\nsource\n\nvar canvas = BI.createWidget({\n type: \"bi.canvas\",\n element: \"#wrapper\",\n width: 500,\n height: 600\n});\ncanvas.circle(150, 50, 20, \"green\");\ncanvas.stroke();\n\n\n\n\n对外方法\n\n\n\n名称\n说明\n回调参数 \n\n\n\n\nline\n绘制线段\n(x0, y0, x1, y1)\n\n\nrect\n绘制矩形\n(x,y,w,h,color)分别表示左上角的横坐标、纵坐标,矩形宽、高、以及绘制的颜色\n\n\ncircle\n绘制圆形\n(x, y, radius, color)分别表示原点的横坐标,纵坐标,半径以及颜色\n\n\nhollow\n填充中空的路径\n—\n\n\nsolid\n填充实心的路径\n—\n\n\ngradient\n绘制渐变色\n(x0, y0, x1, y1, start, end)\n\n\nreset\n重置画布\n—\n\n\nstroke\n绘制\ncallback\n\n\n\n\n"},"case/button/multi_select_item.html":{"url":"case/button/multi_select_item.html","title":"multi_select_item","keywords":"","body":"bi.multi_select_item\n复选框item,基类BI.BasicButton\nsource\n\nBI.createWidget({\n type: 'bi.vertical',\n element: \"#wrapper\",\n items: [{\n type: \"bi.label\",\n height: 30,\n text: \"复选item\"\n }, {\n type: \"bi.multi_select_item\",\n text: \"复选项\"\n }]\n});\n\n\n\nAPI\n基础属性\n\n\n\n参数\n说明\n类型\n可选值\n默认值\n\n\n\n\nheight\n高度\nnumber\n—\n30\n\n\nlogic\n布局逻辑\nobject\n—\n{dynamic:false}\n\n\n\n对外方法\n\n\n\n名称\n说明\n回调参数 \n\n\n\n\nsetSelected\n设置选中值\nv\n\n\ndoRedMark\n标红\n—\n\n\nunRedMark\n取消标红\n—\n\n\ndoClick\n点击事件\n—\n\n\n\n\n"},"case/button/single_select_item.html":{"url":"case/button/single_select_item.html","title":"single_select_item","keywords":"","body":"bi.single_select_item\n可以点击的label,基类BI.BasicButton\nsource\n\nBI.createWidget({\n type: 'bi.vertical',\n element: \"#wrapper\",\n items: [{\n type: \"bi.label\",\n height: 30,\n text: \"复选item\"\n }, {\n type: \"bi.single_select_item\",\n text: \"复选项\"\n }]\n});\n\n\n\nAPI\n基础属性\n\n\n\n参数\n说明\n类型\n可选值\n默认值\n\n\n\n\nheight\n高度\nnumber\n—\n25\n\n\nhgap\n效果相当于文本框左右padding值\nnumber\n—\n10\n\n\ntextAlign\n文本对齐方式\nstring\nleft,center,right\n\"left\"\n\n\n\n对外方法\n\n\n\n名称\n说明\n回调参数 \n\n\n\n\nsetSelected\n设置选中值\nv\n\n\ndoRedMark\n标红\n—\n\n\nunRedMark\n取消标红\n—\n\n\ndoClick\n点击事件\n—\n\n\n\n\n"},"case/button/single_select_radio_item.html":{"url":"case/button/single_select_radio_item.html","title":"single_select_radio_item","keywords":"","body":"bi.single_select_radio_item\n单选框item,基类BI.BasicButton\nsource\n\nBI.createWidget({\n type: 'bi.vertical',\n element: \"#wrapper\",\n items: [{\n type: \"bi.label\",\n height: 30,\n text: \"单选item\"\n }, {\n type: \"bi.single_select_radio_item\",\n text: \"单选项\"\n }]\n});\n\n\n\nAPI\n基础属性\n\n\n\n参数\n说明\n类型\n可选值\n默认值\n\n\n\n\nheight\n高度\nnumber\n—\n25\n\n\nhgap\n效果相当于文本框左右padding值\nnumber\n—\n10\n\n\ntextAlign\n文本对齐方式\nstring\nleft,center,right\n\"left\"\n\n\n\n对外方法\n\n\n\n名称\n说明\n回调参数 \n\n\n\n\nsetSelected\n设置选中值\nv\n\n\ndoRedMark\n标红\n—\n\n\nunRedMark\n取消标红\n—\n\n\ndoClick\n点击事件\n—\n\n\n\n\n"},"case/editor/shelter_editor.html":{"url":"case/editor/shelter_editor.html","title":"shelter_editor","keywords":"","body":"bi.shelter_editor\n带标记的文本框,需手动控制进入编辑状态 基类BI.Widget\nsource\n\nBI.createWidget({\n element: \"#wrapper\",\n type: \"bi.shelter_editor\",\n cls: \"bi-border\",\n width: 300,\n watermark: \"这个是带标记的\"\n});\n\n\n\nAPI\n基础属性\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\nallowBlank\n是否允许空值\nboolean\ntrue,false\ntrue\n\n\nwatermark\n文本框placeholder\nstring\n—\n\" \"\n\n\nerrorText\n错误提示\nstring/function\n—\n\" \"\n\n\nheight\n高度\nnumber\n—\n30\n\n\ntextAlign\n对齐方式\nstring\nleft,center,right\n\"left\"\n\n\n\n对外方法\n\n\n\n名称\n说明\n回调参数 \n\n\n\n\nsetErrorText\n设置错误文本\ntext\n\n\ngetErrorText\n获取错误文本\n—\n\n\nfocus\n文本框获取焦点\n—\n\n\nblur\n文本框失焦\n—\n\n\nonKeyDown\n按键事件\nkey\n\n\nsetValue\n设置文本框值\nvalue\n\n\ngetLastValidValue\n获取文本框最后一次输入的有效值\n—\n\n\nsetTextStyle\n设置文本框样式\nstyle\n\n\ngetValue\n获取文本框值\n—\n\n\nisEditing\n文本框是否处于编辑状态\n—\n\n\nisValid\n文本框值是否有效\n—\n\n\ndoRedMark\n文本标红\n—\n\n\nunRedMark\n取消文本标红\n—\n\n\ndoHighLight\n文本高亮\n—\n\n\nunHighLight\n取消文本高亮\n—\n\n\nsetTitle\n设置title\ntitle\n\n\nsetWarningTitle\n设置错误title\ntitle\n\n\nsetState\n设置文本框值\n—\n\n\ngetState\n获取文本框值\n—\n\n\n\n事件\n\n\n\n事件\n说明\n\n\n\n\nBI.Editor.EVENT_CHANGE\neditor的value发生改变触发\n\n\nBI.Editor.EVENT_FOCUS\nfocus事件\n\n\nBI.Editor.EVENT_BLUR\nblur事件\n\n\nBI.Editor.EVENT_CLICK\n点击编辑框触发(不在编辑状态时)\n\n\nBI.Editor.EVENT_KEY_DOWN\nkeyDown时触发\n\n\nBI.Editor.EVENT_SPACE\n按下空格触发\n\n\nBI.Editor.EVENT_BACKSPACE\n按下Backspace触发\n\n\nBI.Editor.EVENT_START\n开始输入触发\n\n\nBI.Editor.EVENT_PAUSE\n暂停输入触发(输入空白字符)\n\n\nBI.Editor.EVENT_STOP\n停止输入触发\n\n\nBI.Editor.EVENT_CONFIRM\n确定输入触发(blur时且输入值有效)\n\n\nBI.Editor.EVENT_VALID\n输入值有效的状态事件\n\n\nBI.Editor.EVENT_ERROR\n输入值无效的状态事件\n\n\nBI.Editor.EVENT_ENTER\n回车事件\n\n\nBI.Editor.EVENT_RESTRICT\n回车但是值不合法\n\n\nBI.Editor.EVENT_REMOVE\n输入为空时按下backspace\n\n\nBI.Editor.EVENT_EMPTY\n输入框为空时触发\n\n\n\n\n"},"case/editor/sign_editor.html":{"url":"case/editor/sign_editor.html","title":"sign_editor","keywords":"","body":"bi.sign_editor\n带标记的文本框,基类BI.Widget\nsource\n\nBI.createWidget({\n element: \"#wrapper\",\n type: \"bi.sign_editor\",\n cls:\"layout-bg5\",\n value: \"123\",\n text: \"456\",\n width: 300\n});\n\n\n\nAPI\n基础属性\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\nallowBlank\n是否允许空值\nboolean\ntrue,false\ntrue\n\n\nwatermark\n文本框placeholder\nstring\n—\n\" \"\n\n\nerrorText\n错误提示\nstring/function\n—\n\" \"\n\n\nheight\n高度\nnumber\n—\n30\n\n\n\n对外方法\n\n\n\n名称\n说明\n回调参数 \n\n\n\n\nsetErrorText\n设置错误文本\ntext\n\n\ngetErrorText\n获取错误文本\n—\n\n\nfocus\n文本框获取焦点\n—\n\n\nblur\n文本框失焦\n—\n\n\nsetValue\n设置文本框值\nvalue\n\n\ngetLastValidValue\n获取文本框最后一次输入的有效值\n—\n\n\ngetValue\n获取文本框值\n—\n\n\nisEditing\n文本框是否处于编辑状态\n—\n\n\nisValid\n文本框值是否有效\n—\n\n\ndoRedMark\n文本标红\n—\n\n\nunRedMark\n取消文本标红\n—\n\n\ndoHighLight\n文本高亮\n—\n\n\nunHighLight\n取消文本高亮\n—\n\n\nsetTitle\n设置title\ntitle\n\n\nsetWarningTitle\n设置错误title\ntitle\n\n\nsetState\n设置文本框值\n—\n\n\ngetState\n获取文本框值\n—\n\n\n\n事件\n\n\n\n事件\n说明\n\n\n\n\nBI.Editor.EVENT_CHANGE\neditor的value发生改变触发\n\n\nBI.Editor.EVENT_FOCUS\nfocus事件\n\n\nBI.Editor.EVENT_BLUR\nblur事件\n\n\nBI.Editor.EVENT_CLICK\n点击编辑框触发(不在编辑状态时)\n\n\nBI.Editor.EVENT_KEY_DOWN\nkeyDown时触发\n\n\nBI.Editor.EVENT_SPACE\n按下空格触发\n\n\nBI.Editor.EVENT_BACKSPACE\n按下Backspace触发\n\n\nBI.Editor.EVENT_START\n开始输入触发\n\n\nBI.Editor.EVENT_PAUSE\n暂停输入触发(输入空白字符)\n\n\nBI.Editor.EVENT_STOP\n停止输入触发\n\n\nBI.Editor.EVENT_CONFIRM\n确定输入触发(blur时且输入值有效)\n\n\nBI.Editor.EVENT_VALID\n输入值有效的状态事件\n\n\nBI.Editor.EVENT_ERROR\n输入值无效的状态事件\n\n\nBI.Editor.EVENT_ENTER\n回车事件\n\n\nBI.Editor.EVENT_RESTRICT\n回车但是值不合法\n\n\nBI.Editor.EVENT_REMOVE\n输入为空时按下backspace\n\n\nBI.Editor.EVENT_EMPTY\n输入框为空时触发\n\n\n\n\n"},"case/editor/sign_initial_editor.html":{"url":"case/editor/sign_initial_editor.html","title":"sign_initial_editor","keywords":"","body":"bi.sign_initial_editor\n指定初始值 之后初始值会一直显示的editor 基类BI.Widget\nsource\n\nBI.createWidget({\n element: \"#wrapper\",\n type: \"bi.sign_initial_editor\",\n cls: \"layout-bg5\",\n text: \"原始值\",\n width: 300\n});\n\n\n\nAPI\n基础属性\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\nallowBlank\n是否允许空值\nboolean\ntrue,false\ntrue\n\n\nwatermark\n文本框placeholder\nstring\n—\n\" \"\n\n\nerrorText\n错误提示\nstring/function\n—\n\" \"\n\n\nheight\n高度\nnumber\n—\n30\n\n\ntext\n文本内容\nstring\n—\n\" \"\n\n\nvalue\n文本value值\nstring\n—\n\" \"\n\n\n\n对外方法\n\n\n\n名称\n说明\n回调参数 \n\n\n\n\nsetErrorText\n设置错误文本\ntext\n\n\ngetErrorText\n获取错误文本\n—\n\n\nfocus\n文本框获取焦点\n—\n\n\nblur\n文本框失焦\n—\n\n\nsetValue\n设置文本框值\nvalue\n\n\ngetLastValidValue\n获取文本框最后一次输入的有效值\n—\n\n\ngetValue\n获取文本框值\n—\n\n\nisEditing\n文本框是否处于编辑状态\n—\n\n\nisValid\n文本框值是否有效\n—\n\n\ndoRedMark\n文本标红\n—\n\n\nunRedMark\n取消文本标红\n—\n\n\ndoHighLight\n文本高亮\n—\n\n\nunHighLight\n取消文本高亮\n—\n\n\nsetTitle\n设置title\ntitle\n\n\nsetWarningTitle\n设置错误title\ntitle\n\n\nsetState\n设置文本框值\n—\n\n\ngetState\n获取文本框值\n—\n\n\n\n事件\n\n\n\n事件\n说明\n\n\n\n\nBI.Editor.EVENT_CHANGE\neditor的value发生改变触发\n\n\nBI.Editor.EVENT_FOCUS\nfocus事件\n\n\nBI.Editor.EVENT_BLUR\nblur事件\n\n\nBI.Editor.EVENT_CLICK\n点击编辑框触发(不在编辑状态时)\n\n\nBI.Editor.EVENT_KEY_DOWN\nkeyDown时触发\n\n\nBI.Editor.EVENT_SPACE\n按下空格触发\n\n\nBI.Editor.EVENT_BACKSPACE\n按下Backspace触发\n\n\nBI.Editor.EVENT_START\n开始输入触发\n\n\nBI.Editor.EVENT_PAUSE\n暂停输入触发(输入空白字符)\n\n\nBI.Editor.EVENT_STOP\n停止输入触发\n\n\nBI.Editor.EVENT_CONFIRM\n确定输入触发(blur时且输入值有效)\n\n\nBI.Editor.EVENT_VALID\n输入值有效的状态事件\n\n\nBI.Editor.EVENT_ERROR\n输入值无效的状态事件\n\n\nBI.Editor.EVENT_ENTER\n回车事件\n\n\nBI.Editor.EVENT_RESTRICT\n回车但是值不合法\n\n\nBI.Editor.EVENT_REMOVE\n输入为空时按下backspace\n\n\nBI.Editor.EVENT_EMPTY\n输入框为空时触发\n\n\n\n\n"},"case/editor/state_editor.html":{"url":"case/editor/state_editor.html","title":"state_editor","keywords":"","body":"bi.state_editor\n记录状态的输入框,基类BI.Widget\nsource\n\nBI.createWidget({\n element: \"#wrapper\",\n type: \"bi.state_editor\",\n value: \"123\",\n text: \"456\",\n width: 300\n});\n\n\n\nAPI\n基础属性\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\nallowBlank\n是否允许空值\nboolean\ntrue,false\ntrue\n\n\nwatermark\n文本框placeholder\nstring\n—\n\" \"\n\n\nerrorText\n错误提示\nstring/function\n—\n\" \"\n\n\nheight\n高度\nnumber\n—\n30\n\n\n\n对外方法\n\n\n\n名称\n说明\n回调参数 \n\n\n\n\nsetErrorText\n设置错误文本\ntext\n\n\ngetErrorText\n获取错误文本\n—\n\n\nfocus\n文本框获取焦点\n—\n\n\nblur\n文本框失焦\n—\n\n\nsetValue\n设置文本框值\nvalue\n\n\ngetLastValidValue\n获取文本框最后一次输入的有效值\n—\n\n\ngetValue\n获取文本框值\n—\n\n\nisEditing\n文本框是否处于编辑状态\n—\n\n\nisValid\n文本框值是否有效\n—\n\n\ndoRedMark\n文本标红\n—\n\n\nunRedMark\n取消文本标红\n—\n\n\ndoHighLight\n文本高亮\n—\n\n\nunHighLight\n取消文本高亮\n—\n\n\nsetState\n设置文本框值\n—\n\n\ngetState\n获取文本框值\n—\n\n\n\n事件\n\n\n\n事件\n说明\n\n\n\n\nBI.Editor.EVENT_CHANGE\neditor的value发生改变触发\n\n\nBI.Editor.EVENT_FOCUS\nfocus事件\n\n\nBI.Editor.EVENT_BLUR\nblur事件\n\n\nBI.Editor.EVENT_CLICK\n点击编辑框触发(不在编辑状态时)\n\n\nBI.Editor.EVENT_KEY_DOWN\nkeyDown时触发\n\n\nBI.Editor.EVENT_SPACE\n按下空格触发\n\n\nBI.Editor.EVENT_BACKSPACE\n按下Backspace触发\n\n\nBI.Editor.EVENT_START\n开始输入触发\n\n\nBI.Editor.EVENT_PAUSE\n暂停输入触发(输入空白字符)\n\n\nBI.Editor.EVENT_STOP\n停止输入触发\n\n\nBI.Editor.EVENT_CONFIRM\n确定输入触发(blur时且输入值有效)\n\n\nBI.Editor.EVENT_VALID\n输入值有效的状态事件\n\n\nBI.Editor.EVENT_ERROR\n输入值无效的状态事件\n\n\nBI.Editor.EVENT_ENTER\n回车事件\n\n\nBI.Editor.EVENT_RESTRICT\n回车但是值不合法\n\n\nBI.Editor.EVENT_REMOVE\n输入为空时按下backspace\n\n\nBI.Editor.EVENT_EMPTY\n输入框为空时触发\n\n\n\n\n"},"case/layer/multi_popup_layer.html":{"url":"case/layer/multi_popup_layer.html","title":"multi_popup_layer","keywords":"","body":"bi.multi_popup_view\n下拉框弹出层的多选版本,toolbar带有若干按钮, zIndex在1000w,基类BI.MultiPopupView\nsource\n\nBI.createWidget({\n element: \"#wrapper\",\n type: \"bi.multi_popup_view\",\n width: 300\n});\n\n\n\nAPI\n基础属性\n\n\n\n参数\n说明\n类型\n可选值\n默认值\n\n\n\n\nbuttons\n按钮组\narray\n—\nBI.i18nText(\"BI-Basic_Sure\")\n\n\n\n\n"},"case/layer/layer_panel.html":{"url":"case/layer/layer_panel.html","title":"layer_panel","keywords":"","body":"bi.popup_panel\n可以理解为MultiPopupView和Panel两个面板的结合体,基类BI.MultiPopupView\nsource\n\nBI.createWidget({\n element: \"#wrapper\",\n type: \"bi.popup_panel\",\n title: \"测试\",\n width: 300\n});\n\n\n\nAPI\n基础属性\n\n\n\n参数\n说明\n类型\n可选值\n默认值\n\n\n\n\ntitle\n标题\nstring\n—\n\" \"\n\n\n\n对外方法\n\n\n\n名称\n说明\n回调参数 \n\n\n\n\nprependItems\n内部前插入\nitems\n\n\naddItems\n内部后插入\nitems\n\n\nremoveItemAt\n移除指定索引处的item\nindexs\n\n\npopulate\n刷新列表\nitems\n\n\nsetNotSelectedValue\n设置未被选中的值\nvalue,可以是单个值也可以是个数组\n\n\nsetValue\n设置value值\nvalue,可以是单个值也可以是个数组\n\n\ngetNotSelectedValue\n获取没有被选中的值\n—\n\n\ngetValue\n获取被选中的值\n—\n\n\ngetAllButtons\n获取所有button\n—\n\n\ngetAllLeaves\n获取所有的叶子节点\n—\n\n\ngetSelectedButtons\n获取所有被选中的元素\n—\n\n\ngetNotSelectedButtons\n获取所有未被选中的元素\n—\n\n\ngetIndexByValue\n根据value值获取value在数组中的索引\nvalue\n\n\ngetNodeById\n根据id获取节点\nid\n\n\ngetNodeByValue\n根据value值获取节点\nvalue\n\n\nempty\n清空组件\n—\n\n\nhasPrev\n是否有上一页\n—\n\n\nhasNext\n是否有下一页\n—\n\n\n\n事件\n\n\n\n事件\n说明\n\n\n\n\nBI.PopupPanel.EVENT_CHANGE\npanel的value发生改变触发\n\n\nBI.PopupPanel.EVENT_CLOSE\npanel的关闭事件\n\n\nBI.PopupPanel.EVENT_CLICK_TOOLBAR_BUTTON\n点击工具栏事件\n\n\n\n\n"},"case/layer/pane_list.html":{"url":"case/layer/pane_list.html","title":"pane_list","keywords":"","body":"bi.list_pane\nlist面板,基类BI.Widget\nsource\n\nBI.createWidget({\n type: 'bi.list_pane',\n element: \"#wrapper\",\n cls: \"bi-border\",\n items: []\n});\n\n\n\nAPI\n基础属性\n\n\n\n参数\n说明\n类型\n可选值\n默认值\n\n\n\n\nitems\n列表\narray\n—\n[ ]\n\n\nitemsCreator\n列表创建器\nfunction\n—\n—\n\n\nhasNext\n是否有下一页\nfunction\n—\n—\n\n\nonLoad\n正在加载\nfunction\n—\n— \n\n\nel\n开启panel的元素\nobject\n—\n{type: \"bi.button_group\" }\n\n\nlogic\n布局逻辑\nobject\n—\n{ dynamic:true}\n\n\nhgap\n效果相当于容器左右padding值\nnumber\n—\n0\n\n\nvgap\n效果相当于容器上下padding值\nnumber\n—\n0\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\n\n对外方法\n\n\n\n名称\n说明\n回调参数 \n\n\n\n\nprependItems\n内部前插入\nitems\n\n\naddItems\n内部后插入\nitems\n\n\nremoveItemAt\n移除指定索引处的item\nindexs\n\n\npopulate\n刷新列表\nitems\n\n\nsetNotSelectedValue\n设置未被选中的值\nvalue,可以是单个值也可以是个数组\n\n\nsetValue\n设置value值\nvalue,可以是单个值也可以是个数组\n\n\ngetNotSelectedValue\n获取没有被选中的值\n—\n\n\ngetValue\n获取被选中的值\n—\n\n\ngetAllButtons\n获取所有button\n—\n\n\ngetAllLeaves\n获取所有的叶子节点\n—\n\n\ngetSelectedButtons\n获取所有被选中的元素\n—\n\n\ngetNotSelectedButtons\n获取所有未被选中的元素\n—\n\n\ngetIndexByValue\n根据value值获取value在数组中的索引\nvalue\n\n\ngetNodeById\n根据id获取节点\nid\n\n\ngetNodeByValue\n根据value值获取节点\nvalue\n\n\nempty\n清空组件\n—\n\n\nhasPrev\n是否有上一页\n—\n\n\nhasNext\n是否有下一页\n—\n\n\n\n\n"},"case/layer/panel.html":{"url":"case/layer/panel.html","title":"panel","keywords":"","body":"bi.panel\n带有标题栏的panel,基类BI.Widget\nsource\n\nBI.createWidget({\n element: \"#wrapper\",\n type: \"bi.panel\",\n title: \"标题\",\n titleButtons: [{\n type: \"bi.button\",\n text: \"+\"\n }],\n el: this.button_group,\n logic: {\n dynamic: true\n }\n});\n\n\n\nAPI\n基础属性\n\n\n\n参数\n说明\n类型\n可选值\n默认值\n\n\n\n\ntitle\n标题\nstring\n—\n\" \"\n\n\ntitleButton\n标题后的按钮组\narray\n—\n[ ]\n\n\nel\n开启panel的元素\nobject\n—\n{ }\n\n\nlogic\n布局逻辑\nobject\n—\n{ dynamic:false}\n\n\n\n对外方法\n\n\n\n名称\n说明\n回调参数 \n\n\n\n\nsetTitle\n设置标题\ntitle\n\n\n\n\n"},"case/list/list.select.html":{"url":"case/list/list.select.html","title":"select_list","keywords":"","body":"bi.select_list\n选择列表\nsource\n\nBI.createWidget({\n type: \"bi.select_list\",\n items: [{\n text: '1',\n }, {\n text: '2',\n }]\n});\n\n\n\n参数\n\n\n\n参数\n说明\n类型\n默认值\n\n\n\n\ndirection\ntoolbar位置\nstring\nBI.Direction.Top\n\n\nonLoaded\n加载完成的回调(测试了无效果)\nfunction\nBI.emptyFn\n\n\nitems\n子项\narray\n[]\n\n\nitemsCreator\n元素创造器\nfunction\nBI.emptyFn\n\n\n\n方法\n\n\n\n方法名\n说明\n参数\n\n\n\n\nsetAllSelected\n设置全选\nv: boolean\n\n\nsetToolBarVisible\n设置toolbar是否可见\nb: boolean\n\n\nisAllSelected\n是否全选中\n—\n\n\nhasPrev\n是否有上一页\n—\n\n\nhasNext\n是否有下一页\n—\n\n\nprependItems\n列表最前添加元素\nitems\n\n\naddItems\n列表最后添加元素\nitems\n\n\nsetValue\n设置值\ndata\n\n\ngetVlaue\n获得值\n—\n\n\nempty\n清空\n—\n\n\npopulate\n替换内容\nitems\n\n\nresetHeight\n重新设置高度\nh\n\n\nsetNotSelectedValue\n设置未选中值\n—\n\n\ngetNotSelectedValue\n获取未选中植\n—\n\n\ngetAllButtons\n获得所以根节点\n—\n\n\ngetAllLeaves\n获得所有叶节点\n—\n\n\ngetSelectedButtons\n获取选中的根节点\n—\n\n\ngetNotSelectedButtons\n获取未选中的根节点\n—\n\n\ngetIndexByValue\n根据值获取索引\nvalue\n\n\ngetNodeById\n根据id获取node\nid\n\n\ngetNodeByValue\n根据值获取node\nvalue\n\n\n\n\n"},"case/loader/lazy_loader.html":{"url":"case/loader/lazy_loader.html","title":"lazy_loader","keywords":"","body":"bi.lazy_loader\n懒加载loader\nsource\n\nBI.createWidget({\n type: \"bi.lazy_loader\",\n width: 100,\n element: 'body',\n items: items,\n});\n\n\n\n\n\n方法\n\n\n\n方法名\n说明\n参数\n\n\n\n\naddItems\n列表最后添加元素\nitems\n\n\nsetValue\n设置值\ndata\n\n\ngetVlaue\n获得值\n—\n\n\nempty\n清空\n—\n\n\npopulate\n替换内容\nitems\n\n\nsetNotSelectedValue\n设置未选中值\n—\n\n\ngetNotSelectedValue\n获取未选中植\n—\n\n\ngetAllButtons\n获得所以根节点\n—\n\n\ngetAllLeaves\n获得所有叶节点\n—\n\n\ngetSelectedButtons\n获取选中的根节点\n—\n\n\ngetNotSelectedButtons\n获取未选中的根节点\n—\n\n\ngetIndexByValue\n根据值获取索引\nvalue\n\n\ngetNodeById\n根据id获取node\nid\n\n\ngetNodeByValue\n根据值获取node\nvalue\n\n\n\n\n"},"case/loader/list_loader.html":{"url":"case/loader/list_loader.html","title":"list_loader","keywords":"","body":"bi.list_loader\n为解决排序问题引入的控件\nsource\n\nBI.createWidget({\n type: \"bi.list_loader\",\n width: 100,\n element: 'body',\n items: items,\n});\n\n\n\n参数\n\n\n\n参数\n说明\n类型\n默认值\n\n\n\n\ncount\n分页计数\nnumber\nfalse\n\n\nnext\n\nobject\n{}\n\n\nhasNext\n是否有下一页\nfunction\nBI.emptyFn\n\n\nitems\n子项\narray\n[]\n\n\nitemsCreator\n元素创造器\nfunction\nBI.emptyFn\n\n\nonLoaded\n加载完成回调\nfunction\nBI.emptyFn\n\n\n\n方法\n\n\n\n方法名\n说明\n参数\n\n\n\n\nhasNext\n是否有下一页\n—\n\n\naddItems\n列表最后添加元素\nitems\n\n\nsetValue\n设置值\ndata\n\n\ngetVlaue\n获得值\n—\n\n\nempty\n清空\n—\n\n\npopulate\n替换内容\nitems\n\n\nresetHeight\n重新设置高度\nh\n\n\nsetNotSelectedValue\n设置未选中值\n—\n\n\ngetNotSelectedValue\n获取未选中植\n—\n\n\ngetAllButtons\n获得所以根节点\n—\n\n\ngetAllLeaves\n获得所有叶节点\n—\n\n\ngetSelectedButtons\n获取选中的根节点\n—\n\n\ngetNotSelectedButtons\n获取未选中的根节点\n—\n\n\ngetIndexByValue\n根据值获取索引\nvalue\n\n\ngetNodeById\n根据id获取node\nid\n\n\ngetNodeByValue\n根据值获取node\nvalue\n\n\n\n\n"},"case/loader/sort_list.html":{"url":"case/loader/sort_list.html","title":"sort_list","keywords":"","body":"bi.sort_list\n排序列表\nsource\n\nBI.createWidget({\n type: \"bi.sort_list\",\n width: 100,\n element: 'body',\n items: items,\n});\n\n\n\n参数\n\n\n\n参数\n说明\n类型\n默认值\n\n\n\n\ncount\n分页计数\nnumber\nfalse\n\n\nnext\n\nobject\n{}\n\n\nhasNext\n是否有下一页\nfunction\nBI.emptyFn\n\n\nitems\n子项\narray\n[]\n\n\nitemsCreator\n元素创造器\nfunction\nBI.emptyFn\n\n\nonLoaded\n加载完成回调\nfunction\nBI.emptyFn\n\n\n\n方法\n\n\n\n方法名\n说明\n参数\n\n\n\n\nhasNext\n是否有下一页\n—\n\n\naddItems\n列表最后添加元素\nitems\n\n\nsetValue\n设置值\ndata\n\n\ngetVlaue\n获得值\n—\n\n\nempty\n清空\n—\n\n\npopulate\n替换内容\nitems\n\n\nresetHeight\n重新设置高度\nh\n\n\nsetNotSelectedValue\n设置未选中值\n—\n\n\ngetNotSelectedValue\n获取未选中植\n—\n\n\ngetAllButtons\n获得所以根节点\n—\n\n\ngetAllLeaves\n获得所有叶节点\n—\n\n\ngetSelectedButtons\n获取选中的根节点\n—\n\n\ngetNotSelectedButtons\n获取未选中的根节点\n—\n\n\ngetIndexByValue\n根据值获取索引\nvalue\n\n\ngetNodeById\n根据id获取node\nid\n\n\ngetNodeByValue\n根据值获取node\nvalue\n\n\n\n\n"},"case/trigger/editor_trigger.html":{"url":"case/trigger/editor_trigger.html","title":"editor_trigger","keywords":"","body":"bi.editor_trigger\n文本输入框trigger\nsource\n\nBI.createWidget({\n type: \"bi.editor_trigger\",\n element: \"body\",\n});\n\n\n\n\n\n参数\n\n\n\n参数\n说明\n类型\n默认值\n\n\n\n\nvalidationChecker\n验证函数\nfunction\nBI.emptyFn\n\n\nquitChecker\n退出时验证函数\nfunction\nBI.emptyFn\n\n\nallowBlank\n是否允许为空\nboolean\nfalse\n\n\nwatermark\n水印\nstring\n\"\"\n\n\nerrorText\n错误信息\nstring\n\"\"\n\n\ntriggerWidth\n触发器宽度\nnumber\n30\n\n\n\n方法\n\n\n\n方法名\n说明\n参数\n\n\n\n\nsetValue\n设置值\nvalue\n\n\ngetVlaue\n获得值\n—\n\n\nsetText\n\ntext\n\n\n\n\n"},"case/trigger/icon_trigger.html":{"url":"case/trigger/icon_trigger.html","title":"icon_trigger","keywords":"","body":"bi.icon_trigger\n图标按钮trigger\nsource\n\nBI.createWidget({\n type: \"bi.icon_trigger\",\n element: \"body\",\n});\n\n\n\n\n"},"case/trigger/text_trigger.html":{"url":"case/trigger/text_trigger.html","title":"text_trigger","keywords":"","body":"bi.text_trigger\n文本输入框trigger\nsource\n\nBI.createWidget({\n type: \"bi.editor_trigger\",\n element: \"body\",\n});\n\n\n\n方法\n\n\n\n方法名\n说明\n参数\n\n\n\n\nsetValue\n设置值\nvalue\n\n\ngetVlaue\n获得值\n—\n\n\n\n\n"},"case/combo/bubble_combo.html":{"url":"case/combo/bubble_combo.html","title":"bubble_combo","keywords":"","body":"bi.bubble_combo\n表示一个可以展开的节点, 不仅有选中状态而且有展开状态, 基类BI.Widget\nsource\n\nBI.createWidget({\n type: \"bi.bubble_combo\",\n element:\"#wrapper\",\n el: {\n type: \"bi.button\",\n text: \"测试\",\n height: 25\n },\n popup: {\n el: {\n type: \"bi.button_group\",\n items: BI.makeArray(100, {\n type: \"bi.text_item\",\n height: 25,\n text: \"item\"\n }),\n layouts: [{\n type: \"bi.vertical\"\n }]\n },\n maxHeight: 200\n }\n })\n\n\n\nAPI\n基础属性\n\n\n\n参数\n说明\n类型\n可选值\n默认值\n\n\n\n\ntext\n组件text值\nstring\n—\n\"\"\n\n\nvalue\n组件value值\nstring\n—\n\"\"\n\n\nstopEvent\n阻止事件\nboolean\ntrue,false\nfalse\n\n\nstopPropagation\n阻止冒泡\nboolean\ntrue,false\nfalse\n\n\nselected\nbutton的选中状态\nboolean\ntrue,false\nfalse\n\n\nonce\n点击一次选中有效,再点无效\nboolean\ntrue,false\nfalse\n\n\nforceSelected\n点击即选中, 选中了就不会被取消,与once的区别是forceSelected不影响事件的触发\nboolean\ntrue,false\nfalse\n\n\nforceNotSelected\n无论怎么点击都不会被选中\nboolean\ntrue,false\nfalse\n\n\ndisableSelected\n使能选中\nboolean\ntrue,false\nfalse\n\n\nshadow\n是否显示阴影\nboolean\ntrue,false\nfalse\n\n\nisShadowShowingOnSelected\n选中状态下是否显示阴影\nboolean\ntrue,false\nfalse\n\n\ntrigger\n被选元素要触发的事件\nstring\nmousedown, mouseup, click, dblclick, lclick\nnull\n\n\nhandler\n点击事件回调\nfunction\n—\nBI.emptyFn\n\n\n\n对外方法\n\n\n\n名称\n说明\n回调参数 \n\n\n\n\nbindEvent\n绑定事件\n—\n\n\nbeforeClick\n点击事件之前\n—\n\n\ndoClick\n点击事件\n—\n\n\nhandle\n返回该对象\n—\n\n\nhover\nhover事件\n—\n\n\ndishover\n取消hover事件\n—\n\n\nsetSelected\n设置选中的文本\nb\n\n\nisSelected\n是否被选中\n—\n\n\nisOnce\n是否只允许点击一次\n—\n\n\nisForceSelected\n判断是否点击即选中\n—\n\n\nisForceNotSelected\n判断是否怎么点击都不会被选中\n—\n\n\nisDisableSelected\n判断是否让选中\n—\n\n\nsetText\n设置文本值\n—\n\n\ngetText\n获取文本值\n—\n\n\nempty\n清空组件\n—\n\n\ndestroy\n销毁组件\n—\n\n\n\n\n"},"case/combo/icon_combo.html":{"url":"case/combo/icon_combo.html","title":"icon_combo","keywords":"","body":"bi.icon_combo\n切换trigger图标的combo 基类BI.Widget\nsource\n\nBI.createWidget({\n type: \"bi.icon_combo\",\n element: \"#wrapper\",\n iconClass: \"rename-font\",\n items: [{\n value: \"第一项\",\n iconClass: \"delete-font\"\n }, {\n value: \"第二项\",\n iconClass: \"rename-font\"\n }, {\n value: \"第三项\",\n iconClass: \"move-font\"\n }]\n});\n\n\n\nAPI\n基础属性\n\n\n\n参数\n说明\n类型\n可选值\n默认值\n\n\n\n\nwidth\n宽度\nnumber\n—\n24\n\n\nheight\n高度\nnumber\n—\n24\n\n\niconClass\nicon的类名\nstring\n—\n\" \"\n\n\nel\n自定义下拉框trigger\nobject\n—\n{ }\n\n\npopup\n弹出层\nobject\n—\n{ }\n\n\nminWidth\n最小宽度\nnumber\n—\n100\n\n\nmaxWidth\n最大宽度\nstring/number\n—\n\"auto\"\n\n\nmaxHeight\n最大高度\nnumber\n—\n300\n\n\nadjustLength\n弹出列表和trigger的距离\nnumber\n—\n0\n\n\nadjustXOffset\n调整横向偏移\nnumber\n—\n0\n\n\nadjustYOffset\n调整纵向偏移\nnumber\n—\n0\n\n\noffsetStyle\n弹出层显示位置\nstring\nleft,right,center\n\"left,right,center\"\n\n\nchooseType\n选择类型\nconst\n参考button_group\nBI.ButtonGroup.CHOOSE_TYPE_SINGLE\n\n\n\n对外方法\n\n\n\n名称\n说明\n回调参数 \n\n\n\n\nsetValue\n设置value值\n—\n\n\ngetValue\n获取value值\n—\n\n\nshowView\n显示弹出层\n—\n\n\nhideView\n隐藏弹出层\n—\n\n\npopulate\n刷新列表\nitems\n\n\n\n\n"},"case/combo/static_combo.html":{"url":"case/combo/static_combo.html","title":"static_combo","keywords":"","body":"bi.static_combo\n单选combo,trigger显示项不会改变 基类BI.Widget\nsource\n\nBI.createWidget({\n type: \"bi.static_combo\",\n element: \"#wrapper\",\n text: \"Value 不变\",\n items: [{\n text: \"1\",\n value: 1\n }, {\n text: \"2\",\n value: 2\n }, {\n text: \"3\",\n value: 3\n }]\n });\n\n\n\nAPI\n基础属性\n\n\n\n参数\n说明\n类型\n可选值\n默认值\n\n\n\n\nheight\n高度\nnumber\n—\n24\n\n\nel\n自定义下拉框trigger\nobject\n—\n{ }\n\n\nitems\n子组件\narray\n—\n[ ]\n\n\ntext\n文本内容\nstring\n—\n\" \"\n\n\nchooseType\n选择类型\nconst\n参考button_group\nBI.ButtonGroup.CHOOSE_TYPE_SINGLE\n\n\n\n对外方法\n\n\n\n名称\n说明\n回调参数 \n\n\n\n\nsetValue\n设置value值\n—\n\n\ngetValue\n获取value值\n—\n\n\npopulate\n刷新列表\nitems\n\n\n\n\n"},"case/combo/text_value_combo.html":{"url":"case/combo/text_value_combo.html","title":"text_value_combo","keywords":"","body":"bi.text_value_combo\n基类BI.Widget\nsource\n\nBI.createWidget({\n type: \"bi.text_value_combo\",\n element: \"#wrapper\",\n text: \"value_combo\",\n width: 300,\n items: [{\n text: \"1\",\n value: 1\n }, {\n text: \"2\",\n value: 2\n }, {\n text: \"3\",\n value: 3\n }]\n});\n\n\n\nAPI\n基础属性\n\n\n\n参数\n说明\n类型\n可选值\n默认值\n\n\n\n\nheight\n高度\nnumber\n—\n30\n\n\nel\n自定义下拉框trigger\nobject\n—\n{ }\n\n\ntext\n文本内容\nstring\n—\n\" \"\n\n\nchooseType\n选择类型\nconst\n参考button_group\nBI.ButtonGroup.CHOOSE_TYPE_SINGLE\n\n\n\n对外方法\n\n\n\n名称\n说明\n回调参数 \n\n\n\n\nsetValue\n设置value值\n—\n\n\ngetValue\n获取value值\n—\n\n\npopulate\n刷新列表\nitems\n\n\n\n\n"},"case/combo/text_value_downlist_combo.html":{"url":"case/combo/text_value_downlist_combo.html","title":"text_value_downlist_combo","keywords":"","body":"bi.text_value_down_list_combo\n有二级下拉菜单的combo 基类BI.Widget\nsource\n\nBI.createWidget({\n type: \"bi.text_value_down_list_combo\",\n element: \"#wrapper\",\n text: \"text\",\n items: [\n [{\n el: {\n text: \"1\",\n value: 1\n },\n children: [{\n text: \"11\",\n value: 11\n }]\n }],\n [{\n text: \"2\",\n value: 2\n }, {\n text: \"3\",\n value: 3\n }]\n ]\n});\n\n\n\nAPI\n基础属性\n\n\n\n参数\n说明\n类型\n可选值\n默认值\n\n\n\n\nheight\n高度\nnumber\n—\n30\n\n\ntext\n文本内容\nstring\n—\n\" \"\n\n\n\n对外方法\n\n\n\n名称\n说明\n回调参数 \n\n\n\n\nsetValue\n设置value值\n—\n\n\ngetValue\n获取value值\n—\n\n\npopulate\n刷新列表\nitems\n\n\n\n\n"},"case/tree/branch_tree.html":{"url":"case/tree/branch_tree.html","title":"branch_tree","keywords":"","body":"bi.branch_tree\n横向分支的树\nsource\nBI.createWidget({\n type: \"bi.branch_tree\",\n element: 'body',\n items: [{\n el: {},\n children: [{\n el: {},\n children: {},\n // ...\n }]\n }]\n});\n\n\n\n\n\n参数设置\n\n\n\n参数\n说明\n类型\n默认值\n\n\n\n\nexpander\nbranch_expander组件配置项\nobject\n{}\n\n\nel\n基础元素\nobject\n{}\n\n\nitems\n子项\narray\n[]\n\n\n\n方法\n\n\n\n方法名\n说明\n参数\n\n\n\n\npopulate\n去掉所有内容\n—\n\n\ngetValue\n获取所选项值\n—\n\n\n\n\n"},"case/tree/handstand_branch_tree.html":{"url":"case/tree/handstand_branch_tree.html","title":"handstand_branch_tree","keywords":"","body":"bi.handstand_branch_tree\n纵向分支的树\nsource\nBI.createWidget({\n type: \"bi.handstand_branch_tree\",\n element: 'body',\n el: {},\n items: [{\n el: {},\n children: [{\n el: {},\n children: {},\n // ...\n }]\n }]\n});\n\n\n\n\n\n参数设置\n\n\n\n参数\n说明\n类型\n默认值\n\n\n\n\nexpander\nbranch_expander组件配置项\nobject\n{}\n\n\nel\n基础元素\nobject\n{}\n\n\nitems\n子项\narray\n[]\n\n\n\n方法\n\n\n\n方法名\n说明\n参数\n\n\n\n\npopulate\n去掉所有内容\n—\n\n\ngetValue\n获取所选项值\n—\n\n\n\n\n"},"case/tree/display_tree.html":{"url":"case/tree/display_tree.html","title":"display_tree","keywords":"","body":"bi.display_tree\n树展示控件\nsource\nvar tree = BI.createWidget({\n type: \"bi.display_tree\",\n element: 'body',\n});\n\ntree.initTree({\n id: 1,\n text: '',\n open: true,\n});\n\n\n\n\n方法\n\n\n\n方法名\n说明\n参数\n\n\n\n\ninitTree\n加载tree结构\nnode: 节点数组 settings: 配置项\n\n\ndestroy\n摧毁元素\n—\n\n\n\n\n"},"case/tree/simple_tree.html":{"url":"case/tree/simple_tree.html","title":"simple_tree","keywords":"","body":"bi.simple_tree\n简单的多选树\nsource\nvar tree = BI.createWidget({\n type: \"bi.simple_tree\",\n element: 'body',\n});\n\ntree.populate(items);\n\n\n\n\n\n参数设置\n\n\n\n参数\n说明\n类型\n默认值\n\n\n\n\nitemsCreator\nitems构造器\nfunction\nBI.emptyFn\n\n\nitems\n元素\narray\nnull\n\n\n\n方法\n\n\n\n方法名\n说明\n参数\n\n\n\n\npopulate\n去掉所有内容\nitems: 子项数组 keywords: 关键字标红字符串\n\n\nsetValue\n设置值\nv\n\n\ngetValue\n获得值\n—\n\n\nempty\n清空树\n—\n\n\n\n\n"},"case/tree/level_tree.html":{"url":"case/tree/level_tree.html","title":"level_tree","keywords":"","body":"bi.level_tree\n二级树\nsource\nvar tree = BI.createWidget({\n type: \"bi.level_tree\",\n element: 'body',\n items: [],\n});\n\n\n\n\n\n参数设置\n\n\n\n参数\n说明\n类型\n默认值\n\n\n\n\nexpander\nbranch_expander配置\nobject\n{}\n\n\nitems\n元素\narray\n[]\n\n\n\n方法\n\n\n\n方法名\n说明\n参数\n\n\n\n\ninitTree\n构造树结构\nnodes\n\n\nstroke\n生成树方法\nnodes\n\n\npopulate\n去掉所有内容\nitems: 子项数组\n\n\nsetValue\n设置值\nv\n\n\ngetValue\n获得值\n—\n\n\ngetAllLeaves\n获取所有叶节点\n—\n\n\ngetNodeById\n根据Id获取节点\nid\n\n\ngetNodeByValue\n根据值获取节点\nid\n\n\n\n\n"},"case/tree/branch_relation.html":{"url":"case/tree/branch_relation.html","title":"branch_relation","keywords":"","body":"bi.branch_relation\n表关联树\nsource\nvar tree = BI.createWidget({\n type: \"bi.branch_relation\",\n element: 'body',\n items: [],\n direction: BI.Direction.Right,\n align: BI.HorizontalAlign.Right,\n centerOffset: -50\n});\n\n\n\n\n\n参数设置\n\n\n\n参数\n说明\n类型\n默认值\n\n\n\n\ncenterOffset\n重心偏移量\nnumber\n0\n\n\ndirection\n根节点所在方向\nstring\nBI.Direction.Bottom\n\n\nalign\n对齐方向\nstring\nBI.VerticalAlign.Top\n\n\nitems\n元素\narray\nnull\n\n\n\n方法\n\n\n\n方法名\n说明\n参数\n\n\n\n\npopulate\n去掉所有内容\nitems: 子项数组\n\n\n\n\n"},"case/table/adaptive_table.html":{"url":"case/table/adaptive_table.html","title":"adaptive_table","keywords":"","body":"bi.adaptive_table\n自适应宽度的表格\nsource\nBI.createWidget({\n type: \"bi.adaptive_table\",\n element: 'body',\n width: 600,\n height: 500,\n isResizeAdapt: true,\n isNeedResize: true,\n isNeedFreeze: true,\n freezeCols: [0, 1],\n columnSize: [50,50,200,250,400],\n header: [],\n items: [],\n});\n\n\n\n参数设置\n\n\n\n参数\n说明\n类型\n默认值\n\n\n\n\nisNeedResize\n是否可改变列大小\nboolean\ntrue\n\n\nisNeedFreeze\n是否需要冻结表头\nboolean\nfalse\n\n\nfreezeCols\n冻结的列\narray\n[]\n\n\nisNeedMerge\n是否需要合并单元格\nboolean\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\nminColumnSize\n最小列宽\narray\n[]\n\n\nmaxColumnSize\n最大列宽\narray\n[]\n\n\nheaderRowSize\n表头高度\nnumber\n25\n\n\nrowSize\n普通单元格高度\nnumber\n25\n\n\nregionColumnSize\n列项间的\narray\n[]\n\n\nheader\n表头\narray\n[]\n\n\nitems\n子组件\narray\n[]\n\n\ncrossHeader\n交叉表头\narray\n[]\n\n\ncrossItems\n交叉项\narray\n[]\n\n\n\n方法\n\n\n\n方法名\n说明\n参数\n\n\n\n\nsetWidth\n设置宽度\nwidth: 宽度\n\n\nsetHeight\n设置高度\nheight: 高度\n\n\nsetColumnSize\n设置列宽\ncolumnSize: 列宽数组\n\n\ngetColumnSize\n得到列宽\n—\n\n\nsetRegionColumnSize\n设置列项之间的间隙\ncolumnSize: 列宽数组\n\n\ngetRegionColumnSize\n获得列项之间的间隙\n—\n\n\nsetVerticalScroll\n设置纵向滚动距离\nscrollTop: 纵向滚动距离\n\n\nsetLeftHorizontalScroll\n设置左到右横向滚动距离\nscrollLeft: 横向滚动距离\n\n\nsetRightHorizontalScroll\n设置右往左横向滚动距离\nscrollLeft: 横向滚动距离\n\n\ngetVerticalScroll\n获取纵向滚动距离\n—\n\n\ngetLeftHorizontalScroll\n获取左到右横向滚动距离\n—\n\n\ngetRightHorizontalScroll\n获取右往左横向滚动距离\n—\n\n\nattr\n设置属性\nkey: 键 value: 值\n\n\nrestore\n存储\n—\n\n\npopulate\n增加项\nitems: array\n\n\ndestroy\n摧毁表\n—\n\n\n\n\n"},"case/table/tree_table.html":{"url":"case/table/tree_table.html","title":"tree_table","keywords":"","body":"bi.tree_table\n树状结构的表格\nsource\nvar table = BI.createWidget({\n type: \"bi.tree_table\",\n width: 600,\n height: 400,\n columnSize: [100, 100, 100, 100, 100, 100, 100, 100, 100, 100],\n minColumnSize: [100, 100, 100, 100, 100, 100, 100, 100, 100, 100],\n header: header,\n items: items,\n crossHeader: crossHeader,\n crossItems: crossItems,\n element: 'body',\n});\n\n\n\n参数设置\n\n\n\n参数\n说明\n类型\n默认值\n\n\n\n\nisNeedResize\n是否需要调整列宽\nboolean\nfalse\n\n\nisResizeAdapt\n是否需要在调整列宽或区域宽度的时候它们自适应变化\nboolean\ntrue\n\n\nisNeedFreeze\n是否需要冻结表头\nboolean\nfalse\n\n\nfreezeCols\n冻结的列\narray\n[]\n\n\nisNeedMerge\n是否需要合并单元格\nboolean\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\nminColumnSize\n最小列宽\narray\n[]\n\n\nmaxColumnSize\n最大列宽\narray\n[]\n\n\nheaderRowSize\n表头高度\nnumber\n25\n\n\nheaderCellStyleGetter\n\nfunction\nBI.emptyFn\n\n\nsummaryCellStyleGetter\n\nfunction\nBI.emptyFn\n\n\nsequenceCellStyleGetter\n\nfunction\nBI.emptyFn\n\n\nrowSize\n普通单元格高度\nnumber\n25\n\n\nregionColumnSize\n列项间的\narray\n[]\n\n\nheader\n表头\narray\n[]\n\n\nitems\n子组件\narray\n[]\n\n\ncrossHeader\n交叉表头\narray\n[]\n\n\ncrossItems\n交叉项\narray\n[]\n\n\n\n方法\n\n\n\n方法名\n说明\n参数\n\n\n\n\nsetWidth\n设置宽度\nwidth: 宽度\n\n\nsetHeight\n设置高度\nheight: 高度\n\n\nsetColumnSize\n设置列宽\ncolumnSize: 列宽数组\n\n\ngetColumnSize\n得到列宽\n—\n\n\nsetRegionColumnSize\n设置列项之间的间隙\ncolumnSize: 列宽数组\n\n\ngetRegionColumnSize\n获得列项之间的间隙\n—\n\n\nsetVerticalScroll\n设置纵向滚动距离\nscrollTop: 纵向滚动距离\n\n\nsetLeftHorizontalScroll\n设置左到右横向滚动距离\nscrollLeft: 横向滚动距离\n\n\nsetRightHorizontalScroll\n设置右往左横向滚动距离\nscrollLeft: 横向滚动距离\n\n\ngetVerticalScroll\n获取纵向滚动距离\n—\n\n\ngetLeftHorizontalScroll\n获取左到右横向滚动距离\n—\n\n\ngetRightHorizontalScroll\n获取右往左横向滚动距离\n—\n\n\nattr\n设置属性\nkey: 键 value: 值\n\n\nrestore\n存储\n—\n\n\npopulate\n增加项\nitems: array\n\n\ndestroy\n摧毁表\n—\n\n\n\n\n"},"case/table/layer_tree_table.html":{"url":"case/table/layer_tree_table.html","title":"layer_tree_table","keywords":"","body":"bi.layer_tree_table\n层级树状结构的表格\nsource\nvar table = BI.createWidget({\n type: \"bi.layer_tree_table\",\n width: 600,\n height: 400,\n columnSize: [100, 100, 100, 100, 100, 100, 100, 100, 100, 100],\n minColumnSize: [100, 100, 100, 100, 100, 100, 100, 100, 100, 100],\n header: header,\n items: items,\n crossHeader: crossHeader,\n crossItems: crossItems,\n element: 'body',\n});\n\n\n\n参数设置\n\n\n\n参数\n说明\n类型\n默认值\n\n\n\n\nisNeedResize\n是否需要调整列宽\nboolean\nfalse\n\n\nisResizeAdapt\n是否需要在调整列宽或区域宽度的时候它们自适应变化\nboolean\ntrue\n\n\nisNeedFreeze\n是否需要冻结表头\nboolean\nfalse\n\n\nfreezeCols\n冻结的列\narray\n[]\n\n\nisNeedMerge\n是否需要合并单元格\nboolean\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\nminColumnSize\n最小列宽\narray\n[]\n\n\nmaxColumnSize\n最大列宽\narray\n[]\n\n\nheaderRowSize\n表头高度\nnumber\n25\n\n\nheaderCellStyleGetter\n\nfunction\nBI.emptyFn\n\n\nsummaryCellStyleGetter\n\nfunction\nBI.emptyFn\n\n\nsequenceCellStyleGetter\n\nfunction\nBI.emptyFn\n\n\nrowSize\n普通单元格高度\nnumber\n25\n\n\nregionColumnSize\n列项间的\narray\n[]\n\n\nheader\n表头\narray\n[]\n\n\nitems\n子组件\narray\n[]\n\n\ncrossHeader\n交叉表头\narray\n[]\n\n\ncrossItems\n交叉项\narray\n[]\n\n\n\n方法\n\n\n\n方法名\n说明\n参数\n\n\n\n\nsetWidth\n设置宽度\nwidth: 宽度\n\n\nsetHeight\n设置高度\nheight: 高度\n\n\nsetColumnSize\n设置列宽\ncolumnSize: 列宽数组\n\n\ngetColumnSize\n得到列宽\n—\n\n\nsetRegionColumnSize\n设置列项之间的间隙\ncolumnSize: 列宽数组\n\n\ngetRegionColumnSize\n获得列项之间的间隙\n—\n\n\nsetVerticalScroll\n设置纵向滚动距离\nscrollTop: 纵向滚动距离\n\n\nsetLeftHorizontalScroll\n设置左到右横向滚动距离\nscrollLeft: 横向滚动距离\n\n\nsetRightHorizontalScroll\n设置右往左横向滚动距离\nscrollLeft: 横向滚动距离\n\n\ngetVerticalScroll\n获取纵向滚动距离\n—\n\n\ngetLeftHorizontalScroll\n获取左到右横向滚动距离\n—\n\n\ngetRightHorizontalScroll\n获取右往左横向滚动距离\n—\n\n\nattr\n设置属性\nkey: 键 value: 值\n\n\nrestore\n存储\n—\n\n\npopulate\n增加项\nitems: array\n\n\ndestroy\n摧毁表\n—\n\n\n\n\n"},"case/pager/all_count_pager.html":{"url":"case/pager/all_count_pager.html","title":"all_count_pager","keywords":"","body":"bi.all_count_pager\n有总页数和总行数的分页控件\nsource\n\nBI.createWidget({\n type: 'bi.all_count_pager',\n height: 30,\n pages: 10, //必选项\n curr: 1,\n count: 1,\n});\n\n\n\n参数\n\n\n\n参数\n说明\n类型\n默认值\n\n\n\n\nheight\n控件高度\nnumber\n30\n\n\npages\n总页数\nnumber\n1\n\n\ncurr\n当前页\nnumber\n1\n\n\ncount\n总行数\nnumber\n1\n\n\n\n方法\n\n\n\n方法名\n说明\n参数\n\n\n\n\nsetAllPages\n设置总页数\nv\n\n\nsetValue\n设置当前页码\nv\n\n\nsetVPage\n设置当前页码\nv\n\n\nsetCount\n设置计数\ncount\n\n\ngetCurrentPage\n获取当前页码\n—\n\n\nhasPrev\n是否有前一页\n—\n\n\nhasNext\n是否有后一页\n—\n\n\nsetPagerVisible\n设置页码是否可见\ntrue/false\n\n\npopulate\n清空内容\n—\n\n\n\n\n"},"case/pager/direction_pager.html":{"url":"case/pager/direction_pager.html","title":"direction_pager","keywords":"","body":"bi.direction_pager\n显示页码的分页控件\nsource\n\nvar pager = BI.createWidget({\n type: 'bi.direction_pager',\n height: 30,\n horizontal: {\n pages: 10, //必选项\n curr: 1, //初始化当前页, pages为数字时可用,\n firstPage: 1,\n lastPage: 10,\n },\n vertical: {\n pages: 10, //必选项\n curr: 1, //初始化当前页, pages为数字时可用,\n firstPage: 1,\n lastPage: 10,\n },\n element: 'body',\n});\n\n\n\n参数\n\n\n\n参数\n二级参数\n说明\n类型\n默认值\n\n\n\n\nheight\n\n控件高度\nnumber\n30\n\n\nhorizontal\n\n横向翻页设置\nobject\n—\n\n\n\npages\n总页数\nnumber/boolean\nfalse\n\n\n\ncurr\n当前页, pages为数字时可用\nnumber\n1\n\n\n\nhasPrev\n判断是否有前一页的方法\nfunction\nBI.emptyFn\n\n\n\nhasNext\n判断是否有后一页的方法\nfunction\nBI.emptyFn\n\n\n\nfirstPage\n第一页\nnumber\n1\n\n\n\nlastPage\n最后一页\nnumber/function\nBI.emptyFn\n\n\nvertical\n\n纵向翻页设置,参数与horizontal相同\nobject\n—\n\n\n\n方法\n\n\n\n方法名\n说明\n参数\n\n\n\n\ngetVPage\n获取纵向页码\n—\n\n\ngetHPage\n获取水平向页码\n—\n\n\nsetVPage\n获取纵向页码\nv\n\n\nsetHPage\n获取水平向页码\nv\n\n\nhasVNext\n纵向坐标是否有下一页\n—\n\n\nhasHNext\n横向坐标是否有下一页\n—\n\n\nhasVPrev\n纵向坐标是否有上一页\n—\n\n\nhasHPrev\n横向坐标是否有上一页\n—\n\n\nsetHPagerVisible\n设置横向分页键可见\n—\n\n\nsetVPagerVisible\n设置纵向分页键可见\n—\n\n\npopulate\n清空内容\n—\n\n\n\n\n"},"case/calendar.html":{"url":"case/calendar.html","title":"calendar","keywords":"","body":"bi.calendar\n日历控件\nsource\n\nBI.createWidget({\n type: 'bi.calendar',\n min: '1900-01-01', //最小日期\n max: '2099-12-31', //最大日期\n year: 2015,\n month: 7, //7表示八月\n day: 25,\n});\n\n\n\n\n\n参数\n\n\n\n参数\n说明\n类型\n默认值\n\n\n\n\nmin\n最小日期\nstring\n'1900-01-01'\n\n\nmax\n最大日期\nstring\n'2099-12-31'\n\n\nyear\n设定的年份\nnumber\n2015\n\n\nmonth\n设定的月份\nnumber\n7\n\n\nday\n设定的日期\nnumber\n25\n\n\n\n方法\n\n\n\n方法名\n说明\n参数\n\n\n\n\nisFrontDate\n是否为最小日期\n—\n\n\nisFinalDate\n是否为最大日期\n—\n\n\nsetValue\n设置日期\nobject: {year, month, day}\n\n\ngetVlaue\n获得日期\n—\n\n\n\n\n"},"case/clipboard.html":{"url":"case/clipboard.html","title":"clipboard","keywords":"","body":"bi.clipboard\n剪切板\nsource\n\nBI.createWidget({\n type: 'bi.clipboard',\n width: 100,\n height: 100,\n copy: function () {},\n\n afterCopy: function () {}\n});\n\n\n\n\n\n参数\n\n\n\n参数\n说明\n类型\n默认值\n\n\n\n\ncopy\n获取需要拷贝的值\nfunction\nBI.emptyFn\n\n\nafterCopy\n完成拷贝后执行的方法\nfunction\nBI.emptyFn\n\n\n\n\n"},"case/complex_canvas.html":{"url":"case/complex_canvas.html","title":"complex_canvas","keywords":"","body":"complex_canvas\n复杂的canvas绘图\nsource\n\nvar canvas = BI.createWidget({\n type: \"bi.complex_canvas\",\n width: 500,\n height: 600\n });\ncanvas.branch(55, 100, 10, 10, 100, 10, 200, 10, {\n offset: 20,\n strokeStyle: \"red\",\n lineWidth: 2\n });\n\ncanvas.stroke();\n\n\n\n对外方法\n\n\n\n名称\n说明\n回调参数\n\n\n\n\nbranch\n绘制树枝节点\n(x0, y0, x1, y1, x2, y2) (以x0, y0为根节点,分支到x1,y1, x2,y2...)\n\n\nstroke\n绘制\n\n\n\n\n"},"case/color_chooser.html":{"url":"case/color_chooser.html","title":"color_chooser","keywords":"","body":"bi.color_chooser\n选色控件\nsource\n\nBI.createWidget({\n type: \"bi.color_chooser\",\n element: \"#wrapper\",\n width: 30,\n height: 30\n});\n\n\n\n\n\n方法\n\n\n\n方法名\n说明\n参数\n\n\n\n\nisViewVisible\n判断是否显示\n—\n\n\nsetValue\n设置颜色值\ncolor\n\n\ngetValue\n获取颜色值\n—\n\n\n\n\n"},"case/color_chooser_popup.html":{"url":"case/color_chooser_popup.html","title":"color_chooser_popup","keywords":"","body":"bi.color_chooser_popup\n选色控件弹窗\nsource\n\nBI.createWidget({\n type: \"bi.color_chooser_popup\",\n});\n\n\n\n\n\n参数\n\n\n\n参数\n说明\n类型\n默认值\n\n\n\n\nheight\n高度\nnumber\n145\n\n\n\n方法\n\n\n\n方法名\n说明\n参数\n\n\n\n\nsetStoreColors\n设置储存的颜色值\ncolors\n\n\nsetValue\n设置颜色值\ncolor\n\n\ngetValue\n获取颜色值\n—\n\n\n\n事件\n\n\n\n事件\n说明\n\n\n\n\nEVENT_VALUE_CHANGE\n颜色值改变时触发\n\n\n\n\n"},"case/segment.html":{"url":"case/segment.html","title":"segment","keywords":"","body":"bi.sgement\n各种segment\nsource\n\nBI.createWidget({\n type: \"bi.vertical\",\n element: \"#wrapper\",\n items: [{\n type: \"bi.label\",\n height: 30,\n text: \"默认风格\"\n }, {\n type: \"bi.segment\",\n items: [{\n text: \"tab1\",\n value: 1,\n selected: true\n }, {\n text: \"tab2\",\n value: 2\n }, {\n text: \"tab3 disabled\",\n disabled: true,\n value: 3\n }]\n }],\n hgap: 50,\n vgap: 20\n});\n\n\n\nAPI\n基础属性\n\n\n\n参数\n说明\n类型\n可选值\n默认值\n\n\n\n\nhgap\n效果相当于文本框左右padding值\nnumber\n—\n10\n\n\nvgap\n效果相当于文本框上下padding值\nnumber\n—\n0\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\nitems\n子控件数组\narray\n—\n[ ]\n\n\nwidth\n宽度\nnumber\n—\n—\n\n\nheight\n高度\nnumber\n—\n—\n\n\n\n\n"},"detailed/bi.button/general.html":{"url":"detailed/bi.button/general.html","title":"通用按钮","keywords":"","body":"bi.button\n通用按钮,详情见BI.button\n"},"detailed/bi.button/tooltip.html":{"url":"detailed/bi.button/tooltip.html","title":"提示性信息","keywords":"","body":"提示性信息\nsource\nvar toast = BI.createWidget({\n type: \"bi.vertical\",\n element: \"#wrapper\",\n items: [{\n el: {\n type: 'bi.button',\n text: '简单Toast测试',\n height: 30,\n handler: function () {\n BI.Msg.toast(\"这是一条简单的数据\");\n }\n }\n }],\n vgap: 20\n});\n\n\n\nAPI\n基础属性\n\n\n\n参数\n说明\n类型\n可选值\n默认值\n\n\n\n\nhgap\n效果相当于文本框左右padding值\nnumber\n—\n10\n\n\nvgap\n效果相当于文本框上下padding值\nnumber\n—\n0\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\nitems\n子控件数组\narray\n—\n[ ]\n\n\nwidth\n宽度\nnumber\n—\n—\n\n\nheight\n高度\nnumber\n—\n—\n\n\n\n\n"},"detailed/bi.button/items.html":{"url":"detailed/bi.button/items.html","title":"各种items","keywords":"","body":"各种items\nsource\n\nBI.createWidget({\n type: 'bi.vertical',\n element: \"#wrapper\",\n items: [{\n type: \"bi.label\",\n height: 30,\n text: \"单选item\"\n }, {\n type: \"bi.single_select_item\",\n text: \"单选项\"\n }, {\n type: \"bi.label\",\n height: 30,\n text: \"复选item\"\n }, {\n type: \"bi.multi_select_item\",\n text: \"复选项\"\n }]\n});\n\n\n\nAPI\n基础属性\n\n\n\n参数\n说明\n类型\n可选值\n默认值\n\n\n\n\nhgap\n效果相当于文本框左右padding值,如果clear属性为true,该属性值置0\nnumber\n—\n10\n\n\nvgap\n效果相当于文本框上下padding值\nnumber\n—\n0\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\nitems\n子控件数组\narray\n—\n[ ]\n\n\nwidth\n宽度\nnumber\n—\n—\n\n\nheight\n高度\nnumber\n—\n—\n\n\n\n\n"},"detailed/bi.button/node.html":{"url":"detailed/bi.button/node.html","title":"各种节点nodes","keywords":"","body":"各种节点nodes\nsource\n\nBI.createWidget({\n type: 'bi.vertical',\n element: \"#wrapper\",\n items: [{\n type: \"bi.label\",\n height: 30,\n text: \"十字形的节点\"\n }, {\n type: \"bi.plus_group_node\",\n text: \"十字形的节点\"\n }, {\n type: \"bi.label\",\n height: 30,\n text: \"三角形的节点\"\n }, {\n type: \"bi.triangle_group_node\",\n text: \"三角形的节点\"\n }, {\n type: \"bi.label\",\n height: 30,\n text: \"箭头节点\"\n }, {\n type: \"bi.arrow_group_node\",\n text: \"箭头节点\"\n }]\n});\n\n\n\nAPI\n基础属性\n\n\n\n参数\n说明\n类型\n可选值\n默认值\n\n\n\n\nhgap\n效果相当于文本框左右padding值,如果clear属性为true,该属性值置0\nnumber\n—\n10\n\n\nvgap\n效果相当于文本框上下padding值\nnumber\n—\n0\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\nitems\n子控件数组\narray\n—\n[ ]\n\n\nwidth\n宽度\nnumber\n—\n—\n\n\nheight\n高度\nnumber\n—\n—\n\n\n\n\n"},"detailed/bi.button/segment.html":{"url":"detailed/bi.button/segment.html","title":"各种segment","keywords":"","body":"bi.sgement\n各种segment\nsource\n\nBI.createWidget({\n type: \"bi.vertical\",\n element: \"#wrapper\",\n items: [{\n type: \"bi.label\",\n height: 30,\n text: \"默认风格\"\n }, {\n type: \"bi.segment\",\n items: [{\n text: \"tab1\",\n value: 1,\n selected: true\n }, {\n text: \"tab2\",\n value: 2\n }, {\n text: \"tab3 disabled\",\n disabled: true,\n value: 3\n }]\n }],\n hgap: 50,\n vgap: 20\n});\n\n\n\nAPI\n基础属性\n\n\n\n参数\n说明\n类型\n可选值\n默认值\n\n\n\n\nhgap\n效果相当于文本框左右padding值\nnumber\n—\n10\n\n\nvgap\n效果相当于文本框上下padding值\nnumber\n—\n0\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\nitems\n子控件数组\narray\n—\n[ ]\n\n\nwidth\n宽度\nnumber\n—\n—\n\n\nheight\n高度\nnumber\n—\n—\n\n\n\n\n"},"detailed/tree/bi.multi_tree_combo.html":{"url":"detailed/tree/bi.multi_tree_combo.html","title":"multi_tree_combo","keywords":"","body":"bi.multi_tree_combo\n树下拉框,继承BI.Widget\nsource\nvar items = [{\n id: -1,\n pId: -2,\n value: \"根目录\",\n text: \"根目录\"\n}, {\n id: 1,\n pId: -1,\n value: \"第一级目录1\",\n text: \"第一级目录1\"\n}, {\n id: 11,\n pId: 1,\n value: \"第二级文件1\",\n text: \"第二级文件1\"\n}];\n\nBI.createWidget({\n type: \"bi.multi_tree_combo\",\n itemsCreator: function (options, callback) {\n callback({\n items: items\n });\n },\n width: 300\n})\n\n\n\n参数设置\n\n\n\n参数\n说明\n类型\n默认值\n\n\n\n\nwidth\n宽度\nnumber\n200\n\n\nheight\n高度\nnumber\n30\n\n\nitems\n子项,pId代表父节点ID\narray\nnull\n\n\nitemsCreator\n子项创建函数\nfunction\nfunction() {}\n\n\n\n方法\n\n\n\n方法名\n说明\n参数\n\n\n\n\nsetValue\n设置文本框值\nv\n\n\ngetValue\n获取文本框值\n—\n\n\npopulate\n更改树结构内容\nitems\n\n\n\n事件\n\n\n\n事件\n说明\n\n\n\n\nBI.MultiTreeCombo.EVENT_CONFIRM\n点击一级节点触发\n\n\n\n\n"},"detailed/tree/bi.switch_tree.html":{"url":"detailed/tree/bi.switch_tree.html","title":"switch_tree","keywords":"","body":"bi.switch_tree\n可以单选多选切换的树,继承BI.Widget\nsource\nvar items = [{\n id: -1,\n pId: -2,\n value: \"根目录\",\n text: \"根目录\"\n}, {\n id: 1,\n pId: -1,\n value: \"第一级目录1\",\n text: \"第一级目录1\"\n}, {\n id: 11,\n pId: 1,\n value: \"第二级文件1\",\n text: \"第二级文件1\"\n}];\n\nvar tree = BI.createWidget({\n type: \"bi.switch_tree\",\n items: items,\n});\n\n\n\n参数设置\n\n\n\n参数\n说明\n类型\n默认值\n\n\n\n\nitems\n子项,pId代表父节点ID\narray\n[]\n\n\n\n方法\n\n\n\n方法名\n说明\n参数\n\n\n\n\nswitchSelect\n切换树结构\n—\n\n\nsetSelect\n设置选中项\nv\n\n\ngetSelect\n获取选中项\n—\n\n\nsetValue\n设置当前选中项内容\nv\n\n\ngetValue\n获取当前选中项内容\nv\n\n\npopulate\n更改树结构内容\nitems\n\n\n\n\n"},"detailed/table/bi.preview_table.html":{"url":"detailed/table/bi.preview_table.html","title":"preview_table","keywords":"","body":"bi.preview_table\n用于表格预览,继承BI.Widget\nsource\n\nBI.createWidget({\n type: \"bi.preview_table\",\n header: [[{\n text: \"表头1\"\n }, {\n text: \"表头2\"\n }, {\n text: \"表头3\"\n }]],\n element: 'body',\n columnSize: [100, \"\", 50],\n items: [[{\n text: \"第一行第一列\"\n }, {\n text: \"第一行第二列\"\n }, {\n text: \"第一行第三列\"\n }]]\n});\n\n\n\n参数\n\n\n\n参数\n说明\n类型\n默认值\n\n\n\n\nisNeedFreeze\n是否冻结\nboolean\nfalse\n\n\nfreezeCols\n冻结的列\narray\n[]\n\n\nrowSize\n行高\narray/number\nnull\n\n\ncolumnSize\n列宽\narray\n[]\n\n\nheaderRowSize\n表头行高\nnumber\n30\n\n\nheader\n表头内容\narray\n[]\n\n\nitems\n子组件\narray\n[]\n\n\n\n方法\n\n\n\n方法名\n说明\n参数\n\n\n\n\nresize\n调整表格\n—\n\n\nsetColumnSize\n设置列宽\ncolumnSize\n\n\ngetColumnSize\n得到列宽\n—\n\n\ngetCalculateColumnSize\n获得计算后的列宽\n—\n\n\nsetHeaderColumnSize\n设置表头的列宽\ncolumnSize\n\n\nsetRegionColumnSize\n设置列项之间的间隙\ncolumnSize\n\n\ngetRegionColumnSize\n获得列项之间的间隙\n—\n\n\ngetCalculateRegionColumnSize\n获取计算后的列项之间的间隙\n—\n\n\ngetCalculateRegionRowSize\n获取计算后的列项上下之间的间隙\n—\n\n\ngetClientRegionColumnSize\n获取浏览器中显示的列项之间的间隙\n—\n\n\ngetScrollRegionColumnSize\n获取横向滚动条宽度\n—\n\n\ngetScrollRegionRowSize\n获取纵向滚动条宽度\n—\n\n\nhasVerticalScroll\n是否含有数值滚动条\n—\n\n\nsetVerticalScroll\n设置纵向滚动距离\nscrollTop\n\n\nsetLeftHorizontalScroll\n设置左到右横向滚动距离\nscrollLeft\n\n\nsetRightHorizontalScroll\n设置右往左横向滚动距离\nscrollLeft\n\n\ngetVerticalScroll\n获取纵向滚动距离\n—\n\n\ngetLeftHorizontalScroll\n获取左到右横向滚动距离\n—\n\n\ngetRightHorizontalScroll\n获取右往左横向滚动距离\n—\n\n\ngetColumns\n获取列项\n—\n\n\nresizeHeader\n调整表头\n—\n\n\nattr\n设置属性\nkey:键,value:值\n\n\npopulate\n替换为新的内容\nrows\n\n\ndestroy\n摧毁表\n—\n\n\n\n\n"},"detailed/table/bi.responsive_table.html":{"url":"detailed/table/bi.responsive_table.html","title":"responsive_table","keywords":"","body":"bi.responsive_table\n自适应宽度的表格,继承BI.Widget\nsource\n\nBI.createWidget({\n type: \"bi.responsive_table\",\n isNeedMerge: true,\n isNeedFreeze: true,\n mergeCols: [0, 1],\n columnSize: [\"\", \"\", \"\"],\n items: [[{\n text: \"第一行第一列\"\n }, {\n text: \"第一行第二列\"\n }, {\n text: \"第一行第三列\"\n }]],\n header: [[{\n text: \"表头1\"\n }, {\n text: \"表头2\"\n }, {\n text: \"表头3\"\n }]],\n element: 'body'\n});\n\n\n\n参数\n\n\n\n参数\n说明\n类型\n默认值\n\n\n\n\nisNeedFreeze\n是否需要冻结单元格\nboolean\nfalse\n\n\nfreezeCols\n冻结的列号,从0开始,isNeedFreeze为true时生效\narray\n[]\n\n\nisNeedMerge\n是否需要合并单元格\nboolean\nfalse\n\n\nmergeRule\nfunction (row1, row2) 合并规则, 默认相等时合并\nfunction\nfunction\n\n\ncolumnSize\n列宽\narray\n[]\n\n\nheaderRowSize\n表头行高\nnumber\n25\n\n\nfooterRowSize\n表尾行高\nnumber\n25\n\n\nrowSize\n行高\nnumber\n25\n\n\ncolumnSize\n列宽\narray\n[]\n\n\nregionColumnSize\n\nboolean\nfalse\n\n\nheader\n表头内容\narray\n[]\n\n\nfooter\n是否需要表尾\nboolean\nfalse\n\n\nitems\n子组件二维数组\narray\n[]\n\n\ncrossHeader\n交叉表头\narray\n[]\n\n\ncrossItems\n交叉表内容二维数组\narray\n[]\n\n\n\n方法\n\n\n\n方法名\n说明\n参数\n\n\n\n\nresize\n调整表格\n—\n\n\nsetColumnSize\n设置列宽\ncolumnSize\n\n\ngetColumnSize\n得到列宽\n—\n\n\ngetCalculateColumnSize\n获得计算后的列宽\n—\n\n\nsetHeaderColumnSize\n设置表头的列宽\ncolumnSize\n\n\nsetRegionColumnSize\n设置列项之间的间隙\ncolumnSize\n\n\ngetRegionColumnSize\n获得列项之间的间隙\n—\n\n\ngetCalculateRegionColumnSize\n获取计算后的列项之间的间隙\n—\n\n\ngetCalculateRegionRowSize\n获取计算后的列项上下之间的间隙\n—\n\n\ngetClientRegionColumnSize\n获取浏览器中显示的列项之间的间隙\n—\n\n\ngetScrollRegionColumnSize\n获取横向滚动条宽度\n—\n\n\ngetScrollRegionRowSize\n获取纵向滚动条宽度\n—\n\n\nhasVerticalScroll\n是否含有数值滚动条\n—\n\n\nsetVerticalScroll\n设置纵向滚动距离\nscrollTop\n\n\nsetLeftHorizontalScroll\n设置左到右横向滚动距离\nscrollLeft\n\n\nsetRightHorizontalScroll\n设置右往左横向滚动距离\nscrollLeft\n\n\ngetVerticalScroll\n获取纵向滚动距离\n—\n\n\ngetLeftHorizontalScroll\n获取左到右横向滚动距离\n—\n\n\ngetRightHorizontalScroll\n获取右往左横向滚动距离\n—\n\n\ngetColumns\n获取列项\n—\n\n\nresizeHeader\n调整表头\n—\n\n\nattr\n设置属性\nkey:键,value:值\n\n\npopulate\n替换为新内容\nrows\n\n\ndestroy\n摧毁表\n—\n\n\n\n\n"},"detailed/table/bi.excel_table.html":{"url":"detailed/table/bi.excel_table.html","title":"excel_table","keywords":"","body":"bi.excel_table\n类似excel式的表格,继承BI.Widget\nsource\nBI.createWidget({\n type: \"bi.excel_table\",\n element: \"body\",\n columnSize: [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\n\nisNeedResize\n是否需要调整大小\nboolean\nfalse\n\n\nisResizeAdapt\n是否调整时自适应\nboolean\ntrue\n\n\nisNeedMerge\n是否需要合并单元格\nboolean\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列项间的\narray\n[82, \"\"]\n\n\nitems\n子组件\narray\n[]\n\n\n\n方法\n\n\n\n方法名\n说明\n参数\n\n\n\n\nresize\n调整表格\n—\n\n\nsetColumnSize\n设置列宽\ncolumnSize\n\n\ngetColumnSize\n得到列宽\n—\n\n\ngetCalculateColumnSize\n获得计算后的列宽\n—\n\n\nsetHeaderColumnSize\n设置表头的列宽\ncolumnSize\n\n\nsetRegionColumnSize\n设置列项之间的间隙\ncolumnSize\n\n\ngetRegionColumnSize\n获得列项之间的间隙\n—\n\n\ngetCalculateRegionColumnSize\n获取计算后的列项之间的间隙\n—\n\n\ngetCalculateRegionRowSize\n获取计算后的列项上下之间的间隙\n—\n\n\ngetClientRegionColumnSize\n获取浏览器中显示的列项之间的间隙\n—\n\n\ngetScrollRegionColumnSize\n获取横向滚动条宽度\n—\n\n\ngetScrollRegionRowSize\n获取纵向滚动条宽度\n—\n\n\nhasVerticalScroll\n是否含有数值滚动条\n—\n\n\nsetVerticalScroll\n设置纵向滚动距离\nscrollTop\n\n\nsetLeftHorizontalScroll\n设置左到右横向滚动距离\nscrollLeft\n\n\nsetRightHorizontalScroll\n设置右往左横向滚动距离\nscrollLeft\n\n\ngetVerticalScroll\n获取纵向滚动距离\n—\n\n\ngetLeftHorizontalScroll\n获取左到右横向滚动距离\n—\n\n\ngetRightHorizontalScroll\n获取右往左横向滚动距离\n—\n\n\ngetColumns\n获取列项\n—\n\n\nresizeHeader\n调整表头\n—\n\n\nattr\n设置属性\nkey:键,value:值\n\n\npopulate\n增加行\nrows\n\n\ndestroy\n摧毁表\n—\n\n\n\n\n"},"detailed/table/bi.page_table.html":{"url":"detailed/table/bi.page_table.html","title":"page_table","keywords":"","body":"bi.page_table\n分页表格\nsource\nBI.createWidget({\n type: \"bi.page_table\",\n element: \"body\",\n columnSize: [200,200],\n items: [],\n pager: {\n horizontal : {},\n vertical: {}\n } \n});\n\n\n\n参数设置\n\n\n\n参数\n二级参数\n三级参数\n说明\n类型\n默认值\n\n\n\n\npager\n\n\n分页选项\nobject\n—\n\n\n\nhorizontal\n\n水平分页选项\nobject\n—\n\n\n\n\npages\n显示总页数\nboolean\nfalse\n\n\n\n\ncurr\n当前页\nnumber\n1\n\n\n\n\nhasPrev\n判断是否有前一页的函数\nfunction\nBI.emptyFn\n\n\n\n\nhasNext\n是否有下一页\nfunction\nBI.emptyFn\n\n\n\n\nfirstPage\n第一页\nnumber\n1\n\n\n\n\nlastPage\n最后一页\nnumber/function\nBI.emptyFn\n\n\n\nvertical\n\n纵向分页,参数与horizontal\nobject\n—\n\n\nitemsCreator\n\n\n元素创造器\nfunction\nBI.emptyFn\n\n\nisNeedFreeze\n\n\n是否需要冻结表头\nboolean\nfalse\n\n\nfreezeCols\n\n\n冻结的列\narray\n[]\n\n\nisNeedMerge\n\n\n是否需要合并单元格\nboolean\nfalse\n\n\nmergeCols\n\n\n合并的单元格列号\narray\n[]\n\n\nmergeRule\n\n\n合并规则, 默认相等时合并\nfunction(row1, row2)\n默认row1 = row2 时合并\n\n\ncolumnSize\n\n\n单元格宽度集合\narray\n[]\n\n\nminColumnSize\n\n\n最小列宽\narray\n[]\n\n\nmaxColumnSize\n\n\n最大列宽\narray\n[]\n\n\nheaderRowSize\n\n\n表头高度\nnumber\n25\n\n\nrowSize\n\n\n普通单元格高度\nnumber\n25\n\n\nregionColumnSize\n\n\n列项间的\narray\n[]\n\n\nheaderCellStyleGetter\n\n\n\nfunction\nBI.emptyFn\n\n\nsummaryCellStyleGetter\n\n\n\nfunction\nBI.emptyFn\n\n\nsequenceCellStyleGetter\n\n\n\nfunction\nBI.emptyFn\n\n\nheader\n\n\n表头\narray\n[]\n\n\nitems\n\n\n子组件\narray\n[]\n\n\ncrossHeader\n\n\n交叉表头\narray\n[]\n\n\ncrossItems\n\n\n交叉项\narray\n[]\n\n\n\n方法\n\n\n\n方法名\n说明\n参数\n\n\n\n\nsetHPage\n设置水平页数\nv: 页码\n\n\nsetVpage\n设置纵向页数\nv: 页码\n\n\ngetHPage\n获得水平页数\n—\n\n\ngetVPage\n获得垂直页数\n—\n\n\nsetWidth\n设置宽度\nwidth: 宽度\n\n\nsetHeight\n设置高度\nheight: 高度\n\n\nsetColumnSize\n设置列宽\ncolumnSize: 列宽数组\n\n\ngetColumnSize\n得到列宽\n—\n\n\nsetRegionColumnSize\n设置列项之间的间隙\ncolumnSize: 列宽数组\n\n\ngetRegionColumnSize\n获得列项之间的间隙\n—\n\n\nsetVerticalScroll\n设置纵向滚动距离\nscrollTop: 纵向滚动距离\n\n\nsetLeftHorizontalScroll\n设置左到右横向滚动距离\nscrollLeft: 横向滚动距离\n\n\nsetRightHorizontalScroll\n设置右往左横向滚动距离\nscrollLeft: 横向滚动距离\n\n\ngetVerticalScroll\n获取纵向滚动距离\n—\n\n\ngetLeftHorizontalScroll\n获取左到右横向滚动距离\n—\n\n\ngetRightHorizontalScroll\n获取右往左横向滚动距离\n—\n\n\nattr\n设置属性\nkey: 键 value: 值\n\n\npopulate\n增加\n—\n\n\ndestroy\n摧毁表\n—\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\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\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事件详见Editor\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\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\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\n\n\n事件\n说明\n\n\n\n\nBI.SearchEditor.EVENT_CLEAR\n点击清空按钮触发\n\n\n\n其他事件详见Editor\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\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\n\n\n事件\n说明\n\n\n\n\nBI.ClearEditor.EVENT_CLEAR\n点击清空按钮触发\n\n\n\n其他事件详见Input\n\n"},"detailed/text_input/finetuning_number_editor.html":{"url":"detailed/text_input/finetuning_number_editor.html","title":"finetuning_number_editor","keywords":"","body":"finetuning_number_editor\n数值微调器\nsource\nBI.createWidget({\n type: 'bi.fine_tuning_number_editor',\n element: '#wrapper',\n width: 300\n});\n\n\n\n参数\n\n\n\n参数\n说明\n类型\n可选值\n默认值\n\n\n\n\nvalue\n编辑框中的值,-1表示自动\nnumber\n\n-1\n\n\n\n事件\n\n\n\n事件\n说明\n\n\n\n\nBI.FineTuningNumberEditor.EVENT_CONFIRM\n点击增加/减少按钮或者编辑框确定时触发\n\n\n\n\n"},"detailed/year_combo.html":{"url":"detailed/year_combo.html","title":"year_combo","keywords":"","body":"year_combo\n年份选择下拉框\nsource\nBI.createWidget({\n type: 'bi.year_combo',\n element: '#wrapper',\n width: 300\n});\n\n\n\n参数\n\n\n\n参数\n说明\n类型\n可选值\n默认值\n\n\n\n\nbehaviors\n自定义下拉列表中item项的行为,如高亮,标红等(详见button_group)\nobject\n\n{}\n\n\nmin\n限定可选日期的下限\nstring\n\n'1900-01-01'\n\n\nmax\n限定可选日期的上限\nstring\n\n'2099-12-31'\n\n\n\n事件\n\n\n\n事件\n说明\n\n\n\n\nBI.YearCombo.EVENT_CONFIRM\n选中日期或者退出编辑状态触发\n\n\nBI.YearCombo.EVENT_BEFORE_POPUPVIEW\n选中日期或者退出编辑状态触发\n\n\n\n\n"},"detailed/month_combo.html":{"url":"detailed/month_combo.html","title":"month_combo","keywords":"","body":"month_combo\n月份选择下拉框\nsource\nBI.createWidget({\n type: 'bi.month_combo',\n element: '#wrapper',\n width: 300\n});\n\n\n\n参数\n\n\n\n参数\n说明\n类型\n可选值\n默认值\n\n\n\n\nbehaviors\n自定义下拉列表中item项的行为,如高亮,标红等(详见button_group)\nobject\n\n{}\n\n\n\n事件\n\n\n\n事件\n说明\n\n\n\n\nBI.MonthCombo.EVENT_CONFIRM\n选中日期或者退出编辑状态触发\n\n\nBI.MonthCombo.EVENT_BEFORE_POPUPVIEW\n选中日期或者退出编辑状态触发\n\n\n\n\n"},"detailed/quarter_combo.html":{"url":"detailed/quarter_combo.html","title":"quarter_combo","keywords":"","body":"quarter_combo\n季度选择下拉框\nsource\nBI.createWidget({\n type: 'bi.quarter_combo',\n element: '#wrapper',\n width: 300\n});\n\n\n\n参数\n\n\n\n参数\n说明\n类型\n可选值\n默认值\n\n\n\n\nbehaviors\n自定义下拉列表中item项的行为,如高亮,标红等(详见button_group)\nobject\n\n{}\n\n\n\n事件\n\n\n\n事件\n说明\n\n\n\n\nBI.QuarterCombo.EVENT_CONFIRM\n选中日期或者退出编辑状态触发\n\n\nBI.QuarterCombo.EVENT_BEFORE_POPUPVIEW\n选中日期或者退出编辑状态触发\n\n\n\n\n"},"detailed/down_list_combo.html":{"url":"detailed/down_list_combo.html","title":"down_list_combo","keywords":"","body":"down_list_combo\n多层下拉列表的下拉框\nsource\nBI.createWidget({\n type: 'bi.down_list_combo',\n element: '#wrapper',\n width: 300,\n items: [\n [{\n el: {\n text: \"column 1111\",\n iconCls1: \"check-mark-e-font\",\n value: 11\n },\n children: [{\n text: \"column 1.1\",\n value: 21,\n cls: \"dot-e-font\",\n selected: true\n }, {\n text: \"column 1.222222222222222222222222222222222222\",\n cls: \"dot-e-font\",\n value: 22,\n }]\n }],\n [{\n el: {\n type: \"bi.icon_text_icon_item\",\n text: \"column 2\",\n iconCls1: \"chart-type-e-font\",\n cls: \"dot-e-font\",\n value: 12\n },\n disabled: true,\n children: [{\n type: \"bi.icon_text_item\",\n cls: \"dot-e-font\",\n height: 25,\n text: \"column 2.1\",\n value: 11\n }, {\n text: \"column 2.2\",\n value: 12,\n cls: \"dot-e-font\"\n }]\n }]\n ]\n});\n\n\n\n参数\n\n\n\n参数\n说明\n类型\n可选值\n默认值\n\n\n\n\nel\n自定义下拉框trigger\nobject\n\n\n\n\ntrigger\n下拉列表的弹出方式\nstring\nclick, hover\nclick\n\n\ndirection\n弹出列表和trigger的位置关系\nstring\ntop | bottom | left | right | top,left | top,right | bottom,left | bottom,right\nbottom\n\n\nadjustLength\n弹出列表和trigger的距离\nnumber\n\n0\n\n\n\n事件\n\n\n\n事件\n说明\n\n\n\n\nBI.DownListCombo.EVENT_CHANGE\n点击一级节点触发\n\n\nBI.DownListCombo.EVENT_SON_VALUE_CHANGE\n点击二级节点触发\n\n\nBI.DownListCombo.EVENT_BEFORE_POPUPVIEW\n下拉列表弹出前触发\n\n\n\n具体配置方法见Combo\n\n"},"detailed/numeric_interval.html":{"url":"detailed/numeric_interval.html","title":"numeric_interval","keywords":"","body":"numeric_interval\n数值区间控件\nsource\nBI.createWidget({\n type: \"bi.numerical_interval\",\n element: '#wrapper',\n width: 500\n});\n\n\n\n参数\n\n\n\n参数\n说明\n类型\n可选值\n默认值\n\n\n\n\nmin\n最小值初始值\nnumber\n\n无\n\n\nmax\n最大值初始值\nnumber\n\n无\n\n\ncloseMin\n左区间初始状态\nboolean\n\ntrue\n\n\ncloseMax\n右区间初始状态\nboolean\n\ntrue\n\n\n\n方法\n\n\n\n方法\n说明\n用法\n\n\n\n\nisStateValid()\n当前状态是否有效(输入是否合法, 区间是否成立)\n\n\n\nsetMinEnable(boolean)\n设置左区间输入框disable状态\n\n\n\nsetCloseMinEnable(boolean)\n设置左区间开闭combo的disable状态\n\n\n\nsetMaxEnable(boolean)\n设置右区间输入框disable状态\n\n\n\nsetCloseMaxEnable(boolean)\n设置右区间开闭combo的disable状态\n\n\n\nsetNumTip(string)\n设置数值区间的tip提示\n—\n\n\n\n事件\n\n\n\n事件\n说明\n\n\n\n\nBI.NumericalInterval.EVENT_VALID\n区间合法的状态事件\n\n\nBI.NumericalInterval.EVENT_ERROR\n区间不合法的状态事件\n\n\n\n\n"},"detailed/multi_select_combo.html":{"url":"detailed/multi_select_combo.html","title":"multi_select_combo","keywords":"","body":"multi_select_combo\n带确定的复选下拉框\nsource\nBI.createWidget({\n type: \"bi.multi_select_combo\",\n element: '#wrapper',\n width: 500,\n itemsCreator: function(){\n return {\n items: [],\n hasNext: false\n }\n }\n});\n\n\n\n\n\n\n\n事件\n说明\n\n\n\n\nBI.MultiSelectCombo.EVENT_CONFIRM\n点击确定触发\n\n\n\n\n"},"detailed/date/date_combo.html":{"url":"detailed/date/date_combo.html","title":"date_combo","keywords":"","body":"date_combo\n日期选择下拉框(弹出的年月选择可以进一步选择日期)\nsource\nBI.createWidget({\n type: \"bi.date_combo\",\n element: \"#wrapper\",\n width: 300\n});\n\n\n\n参数\n\n\n\n参数\n说明\n类型\n可选值\n默认值\n\n\n\n\n\n\n\n\n\n"},"detailed/date/date_pane_widget.html":{"url":"detailed/date/date_pane_widget.html","title":"date_pane_widget","keywords":"","body":"date_pane_widget\n日期选择下拉框的弹出面板\nsource\nBI.createWidget({\n type: \"bi.date_pane_widget\",\n element: \"#wrapper\",\n width: 300\n});\n\n\n\n参数\n\n\n\n参数\n说明\n类型\n可选值\n默认值\n\n\n\n\nmin\n限定可选日期的下限\nstring\n\n'1900-01-01'\n\n\nmax\n限定可选日期的上限\nstring\n\n'2099-12-31'\n\n\nselectedTime\n选中的初始年月\nobj({year: y, month: m})\n—\n—\n\n\n\n\n"},"detailed/date/year_month_combo.html":{"url":"detailed/date/year_month_combo.html","title":"year_month_combo","keywords":"","body":"year_month_combo\n年月选择下拉框\nsource\nBI.createWidget({\n type: \"bi.year_month_combo\",\n width: 300\n});\n\n\n\n参数\n\n\n\n参数\n说明\n类型\n可选值\n默认值\n\n\n\n\nyearBehaviors\n自定义年份选择的行为(详见button_group)\nobject\n—\n{ }\n\n\nmonthBehaviors\n自定义年份选择的行为(详见button_group)\nobject\n—\n{ }\n\n\n\n事件\n\n\n\n事件\n说明\n\n\n\n\nBI.YearMonthCombo.EVENT_BEFORE_POPUPVIEW\n弹出框弹出前触发\n\n\nBI.YearMonthCombo.EVENT_CONFIRM\n点击确认触发\n\n\n\n\n"},"detailed/date/year_quarter_combo.html":{"url":"detailed/date/year_quarter_combo.html","title":"year_quarter_combo","keywords":"","body":"year_quarter_combo\n年季度选择下拉框\nsource\nBI.createWidget({\n type: \"bi.year_quarter_combo\",\n width: 300\n});\n\n\n\n参数\n\n\n\n参数\n说明\n类型\n可选值\n默认值\n\n\n\n\nyearBehaviors\n自定义年份选择的行为(详见button_group)\nobject\n\n\n\n\nmonthBehaviors\n自定义年份选择的行为(详见button_group)\nobject\n—\n{ }\n\n\n\n事件\n\n\n\n事件\n说明\n\n\n\n\nBI.YearQuarterCombo.EVENT_BEFORE_POPUPVIEW\n弹出框弹出前触发\n\n\nBI.YearQuarterCombo.EVENT_CONFIRM\n点击确认触发\n\n\n\n\n"},"detailed/date/custom_date_time.html":{"url":"detailed/date/custom_date_time.html","title":"custom_date_time","keywords":"","body":"custom_date_time\n日期选择下拉框(可以选择时分秒)\nsource\nBI.createWidget({\n type: \"bi.custom_date_time_combo\",\n element: \"#wrapper\",\n});\n\n\n\n参数\n\n\n\n参数\n说明\n类型\n可选值\n默认值\n\n\n\n\n\n\n\n\n事件\n\n\n\n事件\n说明\n\n\n\n\nBI.CustomDateTimeCombo.EVENT_CANCEL\n点击取消触发\n\n\nBI.CustomDateTimeCombo.EVENT_CONFIRM\n点击确认触发\n\n\n\n\n"},"detailed/combo/single_tree_combo.html":{"url":"detailed/combo/single_tree_combo.html","title":"single_tree_combo","keywords":"","body":"bi.single_tree_combo\n二级树下拉框\nsource\nvar tree = BI.createWidget({\n type: \"bi.single_tree_combo\",\n element: 'body',\n items: [],\n text: \"默认值\",\n width: 300,\n});\n\n\n\n\n\n参数设置\n\n\n\n参数\n说明\n类型\n默认值\n\n\n\n\ntrigger\n下拉列表的弹出方式\nobject\n{}\n\n\nheight\n高度\nnumber\n30\n\n\ntext\n文本框值\nstring\n''\n\n\nitems\n元素\narray\nnull\n\n\n\n方法\n\n\n\n方法名\n说明\n参数\n\n\n\n\npopulate\n刷新内容\nitems: 子项数组\n\n\nsetValue\n设置值\nsetValue\n\n\ngetValue\n获取值\ngetValue\n\n\n\n事件\n\n\n\n事件\n说明\n\n\n\n\nBI.SingleTreeCombo.EVENT_BEFORE_POPUPVIEW\n下拉框弹出前触发\n\n\n\n其他事件详见Input\n\n"},"detailed/combo/multilayer_single_tree_combo.html":{"url":"detailed/combo/multilayer_single_tree_combo.html","title":"multilayer_single_tree_combo","keywords":"","body":"bi.multilayer_single_tree_combo\n多层级下拉单选树\nsource\nvar tree = BI.createWidget({\n type: \"bi.multilayer_single_tree_combo\",\n element: 'body',\n items: [],\n text: \"默认值\",\n width: 300,\n});\n\n\n\n\n\n参数设置\n\n\n\n参数\n说明\n类型\n默认值\n\n\n\n\nheight\n高度\nnumber\n30\n\n\ntext\n文本框值\nstring\n''\n\n\nitemsCreator\n元素创造器\nfunction\nBI.emptyFn\n\n\nitems\n元素\narray\nnull\n\n\n\n方法\n\n\n\n方法名\n说明\n回调参数\n\n\n\n\npopulate\n刷新内容\nitems: 子项数组\n\n\nsetValue\n设置值\nsetValue\n\n\ngetValue\n获取值\ngetValue\n\n\n\n\n"},"detailed/combo/select_tree_combo.html":{"url":"detailed/combo/select_tree_combo.html","title":"select_tree_combo","keywords":"","body":"bi.select_tree_combo\n二级可选节点下拉框树\nsource\nvar tree = BI.createWidget({\n type: \"bi.select_tree_combo\",\n element: 'body',\n items: [],\n text: \"默认值\",\n width: 300,\n});\n\n\n\n\n\n参数设置\n\n\n\n参数\n说明\n类型\n默认值\n\n\n\n\nheight\n高度\nnumber\n30\n\n\ntext\n文本框值\nstring\n''\n\n\nitems\n元素\narray\nnull\n\n\n\n方法\n\n\n\n方法名\n说明\n回调参数\n\n\n\n\npopulate\n刷新内容\nitems: 子项数组\n\n\nsetValue\n设置值\nsetValue\n\n\ngetValue\n获取值\ngetValue\n\n\n\n\n"},"detailed/combo/multilayer_select_tree_combo.html":{"url":"detailed/combo/multilayer_select_tree_combo.html","title":"multilayer_select_tree_combo","keywords":"","body":"bi.multilayer_select_tree_combo\n多层级下拉可选节点树\nsource\nvar tree = BI.createWidget({\n type: \"bi.multilayer_select_tree_combo\",\n element: 'body',\n items: [],\n text: \"默认值\",\n width: 300,\n});\n\n\n\n\n\n参数设置\n\n\n\n参数\n说明\n类型\n默认值\n\n\n\n\nheight\n高度\nnumber\n30\n\n\ntext\n文本框值\nstring\n''\n\n\nitems\n元素\narray\nnull\n\n\n\n方法\n\n\n\n方法名\n说明\n回调参数\n\n\n\n\npopulate\n刷新内容\nitems: 子项数组\n\n\nsetValue\n设置值\nsetValue\n\n\ngetValue\n获取值\ngetValue\n\n\n\n\n"},"detailed/path/path_chooser.html":{"url":"detailed/path/path_chooser.html","title":"path_chooser","keywords":"","body":"path_chooser\n路径选择\nsource\nBI.createWidget({\n type: \"bi.path_chooser\",\n element: \"#wrapper\",\n items: [[{\n \"region\": \"8c4460bc3605685e\",\n \"regionText\": \"采购订单XXX\",\n \"text\": \"ID\",\n \"value\": \"1\"\n }, {\n \"region\": \"0fbd0dc648f41e97\",\n \"regionText\": \"采购订单\",\n \"text\": \"学号\",\n \"value\": \"3\"\n }, {\n \"region\": \"c6d72d6c7e19a667\",\n \"regionText\": \"供应商基本信息\",\n \"text\": \"ID\",\n \"value\": \"5\"\n }]]\n});\n\n\n\n参数\n\n\n\n参数\n说明\n类型\n可选值\n默认值\n\n\n\n\nitems\n二维数组,每个元素代表一条路径\narray\n—\n[ ]\n\n\n\n\n"},"detailed/path/direction_path_chooser.html":{"url":"detailed/path/direction_path_chooser.html","title":"direction_path_chooser","keywords":"","body":"direction_path_chooser\n带方向的路径选择\nsource\nBI.createWidget({\n type: \"bi.direction_path_chooser\",\n element: \"#wrapper\",\n items: [[{\n \"region\": \"合同信息\",\n \"text\": \"客户ID\",\n \"value\": \"defa1f7ba8b2684a客户ID\"\n }, {\n \"region\": \"客户信息\",\n \"text\": \"主键\",\n \"value\": \"1f4711c201ef1842\",\n \"direction\": -1\n }, {\n \"region\": \"合同的回款信息\",\n \"text\": \"合同ID\",\n \"value\": \"e351e9f1d8147947合同ID\",\n \"direction\": -1\n }]]\n});\n\n\n\n参数\n\n\n\n参数\n说明\n类型\n可选值\n默认值\n\n\n\n\nitems\n二维数组,每个元素代表一条路径,相较于path_chooser多一个属性direction来指定方向\narray\n—\n[ ]\n\n\n\n\n"},"detailed/relation_view.html":{"url":"detailed/relation_view.html","title":"relation_view","keywords":"","body":"relation_view\n关联视图\nsource\nBI.createWidget({\n type: \"bi.relation_view\",\n items: [{\n primary: {\n region: \"B\", regionText: \"比\",\n title: \"b2...\",\n value: \"b2\", text: \"b2字段\"\n },\n foreign: {region: \"C\", value: \"c1\", text: \"c1字段\"}\n }, {\n primary: {region: \"A\", value: \"a1\", text: \"a1字段\"},\n foreign: {region: \"C\", value: \"c2\", text: \"c2字段\"}\n }]\n});\n\n\n\n参数\n\n\n\n参数\n说明\n类型\n可选值\n默认值\n\n\n\n\n\n\n\n\n\n"},"detailed/dialog.html":{"url":"detailed/dialog.html","title":"dialog","keywords":"","body":"dialog\n对话框\nsource\nBI.Msg.alert(title, content)\n\n\n\n参数\n\n\n\n参数\n说明\n类型\n可选值\n默认值\n\n\n\n\ntitle\n对话框标题\nstring\n—\n\" \"\n\n\ncontent\n对话框内容\nstring\n—\n\" \"\n\n\n\n\n"},"detailed/file_manager.html":{"url":"detailed/file_manager.html","title":"file_manager","keywords":"","body":"file_manager\n文件管理器\nsource\nBI.createWidget({\n type: \"bi.file_manager\",\n items: [{\n id: \"1\",\n value: \"1\",\n text: \"根目录\"\n }, {\n id: \"11\",\n pId: \"1\",\n value: \"11\",\n text: \"第一级子目录1\"\n }, {\n id: \"12\",\n pId: \"1\",\n value: \"12\",\n text: \"第一级子目录2\"\n }]\n})\n\n\n\n\n\n方法\n\n\n\n方法\n说明\n\n\n\n\ngetSelectedValue()\n获取当前选中项的value值\n\n\ngetSelectedId\n获取当前选中项的id属性\n\n\n\n\n"},"detailed/slider.html":{"url":"detailed/slider.html","title":"slider","keywords":"","body":"bi.slider\nslider插件\nsource\nBI.createWidget({\n type: \"bi.slider\",\n min: 16,\n max: 50,\n});\n\n\n\n\n\n参数\n\n\n\n参数\n说明\n类型\n默认值\n\n\n\n\nmin\n最小值\nnumber\n10\n\n\nmax\n最大值\nnumber\n50\n\n\n\n方法\n\n\n\n方法名\n说明\n参数\n\n\n\n\ngetValue\n获得当前值\n—\n\n\nsetValue\n设置当前值\nvalue\n\n\n\n\n\n\n\n\n"}}} \ No newline at end of file