Don't know where your direct problem is, but I use;
| <h:dataTable id="clearingchannelsSelectable"
value="#{searchuser.selected.clearingChannelTypes}" var="item" >
| <rich:column>
| <a4j:commandLink value="Delete"
action="#{clearingchannels.delete(item)}"
reRender="clearingchannelsSelectable"/>
| </rich:column>
| </h:dataTable>
|
and a generic method:
| pubic void select(Object object) {
| setSelected(object);
| }
|
Cause I use inheritance for seam component I couldn't post a easy to understand
example.
Could it be that the @In destroys the selected obejct?
| @In(required=false) @Out
|
Try to remove it.
private Project project;
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4058121#...
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&a...