Thursday, June 27, 2013

Adding/ Starting search service in your share point site (sharepoint 2013)

Easy step of staring search on share point 2013


Step 1
Go to central admin
Step 2
Click on application mangement
Step 3
Click on mange services on server
Step 4
 Start SharePoint Server Search
Step 5
Click on SharePoint Server Search
Step 6
Make search service application
Step 7
Click on search service application
Step 8
Add crawling job
Step 9
Schedule and start crawling job
Step 10
Check the search service health in Search Application Topology
Step 11 
When all are runing fine
test teh search in ur side

Sunday, June 23, 2013

Adding accordion in left navigation in sharepoint 2013


 Add this script in your master page

$(function()
{ if($('#sideNavBox .menu-item.selected').length)
{ $('li.static').removeClass('selected');
 $('#sideNavBox .menu-item.selected').parents('li.static').addClass('selected');
 $('#sideNavBox .menu-item.selected').parents('li.static').last().siblings() .find('> ul').hide(); } 
else $('#sideNavBox .root.static > li.static > ul').hide(); 
$('#sideNavBox .root.static > li.static').each(function()
{ if($(this).find('ul').length){ $(this).addClass('father').click(function()
{ if($(this).children('ul').css('display') != 'none')
{ $(this).removeClass('selected').children('ul').slideUp(); } 
 else { 
$(this).siblings().removeClass('selected').children('ul').slideUp(); 
 $(this).addClass('selected').children('ul').slideDown(); 
 } 
 }); 
}
 });
 });

Thursday, June 20, 2013

How to add Dynmaic image in RDL Report in sharepoint 2013

Step 1..

Create the Virtual Directory for images

Step2..

Add the Image path in DataBase

Step 3..

Add the image path  in Report

Step 4..

Set the Source type of image to Data base.

Step 5..

 Add the Data base Filed to Image

Step 6..

Select the MIME Type

That should by according to you image format like image/jpeg, image/gif


Thursday, June 6, 2013

Adding Work follow Start button in your page (sharepoint 2013)

var itemId=-1; var itemids=-1; var listTitle = ''; $(document).ready(function() { var thisListGuid = '{F01484D1-FC55-4F81-94DE-CF503FEAF322}'; ExecuteOrDelayUntilScriptLoaded( function() { itemId = window.location.search.substring(4); // itemId = $().SPServices.SPGetLastItemId({listTitle : "Material Reuisition Form" listTitle = "Material Form"; var ctx = SP.ClientContext.get_current(); var list = ctx.get_web().get_lists().getByTitle(listTitle); var item = list.getItemById(itemId); ctx.load(item); ctx.executeQueryAsync( function () { itemids = item.get_item('UniqueId'); }, function(sender, args) { alert('Request failed. \nError: ' + args.get_message() + '\nStackTrace: ' + args.get_stackTrace()); }); }, "sp.js"); $("#inputwfllow").click(function () { var lnk= 'http://abc/afd/_layouts/15/IniWrkflIP.aspx?List=' + thisListGuid + '&ID='+ itemId + '&ItemGuid=' + itemids + '&TemplateID={35214bc5-00f3-4aeb-add0-6f648c7c765e}&Source=http%3A%2F%2F10%2E100%2E21%2E32%2FInventoryTracking%2FSitePages%2FMR%5FRequest%2Easpx'; var title = "Ascertain Jurisdiction Report"; window.open(lnk); }); });

How to Build interactive Design in Power Pages

 Need to Create a design in figma/or any UX tool Create a Power pages site. Create new Page Open page in VS Code in every page there are the...