IDEMPIERE-1362 Implement support to register/unregister available dashboard content. Fixed broken scrolling.
This commit is contained in:
parent
bba389c81c
commit
3cae2f9c96
|
@ -97,7 +97,7 @@ public class DashboardController implements EventListener<Event> {
|
||||||
|
|
||||||
public DashboardController() {
|
public DashboardController() {
|
||||||
dashboardLayout = new Anchorlayout();
|
dashboardLayout = new Anchorlayout();
|
||||||
dashboardLayout.setSclass("dashboard-layout");
|
dashboardLayout.setSclass("dashboard-layout slimScroll");
|
||||||
dashboardLayout.setVflex("1");
|
dashboardLayout.setVflex("1");
|
||||||
dashboardLayout.setHflex("1");
|
dashboardLayout.setHflex("1");
|
||||||
|
|
||||||
|
@ -107,11 +107,9 @@ public class DashboardController implements EventListener<Event> {
|
||||||
}
|
}
|
||||||
|
|
||||||
public void render(Component parent, IDesktop desktopImpl, boolean isShowInDashboard) {
|
public void render(Component parent, IDesktop desktopImpl, boolean isShowInDashboard) {
|
||||||
dashboardLayout = new Anchorlayout();
|
|
||||||
parent.appendChild(dashboardLayout);
|
parent.appendChild(dashboardLayout);
|
||||||
dashboardLayout.setSclass("slimScroll");
|
dashboardLayout.getChildren().clear();
|
||||||
|
|
||||||
|
|
||||||
if (!dashboardLayout.getDesktop().isServerPushEnabled())
|
if (!dashboardLayout.getDesktop().isServerPushEnabled())
|
||||||
dashboardLayout.getDesktop().enableServerPush(true);
|
dashboardLayout.getDesktop().enableServerPush(true);
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue