maybe i can help litle..
i have same problem about merger footer..
i add function
onLoadSuccess:function(){
$(this).datagrid('mergeCells', {index: 1, field: 'nm_item',colspan: 2,type: 'footer'});
}
$('#tbl-kartu-stok').datagrid({
url:'<?=base_url()?>ks/c_kartu_stok/data_kartu_stok/<?=$nama?>',
toolbar:'#toolbar',
pagination: 'true',
pageSize:'20',
remoteFilter: 'true',
rownumbers: 'true',
showFooter:'true',
singleSelect: 'true',
columns:[[
{field:'kd_item',title:'Kode',width:70,halign:'center',align:'right', sortable:true},
{field:'nm_item',title:'Nama bahan',width:210,halign:'center',sortable:true},
{field:'satuan',title:'Satuan',width:120,halign:'center',align:'center',sortable:true},
{field:'stok',title:'Stok',width:80,sortable:true,halign:'center',align:'right', formatter: function(value,row,index){
return accounting.formatNumber(value);
}},
{field:'hpp',title:'HPP',width:110,sortable:true,halign:'center',align:'right', formatter: function(value,row,index){
return accounting.formatNumber(value);
}},
{field:'total',title:'Total',width:110,sortable:true,halign:'center',align:'right', formatter: function(value,row,index){
return accounting.formatNumber(value);
}},
{field:'c_date',title:'Create Date',width:150,halign:'center',align:'center',sortable:true},
{field:'m_date',title:'Modified Date',width:150,halign:'center',align:'center',sortable:true}
]]
});
EasyUI


