slywalker / cakephp-plugin-boost_cake

Bootstrap Plugin for CakePHP
http://slywalker.github.io/cakephp-plugin-boost_cake/
278 stars 93 forks source link

div => false options param no longer works #41

Closed houseoftech closed 10 years ago

houseoftech commented 10 years ago

I tried to create an input-append with buttons instead of :

Form->input('keyword', array('default' => $pass['keyword'], 'div' => false, 'label' => false, 'placeholder' => "keyword", 'class' => 'input-medium'));?>

The standard 'div' => false option seems to be ignored. I had to add 'wrapInput' => false as well. But both affect the div directly wrapping the input so why the extra option?

houseoftech commented 10 years ago

Never mind, I see the need for wrapInput now.