[jboss-user] [JBoss Seam] - Re: The method destroy is called twice

2007-08-14 Thread deved
Hi Richards. I try with "tableModel.clean()" and with this: anonymous wrote : | if(tableModel !=null) { | Component component = Seam.componentForName("tableModel"); | component.destroy(tableModel); | //component.callDestroyMethod(tableModel); | } And I have the sa

[jboss-user] [JBoss Seam] - Re: The method destroy is called twice

2007-08-13 Thread deved
Yes. I am wrong? Why should be called more than once? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4073764#4073764 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4073764 ___

[jboss-user] [JBoss Seam] - The method destroy is called twice

2007-08-13 Thread deved
Hi all. I have this: TableModel.java | @Name("tableModel") | @Conversational | @Scope(ScopeType.CONVERSATION) | public class TableModel { | | @In | private EntityManager em; | | private List data; | | @Begin | public void begin(Class entityClass) { |

[jboss-user] [JBoss Seam] - Begin/End Conversation

2007-08-10 Thread deved
Is it possible to begin or end a long-running conversation manually? MenuManager.java | if (tableModel != null) { | tableModel.end(); | } | tableModel = (TableModel) Component.getInstance(beanName); | tableModel.begin(); | TableModel.java @Name("tableModel") | @Conversa

[jboss-user] [JBoss Seam] - Seam and JBossWS

2007-07-03 Thread deved
Hi all. How I can integrate Seam with JBossWS? I have read the documentation, but i still can't run. Any helps? thanks View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4060116#4060116 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mod

[jboss-user] [JBoss Seam] - Seam JSF EL Enhancement and s:link with RichFaces

2007-06-21 Thread deved
Hi. I'm using Jboss Seam-1.3.0.ALPHA and RichFaces. Here is the code: | | | | | | The argument "item" is always null and none exception is throwing. If I replace the s:button with the s:link did not work at all. This happens with RichFaces

[jboss-user] [JBoss Seam] - Re: Method binding with variable as a parameter allways is n

2007-06-20 Thread deved
Hello Gavin. The argument is always null. I'm using Jboss-4.2.0.GA, Jboss Seam-1.3.0.ALPHA, richfaces-3.0.1 and ajax4JSF-1.1.1. I think that the problem is in the rich:tree component. It is posible? Another problem that i have is that the s:link do not redirect to the view (action="#{menu.redir

[jboss-user] [JBoss Seam] - Method binding with variable as a parameter allways is null

2007-06-20 Thread deved
Hi all. Here is the code: | | | | | | The argument item is always null in the backing bean. I need help? thanks View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4056209#4056209 Reply to the post : http:/

[jboss-user] [JBoss Seam] - Re: s:link does not work in rich:tree

2007-06-19 Thread deved
Here is the html output for one rich:treeNode | | | | | | | | | | | | | Link 2 | | | | | do you need the full html out

[jboss-user] [JBoss Seam] - Re: s:link does not work in rich:tree

2007-06-19 Thread deved
s:link do not redirect page that takes in a parameter with the target URL view="#{item.url}" I'm using: Jboss-4.2.0.GA, JBoss Seam-1.3.0-AlPHA, richfaces-3.0.1 and ajax4jsf-1.1.1. Please help me! Thanks View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4055681#4

[jboss-user] [JBoss Seam] - s:link does not work in rich:tree

2007-06-19 Thread deved
Hi all. I'm using the rich:tree component. Here is the code: | | | | | | | The s:link in the treeNodes does not work. Any ideas?