Is it possible to adjust the column widths within an Ext.dashboard.Dashboard
once it has been displayed? The initial configuration sets the column widths as follows:
columnWidths: [
0.35,
0.40,
0.25
]
I would like to dynamically modify them to:
columnWidths: [
0.5,
0.25,
0.25
]
Attempts to change the columnWidths
property directly or using setConfig
do not result in updating the dashboard. There doesn't seem to be a built-in method for "refresh" or any alternative approach. Although each individual dashboard-column has a setWidth
function, this does not appear to make any difference either.