hi,
i have to change paginate order query based on user selection on
combo box, How to solve? .This my coding...
In controller,
.......
var $paginate=array('limit'=>10,'page'=>1,'order'=>array
('Alert.created'=>'DESC'));
function index() {
$this->Alert->recursive = 0;
$this->set('alerts', $this->paginate());
}.............
In index.ctp :
...........
select id='order' onchange='...' >
<option value='0' selected >Sort by Date Descending</option>
<option value='1'>Sort by Date Ascending</option>
<option value='2'>Sort by Category/Date Descending</option>
<option value='3'>Sort by Title/Date Descending</option>
</select>
....................
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"CakePHP" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/cake-php?hl=en
-~----------~----~----~----~------~----~------~--~---