Now, the most interesting part of the series. We will be working with the ECMAScript Client Object Model through CoffeeScript. The basic Create, Read, Update and Delete operations are done by using the ECOM with CoffeeScript:
Load the Client Object Model:
Get the Title of the Current Web:
Add Item to a List:
Update Item from List:
Delete Item from List:
Get All Items from List:
In this last piece of code, notice how the while loop in CoffeeScript makes it extremely easy to iterate over a ListItemCollection.
Next:Working with CoffeeScript on SharePoint : Interacting through jQuery
GitHub Link to the project: https://github.com/vman/SPCoffeeScript
Load the Client Object Model:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#Call the loadCOM function only if the sp.js script is loaded on this page. | |
ExecuteOrDelayUntilScriptLoaded loadCOM, "sp.js" |
Get the Title of the Current Web:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
loadCOM = () -> | |
context = new SP.ClientContext.get_current() | |
web = context.get_web() | |
context.load web | |
context.executeQueryAsync -> | |
#Success Callback | |
alert web.get_title() | |
, (sender,args)-> | |
#Failure CallBack | |
alert "Failed. #{args.get_message()} \n #{args.get_stackTrace()}" |
Add Item to a List:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
AddItem = () -> | |
context = new SP.ClientContext.get_current() | |
list = context.get_web().get_lists().getByTitle "CoffeeList" | |
listItemCreateInfo = new SP.ListItemCreationInformation | |
listItem = list.addItem listItemCreateInfo | |
listItem.set_item "Title","Mocha" | |
listItem.update(); | |
context.executeQueryAsync -> | |
#Success Callback | |
alert "Item Added" | |
, (sender,args)-> | |
#Failure CallBack | |
alert "Failed. #{args.get_message()} \n #{args.get_stackTrace()}" |
Update Item from List:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
UpdateItem = () -> | |
context = new SP.ClientContext.get_current() | |
list = context.get_web().get_lists().getByTitle "CoffeeList" | |
listItem = list.getItemById 1 | |
listItem.set_item "Title", "Latte" | |
listItem.update(); | |
context.executeQueryAsync -> | |
#Success Callback | |
alert "Item Updated" | |
, (sender,args)-> | |
#Failure CallBack | |
alert "Failed. #{args.get_message()} \n #{args.get_stackTrace()}" |
Delete Item from List:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
DeleteItem = () -> | |
context = new SP.ClientContext.get_current() | |
list = context.get_web().get_lists().getByTitle "CoffeeList" | |
listItem = list.getItemById 1 | |
listItem.deleteObject(); | |
context.executeQueryAsync -> | |
#Success Callback | |
alert "Item Deleted" | |
, (sender,args)-> | |
#Failure CallBack | |
alert "Failed. #{args.get_message()} \n #{args.get_stackTrace()}" |
Get All Items from List:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
GetItems = () -> | |
context = new SP.ClientContext.get_current() | |
list = context.get_web().get_lists().getByTitle "CoffeeList" | |
listItems = list.getItems '' | |
context.load listItems | |
context.executeQueryAsync -> | |
#Success CallBack | |
itemEnum = listItems.getEnumerator() | |
alert itemEnum.get_current().get_item "Title" while itemEnum.moveNext() | |
,(sender,args)-> | |
#Failure CallBack | |
alert "Failed. #{args.get_message()} \n #{args.get_stackTrace()}" |
Next:Working with CoffeeScript on SharePoint : Interacting through jQuery
GitHub Link to the project: https://github.com/vman/SPCoffeeScript
No comments:
Post a Comment