ZK CDATA 并传递变量?
我已经为此苦苦挣扎了几天,但似乎无法解决问题。 这是我的代码:
<attribute name="onClick"><![CDATA[
Messagebox.show("Remove this file?", "Remove?", Messagebox.YES | Messagebox.NO, Messagebox.QUESTION,
new EventListener() {
public void onEvent(Event evt) {
switch (((Integer)evt.getData()).intValue()) {
case Messagebox.YES: someFunction(${each.Id}); break;
case Messagebox.NO: break;
}
}
})
]]></attribute>
上面的代码来自 ZK ZUL 页面中的 forEach 循环。它应该生成一个文件列表,并且每个文件上都应该有一个“删除”按钮。当您单击它时,应该会出现一个弹出窗口并要求确认。确认后,它应该将 id 传递给一个函数,该函数从此处理所有事情。
我很确定这是我遗漏或不知道的非常小的事情。
I have been struggling with this for a couple of days now and I can't seem to get it right.
Here is my code:
<attribute name="onClick"><![CDATA[
Messagebox.show("Remove this file?", "Remove?", Messagebox.YES | Messagebox.NO, Messagebox.QUESTION,
new EventListener() {
public void onEvent(Event evt) {
switch (((Integer)evt.getData()).intValue()) {
case Messagebox.YES: someFunction(${each.Id}); break;
case Messagebox.NO: break;
}
}
})
]]></attribute>
The above code is from a forEach cycle in a ZK ZUL page. It should generate a list of files and on every file you should have a "Delete" button. When you click on it a popup should come up and ask for confirmation. After you confirm it should pass the id to a function which from then handles everything.
I'm quite sure it's something really small I'm missing or not knowing.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这里有两个问题。
您必须首先存储每个对象,然后在事件侦听器中使用它。
您可以查看ZK 的参考
There are two issues here.
You have to store the each object first and then use it in the event listener.
You might take a look at ZK's reference