

ramani
@ 570
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 |
<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml" xmlns:ui="http://java.sun.com/jsf/facelets" xmlns:h="http://java.sun.com/jsf/html" xmlns:p="http://primefaces.org/ui" xmlns:f="http://java.sun.com/jsf/core"> <h:head/> <h:body> <ui:composition template="../template.xhtml"> <ui:define name="caminho"> <h:outputLabel value="#{msg['graficoLinhaAfiliacao.Caminho']}" style="font-weight: bold"/> </ui:define> <ui:define name="conteudoCentro"> <p:layout> <h:form id="formCrSelecao"> <p:layoutUnit position="center"> <p:wizard backLabel="Anterior" nextLabel="Proximo" > <p:tab id="projetoTab" title="#{msg['criarSelecaoEscolha.Projeto']}"> <p:panel> <h:outputLabel value="#{msg['criarSelecaoEscolha.EscolhaProjeto']}" style="color: blue; font-weight: bold"/> <p:growl severity="true" showDetail="true" showSummary="true" /> <h:panelGrid columns="1" width="100%"> <p:selectOneMenu value="#{selecaoBean.projeto}" converter="ProjetoConverter"> <f:selectItems value="#{selecaoBean.projetos}" var="projeto" itemLabel="#{projeto.titulo}"/> </p:selectOneMenu> </h:panelGrid> </p:panel> </p:tab> <p:tab id="conferenciaTab" title="#{msg['criarSelecaoEscolha.Conferencias']}"> <p:panel > <h:outputLabel value="#{msg['criarSelecaoEscolha.SelecioneConferencias']}" style="color: blue; font-weight: bold"/> <br/> <h:outputText value="#{msg['criarSelecaoEscolha.ConferenciasDevemEstarSelecionadas']}" style="color: red; font-weight: bold"/> <br/> <hr/> <p:selectManyCheckbox id="selectCon" value="#{selecaoBean.conferenciasSelecionadas}" converter="ConferenciaConverter" layout="pageDirection"> <f:selectItems value="#{selecaoBean.projeto.conferenciaList}" var="conf" itemLabel="#{conf.sigla} - #{conf.nome}"/> </p:selectManyCheckbox> </p:panel> </p:tab> <p:tab id="artigoTab" title="#{msg['criarSelecaoEscolha.Artigos']}"> <p:panel id="pSelectEscc"> <h:outputLabel value="#{msg['criarSelecaoEscolha.SelecioneArtigos']}" style="color: blue; font-weight: bold"/> <hr/> <h:outputLabel value="#{msg['criarSelecaoEscolha.CriteriosSelecaoArtigos']}" style="font-weight: bold; color: blue"/> <h:panelGrid columns="1"> <h:dataTable id="tabEsc" value="#{selecaoBean.criteriosDeSelecao}" var="crit" style="color: blue"> <h:column> <h:outputText value="#{crit}"/> </h:column> </h:dataTable> </h:panelGrid> <hr/> <p:dataTable id="dados" value="#{selecaoBean.selecoes}" paginator="true" rows="10" var="sel"> <p:column> <p:commandButton id="selecionar" title="#{msg['criarSelecaoEscolha.SelecionarArtigo']} #{selecaoBean.selecoes.indexOf(sel) + 1}" ajax="false" icon="ui-icon-check" action="#{selecaoBean.escolherSelecao}" value="Selecionar" > <f:setPropertyActionListener target="#{selecaoBean.selecao}" value="#{sel}"/> <p:ajax immediate="true"/> </p:commandButton> </p:column> <p:column headerText="Artigo"> <h:outputLabel value="#{selecaoBean.selecoes.indexOf(sel) + 1}." style="color: blue; font-weight: bold"/> <h:outputLabel value="#{msg['criarSelecaoEscolha.Titulo']}" style="font-weight: bold"/> <h:outputText value="#{sel.artigo.titulo}"/> <br/> <h:outputLabel value="#{msg['criarSelecaoEscolha.Abstract']}" style="font-weight: bold"/> <h:outputText value="#{sel.artigo.abstract1}"/> <br/> <p:panel style="border: none"> <h:outputLabel value="#{msg['criarSelecaoEscolha.Justificativa']}" style="font-weight: bold"/> <p:inputTextarea value="#{sel.justificativa}" rows="3" autoResize="false" style="width: 100%"/> </p:panel> <br/> </p:column> </p:dataTable> </p:panel> </p:tab> <p:tab id="selecaoTab" title="#{msg['criarSelecaoEscolha.Selecoes']}"> <p:panel> <h:outputLabel value="#{msg['criarSelecaoEscolha.ArtigosSelecionadosExtendido']}" style="color: blue; font-weight: bold"/> <hr/> <br/> <p:commandButton value="#{msg['criarSelecaoEscolha.Salvar']}" title="#{msg['criarSelecaoEscolha.SalvarSelecoes']}" action="#{selecaoBean.criarSelecoes()}" style="width: 100%;" ajax="false" iconPos="right"/> <br/> <br/> <p:dataTable value="#{selecaoBean.selecoesEscolhidas}" emptyMessage="" var="sel"> <p:column headerText="#{msg['criarSelecaoEscolha.ArtigosSelecionados']}" width="100%"> <h:outputText value="#{sel.artigo.titulo}"/> </p:column> <p:column> <p:commandButton title="#{msg['criarSelecaoEscolha.RemoverSelecao']}" action="#{selecaoBean.removerSelecao()}" ajax="false" icon="ui-icon-minusthick" value="Remover"> <f:setPropertyActionListener value="#{sel}" target="#{selecaoBean.selecao}"/> </p:commandButton> </p:column> </p:dataTable> </p:panel> </p:tab> </p:wizard> </p:layoutUnit> </h:form> </p:layout> </ui:define> </ui:composition> </h:body> </html> |
Commits for ramani/Ramani/web/cadastros/criarSelecaoEscolha.xhtml
Revision | Author | Commited | Message |
---|---|---|---|
570
![]() |
![]() |
Wed 04 Feb, 2015 04:05:28 +0000 | Selecionar por |
513
![]() |
![]() |
Wed 09 Jul, 2014 03:31:10 +0000 | |
511
![]() |
![]() |
Mon 07 Jul, 2014 20:00:45 +0000 | Mensagens ainda inacabadas. O Resource Bundle já é reconhecido mas ainda não é possível trocar os idiomas. (Trabalhando nisso) |
416
![]() |
![]() |
Mon 14 Apr, 2014 04:54:25 +0000 | |
377
![]() |
![]() |
Sat 25 Jan, 2014 12:31:27 +0000 | |
375
![]() |
![]() |
Thu 23 Jan, 2014 21:11:58 +0000 | |
374
![]() |
![]() |
Tue 21 Jan, 2014 11:57:11 +0000 | |
360
![]() |
![]() |
Fri 13 Dec, 2013 19:45:05 +0000 | Refatoração do snowballing. |
345
![]() |
![]() |
Thu 05 Dec, 2013 23:12:48 +0000 | Finalização do breakpoint. |
344 |
![]() |
Wed 04 Dec, 2013 19:29:09 +0000 | Finalização do breakpoint. |