Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 552163
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 13, 20262026-05-13T11:28:13+00:00 2026-05-13T11:28:13+00:00

ExtJS provides a fancy combo-box that has lots of features – type ahead, allowing

  • 0

ExtJS provides a fancy combo-box that has lots of features – type ahead, allowing for random text entry, hiding all the entries in the drop-down list that don’t star with the text that has already been entered.

I don’t want these features. I want a select box that behaves pretty much exactly like one would expect a normal select box would in vanilla html.

I do want it bound to a data store, and I do want all the other extjs configuration goodies that come with the combo box. I just don’t want users/testers freaking out when they encounter a select box that breaks their existing mental paradigm of how these things work.

So how can I get an extjs combo box to act more like a select box? Or am I using the wrong widget altogether?

  • 1 1 Answer
  • 1 View
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-13T11:28:13+00:00Added an answer on May 13, 2026 at 11:28 am

    You can get that behaviour just by using the proper configuration when you instantiate the Ext.form.ComboBox object:

    var selectStyleComboboxConfig = {
        fieldLabel: 'My Dropdown',
        name: 'type',
        allowBlank: false,
        editable: false,
        // This is the option required for "select"-style behaviour
        triggerAction: 'all',
        typeAhead: false,
        mode: 'local',
        width: 120,
        listWidth: 120,
        hiddenName: 'my_dropdown',
        store: [
            ['val1', 'First Value'],
            ['val2', 'Second Value']
        ],
        readOnly: true
    };
    var comboBox = new Ext.form.ComboBox(selectStyleComboboxConfig); 
    

    Replace the mode: 'local' and store argument in your case if you’d like it to be bound to a Ext.data.JsonStore for example.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am new to ExtJs 4.I am using Json to populate combo box,as follows,
I have an ExtJS application that needs to display an html document within a
[revised] I'm creating a TreePanel in ExtJs that is loading its children from a
It seems clear that jquery has become the standard low level JavaScript library. We
I have just seen the news that a person has left Apple to develop
Using ExtJS 4.0.2 , I can type the following into the console: Ext.util.Format.date('2012-01-13', m-d-Y);
In my ExtJS 4.0.7 app I have some 3rd party javascripts that I need
ExtJS provides some great helper functions like: Ext.extend() Ext.apply() Ext.namespace() Are there any equivalents
Brainstorming needed . I have a problem with Javascript libraries (jQuery, ExtJS etc.) that
I'm trying to create simple ExtJs application that manages Users and User's Roles. Set

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.