knowledgecenter-breadcrum

Knowledge Center

25 Jun, 2020

Row Reorder by Drag and move rows in DataTable plug-in.

Posted on 25 Jun, 2020 by Admin, Posted in Dynamics 365

Row Reorder by Drag and move rows in DataTable plug-in. Blogs

Row Reorder by Drag and move rows in DataTable plug-in.

Introduction

In my last blog I explain how to display a grid using DataTable plugin. In this blog I’m going to explain how we can add feature of Row-Reorder in DataTable. Row Reorder adds the ability for rows in a DataTable to be reordered through click and drag / touch and drag.

Step by Step

  1. We are using jQuery plugin DataTable and for that we must add following CDN links under the tag.
    1. jQuery : https://code.jquery.com/jquery-3.3.1.js
    2. CSS link: https://cdn.datatables.net/1.10.20/css/jquery.dataTables.css
    3. JS link: https://cdn.datatables.net/1.10.20/js/jquery.dataTables.js
  2. For reorder :
    1. JS link: https://cdn.datatables.net/rowreorder/1.2.6/js/dataTables.rowReorder.min.js
    2. CSS link: https://cdn.datatables.net/rowreorder/1.2.6/css/rowReorder.dataTables.min.css
  3. In
  • In < head > tag, add script using [removed] tag as following:
    1. [removed]
      $(document).ready(function () {
      var table = $(‘#ReorderTable’).DataTable({
      rowReorder: true
      });
      });
      [removed]
  • To make GUI more relatable then change cursor symbol when we hover to column while moving.
    1. #ReorderTable tbody td:first-child {
      cursor: move;
      }
  1.  

Above example is for implementing DataTable plugin with reorder from scratch. If you already have DataTable Plugin implementer and you want to add Row Reorder feature, then just add reorder related JS and CSS link as above and add following property to DataTable :

rowReorder: {
dataSrc: ‘
}

tag, add table using tag and give appropriate id table as following:

  1.  

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

Sr. No. Full Name Phone Number
1 Karan Sharma 7878787878
2 Raju Rastogi 32323232323
3 Anil Rao 23232323232

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

Comment

This is a Required Field

Loading

Recent Updates

Blogs
18 Jul, 2024

How to use Fiddler to debug your PCF while doing development.

Have you ever felt like you're spending too much time debugging your PCF (PowerApps Component Framework) during development, only to…

READ MORE
Blogs
16 Jul, 2024

How to use Solutions with Power Pages

What is Solution in power Pages? A solution is a container for components such as Website Configuration and Dataverse Components.…

READ MORE
Blogs
15 Jul, 2024

Create a Dataverse table with a SharePoint List

In today’s business world, Organization uses SharePoint lists for document management, and data storage. Let's assume a scenario where an organization…

READ MORE