ZK :带参数的转发动作
我试图在页面上动态显示和隐藏行。首先,我尝试在 .zul 页面上创建它,但无法使用 annotadeDatabinder 刷新组件。现在我试图在控制器java文件上实现它,但现在我面临着一个问题,如果我使用组件(如列表框)public void onSelected(ForwardEvent event , String pram){ }
一样捕获它,
这不起作用。如果我在没有第二个参数的情况下使用它,它就可以工作。但我应该发送一些字符串来检查它。有什么办法吗?
I am trying to show and hide rows dynamically on my page.firstly I tryed to make it on .zul page but I could not refresh component with annotadeDatabinder. Now I am trying to make it on controller java file but now I am facing with problem that if I use for component(like listbox) forward ="onSelect=onSelected(paramA)"
then on controller I am tringto catch it like
public void onSelected(ForwardEvent event , String pram){ }
this does not work.If I use without second parameter it works. But I should send some string to check it. İs there any way?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
事件侦听器的签名错误。无论指定或不指定参数,其值都是相同的。此外,您传递的参数可以从 event.getData() 中检索。
The signature of the event listener is wrong. It shall be the same no matter the parameter is specified or not. Furthermore, the parameter you passed could be retrieved from event.getData().