Pages

Thursday, February 25, 2016

Load specific text in the dropdown in the Nintex form 2013 using Jquery



          var varLocationID=NWF$('#' + varJSLocationID).val();  
 LocationValue = ko.dataFor(NWF$("#" + ddlJSLocation)[0]);
       // Setting value to drop down  
       LocationValue.initialValue  = varLocationID;

Friday, November 27, 2015

Nintex Workflow 2013 Error in Sharepoint 2013 Central Admin Site


When you installing Nintex Workflow 2013 in your sharepoint 2013 server, After installed the installer and Deployed the Nintex Workflow WSP then open the Nintex Workflow Management, It will throw in the below error 
The located assembly’s manifest definition does not match the assembly reference. (Exception from HRESULT: 0x80131040)
If you come across the aboveerror while clicking the “Nintex Workflow Management” in Central Admin, Reset IIS

Wednesday, September 16, 2015

Enable cross domain sharepoint profile picture in sharepoint 2013

I just enabled custom claim provider Authentication in the 80 web application, After that I just enabled My Site with custom claim provider Authentication .

When I open my 80 website and click on the my site link then My Profile picture is not showing in the first time.  So I just enabled in the below solution. It is working fine.


Run the code in the PowerShell skills. Basically all you need to do is to set the CrossDomainPhotosEnabled property on the SPWebApplication object to true, like this:
 
 
 
 
asnp Microsoft.SharePoint.PowerShell
$wa = Get-SPWebApplication http://spsxyz.com
$wa.CrossDomainPhotosEnabled = $true
$wa.Update()