GXT 3.0のXTemplates(EXTと同様)を使用しようとしています。以下の関係にある2つの単純なJavaオブジェクトを次に示します。
class A {
String name;
public String getName() {
return name;
}
}
class B {
String name;
public String getValue(A a) {
return a.getName();
}
}
次のテンプレートに2つの引数(List << A >> aList、List << B >> bList)を指定してXTemplateを適用したいと思います。
<tpl for="aList">
<tpl for="bList">
////// Questions? How to call function B.getValue(A) ???
///// this does not work for me: {this.getValue(parent)}
</tpl>
</tpl>
そのような親切な要求に精通している体はありますか?ありがとう。