Yes, is there any way or option that i should set to make group view not expanded as default?
i don't want to use this code below because it will consume so much render time..
$('#dg').datagrid({
onLoadSuccess:function(){
var gcount = $(this).datagrid('options').view.groups.length;
for(var i=0; i<gcount; i++){
$(this).datagrid('collapseGroup', i);
}
}
})
here the fiddle
http://jsfiddle.net/aswzen/nv62Lf7v/4/thanks in advance