Bonjour,
je souhaiterai modifier l'id d'un formulaire créé par cake.

<?php echo $this->Form->create('Comment', array('url' => array('controller' => 'comments', 'action' => 'add','class' => 'form-horizontal'))); ?>

Comment puis je faire pour y mettre l'id 'mycoolform' à ce formulaire?

Merci

5 réponses


Maenhyr
Réponse acceptée

Je pense qu'il y a une parenthèse mal placée. Essaye ça :

<?php echo $this->Form->create(
    'Comment', array(
        'url' => array('controller' => 'comments', 'action' => 'add'),
        'class' => 'form-horizontal',
        'id' => 'mycoolform')); ?>

Si tu fais comme ça ça fonctionne pas ?

<?php echo $this->Form->create('Comment', array('url' => array('controller' => 'comments', 'action' => 'add','class' => 'form-horizontal','id' => 'mycoolform'))); ?>
duffJohn
Auteur

Non :s j'ai testé.

duffJohn
Auteur

Je demande ca car j'essai d'intégrer ce captcha https://github.com/josscrowcroft/MotionCAPTCHA

duffJohn
Auteur

Ouais super merci de ton coup de main prbaron