// Convince the model to sort on date, descending and filter on my tickets
$this->getThisModel()
->enabled(1)
->public('')
->category(0)
->categories($categories)
->status('O,P')
->filterNewest(1)
->filter_order_Dir('DESC')
// We have to explicitly fecth data from the request, otherwise when we try to get to the first page
// (no param), the model will fetch it from the session, getting us sutcked in the current page
->limitstart($this->input->getInt('limitstart', 0))
;
Thanks for a great component!