How to hide Edit Page button from Site Actions menu of SharePoint Publishing Site 22 July 2015 Velin-Georgiev (0) This post is related to SharePoint 2010 / 2013 and describes steps to hide "Edit Page" or any other button from SharePoint Site Actions menu for publishing layout / page in a custom solution. There might be a case where your client may not want the default.aspx page to be editable for exa... [More]
Prevent exposing sensitive page on web browser back button click after user logout in SharePoint control 22 July 2015 Velin-Georgiev (0) The idea behind this trick is that the page should not be cached by the browser and reloaded every time the user access it so when you logout and try the back button of the browser instead of cached data, a request to the server would be send and it would redirect you to the login page in case this ... [More]
Office365 / SharePoint CSOM getting all list items content with Caml query 22 July 2015 Velin-Georgiev (0) There is Office365/Sharepoint CSOM Caml query way to get all available list items even thay are in folders in particular list and also get the custom fields data with no need to specify the field internal names in the <ViewFields> part of the Caml query. using (var clientContext = _context.Cr... [More]
Office365 / SharePoint CSOM getting all list items content with Caml query 22 July 2015 Velin-Georgiev (0) There is Office365/Sharepoint CSOM Caml query way to get all available list items even thay are in folders in particular list and also get the custom fields data with no need to specify the field internal names in the <ViewFields> part of the Caml query. using (var clientContext = _context.Cr... [More]
CSOM Search Keyword query with custom managed metadata properties in Office365 / SharePoint 22 July 2015 Velin-Georgiev (0) In order to access the custom managed properties we have to add them under SharePoint -> SharePoint admin center -> Manage Search Schema You simply add your new managed property and associate it with the crawled property. Then your CSOM C# code should look like th... [More]