Re: ScrollPanel inside HeaderPanel // Another option for an auto-resizable DockLayoutPanel?

2012-05-23 Thread Ernesto Oltra
Does the setSize() trick work? 2012/5/23 Shaun Tarves sh...@tarves.net Did you ever figure out a solution to this? On Sunday, June 5, 2011 4:21:17 PM UTC-4, Ernesto Oltra wrote: The title says all. I have the following structure: - DockLayoutPanel - north - north

Re: Dev mode in intellij IDEA

2011-12-26 Thread Ernesto Oltra
Hi, I've been using Idea for months. - GAE Java + GWT for some projects. As HamsterOfDeath said: run the app, edit the files, and then F5 to reload the page. - I've used GAE Go too for the server side, so I have a terminal to run dev_appserver, and start GWT without the web server (devmode

Re: Image upload

2011-11-12 Thread Ernesto Oltra
GWT is compiled to JavaScript: it can't do what JavaScript can't either. The trick of FileUpload is sending the form (and the file) in a hidden iframe; that way you haven't to reload the whole page. There is a good reason not to use FormPanel? Ikai has a blog post with some sample code using

Re: How to create image sprits

2011-09-22 Thread Ernesto Oltra
Hi, The GWT compiler takes a decision based on the files sizes: if an additional http roundtrip is needed or it's better to inline the images directly in the CSS. In your case, fetch the sprite from the server would possibly take more time than serve it directly from your css file. When your

Re: Basic CSS question

2011-09-15 Thread Ernesto Oltra
are written for those who already understand GWT, which kind of defeats the purpose. Mike On Sep 8, 1:23 pm, Ernesto Oltra ernestoka...@gmail.com wrote: Sorry, I meant if you use the CssResource to bundle your stylesheets together with your app, it has a method ensureInjected(). The load

Re: Basic CSS question

2011-09-15 Thread Ernesto Oltra
to have step by step just-do-it-this-way instructions. But when that doesn't work, I have no idea why I am doing what I am doing. Seems like the docs are written for those who already understand GWT, which kind of defeats the purpose. Mike On Sep 8, 1:23 pm, Ernesto Oltra ernestoka

Re: Hosting GWT applications

2011-09-08 Thread Ernesto Oltra
In the website (http://gwt.google.com/) there are some tutorials about GWT/Appengine And check http://code.google.com/appengine too for tutorials on Java-Appengine. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this discussion

Re: Basic CSS question

2011-09-08 Thread Ernesto Oltra
Hi, Use Firebug or Chrome Dev Tools to see the cascade of styles, because I had some hard times with that. You define the font X for body, but then GWT loads and injects the standard.css file and you have sans-serif or whatever again. You could: 1) Load your stylesheet and inject it after

Re: onModuleLoad() - what is it in javascript

2011-09-08 Thread Ernesto Oltra
The latest one: http://code.google.com/webtoolkit/doc/latest/DevGuideOrganizingProjects.html#DevGuideBootstrap -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this discussion on the web visit

Re: onModuleLoad() - what is it in javascript

2011-09-08 Thread Ernesto Oltra
Oops, and try using the Detailed compilation mode, to be able to search onModuleLoad in the javascript file and then track it better when compiled in advance mode. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this discussion on

Re: Basic CSS question

2011-09-08 Thread Ernesto Oltra
...@gmail.com wrote: What does injecting mean in terms of CSS? Sounds like this may alter the way cascading works in a typical web site/app? On Sep 8, 11:47 am, Ernesto Oltra ernestoka...@gmail.com wrote: Hi, Use Firebug or Chrome Dev Tools to see the cascade of styles

Re: What's the current state of the UiBinder templates for CellList

2011-07-12 Thread Ernesto Oltra
I've seeing some UiRenderer tests in code trunk and if I understand them you can build your cell using Widgets, is it correct? And substitute some values/placeholders in it. That would be exactly the thing I was searching for. Any hints on how to use trunk version of GWT with Eclipse? I have

What's the current state of the UiBinder templates for CellList

2011-07-11 Thread Ernesto Oltra
I've been exploring the group searching for ways of building complex cells for CellList, and I found this two emails: https://groups.google.com/forum/#!searchin/google-web-toolkit/cell$20template$20uibinder/google-web-toolkit/nPtKO1xK8L4/FBxHVLAlCTgJ

Strange behaviour of CellList. Any help would be appreciated

2011-07-05 Thread Ernesto Oltra
Two CellLists I've implemented have an starnge behaviour: they don't load more than 25 results. Debugging my code, I found ListDataProvider says it has 40 results (or more ...) but still only showing 25. The results are loaded, added to the list, but never seen. I load 4 results in each AJAX

Re: Strange behaviour of CellList. Any help would be appreciated

2011-07-05 Thread Ernesto Oltra
-.-' Forgot to specify cellList.setPageSize(...). Solved. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this discussion on the web visit https://groups.google.com/d/msg/google-web-toolkit/-/ftM2YRrffK0J. To post to this group,

ScrollPanel inside HeaderPanel // Another option for an auto-resizable DockLayoutPanel?

2011-06-05 Thread Ernesto Oltra
The title says all. I have the following structure: - DockLayoutPanel - north - north - center - HeaderPanel - header: [ Here I have a HTMLPanel, it can change, and so its height ] - content: ScrollPanel The problem is ScrollPanel extends beyond the