-1
私はfollwingのようなドロップダウンリストがあります。そのような選択オプションを生成Yiiのselectから値を選択するには?
<?php echo TbHtml::dropdownList('cls', $sel, CHtml::listData($classes, 'type_class', 'name_class')); ?>
:1私の例では、
<select id="cls" name="cls">
<option value="1">Main Class</option>
<option value="2">Other Class</option>
</select>
私はボタンをクリックすると、私は値を取得する必要があるのか2.
ボタンは次のように構築されています:
echo $this->widget('booster.widgets.TbButton', array(
'buttonType' => 'link',
'context' => 'warning',
'icon' => 'fa fa-file-pdf-o',
'label' => 'Submit',
'size' => 'small',
'url' => array(
'//wseder/excel/wws',
'code_from_select' => $VALUE_THAT_I_NEED // here i need the value
),
'htmlOptions' => array(
'class' => 'pull-rigth btn-nxt-prv',
'style' => 'margin-left:5px'
)
), true);
選択から選択した値にアクセスするにはどうすればよいですか?