php - Yii DropdownList prompt -
i have dropdownlist, doesnt take prompt or empty default value, takes last value of $list, why can be?
$models = zfinfraestructuras::model()->findall(array('order' => 'infraestructura_nombre')); $list = chtml::listdata($models, 'infraestructura_id', 'infraestructura_nombre'); echo chtml::dropdownlist('infraestructuras', $models, $list, array('prompt' => 'selecciona infraestructura')); ?> </div>
public static string dropdownlist(string $name, string $select, array $data, array $htmloptions=array ( ))
check select parameter
Comments
Post a Comment