Nevermind, I figured it out with the help from this page. http://wiki.apache.org/myfaces/Use_Facelets_with_Tomahawk I would think since the JAR is in the classpath that it should be able to find it from the TLD in the JAR.
Shawn -----Original Message----- From: Garner, Shawn To: '[email protected] ' Sent: 3/4/2006 11:03 PM Subject: [HELP] t:dataScroller I'm having trouble getting the t:dataScroller to work. I'm using facelets/myfaces/jboss. I don't get anything displayed for the datascroller. The data for my h:dataTable displays fine. I've looked at the examples I could find and can't see what I'm doing wrong. Any help? My code is below. <h:dataTable id="productsTable" value="#{productBean.productList}" var="product" rows="9"> <h:column> #{product.shortName} </h:column> <h:column > #{product.shortDescription} </h:column> <h:column> <h:commandLink action="#{productBean.details}"> More Information on #{product.shortName}. </h:commandLink> </h:column> </h:dataTable> <h:panelGrid columns="1"> <t:dataScroller for="productsTable" id="scroll_1" fastStep="18" pageIndexVar="indexVar" pageCountVar="countVar"> <f:facet name="first"> 1st </f:facet> <f:facet name="previous"> < </f:facet> <f:facet name="next"> > </f:facet> <f:facet name="last"> last </f:facet> <f:facet name="fastforward"> >> </f:facet> <f:facet name="fastrewind"> << </f:facet> </t:dataScroller> </h:panelGrid> ************************************************************************ **** This email may contain confidential material. If you were not an intended recipient, Please notify the sender and delete all copies. We may monitor email to and from our network. ************************************************************************ **** **************************************************************************** This email may contain confidential material. If you were not an intended recipient, Please notify the sender and delete all copies. We may monitor email to and from our network. ****************************************************************************

