在zk中的页面之间传递变量

时间:2013-09-28 04:17:35

标签: java forms user-interface zk zk-grid

我在zk中有这段代码:

@Command
public void showModal(@BindingParam("languageContributionStatus") UserStatus mnoList) {
    //create a window programmatically and use it as a modal dialog.
    final HashMap<String, Object> map = new HashMap<String, Object>();
    setPickedItemSet(mnoList.getMnoList());
    map.put("mnoList", mnoList.getMnoList());

        win = (Window) Executions.createComponents("/comListMnosUser.zul", null, map);

        win.doModal();

}

在这段代码中,我有一个页面,我在其他页面中创建了一个包含其他页面的窗口:

<zk xmlns="http://www.zkoss.org/2005/zul">    

 <window id="CreateList" border="normal" mode="modal" width="320px"
            apply="org.zkoss.bind.BindComposer"
            viewModel="@id('vm') @init('com.UserMno')">
    <label value="First Name"></label>
    <listbox model="@bind(vm.allMno)" checkmark="true" multiple="true" selectedItems="@bind(vm.mnoList)"/>
    <button id="SaveBtn" hflex="1" label="Save" onClick="@command('save', mnosL=vm.mnoList)" />
</window>

</zk>

然后我需要保存变量mnoList以在前一页中使用,但我不能使用Excecution.createComponent,因为我只需要关闭窗口,因为我有win.doModal();

并使用变量mnoList,但我不知道如何传递此变量以在其他页面中使用。

有人可以帮助我吗?

1 个答案:

答案 0 :(得分:1)

我认为你是正确的方向,甚至不需要将对象作为参数传递,因为mnoList是类变量,或者你可以说ViewModel已经可用于你的模态Window java类。你可以做什么。

1 - 使用相同的按钮和代码

<button id="SaveBtn" hflex="1" label="Save" onClick="@command('save')" />

2-In UserMno.java类使用这样的方法。并编写逻辑以从Child ViewModel调用Parent ViewModel方法。

    @Command
    public void doReorder(@ContextParam(ContextType.VIEW) Component view) {
Map<String, Object> params = new HashMap<String, Object>(); //create a Map to store 
    params.put("param", mnoList);

        Binder bind = (Binder) view.getParent().getAttribute("binder");
        if (bind == null)
            return;
        bind.postCommand("parentclassMethodName", param);
}

parentclassMethodName方法应位于您的父ViewModel类中。