Skip to main content

Posts

Showing posts from March, 2018
How to Set a fixed or increase the width for a column in a SharePoint list view Add below sript using Snippet web part script src="/jquery.min.js" type="text/javascript" Source $ ( "TH.ms-vh2:contains('Column Name')" ). css ( "width" , "300px" ); https://sharepoint.stackexchange.com/questions/83159/adjusting-custom-list-column-widths https://olafd.wordpress.com/2013/11/30/set-a-fixed-width-for-a-column-in-a-view/ https://social.technet.microsoft.com/Forums/ie/en-US/06e06be6-8f88-4b1a-91a4-2837a77db1dd/sharepoint-2013-list-column-width?forum=sharepointgeneral
How Search or get the documents in subfolders of Document library in SharePoint Option 1  Using CAML Query below CAML query used to filter                     Sites /SiteCollectionName/SubsiteName/DocumentLibraryName/Folder Name/SubFolderName/SubSubFolderName/SubSubSubFolderName       Source https://sharepoint.stackexchange.com/questions/60495/caml-query-for-sub-folder-documents-javascript https://sharepoint.stackexchange.com/questions/59216/get-all-files-from-sub-folder-of-a-certain-content-type https://sharepoint.stackexchange.com/questions/215230/get-all-items-in-list-by-field-name-caml-query Option 2 Create a View which can point to SubFolder by changing the filter for the view using SharePoint Designer Source:  https://www.tombenjamin.ca/blog/designer/view/using-caml-query-show-files-folder/ There is a thread on  social.technet  where someone asks how to “Create a webpart to show subfolder of existing document library.” I had posted a reply to that expla