SharePoint Client Side: ECMAScript, ClientOM

Download Report

Transcript SharePoint Client Side: ECMAScript, ClientOM

jQuery, jQuery UI, jPoint,
jQuery.SPServices
ExtJS, Prototype.js…
http://darrenjohnstone.net
var lists = new
SPAPI_Lists("http://server") ;
var listcollection =
lists.getListCollection();
if(listcollection.status == "200"){
$(listcollection.responseXML
)
.find("List")
.each(function(){
//here we have each
list
});
http://jpoint.codeplex.com
var listItems =
jP.getList('/','Title').getSPItemsW
ithQuery(CamlQuery,RowLimit);
var itemObjects =
listItems.getItemsFieldData();
http://muhimbi.com/Products/
SharePoint-Infuser-(Free).aspx
http://SmartTools.CodePlex.com
http://SPCS.CodePlex.com
http://SPServices.CodePlex.com
http://jPoint.CodePlex.com
clientContext.Load(oList,list => list.Fields
.Where(field => field.Hidden == false &&
field.Filterable == true));
clientContext.ExecuteQuery();