Hi,

In XWiki 1.7 the following code was created; it creates a html table with
links generated by #pagedViewLinks()
It now displays the #pagedViewLinks() but no longer the links
What is the current way of doing this (migrated to XWiki 3.5.1)?

  <table id="cdlsTable"
      class="grid sortable filterable doOddEven"
      cellpadding="0"
      cellspacing="0"
      border="0">
  <tr class="sortHeader">
  <th>$msg.get('Subject')</th>
  <th>$msg.get('lst_modified')</th>
  </tr>
  #foreach ($faq in $faqlist)
    <tr>
    #set ($faqdoc = $xwiki.getDocument($faq))
    #set ($faqobjs =
$faqdoc.getObjects("CdlsatdCode.CdLS_ATD_PublicFAQClass"))
    #foreach ($faqobj in $faqobjs)
      #if($faqobj.language == $lang)
        <td>[[$faqobj.subject>>$faq]]</td>
        <td>$xwiki.formatDate($faqdoc.ContentUpdateDate, "dd/MM/yyyy")</td>
      #end
    #end
    </tr>
  #end
  </table>
  #pagedViewLinks($itemsPerPage $totalPages $crtPageNumber)
_______________________________________________
users mailing list
users@xwiki.org
http://lists.xwiki.org/mailman/listinfo/users

Reply via email to