我在共享点中有一个“通知”列表,其中包含“ID、名称、区域(MultiChoice Column)”列。I want to get Choices from 'Areas' Column and not from the DATA in Notifications List
. 可能吗。因为我想在表单加载时将其绑定到 ASP.NET CheckBoxList Items。
注意:我没有在 ASp.Net 帮助中使用 Microsoft.Sharepoint 命名空间 感谢!谢谢!
我在共享点中有一个“通知”列表,其中包含“ID、名称、区域(MultiChoice Column)”列。I want to get Choices from 'Areas' Column and not from the DATA in Notifications List
. 可能吗。因为我想在表单加载时将其绑定到 ASP.NET CheckBoxList Items。
注意:我没有在 ASp.Net 帮助中使用 Microsoft.Sharepoint 命名空间 感谢!谢谢!
您可以使用 SPServices 或 SharePoint 的内置 Web 服务,特别是 Lists 服务来获取特定列表的架构,在您的示例中是通知。
调用 Lists 服务的 GetList 方法将为您提供包含每个字段详细信息的列表的 XML 模式。从那里您可以序列化或解析它以从您的特定列中获取可用的选项列表。
如何使用 GetList 方法可以在这里找到。