How can you modify a Codeigniter default pagination to follow
----viewMore--- link style when loading for more record - AJAX way.
The thing is how do you make the div so auto expanding that like you handle a 10,000 record at a time.
How can you modify a Codeigniter default pagination to follow
----viewMore--- link style when loading for more record - AJAX way.
The thing is how do you make the div so auto expanding that like you handle a 10,000 record at a time.
Try this
Make two Hidden Input in view
Ajax call
In your controller call model
write query in model with offset and limit
You could use something like:
Example1
This is in core php, but you can understand the data flow and can make it then for MVC)
Also you can check this
Example
(Replace scroll event with button clicks)