Can anybody give a best example of ajax pagination in cakephp 2.x.
This should include data filtering also.
I have read cakephp manual but could not understand much.
Can anybody give a best example of ajax pagination in cakephp 2.x.
This should include data filtering also.
I have read cakephp manual but could not understand much.
After a long search and work, i have developed a solution which is as follows:
Client Side:
Server Side:
Set PaginatorHelper options as mentioned below:
$this->paginator->options(array(
) );
'url' => $this->passedArgs
To post back all named arguments, when pagination links are clicked.'data'=>http_build_query($this->request->data)
To post back all post data, when pagination links are clicked.