Advertisement
frankgraya

busqueda de inmueble dialog

Nov 20th, 2019
123
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 2.60 KB | None | 0 0
  1.            <p:dialog header="Busqueda de inmuebles"
  2.                                              widgetVar="dlg4"
  3.                                              appendTo="@(body)"
  4.                                              modal="true"
  5.                                              height="50%"
  6.                                              width="50%"
  7.                                              style="max-height:650px;overflow:auto">
  8.  
  9.  
  10.                                         <p:inputText placeholder="Busqueda de inmueble" value="" style="width: 100%;" />
  11.                                         <p:separator/>
  12.  
  13.                                         <div class="ui-g">
  14.                                             <h:outputText value="Listado de Busqueda inmuebles" />
  15.                                             <p:dataTable var="listado_Bienes" value="#{interoperabilidadRegistroView.inmueble}"  paginator="true" paginatorTemplate="{CurrentPageReport} {FirstPageLink} {PreviousPageLink} {PageLinks} {NextPageLink} {LastPageLink} {RowsPerPageDropdown}"
  16.                                                         currentPageReportTemplate="(Mostrando: {startRecord} - {endRecord} de: {totalRecords}, Página: {currentPage}/{totalPages})"
  17.                                                         rowsPerPageTemplate="5,10,20,50,100">
  18.                                                 <p:column headerText="ID Inmueble seleccionado">
  19.                                                     <h:outputText value="#{listado_Bienes.id}" />
  20.                                                 </p:column>
  21.                                                 <p:column headerText="Municipio" style="align-content: center">
  22.                                                     <h:outputText value="#{listado_Bienes.municipio}" />
  23.                                                 </p:column>
  24.                                                 <p:column headerText="Domicilio" style="align-content: center">
  25.                                                     <h:outputText value="#{listado_Bienes.nombre}" />
  26.                                                 </p:column>
  27.                                                 <p:column headerText="Seleccionar">
  28.                                                     <p:selectBooleanCheckbox value="" itemLabel=""/>
  29.                                                 </p:column>
  30.                                             </p:dataTable>
  31.                                             <p:commandButton value="Seleccionar" />
  32.                                         </div>
  33.  
  34.                                     </p:dialog>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement