0
我想從ice中獲取選定的行數據:datatable?這裏是我的代碼,請給我你的建議,使用rowselector獲取選定的行數據。如何使用icefaces獲取選定的數據錶行?
Backingbean:
public void rowSelectionListener(RowSelectorEvent event) {
System.out.println(event.getRow());
}
JSPX代碼:
<ice:rowSelector id="selected" selectionListener="#{inventoryList.rowSelectionListener}" multiple="false" selectedClass="tableRowSelected" mouseOverClass="tableRowMouseOver" />
<f:facet name="header">
<ice:outputText value="Stock #"/>
</f:facet>
<ice:outputText value="#{item.stock}"/>
</ice:column>
現在我能夠獲得行索引,但我需要選擇行值。我怎樣才能做到這一點?