我是ZK的新手。
我使用的是非常古老的zk框架版本(遗留项目)。
我渲染zk页面:
Executions.createComponents("/myZul.zul", null, null))
我需要将参数传递给zul。如果参数为true,我需要渲染复选框,否则 - 不在myZul.zul
我在zul上需要这样的东西:
if(parameter){
<checkbox id="my_id" label="my checkbox" />
}
更新 我的zul:
<window xmlns="http://www.zkoss.org/2005/zul"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:h="http://www.w3.org/1999/xhtml"
xmlns:zk="http://www.zkoss.org/2005/zk"
xmlns:ca="http://www.zkoss.org/2005/zk/client"
xsi:schemaLocation="http://www.zkoss.org/2005/zul http://www.zkoss.org/2005/zul/zul.xsd "
border="normal"
closable="false"
position="center,center"
width="383px"
height="270px"
onCancel="self.detach();"
id="decisionCommentWindow"
title="${c:l('approvalTaskWindow.title')}"
use="handlers.ZulHandler">
....
我需要在ZulHandler里面覆盖方法doAfterCompose
吗?
再一次:
ZUL:
<window xmlns="http://www.zkoss.org/2005/zul"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:h="http://www.w3.org/1999/xhtml"
xmlns:zk="http://www.zkoss.org/2005/zk"
xmlns:ca="http://www.zkoss.org/2005/zk/client"
xsi:schemaLocation="http://www.zkoss.org/2005/zul http://www.zkoss.org/2005/zul/zul.xsd "
border="normal"
closable="false"
position="center,center"
width="383px"
height="270px"
onCancel="self.detach();"
id="decisionCommentWindow"
title="${c:l('approvalTaskWindow.title')}"
use="handlers.ZulHandler">
<zk if="${isManufacturingKey}">
<checkbox id="checkbox_id" label="check" />
</zk>
</window>
zul creater:
...
Map args = new HashMap<String, Boolean>();
Boolean isManufacturing = true;
args.put("isManufacturingKey", isManufacturing);
ZulHandler window = Preconditions
.checkNotNull((ZulHandler) Executions.createComponents(
"/decision_comment_window.zul", null, args));
window.setTitle(decisionModel.getName() + " decision");
if (isManufacturing) {
Checkbox checkbox = (Checkbox) Path
.getComponent("/decisionCommentWindow/emergency_change_checkbox_id");
checkbox.setChecked(workflow.getEmergencyChange());//I have Null pointer here because checkbox is null
}
...
答案 0 :(得分:8)
你可以这样做:
HashMap map = new HashMap<String, String>();
Boolean isManufacturing = true;
args.put("isManufacturingKey", isManufacturing);
map.put("isManufactringChecked",workflow.getEmergencyChange());
Executions.createComponents("/myZul.zul", null , map);
创建此控制器:
public class ZulHandler extends SelectorComposer {
@Wire("#win")
private Window myWin;
private Boolean manufacturing;
private Boolean manufactringChecked;
@Override
public void doAfterCompose(Component window) throws Exception {
super.doAfterCompose(window);
if (arg.containsKey("isManufacturingKey")) {
manufacturing = (Boolean) arg.get("isManufacturingKey"));
} else {
//Declare what is is when you don't have the arg
}
if (arg.containsKey("isManufactringChecked")) {
manufactringChecked = (Boolean) arg.get("isManufactringChecked"));
} else {
//Declare what is is when you don't have the arg
}
}
public Boolean isManufacturing () {
return manufacturing;
}
public Boolean isManufactringChecked() {
return manufactringChecked ;
}
改变你的意思:
use="handlers.ZulHandler">
<zk if="${isManufacturingKey}">
<checkbox id="checkbox_id" label="check" />
</zk>
到:
apply="handlers.ZulHandler">
<checkbox id="checkbox_id" label="check" checked="${$composer.manufactringChecked}"
visible="${$composer.manufacturing}"/>
现在你只需要在那里实现doOk方法。 如果它只是关闭该窗口的按钮,您可以在zul中执行以下操作:
<button label="Close" onClick="spaceOwner.detach()" />
编辑:
我的第一个解决方案是正确的你的问题。你只是因为工作不对而遇到了下一个问题。
您的问题是您希望呼叫者影响目标。
只要给予参数并让目标的控制者完成工作
它就像一个汽车工厂,他们说你的车可以行驶200公里/小时,但你作为汽车的控制器,你是否以200公里/小时的速度驾驶,或者当它没有指定时,你还可以开车吗?
您也不需要为同一问题制作dubbelposts。你可以为nullpointer提出一个问题,但标题几乎相同,帖子里也有。
编辑:
如果您需要设置title =&gt;把标题放在args中并在你的代码中声明。 否则,我编辑了控制器类,所以你有你的窗口变量。(或者你自己成为窗口的公共getter和setter)
答案 1 :(得分:0)
我创建了一个zul并在main zul中设置了arg。发送参数,我想更改此参数。 例如:
Map args = new HashMap<String, Boolean>();
args.put("ReadOnly", false);
Executions.createComponents("/example.zul", null, args);
如果我保存按钮cliked并将ReadOnly更改为true,如何在main.zul中更改ReadOnly;
答案 2 :(得分:-1)
试一试:
<zk if="${parameter}">
<checkbox id="my_id" label="my checkbox" />
</zk>
答案 3 :(得分:-4)
java代码:
Map args = new HashMap<String, Boolean>();
args.put("isManufacturingKey", true);
ZulHandler window = Preconditions.checkNotNull((ZulHandler) Executions.createComponents("/decision_comment_window.zul", null, args));
在.zul文件中正确访问:
"${arg.isManufacturingKey}"
注意:我使用 arg 访问者
访问参数这适用于我的ZK版本!!!