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

      0  

    Default Unanswered: problem rendering LIst filter using FiltersFeature

    Unanswered: problem rendering LIst filter using FiltersFeature


    Hi ,

    I have a grid similar to one below :I am using Ext version 4.0

    var grid1 = new Ext.grid.GridPanel({
    id: 'grid1',
    store: featureJStore1,
    multiSelect: true,
    features: [{
    ftype: 'filters',
    local: false,
    filters: [
    {
    dataIndex: 'featurename',
    type: 'string'
    }, {
    dataIndex: 'featurelicense',
    type: 'list',
    store : licenseJStore1
    }
    ]
    }],
    columns: [
    {text: 'Features', width: 300,sortable: true, filterable: true,dataIndex: 'featurename'},
    {text: 'Additional Licenses', width: 200, sortable: true, filterable: true, filter: {type: 'string'}, dataIndex: 'featurelicense'}
    );

    The List Filter is rendered as expected except under following scenarios :
    1)The store associated with list filter is loaded such that a second request is made before the first one returns
    2)The grid associated with list filter (in my case ) is hidden when filter store(licenseJStore in my case ) is loaded with data.

    In the above 2 scenarios the List Menu is either distorted or shows a blank Menu as below :
    grid.png
    Please let me know how to fix this ?

    Regards,
    Namratha
    Attached Images

  2. #2
    Sencha - Senior Forum Manager mitchellsimoens's Avatar
    Join Date
    Mar 2007
    Location
    St. Louis, MO
    Posts
    33,684
    Vote Rating
    435
    Answers
    3111
    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


    Only suggestion I have is try upgrading to a new version as there were some bugs like that in 4.0
    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.

  3. #3
    Sencha User
    Join Date
    Oct 2012
    Posts
    28
    Vote Rating
    0
    namrms is on a distinguished road

      0  

    Default


    What is the latest Ext Version Available now ?And is it backward compatible with 4.0 ? If not which version could be tried ?