- Open Share point Designer and Open the site.
- Go to the Share point list which you want to customize.(Lists => ) Select "EditForm.aspx"
- Find the end tag of the PlaceHolderMain section
Insert the following script above the
</asp:Content>line:/* i know javascript is not exactly right. Please suggest what changes do i need to make in the javascript */
<script type=”text/javascript”> var x=document.getElementsByTagName(“input”); for (var i=0; i<x.length; i++) { if (x.item(i).type==”button” && x.item(i).value==”Save and Close”) { x.item(i).style.display=”none”; } } </script>
Tell me more
×
SharePoint Stack Exchange is a question and answer site for
SharePoint enthusiasts. It's 100% free, no registration required.
|
|
||||
|
|