mitchellsimoens / Ext.layout.AccordionLayout

An accordion style layout for Sencha Touch
http://www.simoens.org/Sencha-Projects/demos/
25 stars 9 forks source link

Form Panel can not load #6

Open rwegithub opened 12 years ago

rwegithub commented 12 years ago

we are trying to add a form panel as an item of accordion layout.

var step2Form = new Ext.form.FormPanel({ id: 'step2Form11', title : "Form Test", standardSubmit : false, scroll:'vertical', items: [{ xtype: 'textfield',
label: 'Title', required: true }, { xtype: 'textareafield',
label: 'Narrativecalldetail' }] });

var panel = new Ext.Panel({ fullscreen : true, scroll : "vertical", layout: { type: "accordion" }, items: [ { xtype : "panel", title : "first", html : "firstelement" }, step2Form, list ] });

but can not load the form when expanding. list is loading properly. Thanks a lot.