在yii中编辑时依赖的下拉列表 [英] dependent dropdown when edit in yii

查看:115
本文介绍了在yii中编辑时依赖的下拉列表的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

在我的yii应用程序中编辑时,从属下拉列表中出现问题。
编辑时,下拉菜单不会自动选择。

Problem in dependent dropdowns when editing in my yii application. While editing, the drop downs are not automatically selected.

在我看来,

array('class' => 'CButtonColumn',
    'header' => 'Manage',
    'template' => '{update} {view}  {delete}',
    'htmlOptions' => array('width' => '20%'),
    'buttons' => array(
        'update' => array(
            'label' => '',
            'imageUrl' => '',
            'options' => array('class' => 'glyphicon glyphicon-pencil'),
        ),
        'view' => array(
            'label' => '',
            'imageUrl' => '',
            'options' => array('class' => 'glyphicon glyphicon-eye-open'),
        ),
        'delete' => array(
            'label' => '',
            'imageUrl' => '',
            'options' => array('class' => 'glyphicon glyphicon-remove'),
        ),
    ),
),


推荐答案

<div class="form-group">
    <label for="reg_input" class="req">Course</label>
    <?php
    $course = CHtml::listData(Course::model()->findAll(), 'courseid', 'course_name');
    echo CHtml::activeDropDownList($model, 'courseid', $course, array(
        'empty' => 'Select Course', 'class' => "form-control",
        'ajax' => array(
            'type' => 'POST',
            'url' => CController::createUrl('Assignment/Fetchbatch'),
            'update' => '#' . CHtml::activeId($model, 'batchid'))));
    ?>
    <?php echo $form->error($model, 'courseid', array('class' => 'school_val_error')); ?>  
</div>  
<div class="form-group">
    <label for="reg_input" class="req">Batch</label>
    <?php
     $batch = CHtml::listData(Batch::model()->findAll(), 'batchid', 'batch_name');
    echo $form->dropDownList($model, 'batchid', $batch, array('prompt' => 'Select Batch',
        'class' => "form-control",
        'ajax' => array(
            'type' => 'POST',
            'url' => CController::createUrl('Assignment/Fetchsubject'),
            'update' => '#' . CHtml::activeId($model, 'subjectid'))));
    echo $form->error($model, 'batchid', array('class' => 'school_val_error'));
    ?>
</div> 

第二个下拉列表获取数据,更改第一个下拉列表。在这种情况下,不会自动选择下拉列表。因为编辑时,那个值不在那里所以我解决了这个问题,我的代码就是这个。

Second dropdown get the data, to change of first dropdown. At this condition the dropdown will not be selected automatically. Because when editing, that value is not there. So I fixed this problem, my code is above this.

这篇关于在yii中编辑时依赖的下拉列表的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