Showing posts with label JQuery. Show all posts
Showing posts with label JQuery. Show all posts

Oct 9, 2017

Check if current user is member of a SharePoint group using JQuery

Scenario This code will help you to check if the current user is a member of a group. Suppose you want to check if the current user is member of a Owners group or not. Just update the "grpName" variable value and run the code 😎 Steps to use the code 1. Use the Script Editor web part and add...

Jul 25, 2017

Display SharePoint List or Library in Data table

Introduction: Today we are going to learn an interesting article of how to use DataTables.js JQuery ðŸ”— in SharePoint(2013, 2016, Online - O365). Since SharePoint 2013 has released, the way how the data is created, updated & displayed has changed a lot - I mean Client Side scripting has...

Jun 28, 2017

Cascading drop down in SharePoint using REST API

Cascading drop down or filtered Lookup Columns in SharePoint is one of the most used functionality in most of the projects for various business needs. In one of my old articles, I have explained about creating cascading or filtered lookup columns using JQuery & SPServices in MOSS 2007 version of...

Jun 20, 2017

Accessing Checkbox in SharePoint using JQuery

I couldn't find anything obvious for accessing SharePoint Check Box so chucked this together, hopefully useful for someone else 😉😎 Read this article to know about Accessing Radio Buttons using J Query in SharePoint Note: The below code/solution is applicable to accessing check box in...

Dec 13, 2016

Character Limit using JQuery in SharePoint

In this post, we will learn how to implement Character Count (here in this example, maximum allowed 2000 characters) using JQuery in SharePoint. Prerequisite: 1. Create a SharePoint List with a column named "Comments" - data type Multi line text with plain text as the option selected 2. SharePoint...

Oct 17, 2016

Accessing Radio Buttons using JQuery in SharePoint Online

I couldn't find anything obvious for accessing SharePoint Radio Buttons so chucked this together, hopefully useful for someone else :) Note: The below code/solution is applicable to accessing radio button in a custom SharePoint List forms. To know how to create a custom form in SharePoint Online,...

Oct 13, 2016

Get Current Logged in User & Manager using REST API in SharePoint Online

Scenario:  Environment: SharePoint Online  Approach:      Populating Current logged in user in People Picker. Also populating user's Manager automatically using REST API and SP Services. Solution: 1. Create an SharePoint custom list "Learning" (in my case). 2. Create...

Feb 13, 2012

Cascading dropdown (or) Filtered Values in Lookup Columns in SharePoint

Update: 27/06/2017 To know about implementing Cascading drop down or filtered lookup in SharePoint 2013 or SP Online using REST API, read this article: Cascading drop down in SharePoint using REST APIUpdate: 06/07/2017 To know about implementing multi-value lookup column and filtering values,...