This content has been marked as final. 
    
Show                 4 replies
    
- 
        1. Re: concatenate Strings in ELdaniel.soneira Apr 8, 2008 4:20 AM (in response to brachie)I don't know of any possibility to do this in EL. I would solve the problem like this: <a:commandLink action="#{indexer.indexPerson}"> <h:outputText value="Start indexing (Status: "/> <h:outputText value="#{personIndexingProcess.percentComplete}%" rendered="#{personIndexingProcess.percentComplete lt 100}"/> <h:outputText value="idle" rendered="#{personIndexingProcess.percentComplete eq 100}"/> <h:outputText value=")"/> </a:commandLink>
- 
        2. Re: concatenate Strings in ELmars1412 Apr 8, 2008 4:27 AM (in response to brachie)take a look at this: http://jakarta.apache.org/taglibs/doc/string-doc/intro.html 
- 
        3. Re: concatenate Strings in ELbrachie Apr 8, 2008 5:37 AM (in response to brachie)@Daniel and mars1412: Thanks for your suggestions. I think I will try out Daniels solution first! :-) 
 Regards,
 Alexander
- 
        4. Re: concatenate Strings in ELfabmars Apr 8, 2008 8:39 AM (in response to brachie)Concatenation in EL doesn't exist. 
 http://developers.sun.com/docs/jscreator/help/2update1/jsp-jsfel/jsf_expression_language_intro.html
 
     
     
    