to set the title attribute, you can attach an AttributeModifier
to the links by overriding AjaxPagingNavigator#newPagingNavigationLink etc.

e.g.

    new AjaxPagingNavigator("foo", pageable) {
      @Override
      protected Link newPagingNavigationLink(String id, IPageable
pageable, int pageNumber) {
        Link link = super.newPagingNavigationLink(id, pageable, pageNumber);
        link.add(new AttributeModifier("title", true, new Model("the title")));
        return link;
      }
    };

of course you also have to do it for the other links in the navigator
and the AjaxPagingNavigation

On Thu, Apr 16, 2009 at 12:37 AM, tubin gen <fachh...@gmail.com> wrote:
> My application should be 508 and was wondering if   using
> AjaxPagingNavigator and AjaxFallbackDefaultDataTable will they cause
> issue with 508 , because the pagining navigator provides links to
> pages  and can I set the tittle attribute to the  anchor   created by
> navigator ?
> and  the sortable column in  AjaxFallbackDefaultDataTable
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
> For additional commands, e-mail: users-h...@wicket.apache.org
>
>

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org

Reply via email to