Posts

Showing posts from June, 2013

Rename button Text in NewForm.aspx or EditForm.aspx

Rename button Text in NewForm.aspx or EditForm.aspx in SharePoint  Lists <script type="text/javascript"> function changeFinish() { var inputs = document.getElementsByTagName("input"); for(i = 0; i<inputs.length; i++) { if(inputs[i].type == "button" && inputs[i].value == "Save") inputs[i].value = "Submit"; } } _spBodyOnLoadFunctionNames.push("changeFinish"); </script>

Clear SharePoint Desinger Cache

Sometimes SharePoint Designer loses touch with reality - it demands to check out files that are not checked in, refuses to check in other files and generally misbehaves. This demeanor is sometimes accompanied by this error message: "Cannot perform this operation. The file is no longer checked out or has been deleted." Simply put, SharePoint Designer is out of sync with SharePoint and you have to delete its cache in order to rebuild it. The cache is composed of these 2 folders: %APPDATA%\Microsoft\Web Server Extensions\Cache %USERPROFILE%\AppData\Local\Microsoft\WebsiteCache Just delete their contents and you are done. C:\Documents and Settings\%LocalUser(Ravi)%\AppData\Local\Microsoft\WebsiteCache