-
16 Nov 2012 4:33 AM #1
[4.1.3] Ext.grid.header.Container enableColumnHide false doesn't work
[4.1.3] Ext.grid.header.Container enableColumnHide false doesn't work
REQUIRED INFORMATION
Ext version tested:- Ext 4.1.3
- Chrome
- IE9
- <!DOCTYPE html>
- Ext.grid.header.Container enableColumnHide false doesn't work.
- Open a header menu
- No "Columns" option
- There is still "Columns" option
Code:<!DOCTYPE html> <html> <head> <title>Grid header container enableColumnHide</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" }], autoLoad: true, proxy: { type: "memory", reader: { type: "array" }, data: [ ["test1", "test2", "test3"], ["test4", "test5", "test6"], ["test7", "test8", "test9"] ] } }, columns: { enableColumnHide: false, items: [{ dataIndex: "test1", text: "Test1" }, { dataIndex: "test2", text: "Test2" }, { dataIndex: "test3", text: "Test3" }] } }); }); </script> </head> <body> </body> </html>
-
16 Nov 2012 4:45 AM #2
-
Yesterday 11:24 AM #3
I'm trying to enable the combo of the column headers of the grid to allow people to organize alphabetically and hide columns. Know how to do?
Looks like we can't reproduce the issue or there's a problem in the test case provided.


Reply With Quote