我在使用CakePHP和Twitter Bootstrap尝试获取复选框输入和标签以输出正确的HTML时遇到了一些问题。
Bootstrap特定输出应为:
<div class="control-group">
<div class="controls">
<label class="checkbox">
<input type="checkbox"> Keep me logged in
</label>
</div>
</div>
但是,使用这里提到的inputDefaults(http://stackoverflow.com/a/9496242/1247225),这个Cake表单输入:
echo $form->input('auto_login', array(
'type' => 'checkbox',
'label' => __('Keep me logged in', true)));
输出:
<div class="control-group">
<input type="hidden" name="data[User][auto_login]" id="UserAutoLogin_" value="0" />
<input type="checkbox" name="data[User][auto_login]" class="" value="1" id="UserAutoLogin" />
<div class="controls">
<label for="UserAutoLogin">Keep me logged in</label>
</div>
</div>
任何想法如何调整这个单独的输入,以便输出正确的Bootstrap HTML,如上所述?
答案 0 :(得分:5)
控制表单输出或输出格式的最佳方法是传递'format'参数。尝试玩这个:
'format' => array('before', 'label', 'input', 'between', 'after', 'error')
我不认为它是文档,但通过阅读代码,您可以在那里找到它。
答案 1 :(得分:3)
最漂亮的方法就是:
<?php
echo '<div class="col-lg-2">';
echo $this->Form->input('Content.checkbox', array(
'div' => array(
'class' => 'input-group',
),
'label' => false,
'type' => 'checkbox',
'before' => '<span class="input-group-addon">',
'after' => '</span><span class="input-group-addon"><label for="ContentCheckbox">What does the fox say?</label></span>',
));
echo '</div>';
答案 2 :(得分:3)
我用:
<?php
echo $this->Form->input('coupDeCoeur',
array('div' => false,
'label' => false,
'type' => 'checkbox',
'before' => '<label class="checkbox">',
'after' => '<i></i>coupDeCoeur</label>'
));
?>
答案 3 :(得分:2)
您需要手动为复选框构建表单窗口小部件,而不是使用FormHelper::input
。
例如:
echo '<div class="control-group">';
echo $this->Form->label('Model.field', null, array('class' => 'control-label'));
echo '<div class="controls">';
echo $this->Form->checkbox('Model.field');
echo '</div>';
echo '</div>';
答案 4 :(得分:2)
请尝试以下代码:
<div class="control-group">
<div class="controls">
<label class="checkbox">
<?php echo $this->Form->input('auto_login', array('type'=>'checkbox','label' => false, 'div' => false,'class'=>false,'after'=>__('Keep me logged in')));?>
</label>
</div>
</div>
答案 5 :(得分:1)
如果您使用的是安全组件,则在没有FormHelper::input
的情况下创建输入时可能会出现问题。如果是这种情况,你应该试试这个:
echo "
<div class='control-group'>
<div class='controls'>
<label class='checkbox'>";
echo $this->Form->input('Model.field', array('label' => false, 'after' => 'Model.field'))."
</label>
</div>
</div>";
答案 6 :(得分:1)
以下是即用型解决方案:
App::uses('FormHelper', 'View/Helper');
class InputHelper extends FormHelper {
// var $helpers = array('Form', 'Html');
public function create($model, $options = array()) {
$options['class'] = (isset($options['class']) && $options['class']) ? $options['class'] : 'form-horizontal table';
$options['inputDefaults'] = (isset($options['inputDefaults']) && $options['inputDefaults']) ? $options['inputDefaults'] : array(
'div' => 'control-group',
'label' => array('class' => 'control-label'),
'between' => '<div class="controls">',
'after' => '</div>'
);
return parent::create($model, $options);
}
public function input($fieldName, $options = array()) {
$this->setEntity($fieldName);
$options = $this->_parseOptions($options);
if ($options['type'] == 'checkbox') {
$options['format'] = array('before', 'label', 'between', 'input', 'after', 'error');
}
fdebug($options);
return parent::input($fieldName, $options);
}
}
答案 7 :(得分:1)
如果你想要一条&#34;一条线&#34;我得到了答案:
echo $this->Form->input('Model.Field', array('class'=>'form-inline', 'after'=>'</br>'));
答案 8 :(得分:1)
就我而言,我使用AdminstTE模板和Bootstrap 3,这段代码对我有用:
<?php
echo $this->Form->input('Model.fieldname', array(
'label' => false,
'type' => 'checkbox',
'before' => '<label>',
'after' => 'Field name label here</label>',
));
?>
祝你好运!!!
答案 9 :(得分:0)
这是一个适合我的简单解决方案:
CSS(LESS):
input.form-control[type="checkbox"] {
width: auto;
height: auto;
margin-right: 5px;
display: inline;
}
然后使用Form helper:
echo $this->Form->input(
'field_name',
array(
'div' => 'form-group',
'class' => 'form-control',
'type' => 'checkbox',
'label' => array(
'text' => 'Your label',
'class' => 'label-checkbox'
),
'format' => array('input', 'label')
)
);