5 Replies Latest reply on Jan 19, 2011 10:28 PM by juergen.zimmermann

    M5: Unhandled by MetaTagHandler for type org.richfaces...ComponentControlBehavior

    juergen.zimmermann

      I'm using the M5 snapshot as of https://repository.jboss.org/nexus/content/groups/staging/org/richfaces/richfaces-distribution/4.0.0.20101226-M5/

       

      Now I'm trying to use the new rich:popup, but get this error message:

       

      [javax.enterprise.resource.webcontainer.jsf.facelets.tag.meta] /kundenverwaltung/listKunden.xhtml @129,80 id="openControl" Unhandled by MetaTagHandler for type org.richfaces.component.behavior.ComponentControlBehavior

       

       

      The relevant part of the jsf page looks as follows. Any hint is appreciated.

      ...

      <rich:column id="popupColumn">
         <h:outputLink id="openPopup" value="#">
            <h:graphicImage id="detailsIconPopup" name="details2.gif" library="images"
               alt="#{msgKv['listKunden.detailsButtonModalPanelAlt']}"/>
            <rich:componentControl id="openControl" target="popup" operation="show"/>
         </h:outputLink>

         <rich:popupPanel id="popup" modal="false" autosized="true" resizeable="false">
            <f:facet name="header">
               <h:outputFormat id="modalTitle" value="#{msgKv['showKundeDetailsModalPanel.title']}">
                  <f:param id="modalTitleId" value="#{kunde.id}"/>
               </h:outputFormat>
            </f:facet>
            <f:facet name="controls">
               <h:outputLink id="closeControl" value="#"
                             onclick="#{rich:component('popup')}.hide(); return false;">
                  <h:graphicImage id="closeIcon" name="close.png" library="images" style="cursor:pointer"
                                  alt="#{msgKv['showKundeDetailsModalPanel.close.button']}"/>
               </h:outputLink>
            </f:facet>
         </rich:popupPanel>
      </rich:column>