i have a Ext.Window and i load TabPanel in it wiht autoLoad from another jsp:
var x = new Ext.Window({
id: 'myWindow',
title:'Аттрибуты',
layout: 'fit',
autoScroll:false,
width:600,
autoLoad : {
url : url_servlet+'form.jsp',
scripts: true
}
})
x.show();
Now i want to send parameters in form.jsp in this autoLoad. Its possible or i gonna send parameters in url?
try adding params in autoLoad config