1 Reply Latest reply on Nov 3, 2009 11:58 AM by bitec

    jboss-el setPropertyActionListener problem

    anzap

      Hi all,


      first time posting here so please bear with me.


      I am trying to use jboss-el in a project i am working on as explained in this article.


      My Link


      I find the function parameters feature really helpful. The problem is that once i replace the default el implementation with the jboss one i found problems using setPropertyActionListener tags.


      Specifically this call


      <f:setPropertyActionListener value="false" target="#{someBean.boolVal}" />



      throws an exception can't set property of boolVal to false.


      On the other hand this


      <f:setPropertyActionListener value="#{false}" target="#{someBean.boolVal}" />



      seems to work ok.


      Does anyone have any suggestions regarding this issue?


      FYI i am deploying to weblogic 10.3 and my jsf implementation is mojarra v. 1.2.12


      In case any more information is needed please ask me.


      Thank you.

        • 1. Re: jboss-el setPropertyActionListener problem
          bitec

          The same problem, I had the working JSF-Richfaces application, integrated SEAM for the sake of extended EL and method parameters - but setPropertyActionListener with boolean parameter broke.. Seems BeanELResolver invokes the method with String parameter false instead of false boolean type.