Wednesday, October 28, 2015

Creating a SharePoint list and Adding List Items in SharePoint Apps

In my previous article I explained how to read from a SharePoint list available inside a SharePoint App site. In this article my focus would be on how to create a list inside the app and how to add list items to it. The same app I used in the previous example will be used here. Here is the code available in my Default.aspx file. It is simple just a textbox and a lable inside a HTM table and a div which includes an unordered list.

I will start having the same set of definitions in the top.

var context = SP.ClientContext.get_current();
var web = context.get_web();
var user = context.get_web().get_currentUser();
var lists = web.get_lists();

Wednesday, October 21, 2015

Business 365 Saturday Singapore


I will be speaking at the Business 365 Saturday Singapore on 24th October 2015 and already done with the slides and other preparations. If you are hanging around Singapore 24th Saturday, this is a must visit that you may not want to miss. 

Many good sessions arranged to 3 separate tracks make it a day for Business users, developers as well as IT administrators. All in all I am again glad to be a part of a good speaker line up.

If you aren't done registering for the event yet, Hurry up! only a few days left. Register here..  

Here are the two sessions I will be conducting along with a brief summary on each.

Thursday, October 15, 2015

SharePoint Dev on Azure at SharePoint Sri Lanka

I got the opportunity to speak on "Moving your SharePoint Development to Azure" at the SharePoint Sri Lanka October Monthly User Group meeting held at Microsoft Sri Lanka.

Wednesday, October 14, 2015

My Articles on Visual Studio Magazine

I though of pulling up some articles that are written by me on Visual Studio Magazine as I found them interesting and as a part of putting things into a single place.

Where JavaScript and SharePoint Apps Intersect

SharePoint is versatile, in that developers can interact with its data via other programming languages besides what's in Visual Studio. Here's how AngularJS fits into the development mix.