喜 我正在尝试使用表单帮助器向选择框添加禁用选项我使用此代码生成一个额外的空字段,但我希望禁用此字段。
echo $this->Form->input('User.usertype_id',array('type'=>'select', 'empty'=>'usertype');
这会产生:
<div class="input select">
<label for="UserUsertypeId">Usertype</label>
<select name="data[User][usertype_id]" id="UserUsertypeId">
<option value="">usertype</option>
<option value="1">athlete</option>
<option value="2">trainer</option>
</select>
</div>
但我想要这个:
<div class="input select">
<label for="UserUsertypeId">Usertype</label>
<select name="data[User][usertype_id]" id="UserUsertypeId">
<option value="" disabled="disabled" selected="selected">usertype</option>
<option value="1">athlete</option>
<option value="2">trainer</option>
</select>
</div>
有没有办法简单地做到这一点,或者我应该只使用一些js?
答案 0 :(得分:9)
如果您事先知道这些选项,则可以构建要在选择菜单中使用的$options
数组。这应该给你你想要的东西:
$options = array(
array(
'name' => 'usertype',
'value' => '',
'disabled' => TRUE,
'selected' => TRUE
),
'athlete',
'trainer'
);
echo $this->Form->input('User.usertype_id', array('type' => 'select', 'options' => $options));
或者这可能会有效,但我还没有测试过:
echo $ this-&gt; Form-&gt; input('User.usertype_id',array('type'=&gt;'select','empty'=&gt; array('text'=&gt; 'usertype','selected'=&gt; TRUE,'disabled'=&gt; FALSE)));
答案 1 :(得分:4)
我知道这个问题最后一次更新是在2010年,但我有实际答案。 查看CakePHP文档中的示例:
$options = array(
'Value 1' => 'Label 1',
'Value 2' => 'Label 2'
);
echo $this->Form->select('Model.field', $options, array(
'multiple' => 'checkbox',
'disabled' => array('Value 1')
));
http://book.cakephp.org/2.0/en/core-libraries/helpers/form.html#FormHelper::select
答案 2 :(得分:1)
mhmm看起来无法在评论中添加一些代码块 所以,你的两个选项都产生了:
<select name="data[User][usertype_id]" id="UserUsertypeId">
<option value="text">usertype</option>
<option value="selected">1</option>
<option value="disabled"></option>
<option value="1">athlete</option>
<option value="2">trainer</option>
</select>
所以这不起作用,但我是这样做的:
echo $this->Form->input('User.usertype_id', array('type' => 'select', 'empty'=> array('text" disabled="disabled" selected="selected' => '')));
这将生成一个值为的选项:(“disabled =”disabled“selected =”selected) 所以它变成了:
...
<option value="" disabled="disabled" selected="selected"></option>
...
这是一个临时解决方案,在我找到更好的东西之前,欢迎提出建议!
答案 3 :(得分:0)
我合并了Weptunus和stevelove的解决方案。
在控制器中:
$examples = $this->Test->Examples->find('list');
$this->set('examples', $examples);
在视图中
echo $this->Form->input('example_id', array('empty' => array(
'' => array(
'name' => __('Select an Example'),
'value' => '',
'disabled' => TRUE,
'selected' => TRUE
)
))
);
答案 4 :(得分:0)
试试这个!!
$operations = [
'' => 'Select Operation',
'query' => 'Query',
'create' => 'Create',
'update' => 'Update',
'upsert' => 'Upsert',
'delete' => 'Delete'
];
echo $this->Form->input('operation[]',[
'type' => 'select',
'options' => $operations,
'class' => 'operation-class',
'id' => 'operation-id-1',
'required' => 'required',
'label' => false,
'disabled' => [''],
'value' => ''
]);
答案 5 :(得分:0)
我在 cake 1.3 中发现了这个成功
<?php echo $this->Form->input('example', array('type' => 'select','id' => 'id','options' => array('empty "disabled="disabled" selected="selected"' => 'name empty', 'val1' => 'text1', 'val2' => 'text2')); ?>