the json object structure of sava change is
list: {
addList: [{id: 1000, field1: value1, field2, value2,...}, {id: 1001, field1: value1, field1: value2}, ...],
deleteList: [{id: 10}, {id: 29},....],
updateList: [{id: 3, field1: value1, field2, value2,...}, {id: 7, field1: value1, field1: value2}, ...]
}
but the structure of our company is something like:
items: {
insert: [{id: 1000, field1: value1, field2, value2,...}, {id: 1001, field1: value1, field1: value2}, ...],
delete: [{id: 10}, {id: 29},....],
update: [{id: 3, field1: value1, field2, value2,...}, {id: 7, field1: value1, field1: value2}, ...]
}
If pqgrid has provided the function of json obj attribute customization function? Else I have to manually change json attribute in every crud page, it wil be a big trouble for me.