如何在iReport中创建超链接?
我正在使用 iReport-3.7.6 我创建了一个 Sample_Report1,其中一个参数为 (Project_name) 和 我创建了 Sample_Report2,其中一个参数为 (Employee_No) 现在我想在 Sample_Report1 中创建一个到 Sample_Report2 的超链接。 (使用超链接将employee_no作为参数从Sample_Report1传递到Sample_Report2)
I'm using iReport-3.7.6
I have created a sample_Report1 with one parameter as (Project_name) and
I have created the Sample_Report2 with one parameter as (Employee_No)
Now I want to create a hyper-link in Sample_Report1 to Sample_Report2.
(pass the employee_no as a parameter to Sample_Report2 from Sample_Report1 using hyper-link)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
r单击文本字段>链接参数
超链接目标:Self
超链接类型:ReportExecution
A.添加“链接参数名称”= uri(在我的存储库设置中,这就是我使用的)
然后值表达式是包含在“”中的URL
B.再次单击添加“参数名称”值将是
当您将鼠标悬停在链接上时的字段参数,它应该是这样的
这是您的URI =“uri = /路径/报告/年终”
这是你的参数=“year=2010”
希望这有帮助......
rclick on the text field > link parameter
hyperlink target: Self
hyperlink type: ReportExecution
A. add "link parameter name" = uri (well in my repository setup this is what I use)
then Value Expression is the URL enclosed in " "
B. Click on add again "parameter name" value will be the field parameter
when you click mouse over on the link it should be like this
this is your URI = "uri=/path/report/yearend"
this is your parameter = "year=2010"
hope this helps...