cancel
Showing results for 
Search instead for 
Did you mean: 

Problem with page navigation in links page

aheaven
Champ in-the-making
Champ in-the-making
Hey everyone !

   Still very happy with our Alfresco Share implementation ! We have been opening it to more and more users from the company in the last few days and everybody is happy with it !

   We have a slight problem with the Links page, which currently doesn't do anything when we try to navigate with the pages buttons… So if we have a lot of links in a site, the only way to see them all is through the Links dashlet… Does anyone know about this problem ?

Thanks for the help !

Steve
5 REPLIES 5

mikeh
Star Contributor
Star Contributor
Thanks - that's a bug in the Links component. https://issues.alfresco.com/jira/browse/ETHREEOH-1661

The fix is to find links.js in components / links and add the following line just after the
var handlePagination = function Links_handlePagination (state, dt)
statement block:
this.widgets.paginator.subscribe("changeRequest", handlePagination);

On SVN HEAD, this is around line 526.

Thanks,
Mike

aheaven
Champ in-the-making
Champ in-the-making
Thanks Mike !

   It does help, now the Next page works, but it doesn't refresh the current page and the other page navigation informations…

Steve

mikeh
Star Contributor
Star Contributor
Whoops - sorry, one more update I forgot about to match a change YUI made between 2.5.2 and 2.6.0.

Same file, line 276
paginationRecordOffset: 'startIndex',
change it to:
recordOffset: 'startIndex',
Thanks,
Mike

aheaven
Champ in-the-making
Champ in-the-making
Thanks that totally solved the problem !

Another great example of the alfresco community !

mikeh
Star Contributor
Star Contributor
Thanks for the feedback!

Mike