GIJGO
Run Example
Close Window
<html> <head> <meta charset="utf-8" /> <title>TreeView Drag And Drop</title> <script src="https://code.jquery.com/jquery-3.3.1.min.js"></script> <script src="https://unpkg.com/gijgo@1.9.14/js/gijgo.min.js" type="text/javascript"></script> <link href="https://unpkg.com/gijgo@1.9.14/css/gijgo.min.css" rel="stylesheet" type="text/css" /> </head> <body> <div id="tree"></div> <script type="text/javascript"> $(document).ready(function () { $('#tree').tree({ primaryKey: 'id', dataSource: '/Locations/LazyGet', lazyLoading: true }); }); </script> </body> </html>