Tagged Questions
2
votes
1answer
46 views
access a list in a subsite with Javascript
How can i access a list in a subsite?
function Read () {
var caml = "<View><ViewFields><FieldRef Name='Title'/><FieldRef ...
1
vote
1answer
27 views
Access a Sharepoint site from event handler
my problem is that I want to pop up a status bar in SP2010 after a File was uploaded via a single uploadform to a List.
Found this in the net: ...
2
votes
0answers
55 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
40 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 ...
4
votes
2answers
44 views
Is it possible to Fire event when Content type added in Shared Documents in sharepoint 2010?
How to fire event when any content type added in shared document library ? How to handle this event ?
3
votes
2answers
51 views
calling click event on dynamic controls
What I have is fairly standard code for using JavaScript with SharePoint 2013. Inside the sharePointReady function, I have a few dynamic controls that are added to the page.
The problem is that when ...
0
votes
0answers
35 views
Listen on file upload - AddItemEvent by ECMA Script (Javascript COM)
I need your help concerning this issue:
I want to upload a document to DocLib. Therefore I call the NewItem2 method
NewItem2(event, referenceURL);
Up to here - no problem. Now the issue:
I want ...
1
vote
1answer
65 views
Why Isn't the Client Object Model as Vulnerable as I Think?
I can use any sort of console in Firebug, Developer Tools, etc. to access any Javascript included in a page and make calls to Javascript functions without a problem.
If, on a SharePoint page, I use ...
0
votes
2answers
29 views
COM: javascript/jquery method for creating a xml data file from SharePoint list data (multiple)
Does anyone know how I can pull off creating an xml data file from data in multiple lists using SPServices/Javascript/jQuery? I can certainly bring all the data I need out to a page and load into DOM ...
0
votes
1answer
63 views
How to read URL/Description from a Hyperlink field using CSOM
Using CSOM (JavaScript) how do you get the URL and description fields from a Hyperlink field?
3
votes
0answers
23 views
Passing args to QuickLinksDialog with JS
I have a small button on a site which when i press should start a QuickLinksDialog and fill in some of the fields there.
Everything goes good and well except the fields (like: title and url) still ...
1
vote
2answers
67 views
Get id's of tags that are in a web part in Javascript
Ok, I have a page that that has a DataFormWebPart that basically displays the info from a document library. Now what I want to do is, using jquery, display or hide a section in the web part.
I can do ...
0
votes
2answers
81 views
How to get Item name and extension from itemID and listID in javascript client object model
in my custom page i receive two parameters - a list ID of a list and an Item ID of an item inside said list. So i write this:
function getfileName() {
var clientContext = ...
1
vote
1answer
65 views
How to get a full name from a User Lookup Field using ECMA CSOM
How do you get a user's full name using the ECMAScript (JavaScript) CSOM?
4
votes
4answers
553 views
Multiple Values in CAML query from Array? SharePoint 2010 using jQuery/SPServices
So if I use SPServices to GetListItems with CAMLQuery, is it possible to insert multiple values inside Value Type='Number'> here
I would like to evaluate things throught a flow in my page, add to an ...