Package org.primefaces.component.datalist

Examples of org.primefaces.component.datalist.DataList


    FacesMessage msg = new FacesMessage(FacesMessage.SEVERITY_INFO, "Selected pizza: " + pizza, null);
    FacesContext.getCurrentInstance().addMessage(null, msg);
  }

  public void onPizzaRemove(DragDropEvent event) {
    DataList dataList = (DataList) event.getComponent().findComponent("orderedPizza");

    dataList.invokeOnComponent(FacesContext.getCurrentInstance(), event.getDragId(), new ContextCallback() {

            public void invokeContextCallback(FacesContext fc, UIComponent component) {
                HtmlPanelGroup panelGroup = (HtmlPanelGroup) component;
                String pizza = panelGroup != null ? (String) panelGroup.getAttributes().get("pizza") : "";
View Full Code Here

TOP

Related Classes of org.primefaces.component.datalist.DataList

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.