[jboss-user] [JBoss Seam] - Re: No action called

2008-01-10 Thread vikramchhetryy
Can anyone help me? I am stuck badly. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4118636#4118636 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4118636 ___ jboss-user mailing

[jboss-user] [JBoss Seam] - Re: No action called

2008-01-10 Thread mars1412
that catches my eye: action=#{callCenterAgentEdit.editSelectedCallCenterAgentDetails(details)} View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4118650#4118650 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4118650

[jboss-user] [JBoss Seam] - Re: No action called

2008-01-10 Thread vikramchhetryy
Thanks mars, You gave me the reason to kill myself View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4118669#4118669 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4118669 ___

[jboss-user] [JBoss Seam] - Re: no action called from a form because of selectOneMenu

2007-10-01 Thread [EMAIL PROTECTED]
Read the SeamProblemsFAQ View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4090242#4090242 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4090242 ___ jboss-user mailing list

[jboss-user] [JBoss Seam] - Re: Can action called from button avoid committing transacti

2007-08-27 Thread [EMAIL PROTECTED]
No you can't. File a feature request in JIRA if you want it. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4078401#4078401 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4078401

[jboss-user] [JBoss Seam] - Re: Can action called from button avoid committing transacti

2007-08-25 Thread amitev
May i set flush mode from s:link/s:button? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4077983#4077983 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4077983 ___ jboss-user

[jboss-user] [JBoss Seam] - Re: Can action called from button avoid committing transacti

2007-08-25 Thread matt.drees
I don't think so. I could be wrong. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4078049#4078049 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4078049 ___ jboss-user mailing

[jboss-user] [JBoss Seam] - Re: Can action called from button avoid committing transacti

2007-08-24 Thread matt.drees
You probably want flushMode=manual http://docs.jboss.com/seam/2.0.0.B1/reference/en/html/persistence.html#d0e5563 View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4077939#4077939 Reply to the post :

[jboss-user] [JBoss Seam] - Re: Can action called from button avoid committing transacti

2007-08-24 Thread tynor
Thanks Matt. anonymous wrote : You probably want flushMode=manual Some problems with this: 1) I've been trying to avoid dependencies on non-standard vendor extensions. (my read of the Seam manual is that this is Hibernate specific) 2) I really just want to keep this specific function from

[jboss-user] [JBoss Seam] - Re: Can action called from button avoid committing transacti

2007-08-24 Thread matt.drees
For those more knowledgeable than me, please correct me if I'm wrong. 1) Yes, it's hibernate-specific. But, at some point (jpa 2, hopefully), I'm guessing it won't be. 2) I don't think you can live without a transaction. A transaction is needed even for reading from the db. 3) Actually,

[jboss-user] [JBoss Seam] - Re: Can action called from button avoid committing transacti

2007-08-24 Thread matt.drees
matt.drees wrote : {Merge, Update, Delete} Oops. I meant {Merge, Refresh, Remove}. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4077960#4077960 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4077960

[jboss-user] [JBoss Seam] - Re: Can action called from button avoid committing transacti

2007-08-24 Thread tynor
Thanks Matt - you got me on the right track. I've got it working by removing the begin-conversation entity in my page.xml and annotating my wire() function as: @Begin(flushMode=FlushModeType.MANUAL, join=true) | public void wire() { | This wasn't as scary as I expected it to be. The

[jboss-user] [JBoss Seam] - Re: Can action called from button avoid committing transacti

2007-08-24 Thread matt.drees
Odd. It looks like 1.2.1 has code to parse the flush-mode attribute in pages.xml, so I think it ought to work. Oh well. Glad things are working for you. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4077980#4077980 Reply to the post :