Re: a4j:support and a4j:actionparam

2011-03-10 Thread daniel ccss
Anyone? On Wed, Mar 9, 2011 at 5:06 PM, daniel ccss danielcc...@gmail.com wrote: Thanks Myke but I'm using myfaces tomahawk, not richfaces. I also tried a more simple code: In the JSP: h:commandButton value=seleccionar

Re: a4j:support and a4j:actionparam

2011-03-10 Thread Mike Kienenberger
I doubt it matters whether you are using tomahawk or richfaces or something else. Have you tried f:setPropertyActionListener target=#{VDBean.foo} value=true / yet? On Thu, Mar 10, 2011 at 8:05 AM, daniel ccss danielcc...@gmail.com wrote: Anyone? On Wed, Mar 9, 2011 at 5:06 PM, daniel ccss

Re: a4j:support and a4j:actionparam

2011-03-10 Thread daniel ccss
Yes but I donĀ“t know if is the JSF version I'm using or something else because I get a compilation error that says: Error(461): f:setPropertyActionListener no es una etiqueta registrada en ese espacio de nombres. *In english: Error(461): f:setPropertyActionListener is not a registered tag in

Re: a4j:support and a4j:actionparam

2011-03-10 Thread Mike Kienenberger
You need to put something similar to xmlns:f=http://java.sun.com/jsf/core; at the top of your template file. I don't remember the exact syntax for that under jsp -- I use facelets for everything. However, I would think you would get the same error for f:param and f:attribute. On Thu, Mar

Re: a4j:support and a4j:actionparam

2011-03-10 Thread daniel ccss
Thanks mike, I already have it: %@ taglib uri=http://java.sun.com/jsf/core; prefix=f% in fact I use other tags with the f: prefix, but f:setPropertyActionListener do not appears. On Thu, Mar 10, 2011 at 11:22 AM, Mike Kienenberger mkien...@gmail.comwrote: You need to put something similar to

a4j:support and a4j:actionparam

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: a4j:support and a4j:actionparam

2011-03-09 Thread Mike Kienenberger
I have not used a4j:actionparam, but under richfaces, I have successfully used a4j:support f:setPropertyActionListener target=#{target1} value=#{value1} / f:setPropertyActionListener target=#{target2} value=#{value2} / /a4j:support Perhaps that will do what you need. On Wed, Mar 9,

Re: a4j:support and a4j:actionparam

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: h:commandButton value=seleccionar actionListener=#{VisitaDomiciliarBean.seleccionar} id=seleccionarLink style=display:none *f:param