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.
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.
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 !