├── .github └── FUNDING.yml ├── Issue_template.txt ├── License.txt ├── Readme.md ├── bower.json ├── css ├── colReorder.bootstrap.scss ├── colReorder.bootstrap4.scss ├── colReorder.bootstrap5.scss ├── colReorder.bulma.scss ├── colReorder.dataTables.scss ├── colReorder.foundation.scss ├── colReorder.jqueryui.scss └── colReorder.semanticui.scss ├── docs ├── api │ ├── colReorder.disable().xml │ ├── colReorder.enable().xml │ ├── colReorder.move().xml │ ├── colReorder.order().xml │ ├── colReorder.reset().xml │ └── colReorder.transpose().xml ├── event │ ├── column-reorder.xml │ └── columns-reordered.xml └── option │ ├── colReorder.columns.xml │ ├── colReorder.enable.xml │ ├── colReorder.headerRows.xml │ ├── colReorder.order.xml │ └── colReorder.xml ├── examples ├── index.xml ├── initialisation │ ├── col_filter.xml │ ├── column-selector.xml │ ├── complex-header-row.xml │ ├── complex-header.xml │ ├── enableDisable.xml │ ├── footer_callback.xml │ ├── index.xml │ ├── new_init.xml │ ├── orthogonal-data-attrs.xml │ ├── predefined.xml │ ├── reset.xml │ ├── scrolling.xml │ └── simple.xml ├── integration │ ├── colvis.xml │ ├── fixedcolumns.xml │ ├── fixedheader.xml │ ├── index.xml │ ├── responsive.xml │ ├── server_side.xml │ └── state_save.xml └── styling │ ├── bootstrap.xml │ ├── bootstrap4.xml │ ├── bootstrap5.xml │ ├── bulma.xml │ ├── foundation.xml │ ├── index.xml │ ├── jqueryui.xml │ └── semanticui.xml ├── js ├── ColReorder.ts ├── colReorder.bootstrap.js ├── colReorder.bootstrap4.js ├── colReorder.bootstrap5.js ├── colReorder.bulma.js ├── colReorder.dataTables.js ├── colReorder.foundation.js ├── colReorder.jqueryui.js ├── colReorder.semanticui.js ├── dataTables.colReorder.ts └── functions.ts ├── make.sh ├── rollup.config.mjs ├── test ├── api │ ├── move().js │ ├── order().js │ ├── reset().js │ └── transpose().js ├── events │ ├── column-reorder.js │ └── columns-reordered.js └── options │ ├── enable.js │ └── order.js ├── tsconfig.json └── types ├── colReorder.bootstrap.d.ts ├── colReorder.bootstrap4.d.ts ├── colReorder.bootstrap5.d.ts ├── colReorder.bulma.d.ts ├── colReorder.dataTables.d.ts ├── colReorder.foundation.d.ts ├── colReorder.jqueryui.d.ts ├── colReorder.semanticui.d.ts └── types.d.ts /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Issue_template.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataTables/ColReorder/HEAD/Issue_template.txt -------------------------------------------------------------------------------- /License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataTables/ColReorder/HEAD/License.txt -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataTables/ColReorder/HEAD/Readme.md -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataTables/ColReorder/HEAD/bower.json -------------------------------------------------------------------------------- /css/colReorder.bootstrap.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataTables/ColReorder/HEAD/css/colReorder.bootstrap.scss -------------------------------------------------------------------------------- /css/colReorder.bootstrap4.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataTables/ColReorder/HEAD/css/colReorder.bootstrap4.scss -------------------------------------------------------------------------------- /css/colReorder.bootstrap5.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataTables/ColReorder/HEAD/css/colReorder.bootstrap5.scss -------------------------------------------------------------------------------- /css/colReorder.bulma.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataTables/ColReorder/HEAD/css/colReorder.bulma.scss -------------------------------------------------------------------------------- /css/colReorder.dataTables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataTables/ColReorder/HEAD/css/colReorder.dataTables.scss -------------------------------------------------------------------------------- /css/colReorder.foundation.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataTables/ColReorder/HEAD/css/colReorder.foundation.scss -------------------------------------------------------------------------------- /css/colReorder.jqueryui.scss: -------------------------------------------------------------------------------- 1 | 2 | @use 'colReorder.dataTables.scss'; 3 | -------------------------------------------------------------------------------- /css/colReorder.semanticui.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataTables/ColReorder/HEAD/css/colReorder.semanticui.scss -------------------------------------------------------------------------------- /docs/api/colReorder.disable().xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataTables/ColReorder/HEAD/docs/api/colReorder.disable().xml -------------------------------------------------------------------------------- /docs/api/colReorder.enable().xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataTables/ColReorder/HEAD/docs/api/colReorder.enable().xml -------------------------------------------------------------------------------- /docs/api/colReorder.move().xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataTables/ColReorder/HEAD/docs/api/colReorder.move().xml -------------------------------------------------------------------------------- /docs/api/colReorder.order().xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataTables/ColReorder/HEAD/docs/api/colReorder.order().xml -------------------------------------------------------------------------------- /docs/api/colReorder.reset().xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataTables/ColReorder/HEAD/docs/api/colReorder.reset().xml -------------------------------------------------------------------------------- /docs/api/colReorder.transpose().xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataTables/ColReorder/HEAD/docs/api/colReorder.transpose().xml -------------------------------------------------------------------------------- /docs/event/column-reorder.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataTables/ColReorder/HEAD/docs/event/column-reorder.xml -------------------------------------------------------------------------------- /docs/event/columns-reordered.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataTables/ColReorder/HEAD/docs/event/columns-reordered.xml -------------------------------------------------------------------------------- /docs/option/colReorder.columns.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataTables/ColReorder/HEAD/docs/option/colReorder.columns.xml -------------------------------------------------------------------------------- /docs/option/colReorder.enable.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataTables/ColReorder/HEAD/docs/option/colReorder.enable.xml -------------------------------------------------------------------------------- /docs/option/colReorder.headerRows.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataTables/ColReorder/HEAD/docs/option/colReorder.headerRows.xml -------------------------------------------------------------------------------- /docs/option/colReorder.order.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataTables/ColReorder/HEAD/docs/option/colReorder.order.xml -------------------------------------------------------------------------------- /docs/option/colReorder.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataTables/ColReorder/HEAD/docs/option/colReorder.xml -------------------------------------------------------------------------------- /examples/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataTables/ColReorder/HEAD/examples/index.xml -------------------------------------------------------------------------------- /examples/initialisation/col_filter.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataTables/ColReorder/HEAD/examples/initialisation/col_filter.xml -------------------------------------------------------------------------------- /examples/initialisation/column-selector.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataTables/ColReorder/HEAD/examples/initialisation/column-selector.xml -------------------------------------------------------------------------------- /examples/initialisation/complex-header-row.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataTables/ColReorder/HEAD/examples/initialisation/complex-header-row.xml -------------------------------------------------------------------------------- /examples/initialisation/complex-header.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataTables/ColReorder/HEAD/examples/initialisation/complex-header.xml -------------------------------------------------------------------------------- /examples/initialisation/enableDisable.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataTables/ColReorder/HEAD/examples/initialisation/enableDisable.xml -------------------------------------------------------------------------------- /examples/initialisation/footer_callback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataTables/ColReorder/HEAD/examples/initialisation/footer_callback.xml -------------------------------------------------------------------------------- /examples/initialisation/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataTables/ColReorder/HEAD/examples/initialisation/index.xml -------------------------------------------------------------------------------- /examples/initialisation/new_init.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataTables/ColReorder/HEAD/examples/initialisation/new_init.xml -------------------------------------------------------------------------------- /examples/initialisation/orthogonal-data-attrs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataTables/ColReorder/HEAD/examples/initialisation/orthogonal-data-attrs.xml -------------------------------------------------------------------------------- /examples/initialisation/predefined.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataTables/ColReorder/HEAD/examples/initialisation/predefined.xml -------------------------------------------------------------------------------- /examples/initialisation/reset.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataTables/ColReorder/HEAD/examples/initialisation/reset.xml -------------------------------------------------------------------------------- /examples/initialisation/scrolling.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataTables/ColReorder/HEAD/examples/initialisation/scrolling.xml -------------------------------------------------------------------------------- /examples/initialisation/simple.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataTables/ColReorder/HEAD/examples/initialisation/simple.xml -------------------------------------------------------------------------------- /examples/integration/colvis.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataTables/ColReorder/HEAD/examples/integration/colvis.xml -------------------------------------------------------------------------------- /examples/integration/fixedcolumns.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataTables/ColReorder/HEAD/examples/integration/fixedcolumns.xml -------------------------------------------------------------------------------- /examples/integration/fixedheader.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataTables/ColReorder/HEAD/examples/integration/fixedheader.xml -------------------------------------------------------------------------------- /examples/integration/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataTables/ColReorder/HEAD/examples/integration/index.xml -------------------------------------------------------------------------------- /examples/integration/responsive.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataTables/ColReorder/HEAD/examples/integration/responsive.xml -------------------------------------------------------------------------------- /examples/integration/server_side.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataTables/ColReorder/HEAD/examples/integration/server_side.xml -------------------------------------------------------------------------------- /examples/integration/state_save.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataTables/ColReorder/HEAD/examples/integration/state_save.xml -------------------------------------------------------------------------------- /examples/styling/bootstrap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataTables/ColReorder/HEAD/examples/styling/bootstrap.xml -------------------------------------------------------------------------------- /examples/styling/bootstrap4.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataTables/ColReorder/HEAD/examples/styling/bootstrap4.xml -------------------------------------------------------------------------------- /examples/styling/bootstrap5.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataTables/ColReorder/HEAD/examples/styling/bootstrap5.xml -------------------------------------------------------------------------------- /examples/styling/bulma.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataTables/ColReorder/HEAD/examples/styling/bulma.xml -------------------------------------------------------------------------------- /examples/styling/foundation.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataTables/ColReorder/HEAD/examples/styling/foundation.xml -------------------------------------------------------------------------------- /examples/styling/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataTables/ColReorder/HEAD/examples/styling/index.xml -------------------------------------------------------------------------------- /examples/styling/jqueryui.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataTables/ColReorder/HEAD/examples/styling/jqueryui.xml -------------------------------------------------------------------------------- /examples/styling/semanticui.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataTables/ColReorder/HEAD/examples/styling/semanticui.xml -------------------------------------------------------------------------------- /js/ColReorder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataTables/ColReorder/HEAD/js/ColReorder.ts -------------------------------------------------------------------------------- /js/colReorder.bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataTables/ColReorder/HEAD/js/colReorder.bootstrap.js -------------------------------------------------------------------------------- /js/colReorder.bootstrap4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataTables/ColReorder/HEAD/js/colReorder.bootstrap4.js -------------------------------------------------------------------------------- /js/colReorder.bootstrap5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataTables/ColReorder/HEAD/js/colReorder.bootstrap5.js -------------------------------------------------------------------------------- /js/colReorder.bulma.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataTables/ColReorder/HEAD/js/colReorder.bulma.js -------------------------------------------------------------------------------- /js/colReorder.dataTables.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataTables/ColReorder/HEAD/js/colReorder.dataTables.js -------------------------------------------------------------------------------- /js/colReorder.foundation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataTables/ColReorder/HEAD/js/colReorder.foundation.js -------------------------------------------------------------------------------- /js/colReorder.jqueryui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataTables/ColReorder/HEAD/js/colReorder.jqueryui.js -------------------------------------------------------------------------------- /js/colReorder.semanticui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataTables/ColReorder/HEAD/js/colReorder.semanticui.js -------------------------------------------------------------------------------- /js/dataTables.colReorder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataTables/ColReorder/HEAD/js/dataTables.colReorder.ts -------------------------------------------------------------------------------- /js/functions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataTables/ColReorder/HEAD/js/functions.ts -------------------------------------------------------------------------------- /make.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataTables/ColReorder/HEAD/make.sh -------------------------------------------------------------------------------- /rollup.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataTables/ColReorder/HEAD/rollup.config.mjs -------------------------------------------------------------------------------- /test/api/move().js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataTables/ColReorder/HEAD/test/api/move().js -------------------------------------------------------------------------------- /test/api/order().js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataTables/ColReorder/HEAD/test/api/order().js -------------------------------------------------------------------------------- /test/api/reset().js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataTables/ColReorder/HEAD/test/api/reset().js -------------------------------------------------------------------------------- /test/api/transpose().js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataTables/ColReorder/HEAD/test/api/transpose().js -------------------------------------------------------------------------------- /test/events/column-reorder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataTables/ColReorder/HEAD/test/events/column-reorder.js -------------------------------------------------------------------------------- /test/events/columns-reordered.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataTables/ColReorder/HEAD/test/events/columns-reordered.js -------------------------------------------------------------------------------- /test/options/enable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataTables/ColReorder/HEAD/test/options/enable.js -------------------------------------------------------------------------------- /test/options/order.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataTables/ColReorder/HEAD/test/options/order.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataTables/ColReorder/HEAD/tsconfig.json -------------------------------------------------------------------------------- /types/colReorder.bootstrap.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataTables/ColReorder/HEAD/types/colReorder.bootstrap.d.ts -------------------------------------------------------------------------------- /types/colReorder.bootstrap4.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataTables/ColReorder/HEAD/types/colReorder.bootstrap4.d.ts -------------------------------------------------------------------------------- /types/colReorder.bootstrap5.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataTables/ColReorder/HEAD/types/colReorder.bootstrap5.d.ts -------------------------------------------------------------------------------- /types/colReorder.bulma.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataTables/ColReorder/HEAD/types/colReorder.bulma.d.ts -------------------------------------------------------------------------------- /types/colReorder.dataTables.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataTables/ColReorder/HEAD/types/colReorder.dataTables.d.ts -------------------------------------------------------------------------------- /types/colReorder.foundation.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataTables/ColReorder/HEAD/types/colReorder.foundation.d.ts -------------------------------------------------------------------------------- /types/colReorder.jqueryui.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataTables/ColReorder/HEAD/types/colReorder.jqueryui.d.ts -------------------------------------------------------------------------------- /types/colReorder.semanticui.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataTables/ColReorder/HEAD/types/colReorder.semanticui.d.ts -------------------------------------------------------------------------------- /types/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataTables/ColReorder/HEAD/types/types.d.ts --------------------------------------------------------------------------------