UNPKG

kendo-grid-editors

Version:
48 lines (44 loc) 2.04 kB
<!DOCTYPE html> <html> <head> <style>html { font-size: 12px; font-family: Arial, Helvetica, sans-serif; }</style> <title></title> <link rel="stylesheet" href="http://cdn.kendostatic.com/2014.3.1316/styles/kendo.common.min.css" /> <link rel="stylesheet" href="http://cdn.kendostatic.com/2014.3.1316/styles/kendo.default.min.css" /> <link rel="stylesheet" href="http://cdn.kendostatic.com/2014.3.1316/styles/kendo.dataviz.min.css" /> <link rel="stylesheet" href="http://cdn.kendostatic.com/2014.3.1316/styles/kendo.dataviz.default.min.css" /> <script src="http://cdn.kendostatic.com/2014.3.1316/js/jquery.min.js"></script> <script src="http://cdn.kendostatic.com/2014.3.1316/js/kendo.all.min.js"></script> <script src="https://cdnjs.cloudflare.com/ajax/libs/underscore.js/1.7.0/underscore-min.js"></script> <script src="../KendoGridEditors.js"></script> <script src="./TypeProvider.js"></script> <script src="./index.js"></script> </head> <body> <div id="example"> <!-- <div class="box"> <h4>Information</h4> <p>This example demonstrates the offline support of the Kendo DataSource.</p> <ol> <li>1. Use the switch to go in offline mode.</li> <li>2. Create, update or destroy grid items.</li> <li>3. Use the switch to go in online mode. The data source will sync all changes made while offline.</li> </ol> </div> --> <!-- <div class="demo-section" style="margin:0.5em auto"> <div class="box-col"> <div style="width: 700px" id="grid"></div> </div> <div class="box-col console-section"> <h4>Online</h4> <div style="padding-bottom: 30px;"> <input id="online" type="checkbox" checked> </div> <h4>Console</h4> <div class="console"></div> </div> </div> --> <div style="width: 700px; height: 700px" id="grid"></div> </div> </body> </html>