[4.1.3] Ext.grid.header.Container sortable doesn't work
REQUIRED INFORMATION
Ext version tested: Browser versions tested against: DOCTYPE tested against: 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: 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>