OnClick on ticketid need to open a details of ticket using birt report -
i had requirement create report based on individual user whom having sr waiting approval, on click on ticket id url's should redirect sr detailed page can check request approve or disapprove.
using hyper link in birt properties unable pass ticketid using below url's
http://google.com/maximo/ui/maximo.jsp?event=loadapp&value=asset&additionaleventvalue=ticketid
could in regards.
if cell made clickable contains ticketid, go properties -> hyperlink -> edit...
select hyperlink type uri, , click dropdown right of 'location' go javascript window.
if you're going use more once, make static part of hyperlink variable. add ticketid clicking "column bindings" in left-lower column in javascript window , selecting appropriate cells in middle , right columns. you'd like
vars["staticpartofhyperlink"] + row[ticketid]
if you'd rather not use variable, can hard-code static part (don't this, it's ugly , asking trouble):
"http://google.com/maximo/ui/maximo.jsp?event=loadapp&value=asset&additionaleventvalue=" + row[ticketid]
Comments
Post a Comment