Skip to main content

Posts

Showing posts from January, 2016

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" />