Try declaring it as

$html->input('Field/name][',array('id'=>'dummy_id'));

Notice the reverse '][' on the field name. On the HTML source view it
will appear as

name='data[Field][name][]'

You also need to assign a different id for the htmlAttribute parameter
otherwise you will get HTML validation warning (from tidy and not from
cake itself) because cake will assign one to it as

id='FieldName]['

which is an invalid id attribute.


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Cake 
PHP" group.
To post to this group, send email to cake-php@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at http://groups.google.com/group/cake-php
-~----------~----~----~----~------~----~------~--~---

Reply via email to