Introduced
Download the official website sample here
This tutorial contains a variety of aspects:
1. How to add a standard DHTMLX build on a page
2. How to organize components on a page
3. How to add Filters
4. How to get data populate build from server side
5. How to save user-modified data to the server
6. How to make the build work together
This is a simple contact management tutorial It contains the following builds: toolbars, menus, tables, forms, layouts, etc.
Part I: Creating a file for an application
First, we need to introduce the relevant framework files! Standard download page (Professional version is said to be able to get answers on the DHTMLX opening search. )
After the download is complete, we bring the two files of Dhtmlx.js and dhtmlx.css into the page from the CodeBase folder. (Must be CSS in front)
Steps:
1. download file package Dhtmlxsuite
2. Create a folder in your project Contact_manager
3. Unzip the file and put the codebase in the contact_manager folder.
4. Locate the Dhtmlx_std_full_web_skin.zip and put it in the codebase
5. Add index.html outside the codebase folder
6. Add the following code to the index.html file:
<! DOCTYPE HTML > < HTML > < Head > < title > Contact Manager</title>
<link rel= "STYLESHEET" type= "Text/css" href= "Codebase/dhtmlx.css" >
<Scriptsrc= "Codebase/dhtmlx.js"type= "Text/javascript"></Script>
</Head> <Body> <Scripttype= "Text/javascript"> //The code of your application </Script> </Body></HTML>
DHTMLX Front-end framework build one of your application tutorials (i)