21491 Posts in 5783 Topics by 2622 members
|
Page:
1
|
Go to End | |
| Author | Topic: | 186 Views |
-
Pagination

9 December 2011 at 5:55pm
Hi,
1.I want to add pagination to my "Recipie page" which contains recipie titles.
2.Can i change textbox to textarea in admin side.
pls some body help me.....
Regards
Arun -
Re: Pagination

9 December 2011 at 9:02pm
Hi, Maybe sharing the code can help us help you ;),
anyway, here is something may help:public function JQueryGalleryPagination() {
$ItemsPerPage = $this->ItemsPerPage ;
$images = $this->JQueryGalleryItems(null, 'SortOrder');
$start = (isset($_GET['start'])) ? (int)$_GET['start'] : 0;
$page = $images->getRange($start ,$ItemsPerPage);
$page->setPageLimits($start,$ItemsPerPage, $images->count());
return $page;
}I used this for my gallery, it should work the same for you (with changing the Variable names & fields names to what you need)
GL
| 186 Views | ||
|
Page:
1
|
Go to Top |


