Skip to content
Snippets Groups Projects
Commit aec5582b authored by buczekp's avatar buczekp
Browse files

[LMS-1379] fixed (reopened LMS-1357 and put it into backlog as our current solution is quite poor)

SVN: 14721
parent 71676b22
No related branches found
No related tags found
No related merge requests found
...@@ -990,8 +990,8 @@ public abstract class AbstractBrowserGrid<T/* Entity */, M extends BaseEntityMod ...@@ -990,8 +990,8 @@ public abstract class AbstractBrowserGrid<T/* Entity */, M extends BaseEntityMod
if (customColumnsMetadata != null) if (customColumnsMetadata != null)
{ {
RealNumberRenderer renderer = RealNumberRenderer renderer =
new RealNumberRenderer(viewContext.getDisplaySettingsManager() new RealNumberRenderer(viewContext.getDisplaySettingsManager()
.getRealNumberFormatingParameters()); .getRealNumberFormatingParameters());
for (GridCustomColumnInfo gridCustomColumnInfo : customColumnsMetadata) for (GridCustomColumnInfo gridCustomColumnInfo : customColumnsMetadata)
{ {
if (gridCustomColumnInfo.getDataType() == DataTypeCode.REAL) if (gridCustomColumnInfo.getDataType() == DataTypeCode.REAL)
...@@ -1479,7 +1479,10 @@ public abstract class AbstractBrowserGrid<T/* Entity */, M extends BaseEntityMod ...@@ -1479,7 +1479,10 @@ public abstract class AbstractBrowserGrid<T/* Entity */, M extends BaseEntityMod
protected void onWindowResize(int aWidth, int aHeight) protected void onWindowResize(int aWidth, int aHeight)
{ {
super.onWindowResize(aWidth, aHeight); super.onWindowResize(aWidth, aHeight);
layout(true); if (isVisible())
{
layout(true);
}
} }
}; };
bottomToolbars.setMonitorWindowResize(true); bottomToolbars.setMonitorWindowResize(true);
...@@ -1488,7 +1491,7 @@ public abstract class AbstractBrowserGrid<T/* Entity */, M extends BaseEntityMod ...@@ -1488,7 +1491,7 @@ public abstract class AbstractBrowserGrid<T/* Entity */, M extends BaseEntityMod
bottomToolbars.add(pagingToolbar, new RowData(1, -1)); bottomToolbars.add(pagingToolbar, new RowData(1, -1));
return bottomToolbars; return bottomToolbars;
} }
@Override @Override
protected void onAttach() protected void onAttach()
{ {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment