我有一个没有模板的组件,如何在其中添加另一个组件(渲染)?
public class Component1 {
void beginRender(MarkupWriter writer) {
// How can I render for example a tapestry's textfield component inside this component without have a template?
}
}
注意:Component1没有模板(tml文件)
答案 0 :(得分:0)
回答我自己的问题,你不能在没有模板的情况下在另一个组件中添加组件,你需要一个模板来添加一个组件,这是因为tapestry有一个静态结构。