Happened to me too (gwt2, upgraded smartgwt 2.1 -> 2.2). I has using SmartGwtNoTheme and inheriting Graphite explicitly.
Got it working though by explicitly forcing
...
<script>var isomorphicDir = "sc/";</script>
...
.. In my html file. I didn't have this before and it was working fine - funny though that now it seems to need it although the feature addition aimed getting rid of it :) The reason was same as other users, duplicate application context in url's ending up for theme resources not loading correctly.
Got it working though by explicitly forcing
...
<script>var isomorphicDir = "sc/";</script>
...
.. In my html file. I didn't have this before and it was working fine - funny though that now it seems to need it although the feature addition aimed getting rid of it :) The reason was same as other users, duplicate application context in url's ending up for theme resources not loading correctly.
Comment