dongzai0020 2018-03-27 18:05
浏览 8
已采纳

CakePHP 3.x更改单选按钮的标签

I am attempting to create several radio buttons with a specific label...

I am using the following code, however, there is no label

echo $this->Form->radio('qualify', [['value' => 1, 'text' => 'Yes'], ['value' => 0, 'text' => 'No']], ['label' => 'Qualify Only']);

Any ideas on how I can get the label to show up for these radio buttons?

  • 写回答

2条回答 默认 最新

  • drl6054 2018-03-28 09:16
    关注
    <?php 
     $qualify = [['value'=>'0','text'=>'No'],['value'=>'1','text'=>'Yes']]; 
    
     echo $this->Form->input('qualify', array(
                          'options' => $qualify,
                          'type' => 'radio',
                         'placeholder' => 'Qualify Only'
                          ));
    ?>
    

    This code will be able to pick any existing value in the edit view.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 MIMIC数据库安装问题
  • ¥60 基于JTag协议开发Fpga下载器上位机,哪位大🐂有偿指导?
  • ¥20 全书网Java爬取数据
  • ¥15 怎么获取红包封面的原始链接,并且获取红包封面序列号
  • ¥100 微信小程序跑脚本授权的问题
  • ¥60 为什么使用python对地震数据进行umap降维后,数据成图会出现不连续的现象
  • ¥100 房产抖音小程序苹果搜不到安卓可以付费悬赏
  • ¥15 STM32串口接收问题
  • ¥15 腾讯IOA系统怎么在文件夹里修改办公网络的连接
  • ¥15 安卓qpython向ksweb服务器post文件失败