ramani
Diff Revisions
568
vs
569
for /Ramani/web/restrito/listarAutores.xhtml
|
@@ -15,21 +15,7 @@ |
15 |
15 |
|
|
16 |
16 |
|
<ui:define name="conteudoCentro"> |
17 |
17 |
|
<p:layout> |
18 |
|
- |
<h:form id="form"> |
19 |
|
- |
<p:layoutUnit position="west"> |
20 |
|
- |
<center> |
21 |
|
- |
<h:outputLabel value="#{msg['listarAutores.Menu']}" |
22 |
|
- |
style="font-size: 25px; font-weight: bold"/> |
23 |
|
- |
<hr/> |
24 |
|
- |
<p:commandButton value="#{msg['listarAutores.Voltar']}" |
25 |
|
- |
title="#{msg['listarAutores.VoltarPaginaInicial']}" |
26 |
|
- |
action="/projeto/listarProjetos.xhtml" |
27 |
|
- |
style="width: 99%" |
28 |
|
- |
ajax="false" |
29 |
|
- |
icon="ui-icon-arrowreturnthick-1-w" |
30 |
|
- |
iconPos="right"/> |
31 |
|
- |
</center> |
32 |
|
- |
</p:layoutUnit> |
|
18 |
+ |
<h:form id="form"> |
33 |
19 |
|
<p:layoutUnit position="center"> |
34 |
20 |
|
<center> |
35 |
21 |
|
<h:outputLabel value="#{msg['listarAutores.AutoresCadastrados']}" |
|
@@ -40,10 +26,12 @@ |
40 |
26 |
|
<p:panel id="panel" |
41 |
27 |
|
style="border-color: transparent"> |
42 |
28 |
|
<p:dataTable value="#{autorBean.autores}" |
|
29 |
+ |
paginator="true" |
|
30 |
+ |
rows="50" |
43 |
31 |
|
var="autor"> |
44 |
32 |
|
<p:column headerText="#{msg['listarAutores.Autor']}" |
45 |
33 |
|
sortBy="#{autor.nome}" |
46 |
|
- |
width="85%"> |
|
34 |
+ |
> |
47 |
35 |
|
<h:outputText value="#{autor.nome}"/> |
48 |
36 |
|
</p:column> |
49 |
37 |
|
|