/* * Copyright 2013 jagatai. * * 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.behavior.printer; import javax.faces.application.ResourceDependencies; import javax.faces.application.ResourceDependency; import javax.faces.component.behavior.ClientBehaviorBase; import javax.faces.component.behavior.ClientBehaviorContext; import javax.faces.context.FacesContext; import org.primefaces.expression.SearchExpressionFacade; @ResourceDependencies({ @ResourceDependency(library="primefaces", name="jquery/jquery.js"), @ResourceDependency(library="primefaces", name="jquery/jquery-plugins.js"), @ResourceDependency(library="primefaces", name="printer/printer.js"), @ResourceDependency(library="primefaces", name="primefaces.js") }) public class PrinterBehavior extends ClientBehaviorBase { private String target; public String getTarget() { return target; } public void setTarget(String target) { this.target = target; } @Override public String getScript(ClientBehaviorContext behaviorContext) { FacesContext context = behaviorContext.getFacesContext(); String components = SearchExpressionFacade.resolveComponentForClient( context, behaviorContext.getComponent(), target); return "PrimeFaces.expressions.SearchExpressionFacade.resolveComponentsAsSelector('" + components + "').jqprint();return false;"; } }