commandLink « Seam « JSF Q&A





1. Nesting commandLink to outputFormat    stackoverflow.com

I was wondering if it is possible to nest a h:commandLink into a h:outputFormat message, e.g.: messages.properties

disclaimerLink=Click {0] for Disclaimer
Now I would like to do something like this
<h:outputFormat value="#{msgs['disclaimerLink']}" >
   ...

2. Can h:CommandLink POST to an external URL?    stackoverflow.com

I'm working on a Seam application and need to submit some form data to an external URL only I'm a bit stumped as to how I should approach it. h:CommandLink is the ...

3. h:commandLink and onclick Javascript function    stackoverflow.com

I have the following peace of code:

<DIV>
    <h:commandLink action="#{documentGen.generatePDF}"
        target="_blank"
        onclick="return checkSelected();">
   ...