Hi
I'm trying to understand how grid nesting works.
What is it for?Code:nestedGrid.fireEvent("bind", nestedGrid, { guid: record.get('guid') });
Where can I find the description for 'bind' event?
Hi
I'm trying to understand how grid nesting works.
What is it for?Code:nestedGrid.fireEvent("bind", nestedGrid, { guid: record.get('guid') });
Where can I find the description for 'bind' event?
hey guys i found something on the net which might help, its really basic thing actually, not very neat but works...here's the link to it
http://hmxamughal.blog.com/2012/10/23/grid-in-grid/
I'm trying to get nested grid to work as well (Ext JS 4.1.0). I used http://hmxamughal.blog.com/2012/10/23/grid-in-grid/ as a starting point, and noticed that when a row in the outer grid is expanded and then selected, all rows in the nested grid will be automatically selected. Is there a way to prevent the nested grid rows from being automatically selected when the associated row in the outer grid is selected?
Isnt this approach very expensive regarding the performance, creating grids inside gridrows?
Yep. Expensive & unreliable.
I tried this example and I get it to work with a grid inside a grid when expanding a row. My problem is that when I try to turn edit in place mode on (by using the Ext.grid.plugin.CellEditing plugin), the edit in place does not work on the grids that are inside the "main" grid. Edit in place work on the main grid though. Have anyone seen that issue and can explain what is going on? My first though was that it might be the main grid that eat the events of the sub grid, but have no way of knowing for sure.