【发布时间】:2019-07-17 20:31:51
【问题描述】:
我需要在默认的“输入复选框”div 旁边添加引导自定义复选框类并将类添加到标签,以便我可以使用 cakephp 3 表单助手获得引导复选框布局。
【问题讨论】:
标签: html bootstrap-4 cakephp-3.0
我需要在默认的“输入复选框”div 旁边添加引导自定义复选框类并将类添加到标签,以便我可以使用 cakephp 3 表单助手获得引导复选框布局。
【问题讨论】:
标签: html bootstrap-4 cakephp-3.0
$this->Form->control('status', [
'class' => 'custom-control-input',
'templates' => [
'inputContainer' => '<div class="custom-control custom-checkbox input {{type}}{{required}}">{{content}}</div>',
'nestingLabel' => '{{input}} <label{{attrs}} class="custom-control-label">{{text}}</label>'
],
]);
【讨论】: