1. #1
    Sencha User
    Join Date
    Oct 2012
    Posts
    1
    Vote Rating
    0
    Micrasoft is on a distinguished road

      0  

    Default SuperBoxSelect : selection problem

    SuperBoxSelect : selection problem


    Hi everybody,

    I try to developp a simple Extra for modx. So i use extjs 3. I would like to populate a SuperBoxSelect with some values with a store :

    Code:
    Moinsdedechets.SuperBoxSelect = function (config) {
        config = config || {};
        Ext.applyIf(config, {
        xtype:'superboxselect'
            ,triggerAction: 'all'
            ,mode: 'remote'
            ,fields: ['id', 'nom_activite']
            ,displayField: 'nom_activite'
            ,valueField: 'id'
            ,store: new Ext.data.JsonStore({
                id:'id'
                ,autoLoad: true
                ,root:'results'
                ,fields: ['id', 'nom_activite']
                ,displayField: 'nom_activite'
                ,valueField: 'id'
                ,url: Plugin.config.connectorUrl
                ,baseParams: {
                    action: 'mgr/plugin/getlistactivites'
                }
            })
            ,emptyText: "Choisissez des activités"
            ,forceSelection : true
            ,listeners : {
                render : function(sbs){
                    sbs.wrapEl.on('load', function(ev,h,o){
                        
                    
                    },sbs,{
                        delegate : 'li.x-superboxselect-item'
                    });
                }
                }
        });
        Moinsdedechets.SuperBoxSelect.superclass.constructor.call(this, config);
    
    
    };
    Ext.extend(Plugin.SuperBoxSelect, Ext.ux.form.SuperBoxSelect);
    Ext.reg('combo-activites', Plugin.SuperBoxSelect);
    And then, I add this element in my grid :

    Code:
            ,{
                xtype: 'combo-activites'
                ,fieldLabel: _('plugin.activite')
                ,name: 'nom_activite[]'
                ,width: 200
            }
    This code works well. But now, I would like to preselect items relative to a record id. How can I do that? With a second store, but how ?

    Thank you for your answers and sorry for my english.

  2. #2
    Sencha - Senior Forum Manager mitchellsimoens's Avatar
    Join Date
    Mar 2007
    Location
    St. Louis, MO
    Posts
    33,658
    Vote Rating
    435
    mitchellsimoens has much to be proud of mitchellsimoens has much to be proud of mitchellsimoens has much to be proud of mitchellsimoens has much to be proud of mitchellsimoens has much to be proud of mitchellsimoens has much to be proud of mitchellsimoens has much to be proud of mitchellsimoens has much to be proud of mitchellsimoens has much to be proud of

      0  

    Default


    Where did the superboxselect come from?
    Mitchell Simoens @SenchaMitch
    Sencha Inc, Senior Forum Manager
    ________________
    http://www.JSONPLint.com - Source to lint your JSONP!

    Check out my GitHub, lots of nice things for Ext JS 4 and Sencha Touch 2
    https://github.com/mitchellsimoens

    Think my support is good? Get more personalized support via a support subscription. https://www.sencha.com/store/

    Need more help with your app? Hire Sencha Services services@sencha.com

    Want to learn Sencha Touch 2? Check out Sencha Touch in Action that is almost in print!

    When posting code, please use BBCode's CODE tags.