In our application we are using Extjs. Now I need a pop up with a grid and a cancel and submit button. So that I can select some records from the grid and save the record to DB.
I tried Ext.Window
for popup.
I think items
attribute in the Ext.Window
can hold only one type of object ( means the object of Ext.grid.GridPanel
or form). But I need both controls.
How can I implement both controls with in a popup window?
Please give your valueable information about this.
Thanks in advance.
items
can be an array. It's in the docs. – Evan Trimboli