提交rendertype文档

This commit is contained in:
huyueb 2017-09-22 14:47:53 +08:00
parent 9c056474ca
commit 7f541c372e
4 changed files with 17 additions and 2 deletions

View File

@ -52,4 +52,7 @@
|onCellClick|单击列的单元格时调用|Function(row, event)|-|
{% include "mixin.md"%}
{% include "mixin.md"%}
{% include "rendertype.md"%}

View File

@ -1 +0,0 @@
# editType

13
docs/rendertype.md Normal file
View File

@ -0,0 +1,13 @@
## rendertype
在表格中提供了多种rendertype可以供选择比如下拉框单选框复选框日期等
### InputRender
输入框类型render
#### 配置
| 参数 | 说明 | 类型 | 默认值 |
| -------------- | -------------- | -------- | ----- |
| value | render的值 | string | 无 |
| isclickTrigger | 是否使用点击触发编辑状态 | boolean | false |
| onChange | 当值发生改变的时候触发的方法 | Function | 无 |