Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的数据表上有一个命令按钮,有时我需要在新选项卡中显示报告(.jasper),target=blank,根据项目的情况,只需将信息放在另一个页面(注册页面)中,而不需要新标签。
这是可能的还是唯一的解决方案是两个按钮?
尝试条件表达式语言:
target="#{myBean.myCondition ? 'blank' : 'self'}"
这样你只会target="blank"在你的 bean 的条件为真时得到。
target="blank"