1. #11
    Sencha User
    Join Date
    Nov 2007
    Posts
    50
    Vote Rating
    0
    boonkerz is on a distinguished road

      0  

    Default


    any hint?

  2. #12
    Sencha - Architect Dev Team aconran's Avatar
    Join Date
    Mar 2007
    Posts
    8,191
    Vote Rating
    63
    aconran is just really nice aconran is just really nice aconran is just really nice aconran is just really nice aconran is just really nice

      0  

    Default


    I don't have much experience with the grid filter plugin but it looks to me like it does not support starting with a specific filter. The store probably has to load with those filters.

    If you just put in the standard filter without an initial value does it work at runtime when interacting with it?
    Aaron Conran
    @aconran
    Sencha Architect Development Team

  3. #13
    Sencha User
    Join Date
    Nov 2007
    Posts
    50
    Vote Rating
    0
    boonkerz is on a distinguished road

      0  

    Default


    My Fault sorry

    Code:
    this.getMyTabPanel().add({
                        closable: true,
                        xtype: "MyProduct",
                        id: 'myproduct' + record.raw.id,
                        title: record.raw.shopTitle + ' - Produkte'
                    }).show();
                    Ext.getCmp('myproduct' + record.raw.id).reconfigure(Ext.create('MyApp.store.MyProductStore'));
                    Ext.getCmp('myproduct' + record.raw.id).store.proxy.extraParams.shopId = record.raw.shop;
                    Ext.getCmp('myproduct' + record.raw.id).store.load();
                    Ext.getCmp('myproduct' + record.raw.id).filters.bindStore(Ext.getCmp('myproduct' + record.raw.id).store);
                    Ext.getCmp('myproduct' + record.raw.id).dockedItems.items[1].bindStore(Ext.getCmp('myproduct' + record.raw.id).store);
    I must bind the store. because i reconfigure it.

Tags for this Thread