

ramani
@ 574
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 |
<?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['selecoesInterrompidas.Caminho']}" style="font-weight: bold"/> </ui:define> <ui:define name="conteudoCentro"> <p:layout> <h:form id="form"> <p:layoutUnit position="center"> <center> <h:outputLabel value="#{msg['selecoesInterrompidas.MinhasSelecoesInterrooompidas']}" style="font-size: 25px; font-weight: bold"/> </center> <hr/> <p:panel style="border-color: transparent"> <p:dataTable value="#{snowballingBean.processamentosInterrompidos}" var="processamento"> <p:column headerText="#{msg['selecoesInterrompidas.Projeto']}" sortBy="#{processamento.projeto.titulo}" width="100%"> <h:outputText value="#{processamento.projeto.titulo}"/> </p:column> <p:column headerText="#{msg['selecoesInterrompidas.DataInicio']}" sortBy="#{processamento.dataInicio}"> <h:outputText value="#{processamento.dataInicio}"> <f:convertDateTime pattern="dd/MM/yyyy - HH:mm" timeZone="#{initParam.timezone}"/> </h:outputText> </p:column> <p:column headerText="#{msg['selecoesInterrompidas.DataInterrupcao']}" sortBy="#{processamento.dataParada}"> <h:outputText value="#{processamento.dataParada}"> <f:convertDateTime pattern="dd/MM/yyyy - HH:mm" timeZone="#{initParam.timezone}"/> </h:outputText> </p:column> <p:column> <center> <p:commandButton title="#{msg['selecoesInterrompidas.DetalhesProcessamento']}" onclick="dialogDetalhes.show()" update=":form:displayDetalhes" icon="ui-icon-newwin"> <f:setPropertyActionListener value="#{processamento}" target="#{snowballingBean.processamento}"/> </p:commandButton> <p:commandButton title="#{msg['selecoesInterrompidas.ContinuarProcessamento']}" action="continuarSnowballingInterativo.xhtml" icon="ui-icon-play"> <f:setPropertyActionListener value="#{processamento}" target="#{snowballingBean.processamento}"/> </p:commandButton> <p:commandButton title="#{msg['selecoesInterrompidas.ExcluirProcessamento']}" onclick="confirmation.show()" icon="ui-icon-trash"> <f:setPropertyActionListener value="#{processamento}" target="#{snowballingBean.processamento}"/> </p:commandButton> </center> </p:column> </p:dataTable> </p:panel> </p:layoutUnit> <p:dialog header="#{msg['selecoesInterrompidas.DetalhesProcessamentoInterrompido']}" widgetVar="dialogDetalhes" appendToBody="true" modal="true" resizable="false" closeOnEscape="true" showEffect="fade" hideEffect="fade" width="600"> <p:panel id="displayDetalhes" style="border-color: transparent"> <h:outputLabel value="#{msg['selecoesInterrompidas.ProjetoDp']}" style="font-weight: bold"/> <h:outputText value="#{snowballingBean.processamento.projeto.titulo}"/> <br/> <h:outputLabel value="#{msg['selecoesInterrompidas.ProcessamentoIniciou']}" style="font-weight: bold"/> <h:outputText value="#{snowballingBean.processamento.dataInicio}"> <f:convertDateTime pattern="dd/MM/yyyy - HH:mm" timeZone="#{initParam.timezone}"/> </h:outputText> <br/> <h:outputLabel value="#{msg['selecoesInterrompidas.Processamento Interrompido']}" style="font-weight: bold"/> <h:outputText value="#{snowballingBean.processamento.dataParada}"> <f:convertDateTime pattern="dd/MM/yyyy - HH:mm" timeZone="#{initParam.timezone}"/> </h:outputText> <br/> <hr/> <h:panelGrid columns="1"> <h:outputLabel value="#{msg['selecoesInterrompidas.SementesIniciais']}" style="font-weight: bold"/> <h:dataTable value="#{snowballingBean.processamento.artigoList}" var="artigo"> <h:column> <h:outputText value="#{artigo.titulo}"/> </h:column> </h:dataTable> </h:panelGrid> <br/> <h:panelGrid columns="1" rendered="#{snowballingBean.processamento.conferenciaList.size() != 0}"> <h:outputLabel value="#{msg['selecoesInterrompidas.ConferenciasSelecionadas']}" style="font-weight: bold"/> <h:dataTable value="#{snowballingBean.processamento.conferenciaList}" var="conferencias"> <h:column> <h:outputText value="#{conferencias.sigla} - #{conferencias.nome}"/> </h:column> </h:dataTable> </h:panelGrid> <h:outputLabel value="#{msg['selecoesInterrompidas.NenhumaConferenciaSelecionada']}" rendered="#{snowballingBean.processamento.conferenciaList.size() eq 0}" style="font-weight: bold"/> <br/> <hr/> <p:commandButton value="#{msg['selecoesInterrompidas.Fechar']}" onclick="dialogDetalhes.hide()" icon="ui-icon-close" iconPos="right"/> </p:panel> </p:dialog> </h:form> <p:dialog header="#{msg['selecoesInterrompidas.ConfirmacaoExclusao']}" widgetVar="confirmation" appendToBody="true" modal="true" draggable="false" closable="false" resizable="false"> <h:outputText value="#{msg['selecoesInterrompidas.TemCertezaExcluir']}"/> <hr/> <h:form dir="RTL"> <p:commandButton value="#{msg['selecoesInterrompidas.Nao']}" onclick="confirmation.hide()" style="width: 100px" icon="ui-icon-closethick" iconPos="right"/> <p:commandButton value="#{msg['selecoesInterrompidas.Sim']}" action="#{snowballingBean.excluirProcessamento()}" ajax="false" style="width: 100px" icon="ui-icon-check" iconPos="right"/> </h:form> </p:dialog> </p:layout> </ui:define> </ui:composition> </h:body> </html> |
Commits for ramani/Ramani/web/restrito/selecoesInterrompidas.xhtml
Revision | Author | Commited | Message |
---|---|---|---|
574
![]() |
![]() |
Tue 17 Feb, 2015 20:52:43 +0000 | Seleção Interativo Varios Resultado ok |
520
![]() |
![]() |
Wed 16 Jul, 2014 15:01:14 +0000 | Mensagens em Inglês ainda sendo feitas |
377
![]() |
![]() |
Sat 25 Jan, 2014 12:31:27 +0000 | |
334
![]() |
![]() |
Sat 30 Nov, 2013 20:55:59 +0000 | Refatoração das páginas. |
333
![]() |
![]() |
Fri 29 Nov, 2013 20:08:59 +0000 | Construção do breakpoint. |
331
![]() |
![]() |
Thu 28 Nov, 2013 23:19:17 +0000 | Construção do breakpoint. |
328 |
![]() |
Tue 26 Nov, 2013 21:05:42 +0000 | Início do breakpoint do snowballing interativo. |