I have ComboBox. When I click on item from expanded list, ComboBox select this item and collapse. If I click on already selected item it also collapsing.

Is there a way to "stop" ComboBox collapsing when user select already selected item?

PS: to be short i want ComboBox to behave like TimeField from http://dev.sencha.com/deploy/ext-4.0.0/examples/themes/index.html

UPDATE

I don't need solutions that dosen't work at least at IE7 and IE8..

link|improve this question

1  
if you won't know the answer then at least vote for it, so other could find this question... – Ai_boy Apr 27 '11 at 11:17
feedback

3 Answers

up vote 2 down vote accepted

If you want that behaviour:

Ext.form.field.ComboBox.override({
    onItemClick: Ext.emptyFn
});
link|improve this answer
Cool :) But this dosn't work on IE7, IE8... so i can't use it.. – Ai_boy Apr 27 '11 at 11:34
And it also dosn't work in IE6.. – Ai_boy Apr 27 '11 at 11:48
You got a tip from one of the developer team and tell him it don't work!? Maybe you should take a closer look at your code. You can just extend or override. To fix it you should post the code that you used instead of the the Ext.emptyFn – sra May 3 '11 at 4:12
Wow.. Sorry it works.. the problem was that after i select same content i changed displayValue, so ComboBox was collapsing becose of it, you soulution is actually works... tnx again – Ai_boy Jul 11 '11 at 8:49
feedback
var cb = new Ext.form.ComboBox({    
    // here is your local store
    mode: 'local',
    store: new Ext.data.SimpleStore({
        fields: ['id', 'label'],
        data: [
            ['1', 'One'],
            ['2', 'Two']
        ]
    }),    
    listeners: {
        'beforeselect': function (combo, record, index) {
            // prevent collapsing if the same value is selected
            if (record.data.label == combo.getRawValue()) return false;
        }
    }
});
link|improve this answer
This solution dosn't work in ExtJs 4.. – Ai_boy Apr 28 '11 at 8:08
In 3.3.1 it works, i haven't tested yet for 4. – deniztt May 3 '11 at 9:11
feedback

If it's 3.3 you're dealing with, this seems to work:

Ext.form.ComboBox.override({
  onSelect : Ext.form.ComboBox.prototype.onSelect.createInterceptor(function(record) {
    return this.getValue() !== record.data[this.valueField || this.displayField];
  })
});

Tested on Chrome and IE8. It prevents the onSelect function being called if it the current value exactly matches the value you're trying to set.

link|improve this answer
Whoops, ExtJS 4. – wombleton May 6 '11 at 12:33
The solution described by @Evan Trimboli works fine in IE8 for ExtJS 4. – wombleton May 6 '11 at 12:40
not only that, it works in IE6, 7 & 9 – sra May 6 '11 at 12:46
feedback

Your Answer

 
or
required, but never shown

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