2014-09-06 100 views
1

我們可以在cakephp上做如下圖像嗎?如果可以,該怎麼辦?我與它鬥爭。我試圖找到任何答案,但無法找到像這樣的東西。任何對這個問題的答案將非常感激。下拉式複選框列表cakephp

enter image description here

回答

2

這也可以引導要做的事。該功能通常與@Anubhav早些時候的答案相同,但是這是一個更簡潔和更新的解決方案。引導框架被更頻繁地維護/更新。

enter image description here

在這裏看到完整的解決方案:

Bootstrap dropdown checkbox select

0
multiple dropdown options with checkbox in cakephp error 

<div class="col-md-2 place-grid"> 
       <h5>Property Type</h5> 
        <?php $allCategories=$this->Common->getCategories(); ?> 
        <?php echo $this->Form->input('ptype',array('options' =>$allCategories,'style'=>'width:150px;','error'=>false,'id'=>'ptype','onchange'=>'getIdType()','div'=>false,'label'=>false,'empty'=>'Select Type','class'=>"sel")); ?> 
        <?php if($this->Form->error('ptype')){?> 
        <?php echo $this->Form->error('ptype',array('style'=>'txtError'));?> 
        <?php } ?> 
       </div> 



       <div class="col-md-2 place-grid"> 
       <h5>Sub Type</h5> 


        <?php $allSubCategories=$this->Common->getArticleSubCategories(); ?> 

        <?php echo $this->Form->input('sptype',array('options'=>'', 'style'=>'width:150px;','error'=>false,'div'=>false,'select'=>true,'label'=>false,'empty'=>'fgfg','class'=>"sel")); ?>       

       </div>