Hi All,
After upgrading the SmartGwt13, Unfreeze a column heading all the columns are removed from the grid.
The Grid property is applied with setAutoFitFieldWidths(true) and setShowGridSummary(true); If we remove anyone of the properties from the listgrid the Unfreeze option works as expected.
myGridDistr.setShowFilterEditor(true);
myGridDistr.setAutoFitFieldWidths(true);
myGridDistr.setAutoFitWidthApproach(AutoFitWidthApproach.BOTH);
myGridDistr.setCanHover(true);
myGridDistr.setDataSource(ippndstDS);
myGridDistr.setCanEdit(false);
myGridDistr.setWidth100();
myGridDistr.setHeight100();
myGridDistr.setAutoFetchData(false);
myGridDistr.setShowGridSummary(true);
myGridDistr.setShowGroupSummary(true);
myGridDistr.setAutoFitFieldsFillViewport(true);
Please find the screenshot for your reference. This is the original screen.
Freeze the column Store Number:
Unfreeze the column Store Number: The column headings are removed.
Could you please let me know if anything is missed?
Thanks.
After upgrading the SmartGwt13, Unfreeze a column heading all the columns are removed from the grid.
The Grid property is applied with setAutoFitFieldWidths(true) and setShowGridSummary(true); If we remove anyone of the properties from the listgrid the Unfreeze option works as expected.
myGridDistr.setShowFilterEditor(true);
myGridDistr.setAutoFitFieldWidths(true);
myGridDistr.setAutoFitWidthApproach(AutoFitWidthApproach.BOTH);
myGridDistr.setCanHover(true);
myGridDistr.setDataSource(ippndstDS);
myGridDistr.setCanEdit(false);
myGridDistr.setWidth100();
myGridDistr.setHeight100();
myGridDistr.setAutoFetchData(false);
myGridDistr.setShowGridSummary(true);
myGridDistr.setShowGroupSummary(true);
myGridDistr.setAutoFitFieldsFillViewport(true);
Please find the screenshot for your reference. This is the original screen.
Freeze the column Store Number:
Unfreeze the column Store Number: The column headings are removed.
Could you please let me know if anything is missed?
Thanks.
Comment