This content has been marked as final.
Show 2 replies
-
1. Re: aj4:keepAlive is not working properly for me
danielk Nov 2, 2008 7:30 PM (in response to fmateo)Perhaps i am wrong, but can it be that you should only use defined beans? Your beanName does not compare to a bean, because you point to a field of a bean. If "Must be literal" is what i think, you only can use #{LITERAL} where LITERAL is one of your configured beans from faces-config.xml. So 2 possibilities:
1.) Just keep the whole productoBean for your ajax request:<a4j:keepAlive beanName="#{productoBean}">
2.) Also define idProducto as another bean and use it instead of productoBean:<a4j:keepAlive beanName="#{idProducto}">
Bed is waiting, good night :) -
2. aj4:keepAlive is not working properly for me
jobmathew Apr 1, 2011 4:44 PM (in response to danielk)Try it with out EL exression
<a4j:keepAlive beanName="productoBean.idProducto">