1 Reply Latest reply on Feb 1, 2008 2:50 PM by nbelaevski

    Exception using contextMenu and date parameter

    jdestef

      Hi,

      I'm using 3.1.4 and jboss 4.2.1. When I try to pass a parameter that is of type date to the contextMenu/contentMenuItem I get an exception indicating that the classloader could not find the common-beanutils.jar.

      The code looks as follows:

      <rich:contextMenu attached="false" id="menu" submitMode="ajax">
       <rich:menuItem ajaxSingle="true">
       <b>{acct} {vdt}</b>
       </rich:menuItem>
      </rich:contextMenu>
      


      And within my table control:

      <rich:componentControl event="onRowClick" for="menu" operation="show">
       <f:param value="#{v.accntNum}" name="acct"/>
       <f:param value="#{v.visitDt}" name="vdt"/>
      </rich:componentControl>
      


      When I remove the v.visitDt as a parameter then there are no issues.

      Tx