My component's list model is no longer providing a $limiststart or $start to the model using JModelList
You can see if working at
www.joomlabiblestudy.org -
http://www.joomlabiblestudy.org/jbsexamples/studies-list.htmlTry to paginate through the list - in the link at the bottom the correct $start value is displayed but ignored in the model. This also happens if a filter is applied.
In the model I have this code:
$value = JRequest::getUInt('start', 0);
$this->setState('list.start', $value);
$value correctly gets the $limitstart or $start from JRequest, but when I dump $this->state from the view.html.php $start is always at 0 and the list does not ever go beyond page 1 of the results.
Am I forgetting something?
If you need more code I can supply in response.
Tom