我设计了一个看起来像这样的复合组件:
<cc:interface>
<cc:attribute name="value" required="true" />
<cc:attribute name="title" required="true" />
</cc:interface>
<!-- IMPLEMENTATION -->
<cc:implementation>
<div class="inputTile">
<div class="inputTitle">
<span>#{cc.attrs.title}</span>
</div>
<div class="inputTileContent">
<input type="text" value="#{cc.attrs.value}" />
</div>
</div>
</cc:implementation>
我正在尝试通过AJAX将其加载到我的网页上的div中。
关于如何做到这一点的任何想法?
答案 0 :(得分:0)
这样的事可能吗?
<h:panelGroup id="foo" layout="block">
<your:composite rendered="#{bean.loadCompositeInDiv}" />
</h:panelGroup>
<h:commandButton value="Load composite in div" action="#{bean.setLoadCompositeInDiv(true)}">
<f:ajax render="foo" />
</h:commandButton>
与
@ManagedBean
@ViewScoped
public class Bean {
private boolean loadCompositeInDiv;
// Getter+setter
}