IDEMPIERE-3726 Integrate ADempiere POS WEB / integrate partially patch from Orlando Curieles
This commit is contained in:
parent
38d72fae55
commit
2fdf5d9cd1
|
@ -40,7 +40,8 @@ public class Listbox extends org.zkoss.zul.Listbox implements EventListener<Even
|
|||
/**
|
||||
*
|
||||
*/
|
||||
private static final long serialVersionUID = 2102597724705225997L;
|
||||
private static final long serialVersionUID = -3713350125429939476L;
|
||||
|
||||
private List<EventListener<Event>> doubleClickListeners = new ArrayList<EventListener<Event>>();
|
||||
private List<EventListener<Event>> onDropListeners = new ArrayList<EventListener<Event>>();
|
||||
private boolean draggable;
|
||||
|
@ -334,4 +335,16 @@ public class Listbox extends org.zkoss.zul.Listbox implements EventListener<Even
|
|||
return items.toString();
|
||||
}
|
||||
|
||||
/**
|
||||
* Get selected item for the list box based on the value of list item
|
||||
* @return Value of selected ListItem
|
||||
*/
|
||||
public Object getValue()
|
||||
{
|
||||
ListItem item = getSelectedItem();
|
||||
|
||||
return item.getValue();
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -545,7 +545,7 @@ public class WSearchEditor extends WEditor implements ContextMenuListener, Value
|
|||
}
|
||||
|
||||
|
||||
protected void showInfoPanel(final InfoPanel ip) {
|
||||
public void showInfoPanel(final InfoPanel ip) {
|
||||
ip.setVisible(true);
|
||||
ip.setStyle("border: 2px");
|
||||
ip.setClosable(true);
|
||||
|
|
Loading…
Reference in New Issue