yii method to disable selected options from multi select dropdown
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试): 问题: I am using yii dropdown with active records in that i am using multiselect dropdown. i am creating data with in which i am selected multiple option from dropdown.. while updating i want to disable selected option which i selected at time of creation. <code> <?php $savedSections = helpers::getQuestionnaireSectionList($model->questionnaire_id); $data = helpers::getSection(); $listData = CHtml::listData($data, 'section_id', 'section_name'); $htmlOptions = array('size' => '5', 'multiple' => 'true','style'=>'width: 333px'); $queSection->section