Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a custom picker class with some text fields and a combobox inside. A grid in the app is using this picker as an editor for a column, but the problem is that anytime I click the combobox, the picker loses it's focus and closes. Is there a way to mantain the picker in order to use the combobox for select data?

share|improve this question
1  
If possible, please share the code – Brown_Dynamite Feb 8 at 9:56

1 Answer

I found a workaround for this issue by using the collapseIf function.

This code checks if the event target is a BoundList (internally used DataView for ComboBox) and part of the picker component:

collapseIf: Ext.Function.createInterceptor(Ext.form.field.Picker.prototype.collapseIf, function (e) {
        var boundList = Ext.get(e.target).up('.x-boundlist'),
            cmp;

        cmp = boundList && Ext.getCmp(boundList.id);

        if (cmp && this.picker.down('#' + cmp.pickerField.id)){
            return false;
        }
    })
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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