Hybrid View
-
14 Nov 2012 5:39 AM #1
[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
- IE9
- Chrome
- <!DOCTYPE html>
- The Ext.grid.header.Container sortable config option doesn't work
- Open a menu of any column
- Sort items are disabled due to the "sortable: false" option
- Sort items are enabled
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>
-
14 Nov 2012 6:35 AM #2Sencha - Senior Forum Manager
- Join Date
- Mar 2007
- Location
- St. Louis, MO
- Posts
- 33,714
- Vote Rating
- 438
Thanks for the report! I have opened a bug in our bug tracker.
-
15 Nov 2012 9:32 AM #3
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.


Reply With Quote