I'm migrating my application from ExtJs 3 to 4 version. I have several comboboxes at my formPanel, and previously I've used hiddenName and all that stuff to submit valueField instead of displayField.

All my adaptation works fine (value field IS submitting), but I can't set the default values for comboboxes, they are shown as empty after page load. Previously, I did that just with specifying the 'value' parameter in config. Is there any ideas how to fix that?

My code - Model and Store:

    Ext.define('idNamePair', {
    extend: 'Ext.data.Model',
    fields: [
        {name: 'id', type: 'string'},
        {name: 'name',  type: 'string'}
    ]
});

var dirValuesStore = new Ext.data.Store({
    model: 'idNamePair',
    proxy: {
        type: 'ajax',
        url: '../filtervalues.json',
        reader: {
            type: 'json',
            root: 'dir'
        }
    },
    autoLoad: true
});

Combo config:

                {
                    triggerAction: 'all',
                    id: 'dir_id',
                    fieldLabel: 'Direction',
                    queryMode: 'local',
                    editable: false,
                    xtype: 'combo',
                    store : dirValuesStore,
                    displayField:'name',
                    valueField:'id',
                    value: 'all',
                    width: 250,
                    forceSelection:true
                }
link|improve this question

25% accept rate
Please post some sample code for us to take a look at the issue and a possible solution. – onteria_ May 11 '11 at 13:57
The question is precisely. There is no code required even if I don't know the answer cause I am still stuck in 3.x – sra May 11 '11 at 14:35
I guess it is again a question of asynchronous loading of store and combo, because if store is defined inside combo - it works fine. – BlackLine May 12 '11 at 11:10
I noticed the same problem too. – Marko Jul 16 '11 at 11:44
feedback

6 Answers

I had the same problem, afaik has to do with selectlist rendering before the items are added to the store. I tried the callback method mentioned above without any luck (guess it would have to be a callback on the selectlist rather than the store).

I added this line after adding items to the store and it works fine:

Ext.getCmp('selectList').setValue(store.getAt('0').get('id'));
link|improve this answer
Thanks, you're totally right – Edgar Villegas Alvarado 2 days ago
feedback

Just a guess after a look through the API what about data

data : Mixed

The initial set of data to apply to the tpl to update the content area of the Component.

Maybe it is worth a try

link|improve this answer
It's about template, but I don't use one. – BlackLine May 12 '11 at 7:47
@BlackLine As far as I know there is always a template in the comboBox that display the content. You are just able to use your own. Have you given it try? – sra May 12 '11 at 8:16
yes, I've tried to set data: 'all'. Nothing has changed. – BlackLine May 12 '11 at 8:46
feedback

I noticed your Combo config has queryMode: 'local'. That value is intended for when your data is stored locally in an array. But your model is using an AJAX proxy. Could it be that this confuses Ext so it can't find the default value you're trying to set? Try removing queryMode so it defaults to the value of 'remote' (or set it explicitly.)

UPDATE: I was migrating my own app from Ext3 to 4 right after posting the above, and I ran into the exact same problem. I'm sure queryMode is part of it, but the main problem is that the combobox doesn't have the data needed yet at the time it's rendered. Setting value does give it a value but there's nothing in the data store yet to match it with, so the field appears blank. I discovered that the autoLoad property can also specify a callback function to be used when the data is loaded. Here's what you could do:

store: new Ext.data.Store({
    model: 'MyModel',
    autoLoad: {
        scope: this,
        callback: function() {
            var comboBox = Ext.getCmp("MyComboBoxId");
            var store = comboBox.store;

            // set the value of the comboBox here
            comboBox.setValue(blahBlahBlah);
        }
    }
    ...
})
link|improve this answer
feedback

I bet this has to do with the time you (asynchronously) load the combobox, and the time you set the value of the combobox. To overcome this problem, simply do this:

Ext.define('idNamePair', {
    extend: 'Ext.data.Model',
    fields: [
        {name: 'id', type: 'string'},
        {name: 'name',  type: 'string'}
    ]
});

var dirValuesStore = new Ext.data.Store({
    model: 'idNamePair',
    proxy: {
        type: 'ajax',
        url: '../filtervalues.json',
        reader: {
            type: 'json',
            root: 'dir'
        }
    },
    autoLoad: false // set autoloading to false
});

Autoloading of the store is off. Now, after you have placed your ComboBox at a certain place -- using the code in your starting post -- you simply load the store manually: dirValuesStore.load();.

That is probably after the config Ext.apply(this, {items: [..., {xtype: 'combo', ...}, ...]}) in some component's initComponent().

link|improve this answer
feedback

try that:

                    var combo = new Ext.form.field.ComboBox({
                        ....
                        initialValue : something,
                        ....
                        listeners: {
                            afterrender: function(t,o ) {
                                t.value = t.initialValue;    
                            }
                        } 
link|improve this answer
feedback

Try to set autoSelect: true in combobox config mb this is is what you searching for... http://dev.sencha.com/deploy/ext-4.0.0/docs/api/Ext.form.field.ComboBox.html#autoSelect

link|improve this answer
Well, but it defaults to 'true', so nothing've changed – BlackLine May 12 '11 at 7:45
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.