Posts

Showing posts from June, 2020

How To : (Solved) SharePoint Open Pop-up Form using Nintex Forms

Image
In this post I'm going to demonstrate how to open a pop-up from using Nintex forms Implementation So, simply follow the steps mentioned below. Crate a new Custom JavaScript button. Go to Control Settings of button and add the following  On the Form Settings page add the following JS code on the "Custom JavaScript" section  function redirectToRFIForm(){ var options = { title: "Your Title", url: 'http://mysite/sites/page.aspx', dialogReturnValueCallback:Function.createDelegate(null, portal_modalDialogClosedCallback)}; SP.UI.ModalDialog.showModalDialog(options); }   ----------- Happy Coding ----------- 

How To Add A Delete Button To SharePoint 2013 List Column

Image
In this blog, I will show you how to add a delete button to the SharePoint List / Document Library column as below  Note : In this example I will implement to the document library  Implementation So, simply follow the steps mentioned below. Create a new calculated column. Add the following formula. Just copy and paste the formula into the calculated column. ="<a href='#' onclick='javascript:DeleteItem("&ID&");'><img alt='delete' src='/_layouts/images/delitem.gif' style='border:0px;' /></a>" Select Return data type as : Number an Click "Ok" Note : In here I created a onclick javascript function as ' DeleteItem ' and pass the List Item ID Now we have a link button in the List View  Go to List view page > Settings > Edit Page Add a 'Content Editor' web part and insert the following script <script type="text/javascript"...