Saturday, 14 March 2015

CSOM:- Programmatically Get SharePoint list person or group column value in SharePoint using CSOM

  public static string GetUserFieldType(ClientContext ctx, FieldUserValue value)         {             var objList = ctx.Site.RootWeb.SiteUserInfoList;             var userInfo = objList.GetItemById(value.LookupId);             ctx.Load(userInfo, i => i.ContentType);            ...
Continue Reading...

Sunday, 1 March 2015

SharePoint Angular Js :- Add items to SharePoint List using Angular js Example

1.Create a Custom List Name as "Emp" and Create a below Column Name 2.Create one Content Editor WebPart and  paste the below code    <script src="//ajax.googleapis.com/ajax/libs/angularjs/1.2.15/angular.min.js"></script>    <script>        function EmpCtrl($scope)...
Continue Reading...

SharePoint Angular Js :- Get items from SharePoint List using Angular js Example

1.Create a Custom List Name as "Emp" and Create a below Column Name 2.Create one Content Editor WebPart and  paste the below code <script type="text/javascript"> function altRows(id){ if(document.getElementsByTagName){   var table = document.getElementById(id);   var rows = table.getElementsByTagName("tr");  ...
Continue Reading...

SharePoint Knockout js :- Get items from SharePoint List using Knockout js

1.Create a Custom List Name as "Emp" and Create a below Column Name 2.Create one Content Editor WebPart and  paste the below code <script src="http://code.jquery.com/ui/1.10.3/jquery-ui.min.js"></script>    <script src="https://SiteCollectionUrl/sites/DevSite/Style%20Library/knockout-3.3.0.js"></script>...
Continue Reading...

Followers

Follow The Author