good morning,i have a grouping grid, when i add a row via ‘addrow’, and make a updatebounda, the group disappears, the grid show me the raw rows
var Sec1 = function(vdata2){
var sourceSec1 ={
datatype: “json”,
datafields: [
{ name: ‘field1′,type:’string’},
{ name: ‘field2′,type:’string’}
],
url: ‘phpdocs/GetFields.php’,
cache: false,
type: ‘POST’,
data:{v1:vdata1,v2:vdata2}, // vdata1 its a global variable
addrow: function (rowid, rowdata, position, commit) {
var datos = {v1:rowdata.vdata1,v2:rowdata.vdata2};
$.GetData(‘phpdocs/AddRow.php’,8000,datos,function(data){
if (data.v1==1){$(‘#GridSec’).jqxGrid(‘updatebounddata’);}else{commit(false);};
$(‘#GridSec’).jqxGrid(‘clearselection’);
});
}
};
var dataAdapterSec1 = new $.jqx.dataAdapter(sourceSec1);
return dataAdapterSec1;
};
$(“#GridSec”).jqxGrid({width: ‘100%’,theme: theme,altrows: true,source: Cuadro(vdata2),
height:$(document).height()-160,showtoolbar: true,toolbarheight: 30,columns: [
{ text: ‘Section’, datafield: ‘field1’, width: ‘10%’ },
{ text: ‘Description’, datafield: ‘field2’, width: ‘10%’ }
],groupable: true,groups: [‘field1’],showgroupsheader:false
});
in the addrow method
$(“#SecForm”).on(‘validationSuccess’, function () {
var datarow ={field1:$(‘#inpt1’).val(),field2:$(‘#inpt2’).val().toUpperCase()};
$(“#GridSec”).jqxGrid(‘addrow’, null, datarow);
});