Search in sources :

Example 1 with Listbox

use of org.zkoss.zul.Listbox in project adempiere by adempiere.

the class WDocActionPanel method initComponents.

private void initComponents() {
    lblDocAction = new Label();
    lblDocAction.setId("lblDocAction");
    lblDocAction.setValue(Msg.translate(Env.getCtx(), "DocAction"));
    label = new Label();
    label.setId("label");
    lstDocAction = new Listbox();
    lstDocAction.setId("lstDocAction");
    lstDocAction.setRows(0);
    lstDocAction.setMold("select");
    lstDocAction.setWidth("100px");
    lstDocAction.addEventListener(Events.ON_SELECT, this);
    confirmPanel = new ConfirmPanel(true);
    confirmPanel.addActionListener(Events.ON_CLICK, this);
}
Also used : ConfirmPanel(org.adempiere.webui.component.ConfirmPanel) Label(org.zkoss.zul.Label) Listbox(org.zkoss.zul.Listbox)

Aggregations

ConfirmPanel (org.adempiere.webui.component.ConfirmPanel)1 Label (org.zkoss.zul.Label)1 Listbox (org.zkoss.zul.Listbox)1