Read and respond to this message at: 
https://sourceforge.net/forum/message.php?msg_id=4096949
By: pavanv007

Hi,
I tried to generate dynamic links containing more than one parameter using 
Decarator
as below

public String getDtlLink4()
{
       TestClass Dtl= (TestClass)getCurrentRowObject();
       String Grp= (Dtl.getGroupName());
       String Appl= (Dtl.getApplicationName());
       String Job= (String.valueOf(Dtl.getJobName()));
       String RunId= (String.valueOf(Dtl.getProcessRunId()));
return "<a href=\"TestAction.action?groupName=" +Grp+ "&applicationName="
+Appl+ "&jobName=" +Job+ "&RunId=" +RunId+"\">Details</a>";
}

JSP has 
<display:column property="dtlLink4" sortable="false" title="Details" />


Every thing works fine. But in the web page the table will have values for 
Column
Details as below string

<a href="TestAction.action?groupName=ABC&applicationName=XYZ&jobName=JOB1&RunId=
11">Details</a>


It should be displayed as hyperlink for Details. when i click on that link it
should invoke the action. I tried to give autolink="true" in Display:Column
. But it didn't work.
Any help about this problem. 



______________________________________________________________________
You are receiving this email because you elected to monitor this forum.
To stop monitoring this forum, login to SourceForge.net and visit: 
https://sourceforge.net/forum/unmonitor.php?forum_id=249318

-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys - and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
displaytag-user mailing list
displaytag-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/displaytag-user

Reply via email to