Quick Start with Webix Grid
This tutorial walks you through creating a basic application with DataGrid. As you will follow the steps, you will learn how to initialize DataGrid, customize and configure its appearance and load data to it. The final code of the tutorial can be used as the start point for applications using DataGrid.
you can check the full snippet Quick Start with DataGrid
A New HTML File and Related Code Files
Section titled “A New HTML File and Related Code Files”To start, create a new HTML file and include the DataGrid code files in it.
Required code files are:
- grid.css
- grid.js
// A basic html page with the included DataGrid code files<html><head> <title>Quick start with DataGrid</title> <script src="../codebase/grid.js" type="text/javascript" charset="utf-8"></script> <link rel="stylesheet" href="../codebase/grid.css" type="text/css" charset="utf-8"></head><body> <script> //here you will place your JavaScript code </script></body></html>