I want to use this select without multiple but its always list all country vertically. How to remove the auto multiple option without using external CSS?
<?=$this->formSelect("Country", '', array(
'class'=>'Country',
'size' => 40,
'multiple'=>"multiple" // i removed this but still it auto applies
), $this->country);?>
You should Remove
'size' => 40,too.SIZEindicates how many rows of the list should be displayed.