- 注册时间
- 2013-6-5
- 最后登录
- 2013-9-21
- 阅读权限
- 10
- 积分
- 113
- 精华
- 0
- 帖子
- 27
|
我有一个支持单元格编辑的TreeGrid,请问:
1. TreeGrid进行数据校验是调用他的validate函数吗? 还是调用其它方法?
2. 如何绑定事件对TreeGrid单元格输入进行校验?可以这样写吗?
{ 'header': '名称', 'name': 'ItemName', 'field': 'Text', 'headerAlign': 'center', 'editor': { 'type': "textbox", 'required': 'true', 'vtype': 'minLength:2' } },
3. 想实现某一列中只能一个单元格的checkbox为选中状态。应该怎样实现?是否有可以的事件绑定,在选中状态更改后修改其它行? 请给出简单的列定义,例如这个列许实现只由一个行是选中:
{ 'header': '默认项', 'field': 'IsDefault', 'headerAlign': 'center', "type": "checkboxcolumn" }
|
|