Check documentation for the latest version of dhtmlxSuite Step 1. Create the App's File DHTMLX Docs

Step 1. Create the App's File

We will start our tutorial with preparing a file for our future app: a simple HTML file that contains source code files of the DHTMLX library.

We will use the standard edition of DHTMLX Suite in the skyblue skin that requires including 2 source files on the page:

  • dhtmlx.js
  • dhtmlx.css
To prepare the app's file:
  1. Download the "dhtmlxSuite " package (link to download).
  2. Create a folder with the name "form_serverside " in the root directory of your local web server.
  3. Create a subfolder with the name "codebase " in the "form_serverside " folder.
  4. Find the "dhtmlx_std_full.zip " file in the root of the "dhtmlxSuite " package and extract its content to the "codebase " folder.
  5. Create the "index.html " file in the "form_serverside " folder.
  6. Include the "dhtmlx.js " and "dhtmlx.css " code files to index.html (both source files reside in the "codebase " folder).

    "index.html" file

    <!DOCTYPE html>
    <html>
      <head>
        <title>dhtmlxForm. Server side</title>
        <script src="codebase/dhtmlx.js" type="text/javascript"></script>     <link rel="STYLESHEET" type="text/css" href="codebase/dhtmlx.css">   </head>
      <body>
        <script type="text/javascript">
            //the code of your application
    </script> </body> </html>
Back to top