私はこれを私の見解に持っています
<?=$this->Form->create('Company')?>
<?=$this->Form->input('Company.company_category_id')?>
<?=$this->Form->input('Company.county')?>
<?=$this->Form->input('Company.name')?>
// Here i intend to insert all model fields in order to export them
<?=$this->Form->input('ExportField.company_category_id', array('label' => 'Categorie', 'type' => 'checkbox', 'options' => null))?>
// ...
<?=$this->Form->end('Submit')?>
私の問題は、ヘルパーが "autoMagically" であるということです。ExportField.{field} がフォームのメイン モデル フィールド (この場合は Company) であると見なされます。
これを解決するための回避策を使用できますが、このアプローチを維持することを強制できるかどうかを知りたいです。
ありがとう!