You found a bug! We've classified it as
EXTJS-26182
.
We encourage you to continue the discussion and to find an acceptable workaround while we work on a permanent fix.
-
Sencha Premium User
Modern toolkit Grid "hideHeaders" not working inside collapsed panel
Description:
When Ext.grid.Grid with "hideHeaders: true" is inside Ext.Panel with collapsible: { collapsed: true, direction: 'top', dynamic: true}, headers are visible when panel is expanded.
Expected Behavior:
When Panel is expanded grid header must be hidden because of "hideHeaders: true".
Example:
https://fiddle.sencha.com/#view/editor&fiddle/282u
-
-
Sencha User
Modern Extjs is so buggy. It is time consuming.
Too many workarounds. Had to place listeners depending on the event it fires.
Code:
listeners: { activate: {
fn: function(grid) {
grid.setHideHeaders(true);
}
}
},
Code:
listeners: { show: {
fn: function(grid) {
grid.setHideHeaders(true);
}
}
},
-
this Issue is present in 6.6.0. can you open a bug ?
-
Sencha - Support Team
Hi,
This has been filed as a bug and there is an override too:
Fiddle: https://fiddle.sencha.com/#fiddle/2kni&view/editor
Regards,
Joe
Sencha Support
-
Thank you Joe for your attention
-