0
votes
2answers
54 views

Custom action url error while deploy: Error occurred in deployment step

I have some strange error. In sharepoint 2010 I have something like: <UrlAction Url="javascript:OpenPopUpPageWithTitle('{SiteUrl}/Style ...
0
votes
0answers
10 views

How do I get the selected list from the application trust defined at installation? For SharePoint 2013 Apps

How do I get the parameters set when installing the App to SharePoint 2013? So, when the user has to give the app permissions (at install) to a certain list, how do I get the chosen list? Thanks I ...
-1
votes
0answers
223 views

Customizing SharePoint 2013 list view web part callout panel [closed]

I am trying to customize the SharePoint 2013 List view web part callout panel. The callout panel I am referring to is the "..." that you see on list items. When you click the "..." it pops-up a hover ...
0
votes
0answers
41 views

How to edit crm entity from sharepoint

I need to be able to update a CRM Online 2011 entity from a SharePoint 2013 web part. I was using the content editor webpart with JavaScript, to update a SharePoint list, but because JavaScript is ...
0
votes
0answers
202 views

sharepoint 2013 refresh custom task list after sorting

I'm using jsLink to manipulate rendering of the list elements in SP2013. It seems fine, as I was able to change each item display, adding colors, some borders etc. I did it using code below in JS ...
0
votes
1answer
129 views

How do I set the value of a URL field in the SharePoint 2013 JSOM

Anyone know how to set the description and url of a URL field in the SharePoint 2013 JSOM? All the field settings examples I've seen use spListItem.set_item(fieldName,fieldValue) which works great for ...
2
votes
0answers
218 views

Setting Search Center URL in SharePoint 2013 using Javascript CSOM

In SharePoint 2013, I am trying to access Search object through JavaScript CSOM. I want to know the object which can give me the access to Search Settings under Site Settings. I tried looking under ...
1
vote
3answers
1k views

How Retrive Sharepoint List data using Jquery

I am trying to retrieve list data using Jquery. But I am getting the whole list Html page not the values from the List. Jquery Code is as follows <script ...
0
votes
1answer
633 views

SharePoint 2013 API jQuery.Ajax Access Denied

I am trying something simple - to retrieve list information from a SharePoint 2013 list. However, I am getting access denied when the jQuery Ajax is processed. I've tried setting up headers with the ...
0
votes
1answer
211 views

SharePoint 2013 App: 'Object' not defined (IFrame / IE9)

When developing an (SharePoint hosted) App Part for SharePoint 2013 I continiously get the error message 'Object' not defined. On other occassions (depending on which external .js file I'm loading) I ...
2
votes
0answers
63 views

SharePoint App DOM Manipulation and Deployment

I've got some issues with development and deployment of a sharepoint app. The App is going to be an App Part in a SharePoint site. One issue is, that the app (provider hosted) is not high trusted, ...
0
votes
1answer
293 views

Unable to access sharepoint 2013 site using COM javascript

I have requirement to work on COM Javascript in SharePoint 2013. I have created one ".aspx" page and included script files to access SharePoint site & list using Javascript. However, I am not able ...
0
votes
0answers
502 views

Custom List anonymous access in sharepoint 2013

I have created a SharePoint 2013 app(SP hosted app). I created custom list and stored items into it but i am having problem when i try to access custom list from different web browser which clearly ...
0
votes
0answers
20 views

Get or monitor state of SP.ListOperation.Selection in App Part

I developing an app for sharepoint 2013, that must show some information about currently selected item. SharePoint 2013 client part actually is an IFrame with page hosted in another domain like ...
0
votes
0answers
937 views

How to retrieve sharepoint 2013 list data using JQuery or JavaScript and Fill DropDownList?

I am trying to retrieve list data using JavaScript. But something goes wrong. I am trying to debug the code but I am not able to understand that thing. Following is the JavaScript Code: ...
0
votes
0answers
120 views

The field 'EventDate' of type 'DateTime' cannot be used in the query filter expression

I am trying to filter standard Calendar events via SharePoint web api and my query looks like this: /_api/web/lists/getbytitle('calendar')/items?$filter=( EventDate ge ...
0
votes
0answers
129 views

How to access Managed Properties in SharePoint2013 using JavaScript Client Object Modal

Any help will be really appreciated if someone can point to find a good way to access the Managed Properties at Site Collection Level and at Global Level in SharePoint2013 . My requirement is to ...
0
votes
2answers
106 views

SharePoint App Development AppWeb communication with HostWeb

I have a problem in a SharePoint-Hosted App. All I want to do is, get the lists of the web, in which the app is running and work with these lists. With this code I get the lists in the AppWeb: ...
0
votes
1answer
47 views

Reading data or labels of a sharepoint site?

Hello everybody! My problem is that i want to read any data of a SP-Site. So i tried to run a javascript code with a content editor webart which i added to a Site. There i trie to use: var name = ...
6
votes
2answers
451 views

JavaScript Object.create and IE8

I'm doing software development for SharePoint 2013. Part of this involves overriding SharePoint's file previewer (filepreview.debug.js becomes myfilepreview.debug.js). We've run into problems, ...
2
votes
0answers
109 views

SharePoint Live Tile Notifications

I've been searching for some resources on SharePoint '13 Workflow integration with Windows 8 live tiles including MSDN, multiple blogs (such as http://www.howtosp.com/blog/). I've found a variety of ...
1
vote
1answer
709 views

How to delete an item using REST for Sharepoint 2013

I'm creating a Sharepoint App and i am restricted to using Javascript (jQuery included) and REST endpoints. I would like to delete an item from the host using the web app, but i'm getting an error ...