I am trying to convert a 1.5 component to a 1.7 one. SO far everything works except pagination.
What happens is:
- clicking the menu option "guides" in component-menu brings up an overview page.
- clicking on a button called "guide-list" brings up a list of guides and the pagination-bar at the bottom. But whenever I click anything on that pagination-bar I am brought back to the overview page.
What i have in view.html.php:
function display($tpl = null) {
$items = $this->get('Items');
$pagination = $this->get('Pagination');
$this->state = $this->get("State");
if (count($errors = $this->get('Errors'))) {
JError::raiseError(500, implode('<br />', $errors));
return false;
}
$this->items = $items;
$this->children = $items;
$this->pagination = $pagination;
$this->addToolBar();
parent::display($tpl);
}
and in the default.php template I simply put:
<?php echo $this->pagination->getListFooter(); ?>
according to all the tutorials and articles I read about 1.6 and 1.7 this should work out of the box. So either I made a mistake or there is more to pagination that this?
ADDITIONAL: While I was working on another aspect I read somewhere that in the template the form attribute name should not be used. So I changed:
<form action="<?php echo JRoute::_('index.php?option=com_guides'); ?>" method="post" name="adminForm">
into:
<form action="<?php echo JRoute::_('index.php?option=com_guides'); ?>" method="post" id="adminForm">
Oddly enough, this changes the behaviour of the pagination links. The old name-attribute takes me back to the overvioew page while the new id-attribute keeps me on the same page. This problem is driving me crazy.