ZendFramework - 如何使用 formSelect() 视图助手而不使用自动“多个”?
我想使用这个选择而不使用多个,但它总是垂直列出所有国家/地区。如何在不使用外部 CSS 的情况下删除自动多个选项?
<?=$this->formSelect("Country", '', array(
'class'=>'Country',
'size' => 40,
'multiple'=>"multiple" // i removed this but still it auto applies
), $this->country);?>
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);?>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您应该删除
'size' => 40,也是。
SIZE
指示应显示列表的多少行。You should Remove
'size' => 40,
too.SIZE
indicates how many rows of the list should be displayed.