I *think* Cake does some inflections and expects the variable to be 
'finishedProducts'. So...

> $this->set('finishedProducts', 
> $this->Configuration-FinishedProduct->find('list'));

Jeremy Burns
[email protected]
On 11 May 2010, at 22:25, Stefano Martins wrote:

> Hey folks,
> 
> I have two controllers: ConfigurationsController and
> FinishedProductsController. Here's the code for the
> ConfigurationsController:
> 
> <?php
>       class ConfigurationsController extends AppController
>       {
>               public function add()
>               {
>                       if(empty($this->data))
>                       {
>                               $this->set('finished_products', 
> $this->Configuration-
>> FinishedProduct->find('list'));
>                       }
>               }
>       }
> ?>
> 
> In the view, the select is showing up right, but its not populated
> with the finished products. Here's the code for the view:
> 
> <?php
>       echo $form->create('Configuration');
>       echo $form->input('finished_product_id');
>       echo $form->input('ammount_of_items');
>       echo $form->end('Próximo passo');
> ?>
> 
> Can someone help me out?
> 
> 
> Thanks!
> 
> Check out the new CakePHP Questions site http://cakeqs.org and help others 
> with their CakePHP related questions.
> 
> 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

Check out the new CakePHP Questions site http://cakeqs.org and help others with 
their CakePHP related questions.

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

Reply via email to