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
|
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
| |||||
feedback
|
|
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. | |||
|
feedback
|
|
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.
} | |||
|
feedback
|