2
<zk>
    <grid width="auto" sizedByContent="true" span="1" sclass="tblWithoutHover">
        <attribute name="onCreate">
            authorPublisherEtcInclude.insertBefore(self, authorBox);
        </attribute>
        <columns>
            <column/>
            <column/>
        </columns>
        <rows>
            <row valign="center">
                <cell colspan="2"><label use="${authorPublisherComponents.originalFieldsLabel}"/></cell>
            </row>
            <row valign="center">
                <label use="${authorPublisherComponents.titleAuthorOriginalLabel}"/>
                <textbox use="${authorPublisherComponents.titleAuthorOriginalTextbox}"/>
            </row>
            <row valign="center">
                <label use="${authorPublisherComponents.mainAuthorOriginalLabel}"/>
                <textbox use="${authorPublisherComponents.mainAuthorOriginalTextbox}"/>
            </row>
            <row valign="center">
                <label use="${authorPublisherComponents.mainAuthorResponsibilityLabel}"/>
                <selectbox use="${authorPublisherComponents.mainAuthorResponsibilitySelectbox}"/>
            </row>
            <row valign="center">
                <label use="${authorPublisherComponents.authorityDatesOriginalLabel}"/>
                <textbox use="${authorPublisherComponents.authorityDatesOriginalTextbox}"/>
            </row>
            <row valign="center">
                <cell>
                    <label use="${authorPublisherComponents.addMainAuthorsOriginalLabel}"/>
                    <toolbarbutton use="${authorPublisherComponents.addAuthorButton}"/>
                </cell>
                <cell id="addAuthorsCell">
                    <grid id="addAuthorsContainer" model="@bind(ivm.inventory.addAuthorsBeans)">
                        <columns>
                            <column/>
                            <column/>
                            <column/>
                        </columns>
                        <rows>
                                <row>
                                    <textbox value="@load(xgbfxb.authorName)" onChange="@command('test', component = self, index=s.index)"/>
                                    <button label="Del" onClick="@command('delAuthor', container=addAuthorsContainer, index=modelIndex )">
                                        <custom-attributes modelIndex="${s.index}"/>
                                    </button>
                                </row>
                        </rows>
                    </grid>
                    <textbox use="${authorPublisherComponents.addMainAuthorsOriginalTextbox}"/>
                </cell>
            </row>

これは私の zul ページの一部です。addAuthorsBeans は、フィールドを持つクラスのリストです。コンボボックスのデータを変更すると、アプリケーションはリスト内のすべてのクラスに対して set メソッドを呼び出しますが、対応するアイテムに対してのみ呼び出すようにします。出来ますか?それとも、onChange イベントと ViewModel メソッドで黒魔術を唱えるべきですか?

編集 (2013 年 12 月 21 日)。これは次のように機能します: 1、2、3 の 3 つのアイテムを取得しました。次に、2 つのアイテムに対して setAuthor をアクティブにします。次に、アプリケーションは setAuthor メソッドを 2 つのアイテムに対して呼び出し、次に 3 つのアイテムに対して呼び出し、次に 1 つのアイテムに対して呼び出し、コンテナー内でこのメソッドを探します。

静的変数を作成し、setAuthor メソッドの最初の呼び出しでそれを変更し、コンテナでブロックを解除する「黒魔術」の一時的な解決策があります。

しかし、これは最終的な解決策ではありません。なぜなら、それはより多くのリソースを消費し、実際にどのように機能するべきではないからです。

解決策:別のグリッドにモデルを持つグリッドがある場合、非常に奇妙な動作をします。したがって、代わりにリストボックスを使用してください。

4

1 に答える 1

1

オブジェクトウィッチレプリブアイテムの唯一のcomboboxトリガーとなります。item.setAuthorName(...)他のセッターが呼び出される場合は、ViewModel クラスで、@NotifyChangeまたはこれにリンクされている必要があります。@DependsOn

編集:変更してみてください:

<grid model="@bind(ivm.inventory.addAuthorsBeans)">

