Mentions légales du service

Skip to content
Snippets Groups Projects
Commit 07746166 authored by Guillaume Thomazon's avatar Guillaume Thomazon
Browse files

Add table with result permanentLink of EVSClient

git-svn-id: https://scm.gforge.inria.fr/authscm/ycadoret/svn/gazelle/Maven/gazelle-proxy/trunk@33934 356b4b1a-1d2b-0410-8bf1-ffa24008f01e
parent 0bbfd89a
No related branches found
No related tags found
No related merge requests found
......@@ -2,21 +2,25 @@
xmlns:s="http://jboss.com/products/seam/taglib"
xmlns:ui="http://java.sun.com/jsf/facelets"
xmlns:f="http://java.sun.com/jsf/core"
xmlns:a4j="http://richfaces.org/a4j"
xmlns:h="http://java.sun.com/jsf/html"
xmlns:rich="http://richfaces.org/rich">
<h:commandLink action="#{messageBean.downloadFile(false)}"
rendered="#{messageBean.isDownloadable()}" value="#{messages['net.ihe.gazelle.proxy.DownloadFile']}"
rendered="#{messageBean.isDownloadable()}"
value="#{messages['net.ihe.gazelle.proxy.DownloadFile']}"
target="_blank" />
<br />
<rich:spacer height="10" rendered="#{messageBean.isDownloadable()}" />
<h:commandLink action="#{messageBean.downloadFile(true)}"
rendered="#{messageBean.isDownloadable()}" value="#{messages['net.ihe.gazelle.proxy.ViewInline']}"
rendered="#{messageBean.isDownloadable()}"
value="#{messages['net.ihe.gazelle.proxy.ViewInline']}"
target="_blank" />
<br />
<rich:spacer height="10" rendered="#{messageBean.isDownloadable()}" />
<h:commandLink action="#{messageBean.validate()}"
<h:commandLink action="#{messageBean.validate(messageBean.message.id)}"
rendered="#{messageBean.isDownloadable()}"
value="#{messages['net.ihe.gazelle.proxy.ValidateUsingEVSClient']}" target="_blank" />
value="#{messages['net.ihe.gazelle.proxy.ValidateUsingEVSClient']}"
target="_blank" />
<rich:spacer height="10" />
......@@ -25,5 +29,25 @@
content="#{messageBean.message.getMessageReceivedAsString()}"
highlight="xml" />
</div>
<br />
<h:form id="resultlink">
<s:div id="linkDiv"
rendered="#{messageBean.message.getPermanentLink()!=null and !(messageBean.message.getPermanentLink().isEmpty())}"
style="width:50%">
<rich:dataTable rows="15"
value="#{messageBean.message.getPermanentLink()}" var="link">
<f:facet name="header">
<h:outputText value="Validation result link" />
</f:facet>
<rich:column>
<h:outputLink value="#{link}" id="linkMessages" target="_blank">
<h:outputText value="#{link}" />
</h:outputLink>
</rich:column>
<f:facet name="footer">
<rich:datascroller id="datascroller" />
</f:facet>
</rich:dataTable>
</s:div>
</h:form>
</ui:composition>
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment