Skip to content
Snippets Groups Projects
Forked from DM / dm-docs
261 commits behind, 204 commits ahead of the upstream repository.
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
allowedPolicyValueCreatePanelGrid.xhtml 1.04 KiB
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<ui:composition xmlns="http://www.w3.org/1999/xhtml"
                xmlns:h="http://java.sun.com/jsf/html"
                xmlns:p="http://primefaces.org/ui"
                xmlns:ui="http://xmlns.jcp.org/jsf/facelets">

    <ui:param name="allowedPolicyValueObject" value="#{allowedPolicyValueController.selected}"/>

    <p:panelGrid columns="2" styleClass="createEntityDetails">

        <h:outputLabel for="policyValue" value="Policy Value" styleClass="entityDataLabel"/>
        <h:inputText id="policyValue" value="#{allowedPolicyValueObject.policyValue}" title="Policy Value" styleClass="entityDataText"/>

        <h:outputLabel for="description" value="Description" styleClass="entityDataLabel"/>
        <h:inputText id="description" value="#{allowedPolicyValueObject.description}" title="Description" styleClass="entityDataText"/>        
        
    </p:panelGrid>

</ui:composition>