如何在共享点列表的编辑表单中将 ID 字段显示为只读?
我需要在共享点列表的编辑表单中显示 ID 字段。
有办法做到吗?我尝试了一个计算字段,但什么也没有。 我知道我可以在视图中看到 ID 字段,并且如果我显示为访问模式。 我使用的是WSS3.0
I need to show the ID field in the Edit Form of a sharepoint list.
There is a way to do it ? I tried a calculated field and nothing.
I know that I can see the ID field in the view, and if I show as a Access Mode.
I'm using WSS3.0
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以添加使用 CEWP 中的一些 JavaScript 将 ID 字段添加到表单。
还有一种替代方法 如果您希望保持轻量级,请不要使用 jQuery 库。
You can add the ID field to the form using some JavaScript in a CEWP.
There is an alternative method that doesn't use the jQuery library if you prefer to keep things lightweight.
您可以通过创建自定义编辑表单来轻松完成此操作。我通常将其粘贴到 Web 部件中呈现的 HTML 表中。可能有更好的方法,但它很简单而且有效。
您需要查看的关键行是 spFormField.ControlMode。这告诉 SharePoint 如何显示控件(无效、显示、编辑、新建)。因此,您需要检查 spField.InternalName == "ID" 是否存在,如果是,请将 ControlMode 设置为 Display。
其余的只是渲染列表其余部分的绒毛。
希望这有帮助。
}
You can do this by creating a custom edit form quite easily. I usually stick it into an HTML table rendered within a webpart. There may be a better way of doing that but it's simple and it works.
The key line you'll want to look at is spFormField.ControlMode. This tells SharePoint how to display the control (Invalid, Display, Edit, New). So what you'll want to do is check if your spField.InternalName == "ID" and if it is, set the ControlMode to be Display.
The rest is just fluff for rendering the rest of the list.
Hope this helps.
}