dhtmx tools

I am using netbeans as Java platform,where the there is html file for dhtmlx tools.i entered the code as below…when click on view option of html file i could nt get nothing

Application
  <script src="D:/java/codebase/dhtmlx.js"></script>
   <script src="D:/java/codebase/types/ftypes.js"></script>
   <link rel="STYLESHEET" type="text/css" href="D:/java/codebase/dhtmlx.css">
       <link rel="STYLESHEET" type="text/css" href="D:/java/codebase/types/ftypes.css"> 
        <style> 
      html, body {
	width: 100%;
	height: 100%;
	overflow: hidden;
	margin: 0px;
 	background-color: #EBEBEB;
      }
 </style>
 
 
   <script>
 var myLayout, myTree, myGrid, myFolders, myMenu, myToolbar;
 var gl_view_type = "dlist";
 var gl_view_bg = "";
 function doOnLoad(){
      myLayout = new dhtmlXLayoutObject(document.body, "2U");
 }
<script src="D:/java/codebase/dhtmlx.js"></script>

You are using absolute file paths, while it is expected that they will be absolute or relative http paths.

like

<script src="http://some.com/codebase/dhtmlx.js"></script>

or

<script src="../codebase/dhtmlx.js"></script>

Also, be sure that you are loading master page by http as well.

hello;
i have the same problem, when i run my application nothing is displayed!!
how did you resolve yours?

Unfortunately issue can’t be reconstructed locally.

If issue still occurs for you - please provide any kind of sample or demo link where it can be reconstructed.