Merged in gproly/processmaker/HOR-1274 (pull request #4509)

HOR-1274
This commit is contained in:
Julio Cesar Laura Avendaño
2016-07-01 21:28:19 -04:00

View File

@@ -655,6 +655,14 @@ Ext.onReady ( function() {
defaults: {
sortable: true // columns are sortable by default
},
listeners: {
hiddenchange: function (columnModel, columnIndex, hidden) {
var grid = Ext.getCmp('casesGrid');
if (grid && grid.getView) {
grid.getView().refresh();
}
}
},
columns: columns
});