Tuesday, November 27, 2012

Advance paging in SharePoint using Client Object Model and jQuery

Hi All,

Refer to this Link to see how to create custom paging by using SharePoint Client Object Model and Jquery without need to navigate between pages.


New idea,new Approach.   Thanks,   Sachin K.  

Monday, November 26, 2012

Get Client ID

Hi All,

Please find below simple javascript function to get client Id render by server control in html page via javascript.

function GetClientID(id, context) {


var el = $("#" + id, context);

if (el.length < 1)

el = $("[id$=_" + id + "]", context);

return el;

}

  var ctrlOk = GetClientID("btnOk").attr("id");

Where "btnOk" is the Id of your server control.

Thanks,
Sachin K.

Friday, November 16, 2012

Windows Live ID Authentication to SharePoint site

Hi All,

If you ever want to integrate Windows Live ID Authentication to SharePoint site refer to this Link

Here Wictor has explained in detail how to integrate windows live ID with SharePoint.
  
Thanks Wictor for this great article !