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 cake-php@googlegroups.com
To unsubscribe from this group, send email to
cake-php+unsubscr...@googlegroups.com For more options, visit this group at 
http://groups.google.com/group/cake-php?hl=en

Reply via email to