Tagged Questions
2
votes
1answer
457 views
Calling Upload Dialog with javascript, can I pass value through to the edit form that follows?
I have a button that opens the upload dialog from a page using the below approach:
function openUploadNewDocumentDialog(passingID)
{
var dialogOptions = SP.UI.$create_DialogOptions();
...
1
vote
2answers
179 views
js/jquery doesn't work on site's upload.aspx?
is that right? If I go to a library in the designer, i can see upload.aspx there. Can't create a new one (and i guess that is because there is really only one per site, or collection?). Anyway, I can ...
0
votes
1answer
187 views
Using client object model to trigger Content Organizer Rule
Using the client object model of sharepoint (Microsoft.SharePoint.Client) i'm trying building a client that will upload documents into the "Drop Off Library" within a record center site.
I can upload ...
0
votes
0answers
140 views
Uploading file “NewItem2”
I'm attempting to upload a file to SharePoint using the NewItem2 function. However, after uploading the file, I want to get the relative URL of the uploaded file. Is this possible? Is there a ...
2
votes
1answer
2k views
jQuery & SP2010 : Upload document to library using jQuery?
I built a custom form that saves the data to multiple lists with on click; it works pretty well for its intended use (keeping the data related). Thing is I am totally new at jQuery and SPServices, but ...
0
votes
2answers
1k views
Uploading a Word Document to Sharepoint using SaveBinaryDirect() resulting in corrupted document
I am uploading a document to sharepoint site using client object model.
using (FileStream fs = new FileStream(@"C:\temp\UlDoc.docx", FileMode.Open))
{
File.SaveBinaryDirect(_cc, ...
2
votes
1answer
269 views
Performance bottleneck on SharePoint upload method
Trying to eliminate a performance bottleneck on a method doing file and metadata uploads. According to the profiler on a line-by-line of the decompiled code, the majority of time is spent on ...
3
votes
1answer
832 views
Upload a document to a SharePoint list from CSOM with no limitations
I need to upload a document to a SharePoint list or folder using the Client Side Object Model from .NET (C#). What is the best way to do this? The requirements are as follows:
Set metadata values
...
2
votes
1answer
1k views
How to upload a file larger than 2MB to SharePoint document library using Managed Client Object Model for Silverlight
I can't seem to upload a file to SharePoint if that file exceeds 2MB or so. I am developing a Silverlight application that is interacting with SharePoint via Managed Client Object Model for ...
3
votes
1answer
2k views
How do I save files that are larger than 1MB using the Client Object Model?
I'm trying to save a file to an SP document library using the Client Object Model:
//populate information about the new file, from disk
FileCreationInformation fci = new FileCreationInformation();
...
1
vote
1answer
551 views
SP2010 Client Object Model 3 MB limit - updating maxReceivedMessageSize doesnt get applied
I am using Client Object Model to interact with Sharepoint 2010. When I tried to upload documents greater than 3 MB using Client OM, it gave an error Bad Request. Microsoft suggests this to fix the ...
2
votes
3answers
2k views
Uploading file version - Client Object Model
I have a library with versioned files. I have versioned files prepared for uploading (1 version = 1 file). How do I create new version? Do I just set file's Content property and Update it? Please ...