I am using cakephp 2.0 and trying to create ajax paging which i cant in the documentation i read that passing this
$this->Paginator->options(
Actually, there are example in the book here. Look for the Ajax Pagination section. Make sure to follow all of the directions and it'll work.
You need:
$this->Js->writeBuffer()
) in your view/layout. It'd suggest putting this in your view unless you load the Js helper in your AppController
because otherwise $this->Js
won't be defined.The example in the book uses jQuery and works.