You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@wicket.apache.org by tubin gen <fa...@gmail.com> on 2009/04/16 00:37:08 UTC

AjaxPagingNavigator and 508

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-unsubscribe@wicket.apache.org
For additional commands, e-mail: users-help@wicket.apache.org


Re: AjaxPagingNavigator and 508

Posted by Jonas <ba...@gmail.com>.
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 <fa...@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-unsubscribe@wicket.apache.org
> For additional commands, e-mail: users-help@wicket.apache.org
>
>

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