是否有网格控件或其他“n”个控件? Outlook 表单的编号项目控件?

发布于 2025-01-05 19:33:57 字数 115 浏览 1 评论 0原文

我正在开发 Outlook 表单(2007),并且正在寻找一种方法,使客户端能够输入未指定数量的项目 - 网格或其他一些方法。

有没有办法做到这一点,或者我是否坚持为他们提供一组固定的控件来输入项目?

I'm developing an Outlook Form (2007) and I'm looking for a way to give the client the ability to enter an unspecified number of items - a grid, or some other way of doing this.

Is there a way to do this, or am I stuck with providing them with a fixed set of controls to enter items into?

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

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

发布评论

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

评论(1

一页 2025-01-12 19:33:57

目前尚不清楚 items 是什么,但根据您对网格的建议,我认为它们是值(数字、字符串等)。如果是这样,您几乎肯定可以对标准文本字段使用逗号分隔值 (CSV) 或其他分隔符之类的内容。

在 Outlook 2007 中,收件人地址 字段使用此功能,其中分号用于分隔“未指定数量的项目” - 在本例中为电子邮件地址。

这允许用户输入数据,例如:

[email protected]; [email protected]; etc ...

显然 CSV 输入是:

something, something-else, etc ...

实现此目的的另一种方法是根据需要动态生成字段,即根据用户输入以编程方式构建表单元素,根据需要提供额外字段。例如,用于多个输入的简单系统可能使用以下逻辑来工作。

输入已输入->检查有效性->创建新输入

这样,对于输入中的每个有效条目,都会在其下方创建一个新输入,等等,从而允许任意数量的输入项。

It is not clear what the items are but from your suggestion of a grid I will presume they are values (numbers, strings, etc). If so you could almost certainly use something like comma separated values (CSV), or some other deliminator, for a standard text field.

In Outlook 2007 the To address field uses this functionality, in it the semi-colon is used to deliminate an 'unspecified number of items' - in this case email addresses.

This allows the user to enter data such as:

[email protected]; [email protected]; etc ...

Obviously CSV input would be:

something, something-else, etc ...

The other way to achieve this would be to dynamically generate the fields as required, that is programmatically build the form elements based on the user input, providing extra fields as required. For example, a simple system for multiple inputs might be work using the following logic.

Input entered -> check validity -> create new input

So that for each valid entry in a input, a new input is created below it, etc. thus allowing for an arbitrary number of input items.

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