Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有没有人提示如何在对话框中自定义字段长度?通过容器对话框打开的对话框。突然出现在我身上的物品尺寸不足。
谢谢
如果您探索 xml-form-1.6.xsd,您会在其中找到诸如 text-line、text-area 和所有其他类型的元素的属性。有解释。(一个好的 XML 编辑器会在您键入时使用这些 .xsd 文件自动建议元素和属性)。
一些例子:
<text-line size="30" maxlength="50" /> <text-area cols="60" rows="6" />
您还可以使用 'field-layout' 元素及其子元素来设置表单。
(假设您不是指数据库中数据字段的长度)。