有人请给我这个想法!我想生成多个带图像的复选框以及标签中的文字。我在Checkbox的联系表单中创建了一个名为solutioncheckbox的字段。我的代码如下所示,用于创建多个复选框
<?php echo $this->Form>input('solutioncheckbox',array('label'=>false,'type'=>'select','class'=>'solution','multiple'=>'checkbox','options'=>array(1=>'WEB DESIGN',2=>'WEB DEVELOPMENT',3=>'GRAPHICS DESIGN'))) ;?>
我可以在我的表单中创建一个图像以及每个标签中的文本,如WEB DESIGN,WEB DEVELOPMENT等
答案 0 :(得分:1)
这将为您完成工作;)
echo $this->Form->input
(
'Model.field',
array
(
'multiple' => 'checkbox',
'options' => array('1' => $this->Html->image('cake.icon.png') . 'Text beside the image', '2' => $this->Html->image('test-error-icon.png') . 'Other text beside the image'),
'escape' => FALSE
)
);