I am posting this in case somebody else runs into this issue.
My problem was that the form helpers were just giving me standard text
boxes when they should be giving me check boxes or a different type or
input field. As a temporary fix I forced the correct type by using the
"type" option: echo $form->input('Title.title', array
('type'=>'text'));.
The cause of the problem ended up being that it there were multiple
instances of "Title.title" due to my associations and Cake didn't know
what to do. So I fixed it by changing it to: echo $form->input
('Promotion.Title.title');.
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---