web-dev-qa-db-ja.com

extjsコンボボックスを通常のHTML選択ボックスのように動作させるにはどうすればよいですか?

ExtJSは、多くの機能を備えた豪華なコンボボックスを提供します。先に入力すると、ランダムなテキスト入力が可能になり、ドロップダウンリストで、すでに入力されているテキストでスターを付けないすべてのエントリが非表示になります。

これらの機能は必要ありません。バニラのhtmlの通常の選択ボックスと同じように動作する選択ボックスが必要です。

データストアにバインドしたいし、コンボボックスに付属している他のすべてのextjs構成機能も欲しい。ユーザーやテスターが、これらのものがどのように機能するかという既存の精神的パラダイムを打ち破る選択ボックスに出くわしたときに、慌てる必要はありません。

では、extjsコンボボックスを選択ボックスのように機能させるにはどうすればよいですか?または、間違ったウィジェットを完全に使用していますか?

20
Spike Williams

Ext.form.ComboBoxオブジェクトをインスタンス化するときに適切な構成を使用するだけで、その動作を取得できます。

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); 

たとえば、mode: 'local'にバインドする場合は、Ext.data.JsonStoreおよびstore引数を置き換えます。

32
loginx

現在受け入れられているソリューションはうまく機能しますが、プレーンHTML選択ボックスのようにキーボード入力も処理するComboBoxが必要な場合(たとえば、「P」を押すたびに「P」で始まるリスト内の次の項目が選択されます)、以下が役立つかもしれません:

{
    xtype: 'combo',
    fieldLabel: 'Price',
    name: 'price',
    hiddenName: 'my_dropdown',
    autoSelect: false,
    allowBlank: false,
    editable: false,
    triggerAction: 'all',
    typeAhead: true,
    width:120,
    listWidth: 120,
    enableKeyEvents: true,
    mode: 'local',
    store: [
        ['val1', 'Appaloosa'],
        ['val2', 'Arabian'],
        ['val3', 'Clydesdale'],
        ['val4', 'Paint'],
        ['val5', 'Palamino'],
        ['val6', 'Quarterhorse'],
    ],
    listeners: {
        keypress: function(comboBoxObj, keyEventObj) {
            // Ext.Store names anonymous fields (like in array above) "field1", "field2", etc.
            var valueFieldName = "field1";
            var displayFieldName = "field2";

            // Which drop-down item is already selected (if any)?
            var selectedIndices = this.view.getSelectedIndexes();
            var currentSelectedIndex = (selectedIndices.length > 0) ? selectedIndices[0] : null;

            // Prepare the search criteria we'll use to query the data store
            var typedChar = String.fromCharCode(keyEventObj.getCharCode());
            var startIndex = (currentSelectedIndex == null) ? 0 : ++currentSelectedIndex;

            var matchIndex = this.store.find(displayFieldName, typedChar, startIndex, false);

            if( matchIndex >= 0 ) {
                this.select(matchIndex);
            } else if (matchIndex == -1 && startIndex > 0) {
                // If nothing matched but we didn't start the search at the beginning of the list
                // (because the user already had somethign selected), search again from beginning.
                matchIndex = this.store.find(displayFieldName, typedChar, 0, false);                                
                if( matchIndex >= 0 ) {
                    this.select(matchIndex);
                }
            }

            if( matchIndex >= 0 ) {
                var record = this.store.getAt(matchIndex);
                this.setValue(record.get(valueFieldName));
            }
        }
    }
}
7
Clint Harris
var buf = []; 
buf.Push('<option>aA1</option>');
buf.Push('<option>aA2</option>');
buf.Push('<option>bA3</option>');
buf.Push('<option>cA4</option>');

var items = buf.join('');
new Ext.Component({
    renderTo: Ext.getBody(),
    autoEl: {
         tag:'select',
         cls:'x-font-select',
         html: items
    }
 });
2
Kristian

試しましたか typeAhead = false?これがあなたが望むものに近いかどうかもわかりません。

var combo = new Ext.form.ComboBox({
    typeAhead: false,

    ...

});
2
Mike Nelson