[JBoss-user] [JBoss Seam] - Re: Component Binding to conversation does not work

2006-03-23 Thread scraatz
Gavin,

is this by design or will it be fixed in later versions?


View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3932131#3932131

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3932131


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=110944bid=241720dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Seam] - Re: Component Binding to conversation does not work

2006-03-23 Thread [EMAIL PROTECTED]
it is unavoidable

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3932273#3932273

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3932273


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=110944bid=241720dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Seam] - Re: Component Binding to conversation does not work

2006-03-22 Thread JamesWoodward
I've found a way around this.

In my CONVERSATION scoped component I inject an EVENT scoped component, which 
handles the binding.

So my conversation component looks something like:
@Stateful
  | @Name(cart)
  | @Interceptors(SeamInterceptor.class)
  | public class ShoppingCartBean implements ShoppingCart, Serializable {
  | ...
  | @In(value=cartTable, create=true)
  | private transient TableBinding table;
  | ...
  | }
  | 

And my event component looks something like:
@Name(cartTable)
  | @Scope(ScopeType.EVENT)
  | public class ShoppingCartTableBinding extends TableBinding {
  | }
  | 

Just for completeness, my TableBinding class is used to bind to a ADF Faces 
Table component:
public abstract class TableBinding {
  | 
  | private UIXTable table;
  | 
  | public UIXTable getBinding() {
  | return table;
  | }
  | 
  | public void setBinding(UIXTable table) {
  | this.table = table;
  | }
  | 
  | public List getSelectedRows() {
  | List selectedRows = new ArrayList();
  | 
  | Object oldKey = table.getRowKey();
  | SetString selectedKeys = table.getSelectionState().getKeySet();
  | 
  | for (String rowKey : selectedKeys) {
  | table.setRowKey(rowKey);
  | selectedRows.add(table.getRowData());
  | }
  | 
  | table.setRowKey(oldKey);
  | 
  | return selectedRows;
  | }
  | 
  | public void clearSelection() {
  | table.getSelectionState().clear();
  | }
  | }
  | 
And my JSF page looks something like:
...
  | af:table binding=#{cartTable.binding} ...
  | ...
  | 

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3931886#3931886

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3931886


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=110944bid=241720dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Seam] - Re: Component Binding to conversation does not work

2006-03-22 Thread [EMAIL PROTECTED]
The Conversation context is not available during the restore view phase. Hence 
the problem ;)

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3931993#3931993

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3931993


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=110944bid=241720dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user