0

テーブル内の複数のレコードを更新するフォームがあり、正常に動作しています。ajax経由で新しいレコードを追加できるようにしたいのですが、ajax経由で以下をロードしていますが、ブラックホールになっています

<?
$uuid = String::uuid();
?>

<tr>
    <?=$this->Form->input('Attachment.'.$uuid.'.id',array());?>
    <?$this->Form->unlockField('Attachment.'.$uuid.'.id');?>
    <td><?=$this->Form->input('Attachment.'.$uuid.'.title',array('label'=>false,'style'=>'float:left;'));?></td>
    <?$this->Form->unlockField('Attachment.'.$uuid.'.title');?>
    <td><?=$this->Form->input('Attachment.'.$uuid.'.url',array('label'=>false,'style'=>'float:left;'));?> <button onclick="return false;" class="btn attachment_select_file" style="float:left;"><i class="icon-folder-open"></button></i></td>
    <?$this->Form->unlockField('Attachment.'.$uuid.'.url');?>
    <td><button class="btn"><i class="icon-trash icon-large"></i></button></td>
</tr>

誰がこれを引き起こしているのか考えていますか。

ありがとう

4

1 に答える 1