Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Nested Grid IN EXTJS

Tags:

extjs

HI

How to design Nested grids in ExtJS Please provide some samples(How to use RowExpander in ExtJS GridPanel)

like image 375
MNR Avatar asked Dec 27 '22 22:12

MNR


2 Answers

Try something like this:

 //Create the Row Expander.
var expander = new Ext.ux.grid.RowExpander({
     tpl : new Ext.Template('<div id="myrow-{Id}" ></div>')
});

//Define the function to be called when the row is expanded.
function expandedRow(obj, record, body, rowIndex){
    //absId parameter for the http request to get the absence details.
    var absId = record.get('Id');

    var dynamicStore = //the new store for the nested grid.

    //Use Id to give each grid a unique identifier. The Id is used in the row expander tpl.
    //and in the grid.render("ID") method.
    var row = "myrow-" + record.get("Id");
    var id2 = "mygrid-" + record.get("Id");  

   //Create the nested grid.         
   var gridX = new Ext.grid.GridPanel({
        store: dynamicStore,
        stripeRows: true,
        columns: [
            //columns
        ],
        height: 120,
        id: id2                  
    });        

    //Render the grid to the row expander template(tpl).
    gridX.render(row);
    gridX.getEl().swallowEvent([ 'mouseover', 'mousedown', 'click', 'dblclick' ]);
}

//Add an expand listener to the Row Expander.
expander.on('expand', expandedRow);

You can find more information on this Here

like image 179
shane87 Avatar answered Jan 17 '23 01:01

shane87


How to use RowExpander in grid? Here's an example: http://dev.sencha.com/deploy/dev/examples/grid/grid-plugins.html

More examples can be found from http://dev.sencha.com/deploy/dev/examples/

like image 35
Tommi Avatar answered Jan 17 '23 02:01

Tommi