ExtJS 4.1 How to create a window with grid dynamically
问题 I'm a new ExtJS user and I've a question. I have a store with cars and I create a menu with buttons to see all cars by brand or model. Now I want to display a window with a grid panel containing all my cars for a particular brand/model. Actually when I create my buttons i do that : var aCarButton = Ext.create('Ext.Button', { text: aTextButton, handler: function() { var aResultWindow = new ResultWindow(aTextButton, myCarStore, 'Brand', aBrandValue); aResultWindow.create(); } }); aMenuPanel.add