Re:

2011-03-09 Thread daniel ccss
Thanks Myke but I'm using myfaces tomahawk, not richfaces. I also tried a more simple code: In the JSP: ** In the BackingBean: FacesContext context = FacesContext.getCurrentInstance(); String paramVau

Re:

2011-03-09 Thread Mike Kienenberger
I have not used a4j:actionparam, but under richfaces, I have successfully used Perhaps that will do what you need. On Wed, Mar 9, 2011 at 5:32 PM, daniel ccss wrote: > Hi, i have this code: > >                                <*a4j:region*> > > <*h:selectBooleanCheckbox*value="#{su

users@myfaces.apache.org

2011-03-09 Thread daniel ccss
Hi, i have this code: <*a4j:region*> <*h:selectBooleanCheckbox*value="#{subtipo.seleccionado}" id="checks" disabled="#{VDBean.modoEdicion == false}" onchange="call some javascript code" >

Re: MyFaces CODI and Weld 1.0.1

2011-03-09 Thread Christian Kaltepoth
Hi Mark, thank you very much for your response. I've tried your suggestion and it worked great. I didn't knew about the BDA part in the spec and assumed that CODI's beans.xml would globally enable the interceptor. You are right! This BDA stuff is crap! :-) @Matthias: Nice workaround! ;) Thanks

Re: MyFaces CODI and Weld 1.0.1

2011-03-09 Thread Matthias Wessendorf
Try to "unzip" the jar into web-inf/classes and add its beans.xml content to the one in web-inf. This was suggested to my by the glassfish team... :-) sent from my Android phone On Mar 9, 2011 1:31 PM, "Christian Kaltepoth" wrote: > Hey all, > > we are currently developing an application based o

Re: MyFaces CODI and Weld 1.0.1

2011-03-09 Thread Mark Struberg
Hi Christian! The major difference between Weld and OpenWebBeans in the interceptor area is that Weld strictly follows the "Bean Definition Archive" (BDA) part of the spec. This got added pretty late (in the last few weeks before the spec went final and imo is complete crap [1] ;) In Weld you

MyFaces CODI and Weld 1.0.1

2011-03-09 Thread Christian Kaltepoth
Hey all, we are currently developing an application based on Weld 1.0.1 and MyFaces CODI. Unfortunately we have some strange problems regarding CODI's @Transactional not always being applied correctly. It seems to be completely ignored in some situations. I've reproduced this problem with Matthia