Pentium10, thanks for the reply and a I greatly appreciate your help. I just did a blank install of yii and ran a test again and got the same results. The dropdown filter would not clear out of session.
Here is the drop filter I am using in the cgridview:
array(
'name'=>'type_id',
'filter'=>CHtml::listData(LinesWlnType::model()->findAll(array('order'=>'id')),'id','type'),
),
And here is the html that is created on the page:
[html]<select name="LinesWln[type_id]">
<option value=""></option>
<option value="7" selected="selected">B1</option>
<option value="8">Cable</option>
<option value="9">Centrex</option>
<option value="10">Dry Loop</option>
<option value="11">DID</option>
<option value="12">Fiber</option>
<option value="13">Frame</option>
<option value="14">ISDN</option>
<option value="15">KT</option>
<option value="16">MPLS</option>
<option value="17">P2P</option>
<option value="18">PBX</option>
<option value="19">PRI</option>
<option value="20">Res</option>
<option value="21">RCF</option>
<option value="22">SIP</option>
<option value="23">T1</option>
<option value="24">Toll Free</option>
<option value="25">VOIP</option>
<option value="26">Wireless Device</option>
<option value="27">Satellite</option>
<option value="28">Private</option>
</select>[/html]
Any help would be greatly appreciated.
Thanks again, Brandon.