求助单选框无法显示在一行 [ 新手入门 ]
用表单中的activeRadioButtonList()做单选列表:
<?php echo $form->radioButtonlist($model,'needreport',$model->getneedReport()); ?>
显示出来是这个样子 [attach]749[/attach]
查看网页原代码
<div class="row">
<label for="testitem_是否需要报告">是否需要报告</label>
<input id="yttestitem_needreport" type="hidden" value="" name="testitem[needreport]" />
<span id="testitem_needreport">
<input id="testitem_needreport_0" value="0" type="radio" name="testitem[needreport]" />
<label for="testitem_needreport_0">是</label><br/>
<input id="testitem_needreport_1" value="1" type="radio" name="testitem[needreport]" /> <label for="testitem_needreport_1">否</label></span>
</div>
该怎样改才能把它们放到一行里呢?
多谢大家
共 6 条回复
-
搜了一下按照这个链接的方法
http://www.yiichina.com/topic/411
设置了template,但是还是有换行,是官方的模板css有问题吗 -
<?php $sex_radiobuttonList = $form->radioButtonList($model,'gender',$sex, ''); $sex_radiobuttonList= str_replace("<label", "<span", $sex_radiobuttonList); $sex_radiobuttonList= str_replace("</label", "</span", $sex_radiobuttonList); echo $sex_radiobuttonList; ?>
这样就可以了,换上你相应的代码
lkle 南京
注册时间:2012-05-25
最后登录:1970-01-01
在线时长:0小时0分
最后登录:1970-01-01
在线时长:0小时0分
- 粉丝0
- 金钱100
- 威望0
- 积分100