0
我試圖值傳遞給富有hashParam:popupPanel具有豐富:hashParam標籤,這裏是我的代碼如何獲得豐富的參數值:
<h:commandLink value="Edit">
<rich:componentControl target="editPanel" operation="show">
<a4j:param noEscape="true" value="event" />
<rich:hashParam>
<a4j:param name="categoryId" value="#{ c.categoryId }" />
<a4j:param name="categoryName" value="#{ c.name }" />
<a4j:param name="categoryParent" value="#{ c.parent }" />
</rich:hashParam>
</rich:componentControl>
這裏是我的彈出面板,用戶可以做一些
<rich:popupPanel id="editPanel" autosized="true">
<!-- how to get value of the rich:hashParam? -->
</rich:popupPanel>
我已經提到了RichFaces的文檔和例子是富翁:hashParam找出如何內致富值:popupPanel。但似乎該文檔包含一些關於rich:hashParam,並且該示例是硬編碼的,而不是由rich:hashParam傳遞。
文件:Here
例子:Here
有沒有人有這樣的想法?提前致謝。