PDA

View Full Version : Dynamic Grid Passing parameters


ani
05-27-2007, 08:39 AM
Hi Ext friends,

I have a grid successfully loading in a grid panel (static). On submit event i am accessing some values to filter the grid from my file. I just saving these values to am array using js function. The Whole page is a php page. I attached the gris realted js file in the php page. and rendering grid in the php file itself. But on submit how can i get therse values to grod releted js file where there values create grid.

i declared an array on submit event..

nn=new Array();
nn[0]Ext.getEl('id').dom.value;
nn[1]=Ext.getEl('id1').dom.value;
nn[2]=Ext.getEl('id2').dom.value;

my question is it possible to access there araay values in js file and pass it as baseparams to create a dynamic grid.?
ani