Гобелен петли через хэш-карту - PullRequest
9 голосов
/ 12 марта 2010

Я пытаюсь перебрать hashmap и отобразить флажки с номером id, идентификатором ключа hashmap и обозначить значение hashmap. Кто-нибудь знает, каков синтаксис гобелена для этого?

Приветствие Димитрис

1 Ответ

14 голосов
/ 12 марта 2010

Вы должны быть в состоянии пройти через набор ключей, как это:

<form t:type="Form">
    <t:Loop t:source="myMap.keySet()" t:value="currentKey"> 
        <input type="Checkbox" t:type="Checkbox" t:id="checkbox"
            t:value="currentValue"/>
        <label t:type="Label" for="checkbox">${mapValue}</label>
    </t:Loop>
</form>

Файл класса:

@Property
private Object currentKey;

@Persist
private Set<String> selection = new HashSet<String>();

public Map<String,String> getMyMap() {
    ...
}

public boolean getCurrentValue() {
     return this.selection.contains(this.currentKey);
}

public void setCurrentValue(final boolean currentValue) {
    final String mapValue = this.getMapValue();

    if (currentValue) {
        this.selection.add(mapValue);
    } else {
        this.selection.remove(mapValue);
    }
}


public String getMapValue() {
    return this.getMyMap().get(this.currentKey);
}

Я не скомпилировал это, но это должно помочь вам начать работу.

...