Note that there are some explanatory texts on larger screens.

plurals
  1. POHow to create an advanced wizard form usingcard layout on Extjs 3.2?
    primarykey
    data
    text
    <p>There was an Ext.ux.wizard for extjs 2.0 which we could create wizard like forms for extjs and easily validate form elements when user clicked (eg)next button.see demo here: <a href="http://www.siteartwork.de/wizardcomponent_demo" rel="nofollow">http://www.siteartwork.de/wizardcomponent_demo</a> . On extjs 3.2 there is card layout which helps creating wizards.see demo: <a href="http://dev.sencha.com/deploy/dev/examples/layout-browser/layout-browser.html" rel="nofollow">http://dev.sencha.com/deploy/dev/examples/layout-browser/layout-browser.html</a> .<br> Code: </p> <pre><code>/* * ================ CardLayout config (Wizard) ======================= */ var cardWizard = { id:'card-wizard-panel', title: 'Card Layout (Wizard)', layout:'card', activeItem: 0, bodyStyle: 'padding:15px', defaults: {border:false}, bbar: ['-&gt;', { id: 'card-prev', text: '&amp;laquo; Previous', handler: cardNav.createDelegate(this, [-1]), disabled: true },{ id: 'card-next', text: 'Next &amp;raquo;', handler: cardNav.createDelegate(this, [1]) }], items: [{ id: 'card-0', html: '&lt;h1&gt;Welcome to the Demo Wizard!&lt;/h1&gt;&lt;p&gt;Step 1 of 3&lt;/p&gt;&lt;p&gt;Please click the "Next" button to continue...&lt;/p&gt;' },{ id: 'card-1', html: '&lt;p&gt;Step 2 of 3&lt;/p&gt;&lt;p&gt;Almost there. Please click the "Next" button to continue...&lt;/p&gt;' },{ id: 'card-2', html: '&lt;h1&gt;Congratulations!&lt;/h1&gt;&lt;p&gt;Step 3 of 3 - Complete&lt;/p&gt;' }] }; </code></pre> <p>but there seems no validations when i click next or there is no submit button when i reach last step of wizard.does anybody have any examples on a more developed wizard?</p>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload