The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
38 views

Lists.asmx and List Item Attachments

How would the lists.asmx service be used to add an attachment to a list item with JavaScript File API? I cannot find an example of anything other than copy.asmx for adding documents. Update: Here ...
0
votes
1answer
35 views

<input multiple /> file upload not working in SharePoint 2007

I am working with some code in SharePoint 2007 where a file upload control is built on a page with an HTML input element. The original intent was to upload a single file. That worked fine. Now, I ...
3
votes
1answer
80 views

JS CSOM in Custom .HTML File

I am building a SPA using SP 2010 as my back end but with custom HTML/CSS/JS deployed to a subfolder of _Layouts. I get everything I need from ListData.svc with the exception of the current logged on ...
0
votes
0answers
28 views

i got error when i run my Android application? [closed]

i build an android app using PhoneGap cordova 2.1.0 when i get the apk on my device and after install on executing i get this error msg "there was a network error ...
2
votes
2answers
109 views

HTML placeholder attribute is not a valid attribute

On SharePoint application page I am using placeholder in like this: <input type="text" id="name" name="name" placeholder="your name" /> But placeholder is underlined and says: Validation ...
4
votes
2answers
895 views

sharepoint 2013 rest api upload image

I want to upload image or create image in Sharepoint 2013 document library using rest api (Javascript) my code to get bite array from input type file element is var reader = new FileReader(); ...
2
votes
1answer
625 views

JS Web Worker and SP.JS - Type is not defined

I'm experimenting with using CSOM and Web Workers as many of my users use Chrome and FireFox. Currently I am importing SP.js and SP.Core.js importScripts("../SP.js", "../SP.Core.js"); What other ...