Posts

Showing posts from September, 2013

Getting SharePoint List Items using JQUERY

< script type ="text/javascript" src ="/_layouts/images/Tri/jquery-1.6.1.min.js"></ script > < script type ="text/javascript" src ="/_layouts/images/Tri/jquery.SPServices-0.7.2.min.js"></ script > < script language ="javascript" type ="text/javascript">     $(document).ready( function () {         $().SPServices({             operation: "GetListItems" ,             async: false ,             listName: "Tasks" ,             CAMLViewFields: "<ViewFields><FieldRef Name='Title' /></ViewFields>" ,             completefunc: function (xData, Status) {                 $(xData.responseXML).SPFilterNode( "z:row" ).each( function () {                     var liHtml = "<li>" + $( this ).attr( "ows_Title" ) + "</li>" ;                     $( "#tasksUL" ).

SharePoint 2010 SP1 - Recovering Deleted Sites and Site Collections

Image
Get-SPDeletedSite  – this command gets a list of all deleted Site Collections in your farm. Restore-SPDeletedSite  – this command is used to restore a deleted Site Collection within your farm Remove-SPDeletedSite  – this command is used to actually clear out any deleted Site Collection you no longer want to keep (think "Empty Recycle Bin"). hope this will helps you ... happy coding ..

Create web application using powershell in SharePoint 2013

Image
The PowerShell cmdlet is given below : New-SPSite -Url "http://url of the site" -OwnerAlias "<Domain\Administrator>" -Template "STS#0" Hope this will helps you... Happy coding...

Demo the use of SPCalendarView (CSSharePointCustomCalendar)

Click here to View Details Hope this will helps you... Happy coding...

SPCalendarView in sharepoint 2010 placed on custom aspx / ascx page does not respond to any actions

RESOLUTION/ WORKAROUND 1. Webpart containing SPCalendarView ; inherting from System.Web.UI.WebControls.WebParts.WebPart    has issues. The Day/ Month/Year & many more navigations & hyperlinks do not work. 2. SOLUTION : Webpart containing SPCalendarView ;inherting from Microsoft.SharePoint.WebPartPages.WebPart works with no issue. NOTE : here we are not making any changes in rendering level. We still will get the v4 rendering looks. More Details : Click Here to View Hope this will helps you.. Happy Coding...