Skip to main content

Posts

SharePoint User Profile Service Migration SP 2010 - SP 2013

SharePoint User Profile Service Migration SP 2010 - SP 2013 Identify User Profile Service Databases - User Profile Service Application_ProfileDB_ ID User Profile Service Application_SocialDB_ ID User Profile Service Application_SyncDB_ ID Note : Managed Metadata Service must be migrated before mingrating user profile service Taking Back Ups of the Identified Databases  Log in to you SQL Management Studio and take backups of the above mentioned Databases   (good practice is to make them read only before taking backlups  -> right click->properties->option->set read only) Right click on the DB and select Back up - add the path you want the back ups to be stored                                                                             ...

Signing in Nintex Mobile: Authentication

Authentication Nintex Mobile supports three ways of authentication. ·          Corporate Account : Choose this method when we want to connect directly to your on-premises SharePoint instance. ·          Microsoft Account :  Choose this method when we SharePoint server is not available on the internet and you are using Nintex Live as a gateway between the Nintex Mobile apps and your on-premises intranet.  ·          Office 365 Account: Choose this method when we want to connect the Nintex Mobile apps to your Office 365 tenancy running Nintex Forms for Office 365. Signing in with a Corporate Account A Corporate account is used when connecting directly to your SharePoint environment over a Your VPN, If associate know the URL of your SharePoint server, and associate have a secure connection to it, we may want to use your corporate accou...

Script code for generate Div as Popup in SharePoint custom user control

Below is the code for generate Model pop in share point or .net . I used this code in my custom share point user control <script type="text/javascript" src="/_layouts/images/MyUserControl/jquery.min.js"></script> <script type="text/javascript" src="/_layouts/images/MyUserControl/jquery-ui.js"></script> <link href="/_layouts/images/MyUserControl/jquery-ui.css" rel="stylesheet" type="text/css" /> <script type="text/javascript">     function ShowPopup() {         $("#dialog").dialog({             title: "Associate Deatils",             width: 800,             Height: 670,             buttons: {                 Close: function () {                     $(this).dialog('close');       ...

Hide Col in grid view using css and C# code

Dear All , using below code we can hide  the columns in grid view and  same the value in share point list using J Query code or C# code. Value Life cycle will remain same as visible columns .hiddencol   {     display: none;   } <asp:BoundField DataField="legal_hold" HeaderText="Legal hold" ItemStyle-CssClass="hiddencol" HeaderStyle-CssClass="hiddencol" />

Custom Ribbon Action Apps For SharePoint Online/O365 :

Open Visual Studio 2013> Select Option > App For SharePoint > OK right click on on Newly created Solution > Add New Item Select ribbon Option >  Click ok Modify the element .xml  based on your requirement  <?xml version="1.0" encoding="utf-8"?> <Elements xmlns="http://schemas.microsoft.com/sharepoint/">   <CustomAction Id="23527d0d-e924-4838-94be-ee2e1a347210.Download Bulk Files"                 RegistrationType="List"                 RegistrationId="101"                 Location="CommandUI.Ribbon"                 Sequence="10001"                 Title="Invoke &apos;Download_Bulk_Files&apos; action">     <CommandUIExtension>       <!--...