Each row in my display:table contains a link. The link derives from a URI
stored in the POJOs. 
To generate the link, I need to cut off the prefix. Here is an example:

1. The POJOs have a uri property which have the following form:
   
http://localhost:8080/2008/ontology/ontology.owl#Calculate_ratio_of_areas 

2. The goal is to create a new url with "Calculate_ratio_of_areas" as
parameter.
    http://localhost:8080/showTopic.html?bla=Calculate_ratio_of_areas

To create the name, I use the "fn:substringAfter" JSTL function. Aparantly
in a wrong way 
The column in my JSP pages looks like this. 

   <display:column property="name" sortable="true" titleKey="topic.name"
        url="/showTopic.html" paramId="bla" para 
paramProperty=${fn:substringAfter(uri, "ontology.owl#")}/>

I know this is wrong. paramProperty asks for a POJO property. In my example,
I want to take the
uri property and create a new parameterValue for paramId. How can I do that?

Thanks for your help,
Martin
-- 
View this message in context: 
http://www.nabble.com/Use-JSTL-in-DisplayTag-paramProperty-tp19090006s2369p19090006.html
Sent from the AppFuse - User mailing list archive at Nabble.com.


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to