Discussions
Categories
Groups
Community Home
Categories
INTERNAL ENABLEMENT
POPULAR
THRUST SERVICES & TOOLS
CLOUD EDITIONS
Quick Links
MY LINKS
HELPFUL TIPS
Back to website
Home
Intelligence (Analytics)
Making Hyperlink
Rinki
Hi,
I have created a report which is in table form.Is there any way by which we can make records(data in the table) hyperlink which send the control to diffrent jsps(for eg if one record which belongs to open workitem is clicked then sends control on openworkitem jsp and when record related to close workitem is clicked then sends control to closeworkitem jsp)
Find more posts tagged with
Comments
JasonW
There are a lot of ways to change the hyperlink. If you have the work item status as one of the columns you could use a uri with an expression similar to
if( row["workitemstatus"] == "open" ){
"
http://www.google.com";//call
your first jsp and append + "processopen?ordernumber="+row["workorder"];
}else{
"
http://www.yahoo.com"
;
}
Jason