While I know there may be similar questions out there, the details of my situation are unique. I'm facing an issue with building a new window using ExtJS, starting from a pre-existing grid. The goal is to populate this new window with references to elements selected in the previous grid.
Here's what I've tried: I included an ajax call within the first grid and created a column containing an image that users can click to access the second grid. However, when clicking on the image, nothing happens. Have I made a mistake with the ajax call? Or perhaps with passing JSON data to the page for the grid's store in the new window?
var grid = Ext.create('Ext.grid.Panel', {
// Grid configurations here
});