如何从表单/过滤器类设置学说选择小部件的大小

发布于 2024-12-01 05:15:50 字数 60 浏览 2 评论 0原文

为了避免自定义自动生成的表单,我需要在doctrinechoice小部件上设置“size”属性。这可能吗?

To get around customising autogenerated forms, I need to set the "size" attribute on a doctrinechoice widget. Is this possible?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

最佳男配角 2024-12-08 05:15:50

在你的表单类中尝试这个:

$this->widgetSchema['your_choice_field'] = new sfWidgetFormDoctrineChoice(
  array(),   // you have to fill this array with your option (model, multiple, expanded ...)
  array('size' => 5)  // Attributes array here you can set attribute that will appear on the element
);

希望有帮助

try this in your form class :

$this->widgetSchema['your_choice_field'] = new sfWidgetFormDoctrineChoice(
  array(),   // you have to fill this array with your option (model, multiple, expanded ...)
  array('size' => 5)  // Attributes array here you can set attribute that will appear on the element
);

Hope it helps

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文