Hello,
using the expandgroup method after the updatebounddata, it’s seems it doen’t work, is there any other solution??
updaterow: function (rowid, rowdata, commit) {
grid.jqxGrid('hidevalidationpopups');
$.ajax({
type: type,
datatype: datatype,
url: url + '&action=update&id='+rowdata.id,
data: JSON.stringify(datafieldsFormat(rowdata, datafields)),
success: function (data) {
if (!data) {
commit(true);
//grid.jqxGrid('updatebounddata', 'data');
//grid.jqxGrid('updatebounddata', 'cells');
//grid.jqxGrid('updatebounddata', 'filter');
//grid.jqxGrid('updatebounddata', 'sort');
grid.jqxGrid('updatebounddata');
grid.jqxGrid('expandgroup', group - 1);
} else {
var arr = JSON.parse(data);
grid.jqxGrid('showvalidationpopup', rowdata.boundindex, arr.Datafield, arr.ErrorMessage);
commit(false);
}
}
});
},