显示从列表中选择的单个项目的最小代码 Web 部件
我不确定这是否可能,但我想我会尝试一下。首先是一些预先要求和环境详细信息:
- 我正在使用 SharePoint 2010、SharePoint Designer 2010、VS 2010
- 我想创建尽可能少的代码 可能的话,最好通过 UI 或设计器创建,
- 尽可能使用开箱即用的组件 尽可能
这是我想要做的:
- 有一个带有自定义列的自定义列表(简单部分)
- 创建一个带有编辑界面的 Web 部件,以从此列表中选择单个项目
- 该相同的 Web 部件在可见时将显示该所选项目的内容对于给定的布局,
我知道我可以创建一个自定义 Web 部件并从头开始对其进行编码,我想我的主要问题是,有没有办法在 SP2010 中使用更少的代码和更多开箱即用的组件来完成此操作。如果没有,我想我只剩下了很多 C# 代码。
任何有关这个方向的提示或指示都将受到欢迎。提前致谢。
I'm not sure this is possible, but figured I´d give it a shot. First a few pre-requeistes and environment details:
- I´m using SharePoint 2010, SharePoint
Designer 2010, VS 2010 - I want to create as little code as
possible, preferably, create it all via UI or Designer - use out of the box components as much
as possible
Here is What I want to do:
- Have a custom list with custom columns (easy part)
- Create a webpart with an edit interface to select a single item from this list
- This same webpart when visible would display the contents of this selected item in a given layout
I know I can do this creating a custom web part and code it all from scratch, I guess my main question is, is there a way to do this with less code and more out of the box components in SP2010. If not, I guess I'm left with lots of C# code.
Any tips, or pointers in this direction will be most welcome. Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我认为您正在寻找的是 数据表单 Web 部件。
不幸的是,我找不到 2010 年的任何好的教程,但希望步骤应该类似于 2007 年设置 。
I think what you're looking for is the Data Form Web Part.
Unfortunately, I can't find any good tutorials for 2010, but hopefully the steps should be similar to setting it up in 2007.
感谢大家的更新。最后,我必须创建相当多的代码才能使其正常工作:
内容类型,
这不是最简单的方法,但这是我可以让它工作的唯一方法。再次感谢!
Thanks all for the update. In the end, i had to create quite a bit of code to get this to work:
the content type,
Not the easiest way,but the only way I could get it working. Thanks again!