<?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">
<html xmlns="http://www.w3.org/1999/xhtml"
      xmlns:ui="http://xmlns.jcp.org/jsf/facelets"
      xmlns:h="http://xmlns.jcp.org/jsf/html"
      xmlns:f="http://xmlns.jcp.org/jsf/core"
      xmlns:p="http://primefaces.org/ui">

    <body>

        <ui:composition template="./template/principal.xhtml">

            <ui:define name="top">
                top
            </ui:define>

            <ui:define name="left">
                left
            </ui:define>

            <ui:define name="right">
                right
            </ui:define>

            <ui:define name="content">
                <f:view>


                    <h:form>
                           <p:messages id="messages" showDetail="true" closable="true">
                           
                        </p:messages>
                        
                        <h1><h:outputText value="#{demoBeanUbicacion.titulo}"/></h1>
                        <h:panelGrid columns="2" cellpadding="7">
                            
                            <p:outputLabel value="Bloque:" for="bloque" />
                            <p:inputText converter="" id="bloque" 
                                         value="#{demoBeanUbicacion.ubi.bloque}"
                                         title="Bloque" 
                                         required="true" 
                                         
                                         validatorMessage="Asignación no valida" 
                                         requiredMessage="Asignación no valida">

                                

                            </p:inputText>
                            
                            
                            <p:outputLabel value="Anaquel:" for="anaquel" />
                            <p:inputText id="anaquel" value="#{demoBeanUbicacion.ubi.anaquel}" title="Anaquel" />
                          
                        </h:panelGrid>
                         <p:commandButton action="#{demoBeanUbicacion.agregar()}" 
                                        
                                         update="messages"
                                        styleClass="ui-button-success" 
                                        style="width: 50px;" icon="pi pi-check"
                                          rendered="#{demoBeanUbicacion.nuevo}"
                                         ajax="false"/>

                        <p:commandButton
                                         action="#{demoBeanUbicacion.editarU()}"
                                         rendered="#{!demoBeanUbicacion.nuevo}"
                                         update="messages"
                                         icon="pi pi-save"
                                         styleClass="ui-button-success"
                                         style="width: 50px;" ajax="false"/>
                   
                        <p:commandButton action="ubicacionLista.xhtml" style="margin-left: 5px; width: 50px; " 
                                         icon="pi pi-times" 
                                         styleClass="ui-button-danger" 
                                         ajax="false" immediate="true"/>
                    </h:form>
                </f:view>

                
            </ui:define>

        </ui:composition>

    </body>
</html>