addLink(eid, [item], replet [,request])
Adds a hyperlink to the specified element which targets another report.
Parameter
eid element ID
item row/column
specifier,
an inetsoft.report.event object
replet report name
request report
request,
an inetsoft.sree.RepletRequest instance,
or a parameter/value array (array of pairs)
Example
replet.addLink('Text1', 'Orders/Order Details');
Example
var req = new inetsoft.sree.RepletRequest("customize");
req.setParameter("name", "value");
replet.addLink("Text2",
new inetsoft.report.event.EventPoint.at(new
java.awt.Point()), "report/details", req);
// this is equivalent to
replet.addLink("Text2", [["name", "value"]]);
| << roles | © 1996-2013 InetSoft Technology Corporation (v11.4) | addLinkURL(eid, item, url, target) >> |