33 lines
1.5 KiB
Plaintext
Executable File
33 lines
1.5 KiB
Plaintext
Executable File
<ui:composition
|
|
xmlns:h="http://java.sun.com/jsf/html"
|
|
xmlns:f="http://java.sun.com/jsf/core"
|
|
xmlns:ui="http://java.sun.com/jsf/facelets"
|
|
xmlns:p="http://primefaces.org/ui"
|
|
xmlns:pe="http://primefaces.org/ui/extensions"
|
|
template="/WEB-INF/templates/template.xhtml"
|
|
xmlns:maia="http://java.sun.com/jsf/composite/maiaComponents">
|
|
<ui:define name="content">
|
|
<h:form id="formTable">
|
|
<maia:pageEvents controller=""
|
|
queryProcess=":formTable:filters"
|
|
saveProcess=""
|
|
saveUpdate=""
|
|
focusContainer=":formTable:filters" />
|
|
|
|
<p:panelGrid id="filters" columns="2" styleClass="m-filters">
|
|
<f:facet name="header">
|
|
<h:outputText value="#{msg_general.lbl_filters}" />
|
|
</f:facet>
|
|
<p:outputLabel for="fpkSol" value="#{msg_armas.lbl_solicitud}:" />
|
|
<p:inputText id="fpkSol"
|
|
value="#{exportFlowsController.solicitud}"
|
|
style="width:240px"
|
|
maxlength="20"/>
|
|
|
|
<p:commandButton id="idRepor" value="#{msg_general.btn_create}" actionListener="#{exportFlowsController.reporteFlujoSolicitudXls()}" process="@this" ajax="false"/>
|
|
<p:outputLabel value="" />
|
|
</p:panelGrid>
|
|
|
|
</h:form>
|
|
</ui:define>
|
|
</ui:composition> |