c# .net Adsense ADO.NET Linq Viruses/security asp.net MVC JQuery Angular-js Node-js SEO Java C++ SQL API Networking vb.net .Net Css JavaScript Generics c#.Net entity framework HTML Website host Website Construction Guide HTTP tutorial W3C tutorial Web Services JSON Psychology Ionic framework Angular ReactJS Python Computer Android
JQuery

JQuery sortable example using dropzone.js

| | Html , JQuery

We cannot not sort the image in dropzone area using Dropzone Js.So we can use jQuery ui plugin to achieve this. And also, I will show you how to highlight the dropzone area using the CSS. The jQuery ui allows the user to sort the image using JQuery sortable using the placeholder css property.

You can learn more detail about Dropzone js fileupload plugin with an example here.

JS Code:

<script type="text/javascript">

    $(document).ready(function () {
        Dropzone.autoDiscover = false;
        $("#dZUpload").sortable({

            change:
function (event, ui) {

                ui.placeholder.css({visibility: 'visible', border: '1px solid#337ab7' });

            }

        });

        $("#dZUpload").dropzone({
            url: "GenericHandler.ashx",
            maxFiles: 5,
            addRemoveLinks: true,
            success: function (file, response) {
                var imgName = response;
               file.previewElement.classList.add("dz-success");
                           },
            error: function (file, response) {
               file.previewElement.classList.add("dz-error");
            }
        });
    });
</script>

drag and drop image jquery