>
>
> I assume there is a relation between polls and featured_poll? If so
> you should be able to get them by possibly increasing your recursive
> to 2 I believe. That or $this->Club->Poll->FeaturedPoll->find('all')
>
>
Thanks thatsgreat2345 the $this->Club->Poll->FeaturedPoll->find('all')
worked, I couldn't set recursion level to 2 as it was way too slow.
Ok so now I got the FeaturedPollID, I would like to know how to set the
detault POLL radio button to that featured poll ID.
In the controller I have:
$allpolls = $this->Club->Poll->find('all', array('conditions' =>
array('active' => 1), 'fields' => array('id', 'question'), 'order' =>
'question asc'));
which gets all the poll options. In the view I see you normally set the
field values as follows:
echo $form->input('poll_id', array('label' => 'Poll: '));
I assume this sets the default value from the DB works obviously with edit
obviously as the value is set in the DB, but how do I set that featured POLL
ID to that variable?
Thanks again.
--
View this message in context: http://www.nabble.com/accessing-different-models-in-controller-tp20729653p20730339.html
Sent from the CakePHP mailing list archive at Nabble.com.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "CakePHP" group.
To post to this group, send email to cake-php@googlegroups.com
To unsubscribe from this group, send email to cake-php+unsubscribe@googlegroups.com
For more options, visit this group at http://groups.google.com/group/cake-php?hl=en
-~----------~----~----~----~------~----~------~--~---
No comments:
Post a Comment