Announcement

Collapse
No announcement yet.
X
  • Filter
  • Time
Clear All
new posts

    Help with M2Eclipse + SmartGWT

    I have configured my SmartGWT first application, but, there is an error, some resources (css + images) have problems they don't find in the path of my application.

    In the jpeg file http://i.imagehost.org/0930/SmartGWT.gif is showed the problem and the principal files are attached......

    Thanks for your help !!!
    Attached Files

    #2
    Not sure if this is your issue or not (without seeing more info). But there seems to be an issue with the path to the "sc" directory. Add this to your Application.html

    <script>
    var isomorphicDir = "<path to sc goes here>";
    </script>

    For example, mine looks like this...

    <script>
    var isomorphicDir = "../sc/";
    </script>

    Hopefully that helps.

    Comment


      #3
      This work fine for me, the path for this case is:

      <script>
      var isomorphicDir = "../mx.com.factmex.app.Application/sc/";
      </script>

      Comment

      Working...
      X