我正在尝试使用 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>
有任何机构熟悉这种请求吗?谢谢。