- Learning DHTMLX Suite UI
- Eli Geske
- 351字
- 2021-07-23 15:40:35
Testing the DHTMLX installation>
We now have the necessary file structure and the index.html
file created. This file includes the external DHTMLX CSS and JavaScript files for the application.
Next, we will talk about the Chrome developer tools and test if the DHTMLX library files were included correctly.
Open the Chrome web browser and navigate to http://localhost/
or http://localhost/index.html
, loading the index.html
file.
You should see a blank page displayed.
To make JavaScript development easy, Chrome provides the developer tools. This provides many useful tools for developing applications on the Web. The tool that we will focus on is the console. There are two ways to access the Chrome developer tools console window: through the Chrome menu or through keyboard shortcuts. Let's use the keyboard shortcuts approach. On Windows and Linux, the keyboard shortcut is Ctrl + Shift + J, and for Mac, it is Cmd + Opt + J. With the provided keyboard shortcuts, open the developer tools console window.
Inside the console window which you just opened, type the word dhtmlX
. This will bring up the developer tools intellisense with all of the available properties and methods beginning with the word "dhtmlX". You should see something similar to the next screenshot:

Note
If the intellisense does not open or if you see errors in the console, check that you are including the files correctly.
Now, we will do a further test to check that the CSS is correct. For this we will add a DHTMLX layout object to the page.
Type the following line of code into the console and then press Enter:
new dhtmlXLayoutObject(document.body);
The page is now divided into three separate containers as shown in the following screenshot:

Note
If you see only a gray screen, this means that you haven't added the height and width CSS styles to the html and body tag.
The three containers you see in the browser are the DHTMLX layout cells. These will be discussed in a later chapter. This simple test is enough to show that we have the files set up correctly. The installation and testing is now complete.
- GitLab Cookbook
- Spring Boot開發(fā)與測試實戰(zhàn)
- What's New in TensorFlow 2.0
- DevOps入門與實踐
- 碼上行動:零基礎學會Python編程(ChatGPT版)
- Java Web開發(fā)技術教程
- 學習OpenCV 4:基于Python的算法實戰(zhàn)
- 持續(xù)輕量級Java EE開發(fā):編寫可測試的代碼
- Scala for Machine Learning(Second Edition)
- Hands-On Robotics Programming with C++
- C++17 By Example
- Python數據可視化之matplotlib實踐
- ASP.NET本質論
- micro:bit軟件指南
- Internet of Things with Arduino Cookbook