Questions tagged [sharepoint-2013]

The 2013 edition of Microsoft SharePoint

Leveraging the power of jquery-tmpl with the responseText

I am currently working on populating jquery-templates retrieved through an ajax call from a different folder on the server. I attempted to fill the responseTexts using .tmpl({..}) but unfortunately, it didn't work as expected. Here is my approach: var tem ...

Refresh Panel triggers postback after a period of dormancy

Within my SharePoint solution, I have incorporated an asp.net user control that utilizes Telerik Asp.net Ajax controls to facilitate basic datagrid CRUD operations. This grid is utilized within a web part on a SharePoint 2013 page. The datagrid is enclose ...

Unauthorized access error in the Sharepoint 2013 system for sharepoint-hosted applications

Currently, I am working on developing a travel application using SharePoint 2013 (sharepoint-hosted app) through Visual Studio and deploying it on Office 365. I have successfully created a custom list on Office 365 and am attempting to access it from jQuer ...

The variable _spPageContextInfo has not been defined, resulting in a ReferenceError

The code in my JavaScript file looks like this: var configNews = { url:_spPageContextInfo.webAbsoluteUrl, newsLibrary: 'DEMONews', listId: '' }; // Attempting to retrieve the List ID $.ajax({ url: configNews.url + "/_a ...

Utilizing ng-grid to pass variables within cellTemplate

My ng-grid is connected to a SharePoint list, but I'm facing an issue where the list returns an ID number instead of the user name when populating a field with a user name. To solve this issue, I have created a function that converts the ID to a user name ...

Ways to manage the order of RequestExecutor execution

I have recently developed an intranet site using SharePoint Office 365. Within the master page file, there is a menu bar that utilizes a List to store the URL and name. My goal is to control the visibility of the "Admin" button based on whether the user ...

Access Sharepoint from an external site

Looking for assistance with a SharePoint list containing columns for Name, Position, Office, and Salary. Upon logging in with specific credentials to the SharePoint website, I need to retrieve all items from the list and showcase them on my own website. ...

Creating a new row does not result in the creation of a new span displaying the character count message

Every description field should have its own character counter, with different SpanIDs displayed in respective SpanIds for each new row. How can this be achieved? <div class="row"> <div class="col-s ...

Sharing information between a controller and a service in AngularJS

First: Check out this plunk. In my current project, I am working on developing a simple sign-up application using AngularJS that is hosted on a SharePoint site. To retrieve the current user data, I have implemented a factory method as shown below: app.f ...

Streamlined method for creating forms and charts within SharePoint

When it comes to creating charts and forms on SharePoint, what is the best approach for maximizing efficiency? Using AngularJS web parts with CRUD operations. Modifying standard forms and integrating charts using JavaScript libraries and CSS. Are there ...