|
发表于 2016-7-18 10:19:01
|
显示全部楼层
newData
List newData (Object options)
业务数据新增方法,支持返回多行
> 参数
options:[Object ]新增参数,支持多行新增
> 结构如下:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{
"parent" : 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} - 新增行的数组
}
} |
|