Quantcast
Channel: 技術メモ –技術屋ネオビットの覚え書き
Viewing all articles
Browse latest Browse all 25

CakePHPのFormヘルパーでdivが邪魔

$
0
0

CakePHPのフォームヘルパー使ってみたけど、余計な事ばかりしてくれて困る。
勝手にdivで囲むな!labelを付けるな!checkboxにhiddenを足すな!
と思ってもいちいち$this->Form->inputのところでfalse指定するのも面倒だと思っていたら、Form->createでdefault値を指定できるらしい。

Form->create(~ ‘inputDefaults’=>array(‘label’=>false, ‘div’=>false, ‘hiddenField’=>false)); ?>

これですっきり!


Viewing all articles
Browse latest Browse all 25

Trending Articles