- For individual users
- Instant access to solutions
- Ask your tech questions
- Start your 30-day Free Trial
Main Topics
Browse All TopicsHello,
I am currently attempting to learn some ext js. What i am trying to do is have a form with various combo box options. Now based upon what the user selects for the first combo box option i want to render a text field, Or select box etc under it.
If some one could give me some direction to go in for this i would greatly appreciate it.
Thank you.
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
Business Accounts
Answer for Membership
by: BatalfPosted on 2009-10-05 at 04:10:33ID: 25494087
You would probably have to create some panels and initially hide them. (config option "hidden" set to true)
); ); );
); ); );
Then add a "select" listener to the combobox which will call a function.
Something like:
function hideAllPanels() {
Ext.getCmp('panel1').hide(
Ext.getCmp('panel2').hide(
Ext.getCmp('panel3').hide(
}
function showHidePanels(combo) {
hideAllPanels();
switch(combo.getValue()) {
case '1':
Ext.getCmp('panel1').show(
break;
case '2':
Ext.getCmp('panel2').show(
break;
case '3':
Ext.getCmp('panel3').show(
break;
default:
}
}
var cb = new Ext.form.ComboBox({
// all of your config options
listeners:{
'select': showHidePanels
}
});