Re: images not showing in any browser

2014-04-16 Thread Davide Micheletti
when you run MyProject look at the HTML code and see the url of the image.. So you can see where is the problem in the path.. However i've a project with images and i put the image in war/Images/1.jpg and in the code i've > > ... > ... Image img = new Image(); img.setUrl("Images/1.jpg"); Panel p

images not showing in any browser

2014-04-16 Thread Adam
Hi, i'm new to gwt programming, for some reason the image wont show in any browsers, any idea's? Also the path seems to be stuck on"/myproject//MyProject/images/1.jpg" Image img = new Image("/MyProject/images/12345.jpg"); vPanel.add(img); [WARN] Server class 'org.eclipse.jetty.servlet.listener

SimplePager.Resources images not showing

2014-04-16 Thread Thad Humphries
I have declared a CellTable with a SimplePager in my UiBinder. The UiBinder file is paired with a Java file that includes custom SimplePager.Resources. The images from this resource are not showing in my client UI. The images are there and correctly pathed: I can see them loaded in the Developer

Re: Chrome Canary 36 not showing sourcemaps

2014-04-16 Thread Thad Humphries
I just updated Chrome Canary to Version 36.0.1944.0 and sourcemaps are back. On Wednesday, April 16, 2014 8:03:13 AM UTC-4, James Horsley wrote: > > FWIW I have the same problem with Firefox hanging while using 100% CPU > with SDM > > > On 16 April 2014 05:41, Stefano Ciccarelli > > wrote: > >>

Re: DockLayoutPanel as root with fixed width

2014-04-16 Thread Magnus
On Wednesday, April 16, 2014 6:32:13 PM UTC+2, Jens wrote: > > Or you just disable the log window so you don't have anything to hide :) >> > Ok! :-) I can verify that it will still work if needed (shown), so this disabling the popup handler seems to affect only the initial state. Magnus -- Y

Re: DockLayoutPanel as root with fixed width

2014-04-16 Thread Jens
> > Or do I always need a panel that covers the whole screen, in order to hide > unwanted things like the log window? > Or you just disable the log window so you don't have anything to hide :) -- J. -- You received this message because you are subscribed to the Google Groups "Google Web

Re: DockLayoutPanel as root with fixed width

2014-04-16 Thread Magnus
On Wednesday, April 16, 2014 11:33:02 AM UTC+2, Juan Pablo Gardella wrote: > > Are you using RootLayoutPanel on top of it? See > http://www.gwtproject.org/doc/latest/DevGuideUiPanels.html#LayoutPanels > > Yes, I add my DockLayoutPanel like this: RootLayoutPanel.get().add(d); But how can this

Re: Deploying IntelliJ13 of my SMARTGWT in Tomcat

2014-04-16 Thread Jens
You have to define an artifact in IntelliJ (Project structure -> Artifacts). The artifact should be an exploded web application artifact and should contain all your classes and server libraries/resources. Then you create a new run configuration and choose Tomcat -> Local and configure it as nee

Setup Eclipse workspace for core development

2014-04-16 Thread Musicman75
Hello, I'm trying to setup a working Eclipse workspace with the GWT core like described in the included README.txt which comes with the GWT source code. In the last 3 weeks I tried out several Eclipse distributions without success. The main questions are: Which Operationg systems are supporte

Magnetic Grid in GWT

2014-04-16 Thread Nino Breuer
Hi there, I'm actually writing my Thesis and I'm very new to GWT, but not to Java. I have a lot of experience working with Java, but I don't know how much Java libraries are applicable for GWT. What I want to implement is a magnetic grid (displayed with thin rectangles) and to drag and drop

Re: Gantt Chart missing jar download

2014-04-16 Thread Wayne Dyck
I downloaded this the other day and updated the source to work with GWT 2.6.0. I was able to issue a "mvn package" command and generate a .jar file which appears to work, however, I suspect some changes were made in one of the commits because the "Task Name" list doesn't display, only the gantt

Re: TabLayoutPanel with scroll buttons

2014-04-16 Thread Igor
I experienced the challenge to make GWT TabLayoutPanel to act as the Smart GWT one (http://www.smartclient.com/smartgwt/showcase/#layout_tabs_add_remove). I took PhiLho code as the starting point, big thanks to him. So, my improvements and changes are: 1. Both scroll buttons are in the righ

Deploying IntelliJ13 of my SMARTGWT in Tomcat

2014-04-16 Thread Elmer Dela Cruz
Dear Guys, this is my first time to use IntelliJ and it was good. Java Same as GWT. Same as SMARTGWT. Everything works perfectly when i am just using the play to test it. But a horrifying experience when I am trying to deploy as war. Can anybody help to assist me how i can deploy my apps i

Re: Chrome Canary 36 not showing sourcemaps

2014-04-16 Thread James Horsley
FWIW I have the same problem with Firefox hanging while using 100% CPU with SDM On 16 April 2014 05:41, Stefano Ciccarelli wrote: > Chrome 35 too. I ha dato switch back to chrome 34. > On Firefox suorce maps are showing, but our project is so big that Firefox > became unusable. > > > Il mercole

Re: the mvp architecture in a gwt application

2014-04-16 Thread Ronan Quillevere
Amir is right, you can code using MVP without using the eventbus even if it is probably counter-productive. Your presenters will be tightly coupled if you do that which will defeat the purpose. MVP is a coding pattern to help you organize your code. This pattern is still valid and applicable to

Re: the mvp architecture in a gwt application

2014-04-16 Thread Ronan Quillevere
I meant Mohamed is right sorry cannot edit On Wednesday, April 16, 2014 12:13:19 PM UTC+2, Ronan Quillevere wrote: > > Amir is right, you can code using MVP without using the eventbus even if > it is probably counter-productive. Your presenters will be tightly coupled > if you do that which will

Re: DockLayoutPanel as root with fixed width

2014-04-16 Thread Juan Pablo Gardella
Are you using RootLayoutPanel on top of it? See http://www.gwtproject.org/doc/latest/DevGuideUiPanels.html#LayoutPanels 2014-04-16 0:09 GMT-03:00 Magnus : > Hi, > > the panel can be centered using a left/right margin with "auto". > Then, the DockLayoutPanel is centered, but then there are unwant

Re: Custom CellTree Recources

2014-04-16 Thread francesco . calabri
Hi Jens, An easy fix for GWT without implementing the appearance pattern would be to > let cell widgets use a resource bundle factory. That factory can then be > replaced with deferred binding. thanks for the hint. -- You received this message because you are subscribed to the Google Groups

Re: Custom CellTree Recources

2014-04-16 Thread Jens
> > My question is if there is an alternative to changing the sources to let > celltree implement the appearance pattern. > I don't think so. You can not replace a class via deferred binding if that class has been generated via a generator. Without changing the source of celltree you can only

Re: Custom CellTree Recources

2014-04-16 Thread francesco . calabri
Hi Rogelio, thanks for you response. I know that I can pass a custom resources instance to the constructor. I've done this many times and works fine. What I was trying to do is to create a seprate module that contains all my styles, let's say a *theme*, and simply by inheriting this module in m