Hybrid View

    You found a bug! We've classified it as EXTJSIV-7757 . We encourage you to continue the discussion and to find an acceptable workaround while we work on a permanent fix.
  1. #1
    Sencha User Daniil's Avatar
    Join Date
    Jun 2010
    Location
    Saint-Petersburg, Russia
    Posts
    690
    Vote Rating
    62
    Daniil is a jewel in the rough Daniil is a jewel in the rough Daniil is a jewel in the rough Daniil is a jewel in the rough

      0  

    Default [4.1.3] Ext.grid.header.Container sortable doesn't work

    [4.1.3] Ext.grid.header.Container sortable doesn't work


    REQUIRED INFORMATION

    Ext version tested:
    • Ext 4.1.3
    Browser versions tested against:
    • IE9
    • Chrome
    DOCTYPE tested against:
    • <!DOCTYPE html>
    Description:
    • The Ext.grid.header.Container sortable config option doesn't work
    Steps to reproduce the problem:
    • Open a menu of any column
    The result that was expected:
    • Sort items are disabled due to the "sortable: false" option
    The result that occurs instead:
    • Sort items are enabled
    Test Case:

    Code:
    <!DOCTYPE html>
    <html>
    <head>
        <title>HeaderContainer sortable</title>
    
        <link type="text/css" rel="stylesheet" href="../resources/css/ext-all.css" />
        
        <script type="text/javascript" src="../ext-all-debug.js"></script>
    
        <script type="text/javascript">
            Ext.onReady(function () {
                Ext.create("Ext.grid.Panel", {
                    renderTo: Ext.getBody(),
                    store: {
                        fields: [{
                            name: "test1"
                        }, {
                            name: "test2"
                        }, {
                            name: "test3"
                        }]
                    },                
                    columns: {
                        sortable: false,
                        items: [{
                            dataIndex: "test1",
                            text: "Test1"
                        }, {
                            dataIndex: "test2",
                            text: "Test2"
                        }, {
                            dataIndex: "test3",
                            text: "Test3"
                        }],
                    }
                });
            });
        </script>
    </head>
    <body>
    
    </body>
    </html>
    Ext.NET - ASP.NET for Ext JS
    MVC and WebForms
    Examples | Twitter

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


    Thanks for the report! I have opened a bug in our bug tracker.

  3. #3
    Sencha User Daniil's Avatar
    Join Date
    Jun 2010
    Location
    Saint-Petersburg, Russia
    Posts
    690
    Vote Rating
    62
    Daniil is a jewel in the rough Daniil is a jewel in the rough Daniil is a jewel in the rough Daniil is a jewel in the rough

      0  

    Default


    Thank you, Michell.

    Apologize that I am asking you here.

    I sent several times (about 4-5) to admins via the Contact Us form. But did not receive any answer.

    Could you clarify does this form work?
    Ext.NET - ASP.NET for Ext JS
    MVC and WebForms
    Examples | Twitter