Gii Crud, How Not To Use Model Value As Input Default Value?

use gii to generate CRUD. in the update part’s view file, gii auto generate


 $form->textField 

to each column. I manually change one textField to dropDownList, and the $model auto set some ‘<option selected=“selected”>’. I don’t want to select any option. how to do?

Use CHtml::dropDownList() instead of that