Implementing Drag-and-Drop List Reordering in React with dnd-kit
To add drag-and-drop list reordering to React applications, follow these actionable steps:
Install core dependencies: Use npm or yarn to add the base dnd-kit packages to you're project. The core library handles essential drag mechanics, and a sorting-specific package simplifies list rearrangement.
npm install @dnd-kit/core @dnd-kit/sortable @d ...
Posted on Fri, 08 May 2026 06:03:54 +0000 by mkarabulut
Implementing Drag-and-Drop Image Sorting and Multi-Image Upload in TinyMCE with Vue
Plugin.js Implemantation
tinymce.PluginManager.add('multiImageUpload', function(editor, pluginUrl) {
const pluginLabel = 'Multi-Image Upload';
window.multiImageConfig = {};
const dialogUrl = window.location.origin + '/tinymce/multiImageUpload/upload_dialog.html';
multiImageConfig.uploadHandler = editor.getParam('images_uplo ...
Posted on Thu, 07 May 2026 23:11:14 +0000 by heybret