2 Replies Latest reply on Jan 23, 2012 6:42 PM by bleathem

    how to use a4j and Richfaces on Seam3?

    sankarp
      Hi,

      I have tried a:repert tag on xhtml file.It's not working.
      any specific jar i need to use on seam 3.

      <!DOCTYPE composition PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
          "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

      <ui:composition xmlns="http://www.w3.org/1999/xhtml"
           xmlns:ui="http://java.sun.com/jsf/facelets"
           xmlns:f="http://java.sun.com/jsf/core"
           xmlns:h="http://java.sun.com/jsf/html"
           xmlns:s="http://jboss.org/seam/faces"
           xmlns:p="http://primefaces.org/ui"
           xmlns:a="http://richfaces.org/a4j"
           xmlns:rich="http://richfaces.org/rich"
           template="../layout/menuTemplate.xhtml">

           <ui:define name="body">

                <h:form id="formTest" name="aboutu" enctype="multipart/form-data">
                     <table width="100%" border="0" align="center" cellpadding="0"
                               cellspacing="0">
                               <tr>
                                    <td align="center" valign="middle" style="padding-top: 3px">
                                    <table width="100%" align="left" cellpadding="0" cellspacing="0"
                                         border="0">
                                         <tr>
                                         <a:repeat id="dataMap"
                                              value="#{dataMapList}" rowKeyVar="rowId">
                                              <ui:fragment rendered="#{(pageNumber-1) != rowId}">
                                                  <td width="30" align="center">
                                                   <ui:fragment>
                                                   #{dataMapList.get(rowId).pageTitle}
                                                   </ui:fragment> 
                                                  </td>
                                              </ui:fragment>
                                         </a:repeat>
                                         </tr>
                                    </table>
                                    </td>
                               </tr>
                          </table>                    
                </h:form>
           </ui:define>
      </ui:composition>

      I am getting below Warning,
      Warning: This page calls for XML namespace http://richfaces.org/a4j declared with prefix a but no taglibrary exists for that namespace.

      Thanks,
      -San