Re: Problem with Pagination of search results

2013-04-30 Thread Lilit
That's perfect! thanks again! -- View this message in context: http://cakephp.1045679.n5.nabble.com/Problem-with-Pagination-of-search-results-tp5714685p5714707.html Sent from the CakePHP mailing list archive at Nabble.com. -- Like Us on FaceBook https://www.facebook.com/CakePHP Find

Re: Problem with Pagination of search results

2013-04-29 Thread Reuben
t; > I only had $this->Paginator->numbers() in view. > I'll try to make it via GET.. but after knowing how to use with sessions > :) > Thanks for your reply ! > > > > -- > View this message in context: > http://cakephp.1045679.n5.nabble.com/Proble

Re: Problem with Pagination of search results

2013-04-29 Thread Lilit
I only had $this->Paginator->numbers() in view. I'll try to make it via GET.. but after knowing how to use with sessions :) Thanks for your reply ! -- View this message in context: http://cakephp.1045679.n5.nabble.com/Problem-with-Pagination-of-search-results-tp5714685p5714704.htm

Re: Problem with Pagination of search results

2013-04-28 Thread Lilit
I see nobody knows... -- View this message in context: http://cakephp.1045679.n5.nabble.com/Problem-with-Pagination-of-search-results-tp5714685p5714690.html Sent from the CakePHP mailing list archive at Nabble.com. -- Like Us on FaceBook https://www.facebook.com/CakePHP Find us on Twitter

Re: Interesting problem with pagination

2012-11-15 Thread char
No, sorry it was my first time using this new UI and the post got sent prematurely after I pressed the spacebar a few times. See https://groups.google.com/forum/?hl=en&fromgroups=#!topic/cake-php/pgSyMnsrEa4 On Wednesday, November 14, 2012 8:10:38 PM UTC+11, polutan polution at all wrote: > >

Re: Interesting problem with pagination

2012-11-14 Thread polutan
your *image_portrait* not returned? is that you mean? 2012/11/14 char > Hi all, > > I've got a problem which I hope is interesting to everyone. > > Got a generic table, in which each item has an image and an attribute that > says wether the orientation is portriat or landscape. > > id int(10) u

Interesting problem with pagination

2012-11-13 Thread char
Hi all, I've got a problem which I hope is interesting to everyone. Got a generic table, in which each item has an image and an attribute that says wether the orientation is portriat or landscape. id int(10) unsigned NOT NULL namevarchar(255) NULL image varchar(255) NULL image_portrait tinyint

Re: Problem with Pagination and Routes

2012-05-30 Thread Glauco Custódio
Thank you.It will solve my problem. But, just for knowledge, what I need to do for pagination with name params works (see below)? ** *http://myproject/comparacao/6315/Lata-DVD-O-Fantastico-Jaspion-Vol-1-5-DVDs

Re: Problem with Pagination and Routes

2012-05-30 Thread Salines
See here https://groups.google.com/d/topic/cake-php/DS1rF9RiKBk/discussion -- Our newest site for the community: CakePHP Video Tutorials http://tv.cakephp.org Check out the new CakePHP Questions site http://ask.cakephp.org and help others with their CakePHP related questions. To unsubscribe

Problem with Pagination and Routes

2012-05-30 Thread Glauco Custódio
Hi guys, I have this route: Router::connect('/comparacao/:id/:slug', array('controller' => 'products', 'action' => 'comparison'), array('pass' => array('id', 'slug')) ); When I access below url, it work successful

Re: Problem with pagination 2.1.0

2012-01-18 Thread Marin Marušić
t should be > > second variable name should not be the same as array you are going through > > -- > Lep pozdrav, Tilen Majerlehttp://majerle.eu > > 2012/1/17 Marin Marušić > > > > > > > > > Hi, > > > I'm having a problem with pagination f

Re: Problem with pagination 2.1.0

2012-01-17 Thread Tilen Majerle
check your view file it should be second variable name should not be the same as array you are going through -- Lep pozdrav, Tilen Majerle http://majerle.eu 2012/1/17 Marin Marušić > Hi, > > I'm having a problem with pagination from an external controller. > >

Problem with pagination 2.1.0

2012-01-17 Thread Marin Marušić
Hi, I'm having a problem with pagination from an external controller. So I have a view in PagesController that should get paginated content from NewsController, and this works. I get paginated content, but when I do $this->Paginate->numbers(); I need numbers to show, because I need

Re: Problem with Pagination.

2009-08-17 Thread Jorge Horacio Cué Cantú
Hello, Thanks problem solved! It was a problem with the PuchaseOrders hasMany Equipment configuration: 1: The PuchaseOrders hasMany Equipment was configured in the belongsTo part inside the PuchaseOrders model. 2: The foreignKey element in the PuchaseOrder hasMany Equipment was on a wr

Re: Problem with Pagination.

2009-08-17 Thread brian
Odd. Can you set debug = 2 and post Cake's query? You don't have any afterFind() stuff happening? 2009/8/17 Jorge Horacio Cué Cantú : > Hello, > > I am having a strange behavior using pagination with Cake 1.2.3.8166 and > Cake 1.2.4.8284 > > I defined the $paginate variable in the controller as:

Problem with Pagination.

2009-08-17 Thread Jorge Horacio Cué Cantú
Hello, I am having a strange behavior using pagination with Cake 1.2.3.8166 and Cake 1.2.4.8284 I defined the $paginate variable in the controller as: var $paginate = array( 'PurchaseOrder' => array( 'limit' => 20, 'conditions' => array('PurchaseOrder.status_i

problem with pagination

2007-02-23 Thread akari
hi I am having some problems with the pagination display. I don't know what went wrong.Well the records are showing up correctly according to the criteria,but their no is less than the actual one.For eg if the correct no of records is 25 it is showing only up to 20.However when I change the show v

Re: Problem with pagination in 1.2

2007-01-23 Thread Jon M.
Awesome thanks nate! I am having one problem though after I add the code from that post. I am coming up with this --> Warning: Invalid argument supplied for foreach() in /home/path/app/views/products/index.ctp on line 10 This is what I have on line 10 --> ? php foreach ($products as $product):

Re: Problem with pagination in 1.2

2007-01-17 Thread nate
http://cake.insertdesignhere.com/posts/view/16 --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Cake PHP" group. To post to this group, send email to cake-php@googlegroups.com To unsubscribe from this group, send em

Problem with pagination in 1.2

2007-01-17 Thread Jon M.
I am having a hard time figuring out how to use pagination in my cakephp app. I suppose I don't understand what the Dec. 25th Announcement explained about the pagination feature. Can anyone give me an example or clear things up for me please? Thanks! --~--~-~--~~~--