0
Icefaces 2.0のrowselectorの使い方を教えてもらえますか?私の計画はコンポーネントとして使用することです。そのため、すべての種類のリストに対して再利用することができます。Icefaces rowselector
<ice:dataTable id="table" value="#{cc.attrs.list}" var="record">
<ice:column>
<ice:rowSelector rendered="#{cc.attrs.select == 1}" value="#{cc.attrs.selectMethod}"
selectedClass="tableRowSelected" mouseOverClass="tableRowMouseOver"
immediate="false" selectionListener="#{cc.attrs.selectMethod}" />
<f:facet name="header">
<ice:outputText value="#{record.idDesc}"></ice:outputText>
</f:facet>
<ice:outputText value="#{record.id}"></ice:outputText>
</ice:column>
..
</ice:dataTable>
わかりましたように、私はどのように値= "???" selectionListener = "???"を指定します。 Beanに実装する方法がわかりません。
私は、Beanメソッドとコンポーネントメソッドを2つの異なるネットクラスに分けることができれば嬉しいです。いくつかのBeanのListオブジェクトに対してrowSelectorが必要な場合は、単にBeanに現在のComponentオブジェクトを追加します。 1時間で多くのことに多分
、そうであれば、そのために残念=)
B.R