使用 Dexterity 在 Plone 4 中自定义字段大小
快速说明:如何使用 Dexterity 在架构中指定自定义字段大小(宽度和高度)?
例如,文本区域 (schema.Text) 宽度设置为 100%。我想指定默认的宽度和高度,以使其更有用。
如何实现这一目标?我尝试查看plone.directives.form,但找不到任何东西。
A quickie: how does one specify a custom field size (width and height) in a schemata using Dexterity?
For example, a textarea (schema.Text) width is set to 100%. I'd like to specify a default width and height, to make it more useful.
How does one achieve this? I tried looking into plone.directives.form, but couldn't find anything.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
100% 宽度实际上来自 public.css,而不是 Dexterity 或 z3c.form 中的任何内容。如果您想覆盖它,您可以使用样式表来执行此操作,或者如果它特定于该特定字段,您可以在字段架构中指定“style”属性以提供特定于字段的内联 CSS。
The 100% width is actually coming from public.css, and not anything in Dexterity or z3c.form. If you want to override it, you could do so with your stylesheet, or if it is specific to that particular field, you could specify the "style" attribute in your field schema to supply field-specific inline CSS.