public function actionBuscarproducto() { if ($_POST['ProveedoresObjetos']['rama']) { $rama_producto = RamaProductos::model()->findAllByAttributes(array('rama_id' => $_POST['ProveedoresObjetos']['rama'])); //print_r($rama_producto); $aux = CHtml::listData($rama_producto, 'id', 'nombre'); foreach ($aux as $value => $name) { echo CHtml::tag('option', array('value' => $value), CHtml::encode($name), true); } } }
//'data'=>'js:javascript statement' //leave out the data key to pass all form values through ) ), 'options' => array( //'tags' => array('procedimientos'), 'placeholder' => 'Rama', 'width' => '40%', 'tokenSeparators' => array(',', ' ') ) ) ); ?> <br> <?php $ramaproductos = RamaProductos::model()->findAll(); $list = array(); echo CHtml::label('Seleccionar productos', 'Productos'); echo "<br>"; $this->widget( 'booster.widgets.TbSelect2', array( 'asDropDownList' => true, 'model' => $model, 'attribute' => 'rama_producto_id', //'name' => 'procedimiento_id', 'data' => $list, 'htmlOptions'=>array('id'=>'Productos', 'multiple'=>'multiple'), 'options' => array(