2013-05-02 54 views
1

有人請給我這個想法!我想生成多個複選框與圖像一起在標籤中的文字。我在複選框的聯繫人表單中創建了一個名爲solutioncheckbox的字段。我的代碼如下創建多個複選框是否可以創建一個帶有圖片的複選框以及cakephp中的標籤中的文本?

<?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'))) ;?> 

我可以在形式,在每個像網頁設計,網站開發等標籤的文本一起創建圖像

回答

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 
     ) 
); 
+0

感謝分享! – Leah 2013-05-02 12:36:22

相關問題