Hello,
I am trying to use the *.js files from another web app with a simple html page.
Everything seems to download according to firebug but I get the following error.
isc is not defined isc.Button.create ...
Below is the page.
Thanks,
Eric
I am trying to use the *.js files from another web app with a simple html page.
Everything seems to download according to firebug but I get the following error.
isc is not defined isc.Button.create ...
Below is the page.
Thanks,
Eric
Code:
<?xml version="1.0" encoding="ISO-8859-1" ?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" /> <title>Earned Value Toolkit</title> <!--isomorphic:loadISC skin="raytheon" isomorphicURI="/rayadm"/--> <script>window.isomorphicDir='http://localhost:8888/rayadm/isomorphic/';</script> <script src="http://localhost:8888/rayadm/isomorphic/system/development/ISC_Core.js"></script> <script src="http://localhost:8888/rayadm/isomorphic/system/development/ISC_Foundation.js"></script> <script src="http://localhost:8888/rayadm/isomorphic/system/development/ISC_Containers.js"></script> <script src="http://localhost:8888/rayadm/isomorphic/system/development/ISC_Grids.js"></script> <script src="http://localhost:8888/rayadm/isomorphic/system/development/ISC_Forms.js"></script> <script src="http://localhost:8888/rayadm/isomorphic/system/development/ISC_DataBinding.js"></script> <script src="http://localhost:8888/rayadm/isomorphic/system/development/ISC_Analytics.js"></script> <script src="http://localhost:8888/rayadm/isomorphic/skins/raytheon/load_skin.js"></script> </head> <body> <h2>evtoolkit</h2> <script> isc.Button.create({ title: "Click me", width: 200 }) </script> </body> </html>
Comment