I think this should generally work. A couple notes:
* You say it can't call the method ... does it say why?
* Your alerts should be $wnd.alert() or I don't think it will work.
On Dec 21, 8:57 pm, animesh wrote:
> I have a javasript variable on my nocache.js
>
> var loginRequired
Hi
Sorry for the second, probably simple question of the day, but how do
I center a grid on a web page? I've tried:
final Grid grid = new Grid(5,5);
grid.setStyleName("gwt-Grid");
...
and
.gwt-Grid
{
vertical-align: centre;
horizontal-align: centre;
}
but it's ju
Hi
On Tue, Dec 22, 2009 at 7:41 AM, Jim Douglas wrote:
> The ListBox ChangeEvent tells you that the user changed the selected
> index. It's not fired when you change the selected index
> programmatically, and it's not fired when you change the contents of
> the list. It's assumed that the progr
The ListBox ChangeEvent tells you that the user changed the selected
index. It's not fired when you change the selected index
programmatically, and it's not fired when you change the contents of
the list. It's assumed that the programmer knows when he did
something to modify the list, so it's up
Hi
I've put together the following simple example:
public void onModuleLoad()
{
final ListBox lb = new ListBox();
lb.setVisibleItemCount(5);
lb.addChangeHandler(new ChangeHandler()
{
@Override
public void onChange(Chan
App.gwt.xml
App.html
Web Application Starter Project
Your web browser must have JavaScript enabled
I have a javasript variable on my nocache.js
var loginRequired = "false";
I access it from GWT app as follows:
public native static String isLoginRequired()/*-{
return $wnd.loginRequired;
}-*/;
I am trying to set th variable as follows.
p
I think you misunderstood that page; it describes only how to add this
particular GWT module to your own GWT application:
http://code.google.com/p/cobogw/
That module was developed specifically for GWT; it's not an arbitrary
set of Java classes.
The classes that you have developed in the past fo
Thanks Jim,
I agree with you, the information you have shared.
actually I am trying to use the third party jar which is derived from
the basic java packages within the GWT emulation limitation.
Like hibernate, we can use other jars also... right?
and while doing so I am getting the error.
I hav
Thanks Thomas
Widgets are now adding by implementing HasWidgets interface.
But I need to do a little more. As there are tags in DockLayoutPanel
-- , , in the same way, I want to create my own
customized tags like , etc so that I can arrange my
layout accordingly. Can it be possible. If it is, k
Thanks Thomas
Widgets are now adding by implementing HasWidgets interface. But I need to
do a little more. As there are tags in DockLayoutPanel -- ,
, in the same way, I want to create my own customized tags like
, etc so that I can arrange my layout accordingly. Can it
be possible. If it is, kin
I think Jeff Chimene already answered this question for you:
http://groups.google.com/group/google-web-toolkit/browse_thread/thread/e31771defbdb6e47/892889ab68074f08#892889ab68074f08
GWT doesn't compile arbitrary Java classes to JavaScript. You can
find the list of supported classes (and methods
Can you share your App.html and App.gwt.xml ?
On Dec 22, 10:55 am, Swami wrote:
> If I open that url then I just get the static App.html displayed
>
> if I append ?gwt.codesvr=127.0.0.1:9997 to the end of the url I still
> get the same
>
> clearing the cache makes no difference
>
> Here's my Ap
Hi,
I want to integrate the GWT in my product for some UI screens.
I have created the GWT project and extended the entry point class with
the class from my product.
Those related classes are packaged in product specific jar files.
I have given the class name in tag in .gwt.xml
I have added the s
If I open that url then I just get the static App.html displayed
if I append ?gwt.codesvr=127.0.0.1:9997 to the end of the url I still
get the same
clearing the cache makes no difference
Here's my App.java file
package org.ishafoundation.app.client;
import com.google.gwt.core.client.EntryPoint;
Curious,
How does Gilead serialize BigDecimal?
GWT can't handle BigDecimal yet ...
What about byte[]?
thx,
Henry
On Dec 21, 5:01 pm, debillin wrote:
> Andreas -
>
> Don't you have to use the JDO Serialization Filters and
> EngineRemoteService somewhere?
>
> Seems to me like the DispatchServlet
Matt Moriarity's idea suggested another possibility: using @UiField
(provided=true) and using a Factory method to actually deliver the
widget to the view. I'll give it a bit more thinking; I want to make
sure testing is still simple.
--
You received this message because you are subscribed to the
Andreas -
Don't you have to use the JDO Serialization Filters and
EngineRemoteService somewhere?
Seems to me like the DispatchServlet should extend Gilead's
EngineRemoteService.
On Nov 24, 7:31 am, philippe wrote:
> I Marcos,
>
> I posted on a blog a simple exemple to configueredGileadinGWT/
>
What's wrong with the ant target eclipse.generate?
Read the README file ;)
Cheers,
Henry
On Dec 21, 8:11 am, Jason Parekh wrote:
> Hi Cian,
>
> Could you try importing each as an existing Java project? Check
> outhttp://code.google.com/eclipse/docs/existingprojects.html.
>
> jason
>
> On Sun,
Hi Miguel,
What I did was to prepend a src directory in my project
and create my own implementation of GWTShell
public class GWTShell extends DevMode {
}
Then enter the arguments from the Debug Configurations as you
would for a Java application
At the very least this won't give you a popup and p
I think you have things backwards ... your html page retrieves the gwt
code, not the other way around.
So ...
> 1. EntryPoint only for a .html page?
If you have one entry point defined it can be loaded by any number of
html pages, you just need to reference the javascript correctly.
> 2. can we
Hello,
I've made a GWT demo of an iPhone/iPod touch game.
Currently, you can only play three levels in this GWT demo.
I'm thinking of removing the level limit when the web demo is not
accessed from an iPhone/iPod touch by checking the user agent.
But from: http://www.google.com/support/webmast
com.google.gwt.user.server.rpc.AbstractRemoteServiceServlet.getThreadLocalRequest
().getSession()
On 21 déc, 23:17, Nicanor Cristian wrote:
> What do mean by "session"?
>
> hemodroid ha scritto:
>
>
>
> > I dont know if it is related to Appengine or GWT, as i am using both
> > in my application,
Hi Miguel,
> Is the war directory at the root of your project?
yes
>If you look at your .project file does it have the web app nature?
Can you post what a .project file should look like? Originally mine
was of web app nature but (please understand I never set it to be like
this -- others have t
I made it work. Apparently now DevMode only pays attention if the URL
that represents the request that loads the application has the
gwt.codesvr parameter. I hope there's another way to preserve the old
behavior where hosted mode was able to debug applications no matter
how they were loaded, as lon
I have a SimplePanel I use as a "glass panel" over other widgets. When
I don't set the backgroundColor mouse down events on the panel
transfer through to the Widget underneath it. However, if I add a
colored background the mouse down events get consumed and the Widget
underneath does not receive it
I added the -startup option, and although DevMode generates the
gwt.codesvr parameter, when pasting it into the browser I still cannot
get the breakpoints to work.
In my case my GWT application is part of another application, and this
one requires to go through a login page. Previously (i.e. GWT 1
What do mean by "session"?
hemodroid ha scritto:
> I dont know if it is related to Appengine or GWT, as i am using both
> in my application, but it seems like sessions do not last after u
> close your browser.
>
> --
>
> You received this message because you are subscribed to the Google Groups
>
The way I'm doing it will be to have the dependency injection
framework create a SuggestOracle. Then have the view be injected with
that oracle:
@Inject
MyView(MySuggestOracle oracle) {
this.suggestBox = new SuggestBox(oracle);
...
}
Seems like a fairly simple solution, and does not require
Hi, I just upgraded my application from 1.7.0 to 2.0, and while
everything is working fine in production mode, when I try to run
Development mode I get the following error:
Loading modules
com.appiancorp.gwt.appbuilder.ApplicationBuilderDev
Public resources found in...
[WARN] Err
Hello,
we're using menubar and menuitem for ou application's menu.
The menu takes the entire screen width, so when when we have submenus
on the right side of the menu they open on the right, but the user
doesn't see them.
Is it possible to open them on the left ?
Thank's,
--
You received this
I am using a FastTree (Incubator widget), which is GWT Tree-like
widget implemented as a series of DIVs. This tree can have a fairly
large number of nodes, for example 250. When this widget is placed
into a table cell (for example in a VerticalPanel), the performance is
just awful. The CPU spikes t
I dont know if it is related to Appengine or GWT, as i am using both
in my application, but it seems like sessions do not last after u
close your browser.
--
You received this message because you are subscribed to the Google Groups
"Google Web Toolkit" group.
To post to this group, send email to
Default Application Design question using GWT- Front End
Hi All,
I have a bit of experience with GWT but I'm not sure of the proper
design in some cases and am such a cross road right now. An
application I'm trying to design is of the search functionality.
1) Two modes - Simple Search / Advanced
hi AFAIK you can't access local file :)
deploy your audio file and use http:// with repect to SOP (Same Origin
Policy)
HIH
On Mon, Dec 21, 2009 at 8:31 PM, Alexei Telles wrote:
> Hello guys, I am trying to start using the gwt-voices in my GWT
> project. To start I tried the example:
>
> SoundCon
Why doesn't google support NB ? They are forcing us to use a different
IDE for no good reason.
--
You received this message because you are subscribed to the Google Groups
"Google Web Toolkit" group.
To post to this group, send email to google-web-tool...@googlegroups.com.
To unsubscribe from th
Ok Chris, thanks for the clear and quick answer.
I will have a look at the issues...
I noticed that one was already commented by somebody..
--
You received this message because you are subscribed to the Google Groups
"Google Web Toolkit" group.
To post to this group, send email to google-web-too
I haven't used any of the pre-packaged frameworks, so I can't help you
select from them.
However, my team is using this architecture, having been inspired by
the original talk at Google I/O. In my opinion, there is no better
source of wisdom than that presentation, and its slides.
If you haven'
The status "AssumedStale" simply means that the issue hasn't had any updates
within the past year. If an issue is marked as such, and you know that a)
it's still an issue and b) there is no plausible workaround, please add a
comment and star the issue (if you haven't already).
A quick update: I me
Hello guys, I am trying to start using the gwt-voices in my GWT
project. To start I tried the example:
SoundController soundController = new SoundController();
Sound sound = soundController.createSound
(Sound.MIME_TYPE_AUDIO_MPEG,
"file:///home/alexei/teste.mp3");
Hi Everyone,
I am new to the MVP/DI/Event Bus architecture/best practices. I am
trying to understand the concept through the following examples/
frameworks,
1) mvp4g
2) gwt-mvp
3)
http://blog.hivedevelopment.co.uk/2009/08/google-web-toolkit-gwt-mvp-example.html
I understand that GIN is used f
What is the description/meaning of issues that are marked as
"AssumedStale"?
I see that some of my issues where marked as AssumedStale...
Does this mean that they are simple forgotten till somebody report
them again? Such that you assume that they might be solved in the 2.0
version?
My worries: t
and... what about this it seems like in standard.css is missing
this style
On 12 dic, 03:58, Benju wrote:
> I had the exact same problem!
>
> On Nov 25, 2:39 pm, "P.G.Taboada" wrote:
>
> > Hi,
>
> > I am test drivingTabLayoutPanel, but I can't find any css in the
> > themes delivered by gwt
How do I get mouse events to click through the PopUp panel (when it is
highlighted) so that the FlexTable w/FocusPanel under the PopUp gets
the event?
The below code should be functional so you can see what I'm talking
about. When the highlight button is pressed the PopUp panel goes ontop
of the F
Ok. What happens when you open that URL in Firefox? Can you try
clearing your cache just in case.
jason
On Mon, Dec 21, 2009 at 12:26 PM, Swami wrote:
> No, that was a mistake when composing the message I'm afraid.
>
> the urls really are the same. but it's just not working
> http://localhost:
Hi Peter,
Would you mind zipping your project up and hosting it somewhere for me
to download?
I tried copying the pasted ui.xml and java file, but I was unable to
repro the issues you're seeing in my simple project.
Thanks,
jason
On Mon, Dec 21, 2009 at 11:16 AM, Peter wrote:
> Dear all,
> I'm
the correct link:
http://code.google.com/p/google-web-toolkit/issues/detail?id=4397
On 21 dez, 15:29, Fabio wrote:
> Thanks, Jason!
>
> but the link appears to be broken, I got
> "The requested URL /p/google-web-toolkit/issues/detail?can=2&q=4397
> was not found on this server."
> when tried sta
On Dec 21, 4:00 pm, Mike Chaliy wrote:
> My application in hosed mode (http://localhost:) send plain HTTP
> POST requests for example to thehttp://localhost/Inventory/.
>
> After upgrade from GWT1.7 to GWT2.0, all POST requests are now sent as
> OPTIONS request.
>
> Method: O
The way (I think) we do it is our View has a method:
HasText getSuggestBox(SuggestOracle oracle) {
if (oracle != this.oracle || this.suggestBox == null)
//create a new suggest box with the oracle
createOrReplaceSuggestBox(oracle);
}
return suggestBox;
}
This way ever
Thanks, Jason!
but the link appears to be broken, I got
"The requested URL /p/google-web-toolkit/issues/detail?can=2&q=4397
was not found on this server."
when tried starring the issue.
best regards
Fábio.
On 21 dez, 14:50, Jason Parekh wrote:
> Hi Fábio,
>
> Definitely a bug, thanks for postin
No, that was a mistake when composing the message I'm afraid.
the urls really are the same. but it's just not working
http://localhost:8080/exist/app/gwt/App.html
On Dec 21, 9:10 pm, Jason Parekh wrote:
> Could you check your URLs again? The URL given as the startup URL
> argument in step #2 i
Hi Pote,
That should be it. When you run the app, you may want to clear your
browser's cache, as sometimes the stale cache creates unexpected
results.
jason
On Mon, Dec 21, 2009 at 11:35 AM, Pote wrote:
> Hi Jason,
>
> For both of your suggestions above, I've successfully done. How
> about t
Hi Peter,
Please disregard my reply. I just saw your other message and will ask
you more questions in that thread ( see
http://groups.google.com/group/google-web-toolkit/browse_thread/thread/89f952686038231b#
)
jason
On Mon, Dec 21, 2009 at 11:55 AM, Jason Parekh wrote:
> Hi Peter,
>
> Thanks
Hi Peter,
Thanks for the log, unfortunately there doesn't seem to be anything
relevant there.
Is your project fairly simple? If so, would you be able to zip it up
and send it my way? If not, has this error always been present, or
only after some particular change?
What happens when you clean t
Hi Fábio,
Definitely a bug, thanks for posting about this issue.
A workaround is to "import
com.google.gwt.resources.client.ImageResource;" in your View.java.
The problem is we find the logo() method in the superinterface of
Images, but when we go to look up the method's return type, we try to
r
Hi Jason,
For both of your suggestions above, I've successfully done. How
about the remaining step stated in
http://code.google.com/webtoolkit/doc/latest/ReleaseNotes.html#Upgrading
such as
- Update any run configurations or application compile and shell
scripts
What is the next procedure or
The buttons were disabled before I started "cleaning" the files. (And
they were disabled not only for all Google-related features but for
all nistalled software.)
I tried to uninstall correctly everything Google-related; but Eclipse
only did let me to remove entries under Window -> Preferences ->
G
On Dec 21, 5:08 am, Thomas Broyer wrote:
> On Dec 21, 3:34 am, "amich...@gmail.com" wrote:
>
> > Hello,
>
> > The Game Over dialog is not centered properly using thecentermethod:
>
> >http://dropzap.appspot.com
>
> > Is there a workaround?
>
> The dialog is actually properly centered, but what yo
Hi Jaroslav,
It sounds like you're wanting to uninstall so you can install a newer
version. If this is the case, the good news is you don't have to
uninstall to upgrade :) The bad news is that since you've deleted the
"com.google" files manually, Eclipse is probably in an inconsistent
state.
Lo
http://code.google.com/p/google-web-toolkit/issues/detail?id=4395
2009/12/21 Miguel Méndez
> Could you file and issue for this?
>
>
> On Fri, Dec 18, 2009 at 5:38 PM, bosakm wrote:
>
>> Part 2:
>>
>> It would be nice, when launching the GWTCompiler in the plugin, to be
>> able to specify the spe
Dear all,
I'm working with UI binder and seems to me I have not completed
successfully installation or there's something wrong in it. In code
listed below I can see several things I could not understand:
1. Project is complied OK and runs. However, having java code opened I
can see error on lines s
Hi Cian,
Could you try importing each as an existing Java project? Check out
http://code.google.com/eclipse/docs/existingprojects.html.
jason
On Sun, Dec 20, 2009 at 7:00 PM, Cian Montgomery
wrote:
> I am trying to get started with the gwt. I can build and run them from
> the command line but
Could you check your URLs again? The URL given as the startup URL
argument in step #2 is missing the "app" directory, while the URL in
step #5 contains it.
jason
On Mon, Dec 21, 2009 at 8:44 AM, Swami wrote:
> Hi,
>
> I've followed the advice given in
>
> http://groups.google.com/group/google-w
Ooops,
just found this link that describes it...
http://code.google.com/webtoolkit/articles.html
--
You received this message because you are subscribed to the Google Groups
"Google Web Toolkit" group.
To post to this group, send email to google-web-tool...@googlegroups.com.
To unsubscribe fro
If you are using Eclipse, you can import with a wildcard, then press
CTRL+SHIFT+O (to [O]rganise the imports and give you only what you need)
Ian
http://examples.roughian.com
2009/12/21 Isaac Truett
> No, it doesn't change the compiler output. Wildcard imports are
> considered to be a poor co
OK, will do, thanks.
On Dec 21, 10:41 am, Chris Ramsdale wrote:
> As part of the 2.0 postmortem, we discussed the importance of cleaning
> up the issue tracker in order to have a better view of high priority
> issues that need to be resolved in upcoming releases. You may have
> already seen actio
Placing it higher in the classpath should do the trick. FWIW, we are going
to make the war directory name configurable and we are also looking at
updating the launch configurations to make things like the main type
name over-ridable. Either one of those two options would have given you a
work aro
For #2, you will have to set the GWT 2.0 SDK for your existing
projects. Go to your Eclipse Preferences (either Window > Preferences
or on Mac, Eclipse > Preferences), then Google > Web Toolkit, and
ensure 2.0 is set as the default SDK.
jason
On Mon, Dec 21, 2009 at 11:05 AM, Jason Parekh wrote
Thanks, Eric. The timer thing does exactly what I wanted.
Andrew.
On Dec 21, 12:54 pm, Eric Ayers wrote:
> On Mon, Dec 21, 2009 at 6:19 AM, Andrew Winter
> wrote:
> > Hi,
>
> > I have the exact same problem as Jeff. One difference between Jeff's
> > case and Eric's case is that in Jeff's case,
Hi Pote,
Since you're using the Eclipse plugin, you can upgrade to the GWT 2.0
SDK via the Eclipse update mechanism instead.
Follow these instructions on Eclipse 3.5 (if you're using an older
version, it will be similar with different menu items -- if it isn't
working, let me know and I'll post i
That's what I was thinking too. Not a problem, and I really
appreciate your testing and followup on this. It's no problem for me
to continue to start devmode from the command line for now.
On Dec 21, 7:51 am, Rajeev Dayal wrote:
> Hey Jim,
>
> Based on your comments in the bug report, it looks
Here is what I can see in .metadata/.log:
!ENTRY com.google.gwt.eclipse.core 4 0 2009-12-21 16:54:45.328
!MESSAGE Unexpected Exception
!STACK 0
java.lang.ClassNotFoundException: com.google.gwt.dev.About
at java.net.URLClassLoader$1.run(URLClassLoader.java:200)
at java.security.Acce
No, it doesn't change the compiler output. Wildcard imports are
considered to be a poor coding practice by many Java developers.
On Mon, Dec 21, 2009 at 10:39 AM, S Frazier wrote:
> The StockWatcher tutorial has me adding imports for each and every
> class that it needs to use without explaining
Hey Jim,
Based on your comments in the bug report, it looks like the fact that your
app uses Swing is what causes the problem. In that case,
-XstartOnFirstThread should not be present. Unfortunately, due to the way
that the Web Application Launch Configurations work, there is no way to
disable thi
The StockWatcher tutorial has me adding imports for each and every
class that it needs to use without explaining whether there's a reason
for not just using wildcards. Importing with
import com.google.gwt.user.client.ui.*;
would seem to be more expedient, but does the compiler naively add
mo
Jason,
I can see the same problem. Made sure I have in source buildpath
Include All and Exclude None. However, issue still persists.
Regards
Peter
On Dec 14, 4:14 pm, Jason Parekh wrote:
> Hi Julien,
>
> Thanks for pointing this scenario out, I've
> openedhttp://code.google.com/p/google-web-too
Hi,
I have two interfaces:
public interface Banners extends ClientBundle {
ImageResource logo();
ImageResource guj();
}
public interface Icons extends ClientBundle {
ImageResource br();
ImageResource us();
}
In the main class, I group them together under a single
Could you file and issue for this?
On Fri, Dec 18, 2009 at 5:38 PM, bosakm wrote:
> Part 2:
>
> It would be nice, when launching the GWTCompiler in the plugin, to be
> able to specify the specific jars/directories for it to use (similar
> to being able to specify the classpath in an ANT script).
Hi Muhannad,
Check out http://code.google.com/eclipse/docs/existingprojects.html .
jason
On Mon, Dec 21, 2009 at 2:34 AM, muhannad nasser
wrote:
> Dear All:
> i have created a GWT Project in NetBeans and now i need to move it to
> eclipse
> when i open it using eclipse it does not recognize
As part of the 2.0 postmortem, we discussed the importance of cleaning
up the issue tracker in order to have a better view of high priority
issues that need to be resolved in upcoming releases. You may have
already seen action being taken as we have started reviewing,
assigning, and requesting more
Is the war directory at the root of your project? If you look at your
.project file does it have the web app nature?
On Sat, Dec 19, 2009 at 7:04 AM, Andrey wrote:
> Hello!
>
> I have war/WEB-INF/web.xml in my project but GWT-plugin still launches
> GWTShell instead of DevMode.
> What should I
Thank you for the feedbacks, Thomas and Trevor... I'm looking into the
possible solutions now. Appreciate it...
On Dec 4, 9:20 am, Trevor Skaife wrote:
> Another thing you can do is not attach the grid to the page until it
> is fully loaded, the dom operations are faster when the table isn't
> d
GWT does not emulate the entire JRE. See the documentation for the classes
that are emulated. You may find that for some "important" stuff, you want to
do it via RPC calls to a Java server or not at all.
On Sat, Dec 19, 2009 at 1:56 AM, gatty wrote:
> hi ,
> Can we use non gwt project's classes
I'm sorry I have omitted that, I'm on Windows Vista64.
I wish I knew where Eclipse reads the list of installed features from.
On Dec 21, 4:07 pm, Jeff Chimene wrote:
> Assuming you're on some Linux distro (you don't say in the OP) This is a
> problem w/ libgtk 2.0 I downgraded to 1.12(?). I'm r
I need to use the same localization mappings on the server as on the
client. I can't instantiate Constants server-side. I suppose one
method would be to read in the raw properties file and do a key lookup
but I'd like to reuse the Java method interface if I can. Ideas???
--
You received this m
Assuming you're on some Linux distro (you don't say in the OP) This is a
problem w/ libgtk 2.0 I downgraded to 1.12(?). I'm running Debian
testing/unstable, so I downgraded to the version in stable. This may or may
not be possible for you.
2009/12/21 Jaroslav Záruba
> Hello
>
> I just can't rem
I think this is the only way, but i'm not sure. But it is quite easy and
fast to do it. The only thing you have to do is to provide .java files at
compile time, how to do it is up to you.
--
You received this message because you are subscribed to the Google Groups
"Google Web Toolkit" group.
To
My application in hosed mode (http://localhost:) send plain HTTP
POST requests for example to the http://localhost/Inventory/.
After upgrade from GWT1.7 to GWT2.0, all POST requests are now sent as
OPTIONS request.
Method: OPTIONS
Host: localhost
User-Agent: Mozi
Hi,
Great, i think we all will benefit from this tutorial.
Regards.
--
You received this message because you are subscribed to the Google Groups
"Google Web Toolkit" group.
To post to this group, send email to google-web-tool...@googlegroups.com.
To unsubscribe from this group, send email to
go
Hello
I just can't remove GEP from Eclipse 3.5, the "Uninstall" button is
disabled. (Actually the button remains disabled for ALL the installed
software, hence I'm suspecting Eclipse here rather than GWT.)
Even when I remove all the folders and files that have "com.google" in
their name Eclipse st
I want to set up a line chart that gets its data dynamically from my
data access object. Also i will host the visualization in a div inside
a jsp (which i remember it works). I've been looking around and can't
quite figure out how to put everything togheter though to get the
chart to display (at al
Hello to everyone,
I've trouble with my gwt application.
The Webcontainer throws the following exception first time accessing
the web application:
The code of method _jspService(HttpServletRequest,
HttpServletResponse) is exceeding the 65535 bytes limit
The production environment is:
WebContainer
I was also looking for something similar, and I found this comment.
From RootLayoutPanel comments
Note that, unlike {...@link RootPanel#get(String)}, this class provides
no way
* to get an instance for any element on the page other than the
document
* body. This is because we know
Hi everyone,
I've recently started digging into GWT 2.0 and the new UiBinder
component. There is one particular issue that I couldn't solve yet and
I didn't find anything on that in the Google Groups or anywhere
throughout the net.
How can I (correctly) declare a Tree widget using UiBinder? When
I am trying to get started with the gwt. I can build and run them from
the command line but there does not appear to be any way to open the
samples in eclipse. Is there a way to do this?
Thanks.
--
You received this message because you are subscribed to the Google Groups
"Google Web Toolkit" gr
Hi,
If you are using eclipse then you shud create the web project by
installing gwt plug in. Then add the pojo as per your requirement.
After gwt plugin installed at eclipse you will find the GWT compiler
icon left hand top corner.
the project will get compiled.
On Dec 20, 6:52 pm, zizou84 wr
Hi,
I've followed the advice given in
http://groups.google.com/group/google-web-toolkit/browse_thread/thread/95f41df46608410b
http://code.google.com/webtoolkit/doc/1.6/FAQ_DebuggingAndCompiling.html#How_do_I_use_my_own_server_in_hosted_mode_instead_of_GWT%27s
and I still can't get this to work..
Hi,
I want to integrate the GWT in my product for some UI screens.
I have created the GWT project and extended the entry point class with
the class from my product.
Those related classes are packaged in product specific jar files.
I have given the class name in tag in .gwt.xml
I have added the s
Hello
I want that my VerticalPanel vPanel have got a listener onmouseover
and onmouseout. My vPanel contains two others widgets.
The probleme is that the listener onmouseout is up when the mouse come
to the border of these two widgets while yet I am in my vPanel
encompassing.
Example :
Button up
Hi,
I used Eclipse and have installed the GWT plug-in. Now I'd like to
upgrade from GWT-1.7 to GWT-2.0 so I started to follow the instruction
from the page
http://code.google.com/webtoolkit/doc/latest/ReleaseNotes.html#Upgrading.
But due to I'm new in GWT/Java/Eclipse world, I have no idea
1 - 100 of 131 matches
Mail list logo