Cjuidialog Prolem With $Form->Dropdownlist

hi guys,

I’m using theme abound from webapplicationthemes.com/abound-yii-framework-theme/ and I have in my form a zii.widgets.jui.CJuiDialog. When I try select a option with a mouse, this not work in firefox browser. Maybe is a css problens or bug. Someone see this sometime?

[color=#FFFFFF][size=2]$Form->Dropdownlist[/size][/color]

Hi

can you try this CHtml::dropdownlist

Yes, I using the last version. 1.1.14

I’ve tried but not working.

I there all, i will post here my font.

in my view

<?php

	echo CHtml::ajaxLink('&lt;span style=&#092;'color:blue;&#092;'&gt;+Adicionar Novo Funcionário&lt;/span&gt;',&#036;this-&gt;createUrl('addFunc',array('id_cliente' =&gt; &#036;model-&gt;id)),array(


        'onclick'=&gt;'&#036;(&quot;#addDivFunc&quot;).dialog(&quot;open&quot;); return false;',


        'update'=&gt;'#addDivFunc'


        ),array('id'=&gt;'addDivFuncId'));


	echo CHtml::link('+Atualizar',array('cliente/update/','id'=&gt;&#036;model-&gt;id), array(&quot;style&quot;=&gt;&quot;color: blue; margin-left: 50px;&quot;));


	?&gt;

<div style="display: none;" id="addDivFunc"></div>

in my CJuiDialog

<?php

&#036;this-&gt;beginWidget('zii.widgets.jui.CJuiDialog',array(


                'id'=&gt;'addDivFunc',


                'options'=&gt;array(


                    'title'=&gt;Yii::t('Funcionário','Adicionar Funcionário'),


                    'autoOpen'=&gt;true,


                    'modal'=&gt;true,


                    'show'=&gt;'puff',


                    'hide'=&gt;'slide',


            		'width'=&gt;'550',


            		'height'=&gt;'400',


                    'buttons'=&gt;array('Salvar'=&gt;'js: function() {


                             dataString = &#036;(&quot;form#funcionario-form&quot;).serialize();


                             &#036;.ajax({


                             type:&quot;POST&quot;,


                             url:&quot;&#46;&#46;/&#46;&#46;/addFunc&quot;,


                             data:dataString,


                             success:function(data)


					            {


					                data = &#036;.parseJSON(data);


					                if( data.status == &#092;'success&#092;' ) {


					                	&#036;(&quot;#addDivFunc&quot;).dialog(&quot;close&quot;);


					                } else {


					                	document.getElementById(&#092;'error_msg_add&#092;').innerHTML = data.msgs;


					                }


					            } 


                        //&#036;(&quot;#addDivFunc&quot;).dialog(&quot;close&quot;);


                    }


                 );                                          


             }',


         'Cancelar'=&gt;'js: function() {&#036;(this).dialog(&#092;'close&#092;');}',


		), //buttons


	),//option     


));

?>

<h5>Adicionar novo funcionário</h5>

<div class="form" id="funcionario">

<div id="error_msg_add" style="color:red;"></div>

<?php

$form = $this->beginWidget(‘CActiveForm’, array(

'id'=&gt;'funcionario-form',


'enableAjaxValidation'=&gt;false,


'enableClientValidation'=&gt;false,


'focus'=&gt;array(&#036;model,'firstname'),

));

echo $form->errorSummary(array($model,$profile));

echo &#036;form-&gt;hiddenField(&#036;model,'id_cliente',array('value'=&gt;&#036;model-&gt;id_cliente));


?&gt;





&lt;div style=&quot;margin-left: 1px;&quot;&gt;


	&lt;div class=&quot;row&quot; style=&quot;float:left; margin-right: 30px;&quot;&gt;


		&lt;?php echo &#036;form-&gt;labelEx(&#036;model,'username'); ?&gt;


		&lt;?php echo &#036;form-&gt;textField(&#036;model,'username',array('size'=&gt;20,'maxlength'=&gt;120)); ?&gt;


		&lt;?php echo &#036;form-&gt;error(&#036;model,'username'); ?&gt;


	&lt;/div&gt;





	&lt;div class=&quot;row&quot;&gt;


		&lt;?php echo &#036;form-&gt;labelEx(&#036;model,'password'); ?&gt;


		&lt;?php echo &#036;form-&gt;passwordField(&#036;model,'password',array('size'=&gt;60,'maxlength'=&gt;128)); ?&gt;


		&lt;?php echo &#036;form-&gt;error(&#036;model,'password'); ?&gt;


	&lt;/div&gt;


&lt;/div&gt;





&lt;div style=&quot;margin-left: 1px;&quot;&gt;


	&lt;div class=&quot;row&quot; style=&quot;float:left; margin-right: 30px;&quot;&gt;


		&lt;?php echo &#036;form-&gt;labelEx(&#036;model,'email'); ?&gt;


		&lt;?php echo &#036;form-&gt;textField(&#036;model,'email',array('size'=&gt;60,'maxlength'=&gt;128)); ?&gt;


		&lt;?php echo &#036;form-&gt;error(&#036;model,'email'); ?&gt;


	&lt;/div&gt;





	&lt;div class=&quot;row&quot;&gt;


		&lt;?php echo &#036;form-&gt;labelEx(&#036;model,'status'); ?&gt;


		&lt;?php echo &#036;form-&gt;dropDownList(&#036;model,'status',User::itemAlias('UserStatus')); ?&gt;


		&lt;?php echo &#036;form-&gt;error(&#036;model,'status'); ?&gt;


	&lt;/div&gt;


&lt;/div&gt;

</div><!-- form -->

<?php $this->endWidget(); ?>

<?php $this->endWidget(‘zii.widgets.jui.CJuiDialog’);?>