> What I see in the scaffolded form is a textbox to enter the vendor
> type. I should mention that for lookup tables, I prefer human readable
> id values, so the "id" field is defined as a varchar(255). I don't
> know whether that makes any difference, but it's a deviation from the
> convention, so I thought I'd mention it.
>
> Thanks.

I'm by no means an expert, but this is more than likely the issue.
Can you try altering your id fields to INT(11) to see if that resolves
the issue?  In scaffolded views the automagic form elements are used
at their most basic form and as such the non-standard field types are
likely throwing it off.

For example if I have an 'is_active' field with a type of TINYINT(4) I
get a text box in my forms, but as soon as make it TINYINT(1) it turns
into a checkbox.



--~--~---------~--~----~------------~-------~--~----~
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