“Why Edit Page option is not available in list forms like NewForm.aspx, EditForm.aspx and DispForm.aspx?”If we need to edit New/Edit/Display Form of list most of the time we are using SharePoint designer. But here is the one nice trick to achieve this functionality. Just add “&ToolPaneView=2” at the end of the URL and refresh the page. So that you’re URL will be like this.
http://sharepointkings/... /Lists/Demo/NewForm.aspx?RootFolder...&Source=…&ToolPaneView=2 http://sharepointkings/... /Lists/Demo/EditForm.aspx?RootFolder...&Source=…&ToolPaneView=2 http://sharepointkings/... /Lists/Demo/DispForm.aspx?RootFolder...&Source=…&ToolPaneView=2You can see add webpart tool pan beside this web part. Just add or remove your webpart and your work is done. Updated :
Let's examine the command: The MSO presumably stands for Microsoft Office, the TlPn (that's a lowercase L not a 1 and unfortunately JavaScript is case sensitive) presumably stands for Tool Pane, and ShowToolPane is the specific method that we are executing. The required ViewID parameter identifies which Tool Pane view to show:
ViewID | Tool Pane view to show |
---|---|
-1 | Extensible View |
0 | Close task pane |
1 | Web Part Properties and Custom ToolParts |
2 | Add Web Parts – Browse |
3 | Add Web Parts – Search |
4 | Navigation (Downlevel only) |
5 | Add Web Parts – Import |
6 | Web Part Menu (Downlevel only) |
7 | Error |
Thank you so much...I wish I had read this tip a week earlier!
ReplyDelete