20 lines
815 B
Plaintext
Executable File
20 lines
815 B
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">
|
|
<ui:define name="content">
|
|
<script type="text/javascript">
|
|
$(document).ready(function() {
|
|
Maia.focus(':formtable:report');
|
|
});
|
|
</script>
|
|
<h:form id="formTable">
|
|
<h:panelGrid columns="7" id="controls" styleClass="m-controls">
|
|
<p:commandButton id="report" value="#{msg_general.lbl_generatereport}:" actionListener="#{reportUserController.reportuser()}" ajax="false" process="@this"/>
|
|
</h:panelGrid>
|
|
</h:form>
|
|
</ui:define>
|
|
</ui:composition> |