In our ExtJS
application, we have some menus and a tab panel. Clicking on a menuItem
opens a grid.
we have a requirement where user can open a display containing a grid in any of the two modes:
- Inline - Grid will open as a tab item in the
tabpanel
. - Popup - A new browser window is opened using
window.open
and whole ExtJS library is loaded first and then the grid is loaded. Popup as browser window is to facilitate multiple monitors.
So the problem here is whenever we open a popup window ExtJS library is needed and it is taking up a lot of memory in IE.
Is there any other way we can load a browser window popup with ExtJS grid without loading the whole ExtJS framework?
Or any other idea are most welcome, as we are really facing a lot of memory issues in IE and users are not willing to use chrome.
Thanks in advance.