Web scripting language.
2
votes
0answers
17 views
SP.UI.Status anonymously inaccessible
Using Office 365 (SharePoint Online) I have stumbled into an annoying thing. Some parts of the JavaScript CSOM does not seem to be accessible when your browse the site anonymously. If Firstly I tried ...
0
votes
2answers
37 views
Get current ListItem with ECMAScript
I need to calculate a value for a custom ListItem field, based on some values on the same form and also on some values from other lists.
I should be able to do this, using ECMA Script. I started by ...
0
votes
1answer
43 views
How to check permissions of a page you're not currently on, with JavaScript?
I want to check the permissions of a page, but not be on that page. I can already check permissions of the page you're currently on, but I just want to check a list of links and check each page in ...
1
vote
0answers
26 views
Where to find Sharepoint 2010 javascript api
I recently need to do some customization with the Sharepoint's rich text editor. When I looked the Javascript Class Library provided by MSDN, I found it very general also missing some namespace like ...
0
votes
2answers
41 views
getElementById javascript in a cewp
Please bear with me as I am still learning sharepoint and web technologies in general.
I have put a rotator on my sharepoint page using the easy to use script generated by ...
1
vote
2answers
36 views
How to update 'asynchronous update' enabled listview programatically using javascript
I'm have a page in which one custom visual webpart and one listview webpart.
I've have some custom checkboxes and dropdowns in my visual webpart, I'm making an ajax request and when i select the ...
0
votes
0answers
26 views
Using REST API to get Site Groups in SP 2013
I'm trying to use the REST API in SharePoint 2013 to get the site groups.
I've been using this link for a little help...
http://msdn.microsoft.com/en-us/library/jj245927.aspx
It's to do it with the ...
4
votes
0answers
33 views
SharePoint 2013 hide elements ( ex: div title ) when ribbon is expanded / ribbon is in use
Is there a css class/id in SharePoint 2013 that hide elements when the ribbon is in use?
To clarify what I mean with "ribbon is in use", that the ribbon is expanded (show picture marked as red):
...
0
votes
1answer
17 views
Sending video URL from a web part to media web part created dynamically?
Here is a simple scenario I need to send a video URL from one page to another. The page from where the URL comes is a web part and it will display a set of video previews, on click of which a new ...
0
votes
0answers
9 views
Script File and Calculated Column Format/Data Types
This may be a bit of a best practices question, but today I made a few changes to the site/lists I'm developing to facilitate development and data rendering.
In CEWPs I've begun using .aspx files ...
0
votes
2answers
27 views
email page hyperlink on sharepoint page
Hi I am trying create a email link on sharepoint page i wrote forllowing script
function emailstory()
{
mail_str = "mailto:?subject=" + document.title;
mail_str += "&body= " ...
1
vote
0answers
23 views
SharePoint and Javascript - Get content types for list
I have been using the JSOM with SharePoint 2013 and am trying to get the content types of a list to iterate through, and am having no luck.
First, while the success handler is being reached, the ...
0
votes
0answers
18 views
Trying to get all selected items from a list
Im trying to get all items selected in a list but unable to do so with the code below:
getItem = new TextBox();
getItem.Text = "get item";
getItem.Attributes.Add("onkeyup",
...
0
votes
1answer
18 views
Is it possible to add JavaScript to the host web from an app?
Is it possible from a SharePoint-hosted app to add some JavaScript hosted on an external CDN to every page in a site (host web) without having to use a custom master page?
If not, is this something ...
0
votes
0answers
15 views
Can I change the display name of column in a listview using JSlink
I've a requirement to change the display name of a column in only one view, I've to show 'Responsible' instead of 'Responsible Person'. Is this possible by JSlink ?