Hello,
I'm trying to make SmartGwt Pro 2.4 work within a Portlet (JSR 168) in JBoss Portal 2.6.2
I followed this tutorial and added SmartGwt on the GWT app: http://xantorohara.blogspot.com/2007...s-and-gwt.html
Everything works fine, except for the skins : due to the manipulation required to run the application as portlet (see the example or my attached file), the relative path of the application is changed, and SmartGwt tries to reach the images and css files at the wrong address:
the correct PATH would be :
I also found another person with the same problem : http://www.liferay.com/community/wik...+a+GWT+Portlet (last comment, written by "Chitrabhanu Das")
Is there a way to change the address where SmartGwt is reaching the images relative to the skins ?
Thanks !
I'm trying to make SmartGwt Pro 2.4 work within a Portlet (JSR 168) in JBoss Portal 2.6.2
I followed this tutorial and added SmartGwt on the GWT app: http://xantorohara.blogspot.com/2007...s-and-gwt.html
Everything works fine, except for the skins : due to the manipulation required to run the application as portlet (see the example or my attached file), the relative path of the application is changed, and SmartGwt tries to reach the images and css files at the wrong address:
Code:
<img src="http://127.0.0.1:8080/portal/portal/default/my_module/sc/skins/Enterprise/images/Dialog/say.png" ...>
Code:
<img src="http://127.0.0.1:8080/MY_APPLICATION/my_module/sc/skins/Enterprise/images/Dialog/say.png" ...>
Is there a way to change the address where SmartGwt is reaching the images relative to the skins ?
Thanks !
Comment