CakePHP3 BootstrapUI에서 col-md-xx 변경
하고 싶은 일
BootstrapUI 의 FormHelper::control() 를 사용해 표시되는 html 의 col-md-6
를 col-md-8
변경하고 싶다.
이렇게 쓰면 ...
echo $this->Form->control('title', ['label' => 'タイトル']);
이런 출력이 된다.
<div class="form-group text">
<label class="control-label col-md-2" for="title">タイトル</label>
<div class="col-md-6">
<input type="text" name="title" id="title" class="form-control" value="">
</div>
</div>
디폴트는 이런 느낌
htps : // 기주 b. 코 m / F 리엔 d 소 f 걸음 / 보오 tst 등 p 우이 / b ぉ b / 마s r / src / ぃ え w / 헤르 r / 후 rm 에 ぺr. php#L104-L111
방법
전체에 반영하는 경우
src/View/AppView.php use UIViewTrait;
public function initialize()
{
$this->initializeUI();
$helpers = $this->helpers();
$helpers->Form->setConfig('grid.middle', 8);
}
뷰별로 반영하고 싶은 경우
src/Template/Controller/add.ctp$this->Form->setConfig('grid.middle', 8);
요약
귀찮지만 뷰별로 설정하는 것이 무난
환경
echo $this->Form->control('title', ['label' => 'タイトル']);
<div class="form-group text">
<label class="control-label col-md-2" for="title">タイトル</label>
<div class="col-md-6">
<input type="text" name="title" id="title" class="form-control" value="">
</div>
</div>
전체에 반영하는 경우
src/View/AppView.php
use UIViewTrait;
public function initialize()
{
$this->initializeUI();
$helpers = $this->helpers();
$helpers->Form->setConfig('grid.middle', 8);
}
뷰별로 반영하고 싶은 경우
src/Template/Controller/add.ctp
$this->Form->setConfig('grid.middle', 8);
요약
귀찮지만 뷰별로 설정하는 것이 무난
환경
Reference
이 문제에 관하여(CakePHP3 BootstrapUI에서 col-md-xx 변경), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/oppara/items/8b33dfd877aec030cccc텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)