tree login search

This commit is contained in:
Muhammad Eko 2024-06-18 10:13:07 +07:00
parent 943505d293
commit 31aee6b0d0
7 changed files with 49 additions and 2 deletions

17
.project Normal file
View File

@ -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>

View File

@ -0,0 +1,2 @@
eclipse.preferences.version=1
encoding/<project>=UTF-8

View File

@ -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;
}
}

View File

@ -37,6 +37,7 @@ public class DPMenuTree extends DashboardPanel {
super();
menuTreePanel = new MenuTreePanel(this);
this.appendChild(menuTreePanel);
}
/**

View File

@ -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"/>

View File

@ -0,0 +1,2 @@
<?xml version="1.0" encoding="UTF-8"?>
<window use="org.adempiere.webui.dashboard.DPMenuSearch"/>

View File

@ -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"/>