Sorry, but I was talking about the compatibility between the various versions of gwt 1.6, now on it's final version(1.6.4). The topic you post is about M2 and I thought it had differences between them. By the topics and SVN comments I read, it's compatible.
Thanks by the way.
Is there anybody out there with issues(GWT 1.6.4 and SmartGWT SVN r.418)?
[WARN] 404 - GET /sc/skins/TreeFrog/skin_styles.css (127.0.0.1) 1419 bytes
in fact the path should be [name_of_my_application]/sc/skins/TreeFrog/skin_styles.css
to make sure that the skin is found (due to the new "rename-to= name_of_my_application" we have to add in the gwt.xml file)
I don't know where to change this path ?
somebody can help me ?
I had the same problem because I customized the location of my GWT files (I wanted them all under "/gwt/" path).
To solve this, you need to specify the path of the isomorphic directory in your host page, using:
Code:
<script>
var isomorphicDir = "[MODULE_NAME]/sc/";
</script>
Comment