<grid model="@load(ivm.inventory.addAuthorsBeans)">

更新:このトピックのために作成された私からの実例:http://forum.zkoss.org/question/90188/notifychange-to-grid-that-is-inside-a-row-of-another-grid/?answer =90284#post-id-90284 ) :

最初の単純な pojo クラス:

package be.chillworld;

import java.util.ArrayList;
import java.util.List;

/**
 *
 * @author chillworld
 */
public class Person {
    private int id;
    private String naam;
    private List<Person> childs = new ArrayList<Person>();

    public Person(int id) {
        this.id = id;
        naam = "test " + id;
    }

    public int getId() {
        return id;
    }

    public void setId(int id) {
        this.id = id;
    }

    public void setNaam(String naam) {
        this.naam = naam;
    }

    public String getNaam() {
        System.out.println("asked getter (naam) of "+ id);
        return naam;
    }

    public List<Person> getChilds() {
        System.out.println("asked getter (childs) of "+ id);
        return childs;
    }

    public void setChilds(List<Person> childs) {
        this.childs = childs;
    }

    public boolean addChild(Person person) {
        return childs.add(person);
    }

    @Override
    public String toString() {
        return "Person{" + "id=" + id + ", name=" + getNaam() + '}';
    }
}

次に、IndexVM:

package be.chillworld;

import java.util.ArrayList;
import java.util.List;
import org.zkoss.bind.BindUtils;
import org.zkoss.bind.annotation.BindingParam;
import org.zkoss.bind.annotation.Command;

/**
 *
 * @author chillworld
 */
public class IndexVm {

    private List<Person> persons;
    int i;

    public IndexVm() {
        System.out.println("starting creating list");
        persons = new ArrayList<Person>();
        for (i = 0; i < 100; i++) {
            Person person = new Person(i);
            person.addChild(new Person(++i));
            persons.add(person);
        }
        System.out.println("ending creating list");

    }

    public List<Person> getPersons() {
        return persons;
    }

    public void setPersons(List<Person> persons) {
        this.persons = persons;
    }

    @Command
    public void showIndex(@BindingParam("person") Person person) {
        System.out.println("changed name");
        person.setNaam("Chillworld");
        BindUtils.postNotifyChange(null, null, person, "naam");
    }

    @Command
    public void addChild(@BindingParam("person") Person person) {
        System.out.println("add child");
        Person child = new Person(++i);
        child.setNaam("new child");
        person.addChild(child);
        BindUtils.postNotifyChange(null, null, person, "childs");
    }
}

そして最後に index.zul :

<?xml version="1.0" encoding="UTF-8"?>
<zk xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://www.zkoss.org/2005/zul"
xsi:schemaLocation="http://www.zkoss.org/2005/zul
                   http://www.zkoss.org/2005/zul/zul.xsd">
<window border="normal" closable="false"
        apply="org.zkoss.bind.BindComposer"
        viewModel="@id('vm') @init('be.chillworld.IndexVm')">
    <grid width="1000px" model="@load(vm.persons)">        
        <columns>            
            <column label="naam" /> 
            <column label="add child" />            
            <column label="childs" />        
        </columns>        
        <template name="model" >            
            <row>                
                <textbox value="@bind(each.naam)" /> 
                <button onClick="@command('addChild',person = each)" label="add child"/>                       
                <grid width="400px" model="@load(each.childs)">        
                    <columns>            
                        <column label="naam" />            
                        <column label="button" />        
                    </columns>        
                    <template name="model" var="item">            
                        <row>                
                            <textbox value="@bind(item.naam)" /> 
                            <button onClick="@command('showIndex',person = item)" label="change value"/>        
                        </row>        
                    </template>    
                </grid>           
            </row>        
        </template>    
    </grid>
</window>
</zk>

これにより、(起動後)出力として得られます:

changed name
asked getter of 11
changed name
asked getter of 7
changed name
asked getter of 19

さようなら。

于 2013-12-20T13:48:39.670 に答える