2014-09-06 177 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>