包含 Sharepoint 列表值的 HTML 表格
我在使用严重锁定版本的 sharepoint 时遇到问题。我正在尝试渲染基于 Sharepoint 列表的图表,尽管我已经成功使用 JQuery 和 HTML 表在 sharepoint 中显示图表,但我使用的 JQuery 插件不会立即呈现 sharepoint 列表。
Microsoft 表格的渲染效果非常糟糕。该列表很简单,但我需要将值添加到结构正确的 HTML 表中,这样我就可以使用 JavaScript 从中提取值。
任何有关如何将列表值循环到“适当”表中的建议,然后我可以使用 Javascript 对其进行操作,我们将不胜感激。
如您所知,我无法访问共享点设计器或任何后端系统,因此任何操作都仅限于我可以在客户端或自定义 Web 部件中运行的任何操作。
提前致谢!
I'm having trouble working with a severely locked down version of sharepoint. I am trying to render a graph based on a Sharepoint list and although i've had success displaying the chart in sharepoint using JQuery with a HTML table, the JQuery plugin I'm using will not render the sharepoint list out of the box.
The Microsoft table renders horribly. The list is simple but I need to add the values into a properly structured HTML table which will allow me to then extract the values from it using JavaScript.
Any suggestions as to how I could loop the list values into a 'proper' table which I could then manipulate with Javascript would be greatly appreciated.
Just so you're aware, I have no access to sharepoint designer or any back-end system and so any manipulation is limited to whatever I can run client side or in a custom web part.
Thanks in advance!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是一种不同的方法,但您可以尝试使用 Codeplex 上的 SPServices JQuery 库 来获取数据通过网络服务。
您可以使用 GetListItems 操作获取列表项数据。
此方法将消除尝试解析 SharePoint HTML 表的需要。您可以通过内容编辑器或表单 Web 部件完成这一切。
This is a different approach, but you could try getting your data using the SPServices JQuery library on Codeplex to get your data through web services.
You would get the list item data using the GetListItems operation.
This approach would eliminate the need try parsing the SharePoint HTML tables. You can do this all through a Content Editor or Form web part.