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

mark default radio button selected with bootstrap active class

Open geskill opened this issue 10 years ago • 0 comments

sample:

echo $this->Form->input('start_minutes', array(
    'type' => 'radio',
    'class' => 'btn btn-default',
    'div' => false,
    'legend' => false,
    'hiddenField' => false,
    'default' => '0',
    'options' => array('0' => __('now'), '15' => __('in 15 min.'), '30' => __('in 30 min.'))));

geskill avatar Jun 02 '14 13:06 geskill