Is there an expandAll function to expand all sub_rows in grid just like tree type cells?
Unfortunately there is no appropriate method to expand all sub rows. You should iterate through all rows and expand sub rows using open() method:
mygrid.loadXML(“grid.xml”,function(){
mygrid.forEachRow(function(id){
mygrid.cellById(id,0).open();
});
})