1. SmartGWT 5.1-p20160224/LGPL
2. Firefox 44, Chrome 48
I downloaded the latest 5.1 and followed the steps in order to use it with maven. I previously used 4.1 power edition.
I left iscTaglib definition within web.xml, all the other servlets (compression, IDA, Init are removed)
within body of my html i have:
and within head i have
in my module definition I only inherit from
As when using 4.1power the structure (within netbeans) is
It seems that my own css file I'm linking to, and also my OSM js files are not to be found. Any idea why?
2. Firefox 44, Chrome 48
I downloaded the latest 5.1 and followed the steps in order to use it with maven. I previously used 4.1 power edition.
I left iscTaglib definition within web.xml, all the other servlets (compression, IDA, Init are removed)
Code:
<jsp-config> <!-- Isomorphic JSP tags --> <taglib> <taglib-uri>isomorphic</taglib-uri> <taglib-location>/WEB-INF/iscTaglib.xml</taglib-location> </taglib> </jsp-config>
Code:
script src="app/sc/modules/ISC_Core.js"></script> script src="app/sc/modules/ISC_Foundation.js"></script> script src="app/sc/modules/ISC_Containers.js"></script> script src="app/sc/modules/ISC_Grids.js"></script> script src="app/sc/modules/ISC_Forms.js"></script> script src="app/sc/modules/ISC_RichTextEditor.js"></script> script src="app/sc/modules/ISC_Calendar.js"></script> script src="app/sc/modules/ISC_DataBinding.js"></script> script src="app/sc/modules/ISC_Drawing.js"></script> script src="app/sc/modules/ISC_Charts.js"></script> script src="app/sc/skins/Enterprise/load_skin.js"></script> script type="text/javascript" src="./OpenLayers/OpenLayers.js"></script> script type="text/javascript" src="./OpenStreetMap.js"></script>
Code:
link type="text/css" rel="stylesheet" href="./app.css">
Code:
<inherits name='com.smartgwt.tools.SmartGwtTools'/> <inherits name='com.smartgwt.SmartGwtNoScriptNoTheme'/> <inherits name='com.smartgwt.Tools'/> <inherits name='com.smartgwt.Drawing'/> <inherits name='com.smartclient.theme.enterprise.Enterprise'/>
Code:
- WebPages -- app.html -- app.css -- OpenStreetMap.js -- OpenLayers --- OpenLayers js and css files etc -- WEB-INF --- web.xml
Comment