tree login search
This commit is contained in:
parent
943505d293
commit
31aee6b0d0
|
@ -0,0 +1,17 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<projectDescription>
|
||||
<name>idempiere-11</name>
|
||||
<comment></comment>
|
||||
<projects>
|
||||
</projects>
|
||||
<buildSpec>
|
||||
<buildCommand>
|
||||
<name>org.eclipse.m2e.core.maven2Builder</name>
|
||||
<arguments>
|
||||
</arguments>
|
||||
</buildCommand>
|
||||
</buildSpec>
|
||||
<natures>
|
||||
<nature>org.eclipse.m2e.core.maven2Nature</nature>
|
||||
</natures>
|
||||
</projectDescription>
|
|
@ -0,0 +1,2 @@
|
|||
eclipse.preferences.version=1
|
||||
encoding/<project>=UTF-8
|
|
@ -0,0 +1,26 @@
|
|||
package org.adempiere.webui.dashboard;
|
||||
import org.adempiere.webui.panel.MenuSearchPanel;
|
||||
|
||||
public class DPMenuSearch extends DashboardPanel {
|
||||
|
||||
/**
|
||||
*
|
||||
*/
|
||||
private static final long serialVersionUID = -3095921038206382907L;
|
||||
|
||||
private MenuSearchPanel menuSearchPanel;
|
||||
|
||||
public DPMenuSearch()
|
||||
{
|
||||
super();
|
||||
|
||||
menuSearchPanel = new MenuSearchPanel(this);
|
||||
this.appendChild(menuSearchPanel);
|
||||
}
|
||||
|
||||
public MenuSearchPanel getMenuTreePanel()
|
||||
{
|
||||
return menuSearchPanel;
|
||||
}
|
||||
|
||||
}
|
|
@ -37,6 +37,7 @@ public class DPMenuTree extends DashboardPanel {
|
|||
super();
|
||||
|
||||
menuTreePanel = new MenuTreePanel(this);
|
||||
this.appendChild(menuTreePanel);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
@ -10,7 +10,6 @@
|
|||
<include src="~./theme/default/zul/login/login-right.zul"/>
|
||||
</east>
|
||||
<west sclass="login-west-panel">
|
||||
<include src="~./theme/default/zul/login/login-left.zul"/>
|
||||
</west>
|
||||
<north sclass="login-north-panel">
|
||||
<include src="~./theme/default/zul/login/login-top.zul"/>
|
||||
|
|
|
@ -0,0 +1,2 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<window use="org.adempiere.webui.dashboard.DPMenuSearch"/>
|
|
@ -1,6 +1,6 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<classpath>
|
||||
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-17"/>
|
||||
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/J2SE-1.5"/>
|
||||
<classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins"/>
|
||||
<classpathentry kind="src" path="src"/>
|
||||
<classpathentry kind="output" path="target/classes"/>
|
||||
|
|
Loading…
Reference in New Issue