|
发表于 2021-9-9 17:54:52
|
显示全部楼层
newData的参数有 个index
格式:
- {
- "parent" : $UI/system/components/justep/data/data#Row - 树形数据的父(非树形不需要),
- "index" : integer - 新增数据的位置,缺省新增到最后,
- "defaultValues" : array - 新增行的默认值数组 ,数组的长度决定新增行数,数组中的对象是列的默认值
- defaultValues格式:
- [
- {列名:默认值,...},
- {列名:默认值,...},
- ...
- ]
- "onError" : function - 失败回调函数,function(event);
- event的格式:
- {
- "source" : {Data} - 组件的js对象,
- "errorType" : {string} - 'server',
- "errorNode" : {object} - 错误信息,
- "httpError" : {boolean} - 是否http请求失败,
- "httpState" : {string} - http请求返回码
- }
- "onSuccess" : function - 成功回调函数,function(event);
- event的格式:
- {
- "source" : {Data} - 组件的js对象,
- "rows" : {List} - 新增行的数组
- }
- }
复制代码 |
|