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 <[email protected]> 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: [email protected]
> For additional commands, e-mail: [email protected]
>
>
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]