CodeIgniter-MY_Model icon indicating copy to clipboard operation
CodeIgniter-MY_Model copied to clipboard

How do you select what to chose as sort order, and direction of pagination?

Open hossj opened this issue 9 years ago • 4 comments

I was wondering if we can select what to sort by and the sort order of pagination? Thanks.

hossj avatar May 30 '16 15:05 hossj

I have added in the paginate function 2 more variable $sort_by and $order_by which resolves this problem. Let me know if of interest and will send to you.

hossj avatar May 30 '16 18:05 hossj

don't you have the order_by() method?

avenirer avatar May 31 '16 05:05 avenirer

the order_by() function does not work.

$query = $this->user_model->order_by("user_id","DESC");
$query->paginate(10, $query->count->rows());

it still display ASC order

ardianta avatar Dec 01 '16 02:12 ardianta

I tried it too, and it's not working

andrehardika avatar Dec 29 '16 10:12 andrehardika