Please teach me how to add multi page to userlist?
I have a function that returns the list of all users!
$tpl = OW::getPluginManager()->getPlugin("buscarpareja")->getCtrlViewDir() . "list_index.html";
$this->setTemplate($tpl);
$page = (!empty($_GET['page']) && intval($_GET['page']) > 0 ) ? $_GET['page'] : 1;
$perPage = 20;
$first = ($page - 1) * $perPage;
$count = $perPage;
$dtoList = $service->findUserListByIdList($idList);
$listCount = $service->findUserCountByIdList($idList);
$listCmp = new BUSCARPAREJA_UserList($dtoList, $listCount, 20);
$this->addComponent('listCmp', $listCmp);
The multi page links show at the bottom but they show the same users on all pages!