plotly / dash-table

OBSOLETE: now part of https://github.com/plotly/dash
https://dash.plotly.com
MIT License
420 stars 72 forks source link

Include option rowReorder #952

Closed georgeblck closed 1 year ago

georgeblck commented 1 year ago

Hello,

I am trying to use the possibility to drag-and-drop rows that is usually supported by DataTables and it is not working.

This is the simple code snippet that would activate it:

$(document).ready(function() {
    var table = $('#cell-table').DataTable( {
        rowReorder: true
    } );
} );

For more information see here

alexcjohnson commented 1 year ago

This repo is for Dash DataTable https://dash.plotly.com/datatable - a different project from the jQuery plugin you're referring to.

georgeblck commented 1 year ago

Oh sorry, I was sure that this Project built on the jQuery plugin because they shared the name.