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

fixed problem of hidden paging toolbar after showing filters

SVN: 15563
parent a4ea1700
No related branches found
No related tags found
No related merge requests found
...@@ -266,6 +266,15 @@ public abstract class AbstractBrowserGrid<T/* Entity */, M extends BaseEntityMod ...@@ -266,6 +266,15 @@ public abstract class AbstractBrowserGrid<T/* Entity */, M extends BaseEntityMod
pagingToolbar.syncSize(); pagingToolbar.syncSize();
} }
}); });
pagingToolbar.addListener(Events.AfterLayout, new Listener<BaseEvent>()
{
public void handleEvent(BaseEvent be)
{
// fixes for problems of:
// - hidden paging toolbar
contentPanel.syncSize();
}
});
columnListener = new ColumnListener<T, M>(grid); columnListener = new ColumnListener<T, M>(grid);
registerLinkClickListenerFor(Dict.CODE, new ICellListener<T>() registerLinkClickListenerFor(Dict.CODE, new ICellListener<T>()
{ {
......
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