Tag Info

New answers tagged

0

And just as some additional clarification to what Robert is saying - what you are looking for is exactly how Document Sets work. If you add your choice column to the Shared Columns of the Document Set, the column itself and the value you set at the Document Set level will be pushed down to the documents inside the Document Set. And, in order for this to ...


0

Look at Shared Columns in the Document Set contenttype. These are columns that will be inherited by all documents you add to the Document Set, and also synchronize changes from the Document Sets column and down on your documents. Here is a guide of how to do it from the GUI: http://en.share-gate.com/blog/document-sets-making-your-metadata-shine And here ...


0

Below code allow to send you custom page of any list if user click on New Item $("a[id$='NewMenu']").click(function(e) { window.location = '/_layouts/smartaudit/UploadAudit.aspx'; return false; });


0

Well I called MS Support because it was causing a work stoppage. Here's the result.... It was caused by adding a web part to the DISPFORM.aspx. I added a list web part to the form (notes that were filtered by the Name field). When you add a list web part to the form it adds a line to the aspx file: TemplateName ...


1

Seems that the list view webpart is missing from your welcomepage. SharePoint has a specific webpart for showing the document set content, the content of the .dwp that is used when provisioning OOTB is: <?xml version="1.0" encoding="utf-8" ?> <WebPart xmlns="http://schemas.microsoft.com/WebPart/v2"> ...


1

You could do that programmatically, like this: ClientContext clientContext = new ClientContext("http://SPSite"); Web site = clientContext.Web; clientContext.Load(site); clientContext.ExecuteQuery(); File file = site.GetFileByServerRelativeUrl(“/Shared Documents/mydocument.doc”); clientContext.Load(file); clientContext.ExecuteQuery(); ListItem currentItem = ...


0

Seems the hotfix only solves half the problem. You may also need to make updates to the we.b config to increase the maximum request length: <location path=”OfficialFile.asmx”> <system.web> <httpRuntime maxRequestLength=”2097151″ executionTimeout=”240″ /> </system.web> </location> and configure maximum file ...



Top 50 recent answers are included