Package org.primefaces.component.menubutton

Source Code of org.primefaces.component.menubutton.MenuButtonRenderer

/*
* Copyright 2009-2011 Prime Technology.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.primefaces.component.menubutton;

import java.io.IOException;

import javax.faces.FacesException;
import javax.faces.component.UIComponent;
import javax.faces.context.FacesContext;
import javax.faces.context.ResponseWriter;
import org.primefaces.component.menu.AbstractMenu;
import org.primefaces.component.menu.BaseMenuRenderer;

import org.primefaces.component.menuitem.MenuItem;
import org.primefaces.util.ComponentUtils;

public class MenuButtonRenderer extends BaseMenuRenderer {

   protected void encodeMarkup(FacesContext context, AbstractMenu abstractMenu) throws IOException {
    ResponseWriter writer = context.getResponseWriter();
        MenuButton button = (MenuButton) abstractMenu;
    String clientId = button.getClientId(context);
    String buttonId = clientId + "_button";
        String menuId = clientId + "_menu";
   
    writer.startElement("span", button);
    writer.writeAttribute("id", clientId, "id");
       
    if(button.getStyleClass() != null) writer.writeAttribute("class", button.getStyleClass(), "class");
    if(button.getStyle() != null) writer.writeAttribute("style", button.getStyle(), "style");

        //button
    writer.startElement("button", null);
    writer.writeAttribute("id", buttonId, null);
    writer.writeAttribute("name", buttonId, null);
    writer.writeAttribute("type", "button", null);
    if(button.getValue() != null) {
      writer.write(button.getValue());
    }
    writer.endElement("button");

        //menu
        writer.startElement("ul", null);
    writer.writeAttribute("id", menuId, null);

    for(UIComponent child : button.getChildren()) {
      MenuItem item = (MenuItem) child;

      if(item.isRendered()) {
                writer.startElement("li", item);
                encodeMenuItem(context, item);
                writer.endElement("li");
      }
    }

    writer.endElement("ul");
   
    writer.endElement("span");
  }

  protected void encodeScript(FacesContext context, AbstractMenu abstractMenu) throws IOException {
    ResponseWriter writer = context.getResponseWriter();
        MenuButton button = (MenuButton) abstractMenu;
    String clientId = button.getClientId(context);
   
    UIComponent form = ComponentUtils.findParentForm(context, button);
    if(form == null) {
      throw new FacesException("MenuButton : \"" + clientId + "\" must be inside a form element");
    }
   
    String formClientId = form.getClientId(context);
   
    writer.startElement("script", button);
    writer.writeAttribute("type", "text/javascript", null);

    writer.write(button.resolveWidgetVar() + " = new PrimeFaces.widget.MenuButton('" + clientId + "', {");

        writer.write("animation:{animated:'" + button.getEffect() + "',duration:" + button.getEffectDuration() + "}");
        writer.write(",zindex:" + button.getZindex());

        if(button.isDisabled()) {
      writer.write(",disabled:true");
    }

     writer.write("});");
   
    writer.endElement("script");
  }
}
TOP

Related Classes of org.primefaces.component.menubutton.MenuButtonRenderer

TOP
Copyright © 2018 www.massapi.com. 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.