cakephp-plugin-boost_cake icon indicating copy to clipboard operation
cakephp-plugin-boost_cake copied to clipboard

Bootstrap3 Checkbox example renders as text input

Open bigtintin opened this issue 10 years ago • 1 comments

Checkbox using code from: http://slywalker.github.io/cakephp-plugin-boost_cake/bootstrap3.html renders as a text input not a checkbox.

Before: Form->input('checkbox', array( 'label' => 'Check me out', 'class' => false )); ?>

Better: Form->input('checkbox', array( 'label' => 'Check me out', 'class' => false, 'type' => 'checkbox' )); ?>

宜しく!

bigtintin avatar Apr 25 '15 04:04 bigtintin

note in his example the setting of the Model variable $_schema where checkbox is defined as type checkbox ...

quinen avatar Oct 30 '15 14:10 quinen