GIJGO
Run Example
Close Window
<html> <head> <meta charset="utf-8" /> <title>Material Design TreeView with Checkboxes</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> $('#tree').tree({ primaryKey: 'id', uiLibrary: 'materialdesign', dataSource: '/Locations/Get', checkboxes: true }); </script> </body> </html>