GWT's Event class behaves differently in IE or FF for keypress event

2010-11-05 Thread Sorinel C
- Open this page: http://www.quirksmode.org/js/keys.html  with both
browsers (Internet Explorer and Firefox).
- Choose the keypress event for Testing.
- Click on a numeric key (0,1,2,3 ... 9)

You'll see that the FF and IE have different results.

* IE for key 2
keypress
keyCode is 50
charCode is undefined

* FF for key 2
keypress
keyCode is 0
charCode is 50

* Chrome for key 2
keypress
keyCode is 50
charCode is 50

So, it seems that Chrome is the nicest browser here -- but why do we
have this discrepancy?  shouldn't the Event class (which is a wrapper
on NativeEvent) provide the same results like Chrome for any browser?

Thanks!



-- 
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 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: lib-gwt-svg 0.5 for GWT 2.1 is available

2010-11-01 Thread Sorinel C
This is a great news -- I'll give it a try ...

Cheers!
http://ui-programming.blogspot.com/


-- 
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 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: Fwd: Announcing gwt4air 1.0

2010-11-01 Thread Sorinel C
Good job -- it looks good, but...

Do you think is worth the effort, as long as Apple doesn't support
Adobe products on their systems? Also, I know lots of companies that
don't allow Flash plugin into their browser, so they go on the
JavaScript path.

Anyways, as world is so diverse, I think you'll find lots of people
interested too -- good luck!

Cheers,
http://ui-programming.blogspot.com/

-- 
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 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: 'null' is null or not an object error

2010-10-18 Thread Sorinel C
why don't you use a CardLayout for your center panel, and instead of
removing and adding your widget to the ceter part .. you just
activate the ones corresponding to the menu option.

Menu  :
[menu 1]
[menu 2]

Center Panel:
[menu 1 panel]
[menu 2 panel]

Select [menu 1] -- Center Panel. setActiveItem (menu 1 panel);
Select [menu 2] -- Center Panel. setActiveItem (menu 12panel);

no need for remove/add/layout calls.

More GWT hits you can find here:
http://ui-programming.blogspot.com/2009/12/update-your-application-to-gwt-20.html

Cheers!

PS: if you like the solution, don't be shy to click on few ads, you
know, for fun - thx!

-- 
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 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: GWT Development plugin crashes FF and tooooo slow on Chrome

2010-10-17 Thread Sorinel C
It's known thingy (http://ui-programming.blogspot.com/2009/12/update-
your-application-to-gwt-20.html) the slowness of Chrome in dev.move --
so the only solution for you is to use the IE.

Though, there are other soutions:
- usually starting up it takes long because you load big data through
RPCs -- and if you have many RPC services -- it takes about 1 sec to
initialize each servlet.

Try to use the deRPC experimental library in dev.mode only ('cause in
web mode doesn't work) --
http://code.google.com/webtoolkit/doc/latest/DevGuideServerCommunication.html#DevGuideDeRPC

And to speed up the compilation in eclipse you can use this  hint:
http://ui-programming.blogspot.com/2009/12/gwt-speed-up-compilation-in-eclipse.html


Cheers!
http://cool-movie-browser.blogspot.com/

PS: if you liked the solution, don't be shy to click on few ads, you
know, for fun!


-- 
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 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: GWT Development plugin crashes FF and tooooo slow on Chrome

2010-10-17 Thread Sorinel C
This is a list of recommendations to optimize GWT apps, maybe you can
use some:
http://ui-programming.blogspot.com/2010/01/gwt-ideas-to-optimize-gwt-20.html

Cheers!
http://money-on-thread.blogspot.com/

-- 
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 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: how to remove gwt development plugins from ie?

2010-10-16 Thread Sorinel C
This is a good question -- I checked all add-ons from the Add-on
Manager and the GWT Dev plugin isn't there ... that's very hackerly
from Google...

Cheers!


PS1: GWT blog: http://ui-programming.blogspot.com/

PS2: my latest tool here: http://cool-movie-browser.blogspot.com/

-- 
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 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: how to remove gwt development plugins from ie?

2010-10-16 Thread Sorinel C
Anyways, if you want to reinstall it try the links from point 2)

http://ui-programming.blogspot.com/2009/12/update-your-application-to-gwt-20.html


Cheers!
http://cool-movie-browser.blogspot.com/

-- 
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 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: gwt-dev mode

2010-10-16 Thread Sorinel C
GWT = Java + JS.compiler == JavaScript Web app

DevMode is called when you run  debug your application from within
Eclipse, and using a browser Gwt Dev Plugin to communicate between the
browser, where your app is running, and the server, which runs in
eclipse.

Here's more about installing the plugins:
- 
http://ui-programming.blogspot.com/2009/12/update-your-application-to-gwt-20.html

Here's more about best GWT widget frameworks:
- 
http://ui-programming.blogspot.com/2010/01/comparation-ext-gwt-gxt-vs-gwt-ext-vs.html



Cheers!
http://cool-movie-browser.blogspot.com/



-- 
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 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: Good GWT development tools

2010-10-11 Thread Sorinel C
Are you using the localWorkers in the GWT compiler command line, to
use the n-CPU-cores that you have?

Read more here:
http://ui-programming.blogspot.com/2009/12/gwt-speed-up-compilation-in-eclipse.html

Cheers!

And if you like it, don't be shy to click on 1 ad or 2 -- you know,
for fun :)

-- 
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 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: Unable to use GWT Dev Ext 1.0.7511 for FireFox 3.6.10 on 64bit SUSE 11.3

2010-10-11 Thread Sorinel C
Try the links from point 2 of this article:
http://ui-programming.blogspot.com/2009/12/update-your-application-to-gwt-20.html

Cheers!

PS: my latest tool: http://cool-movie-browser.blogspot.com/

-- 
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 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: GWT can't compile for simple example

2010-10-11 Thread Sorinel C
Do you use the GWT plugin for Eclipse to create and manage your
project (structure) ? 'cause if you do that, then you shouldn't have
this problem...

Here's the list of the lastest tools from GWT:
http://ui-programming.blogspot.com/2010/10/cool-development-tools-from-google.html


Cheers,

PS: if you like it, don't be shy and click on 1 or 2 ads, please!

-- 
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 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: Wrapping elements, preventing leaks, attach, detach

2010-10-05 Thread Sorinel C
Sorry for bothering you with this -- but I just put it on net -- and
it's a very very cool tool --

Check it out:http://cool-movie-browser.blogspot.com/

Cheers!

PS: if you want more GWT tricks you can find it here:
http://ui-programming.blogspot.com/

-- 
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 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: Change Cursor Shape

2010-09-12 Thread Sorinel C
You register a handler for mouse event and then you do it like here:

http://ui-programming.blogspot.com/2010/01/gwt-how-to-show-wait-cursor-for-long.html

Cheers!

-- 
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 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: Making GWT look good...

2010-08-06 Thread Sorinel C
You can use a widgets library on top of GWT, which can make your
application look good.

Here's what I listed the most/best used ones:
http://ui-programming.blogspot.com/2010/01/comparation-ext-gwt-gxt-vs-gwt-ext-vs.html

Cheers!

-- 
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 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: GWTCanvas vs gwt-graphics?

2010-07-30 Thread Sorinel C
I would go with GWTCanvas too :-) here's a small starting point
http://ui-programming.blogspot.com/2010/07/gwt-how-to-draw-in-browser-with.html
but I assume you're an expert, so please contribute with your
discoveries.

Cheers!

-- 
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 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: deRPC == Error in the com.google.gwt.rpc.server.CommandSerializationUtil

2010-07-30 Thread Sorinel C
Opened the ticket
http://code.google.com/p/google-web-toolkit/issues/detail?id=5180sort=-idcolspec=ID%20Type%20Status%20Owner%20Milestone%20Summary%20Stars

Cheers!

-- 
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 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



deRPC == Error in the com.google.gwt.rpc.server.CommandSerializationUtil

2010-07-29 Thread Sorinel C
Hi there,

I got to that point that I need to improve my RPC transfer speed - due
to big data - and I tried the com.google.gwt.rpc.RPC.
It's much, much faster -- but it's buggy. In dev.mode I got from 45
sec (classic approach) to 5sec with deRPC approach). But when I tried
to run it in the web.mode I get the following error:


Caused by: java.lang.ClassCastException: java.lang.Double cannot be
cast to java.lang.Boolean
at com.google.gwt.rpc.server.CommandSerializationUtil$TypeAccessor
$1.set(CommandSerializationUtil.java:106)
at com.google.gwt.rpc.server.CommandSerializationUtil
$TypeAccessor.set(CommandSerializationUtil.java:413)
at com.google.gwt.rpc.server.CommandServerSerializationStreamReader
$Visitor.endVisit(CommandServerSerializationStreamReader.java:121)
at com.google.gwt.rpc.client.ast.SetCommand.traverse(SetCommand.java:
64)
at
com.google.gwt.rpc.client.ast.RpcCommandVisitor.doAccept(RpcCommandVisitor.java:
320)
at
com.google.gwt.rpc.client.ast.RpcCommandVisitor.accept(RpcCommandVisitor.java:
42)
at
com.google.gwt.rpc.client.ast.RpcCommandVisitor.doAccept(RpcCommandVisitor.java:
312)
at
com.google.gwt.rpc.client.ast.RpcCommandVisitor.accept(RpcCommandVisitor.java:
35)
at
com.google.gwt.rpc.client.ast.InstantiateCommand.traverse(InstantiateCommand.java:
55)
at
com.google.gwt.rpc.client.ast.RpcCommandVisitor.doAccept(RpcCommandVisitor.java:
320)
at
com.google.gwt.rpc.client.ast.RpcCommandVisitor.accept(RpcCommandVisitor.java:
42)
at
com.google.gwt.rpc.server.CommandServerSerializationStreamReader.readObject(CommandServerSerializationStreamReader.java:
319)
at
com.google.gwt.user.client.rpc.core.java.util.Map_CustomFieldSerializerBase.deserialize(Map_CustomFieldSerializerBase.java:
37)
at
com.google.gwt.user.client.rpc.core.java.util.HashMap_CustomFieldSerializer.deserialize(HashMap_CustomFieldSerializer.java:
31)
... 46 more


It's shame that this fast RPC serialization method isn't completed,
and it's in still experimental status. So, can you tell when can we
expect a stable version of this code, please ???

Cheers!
Sorinel Cristescu

-- 
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 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: How to find correctly the client's locale?

2010-07-20 Thread Sorinel C
@Glimpse

Thank you for the idea. I've tried myself something similar, but
getting the request header Accept-Language and I get the browser
language ... but this isn't exactly what I want ...

For example, I have set my systems locale to France, but the browser
(FF  Chrome) have English previously set, and of course, I get the
English language in the request header. My need would be to return the
system locale not that setting of the browser language.

Thanks anyways, that solution is patial good ! ... assuming that the
people in France have browser settings for France, the one from Canada
the same Canada (english or french) and so on

Cheers!

-- 
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 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



How to find correctly the client's locale?

2010-07-19 Thread Sorinel C
I have used the following code, trying to detect the client's locale,
but always I get the default one, which is the EN_US, even if I
change the locale of my system to French, for example.

[code]
final LocaleInfo locale = LocaleInfo.getCurrentLocale();
decimalSeparator = 
locale.getNumberConstants().decimalSeparator();
thousandSeparator = 
locale.getNumberConstants().groupingSeparator();
[/code]

So, can anybody advise me what  I miss, please?

Thanks!

-- 
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 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: How to find correctly the client's locale?

2010-07-19 Thread Sorinel C
I have in my module .gwt.xml file definition the following lines:

inherits name=com.google.gwt.core.Core /
inherits name=com.google.gwt.user.User /
inherits name=com.google.gwt.i18n.I18N /
inherits name=com.google.gwt.i18n.CldrLocales /
inherits
name=com.google.gwt.user.theme.standard.StandardResources /

So, maybe something else is wrong, but I don't catch it :(

Thanks!

PS: some other GWT tricks you can find here: http://ui-programming.blogspot.com/
:-))

-- 
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 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: Can not download gwt developer plugin

2010-07-18 Thread Sorinel C
Hi,

You can have the plugin from here (point two):

http://ui-programming.blogspot.com/2009/12/update-your-application-to-gwt-20.html

Cheers!

-- 
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 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: Google Web Toolkit will release new GWT Developer Plugin for Chrome on Linux ?????

2010-06-04 Thread Sorinel C
Download the plugin from here, point #2:

http://ui-programming.blogspot.com/2009/12/update-your-application-to-gwt-20.html

I'm curious if they are smart to figure out your OS and donwload the
right version :-) So, don't be shy to reply me back, please.

Cheers!

-- 
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 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: cross-platform

2010-06-04 Thread Sorinel C
Here I've wrote few interesting things about GWT, maybe it helps
you :-)

http://ui-programming.blogspot.com/2009/12/update-your-application-to-gwt-20.html

Cheers!

PS: to quick answer to your question, it works in any browser that can
run javascript.

-- 
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 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: Basic support question about gwt

2010-06-04 Thread Sorinel C
Here I've wrote some interesting things about GWT; maybe it helps
you :-)

http://ui-programming.blogspot.com/2009/12/update-your-application-to...


Cheers!


PS: to quick answer to your question, it works in any browser that
can
run javascript.

-- 
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 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: Basic support question about gwt

2010-06-04 Thread Sorinel C
oops -- wrong link --

This is the complete link: 
http://ui-programming.blogspot.com/2009/12/update-your-application-to-gwt-20.html

Cheers!

It's working on iPhone/iPad --  though the application must be
optimized very well, due to the not so powerful devices :)

-- 
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 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: GWT 2.0

2010-06-04 Thread Sorinel C
If you want more info about GWT you can find it here:

http://ui-programming.blogspot.com/2009/12/update-your-application-to-gwt-20.html

Cheers!

-- 
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 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: GWT Developer Plugin is not found in Firefox

2010-06-04 Thread Sorinel C
Download the GWT dev plugin from here, point #2:

http://ui-programming.blogspot.com/2009/12/update-your-application-to-gwt-20.html

Cheers!

-- 
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 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: GWT Design Problem

2010-06-04 Thread Sorinel C
Nice GWT books you can find here ...

http://gwt-books.blogspot.com/

Cheers!

-- 
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 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: How do I detect Mouse Up, Mouse Out, Mouse Over, etc on Grid Cells?

2010-06-04 Thread Sorinel C
Do you use pure GWT grid, or somthing else from, let's say, SmartGWT
or GXT, or even GWT-Ext ? 'cause it might be different fromm each
another.


Cheers!

PS: how you change cell background and other GWT hints, you can find
here: http://ui-programming.blogspot.com/

-- 
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 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: GWT Compile Issue

2010-05-24 Thread Sorinel C
Try to add these line under this one:

  !-- Inherit the core Web Toolkit stuff.--
inherits name='com.google.gwt.user.User'/

ADD NE LINES:

inherits name=com.google.gwt.core.Core/
inherits name=com.google.gwt.user.History/

Cheers!

PS: more info about GWT 2.0: 
http://ui-programming.blogspot.com/2009/12/update-your-application-to-gwt-20.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 from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: GWT Compile Issue

2010-05-24 Thread Sorinel C
An if you use the just released GWT 2.1M1 then you have to add more
stuff to your module .gwt.xml file

Check it out here to see it:
http://ui-programming.blogspot.com/2010/05/gwt-upgrade-to-gwt-21-m1-and-fix-module.html

Cheers

-- 
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 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: GWT 1.7 to 2.0 upgrading problem: no longer working: GWTCanvas, gwt-diagrams2

2010-05-11 Thread Sorinel C
It's always good to use the latest version (except for the cases when
there are critical bugs), like I did myself last year, jumping from
1.7 to 2.0

Here are some of my discoveries:

http://ui-programming.blogspot.com/2009/12/update-your-application-to-gwt-20.html

So, generate first a simple GWT 2.0 project using the Eclipse plugin,
and then update your module MainApplication.gwt.xml and
MainApplication.html according with the recommendations...

Success!

-- 
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 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: RPC Serialization Issue may be?

2010-05-11 Thread Sorinel C
Yup, that's the most common problem, easy to fix :)

Here's the problem I had using serialization of the Date, in case you
have any problems:

http://ui-programming.blogspot.com/2010/02/gwt-date-and-timestamp-rpc.html

Cheers!

-- 
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 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: 1.7 to 2.0, GWT doesn't work any more

2010-05-11 Thread Sorinel C
If you still play with both versions (1.7 and 2.0), due to support the
older deployed versions, you might have problems (like I had), but you
can get rid of them if you do cleaning, like I wrote in this article:

http://ui-programming.blogspot.com/2009/12/update-your-application-to-gwt-20.html

Success!

-- 
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 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: GWT 2.0.3

2010-05-10 Thread Sorinel C
Try to see if these recommendations work for you:

http://ui-programming.blogspot.com/2009/12/update-your-application-to-gwt-20.html

I've tried them to migrate from 1.7.0 to 2.0.0, but 2.0.3 is kind of
the same

Cheers!

-- 
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 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: Transfer problem from clien side to server side

2010-05-10 Thread Sorinel C
Why not using the simple GWT RPC to send objects from the server to
client?

You have just to extend the IsSerializable interface and that's your
kind of  POJO :-)

[code]
public class MyObject extends IsSerializable {

   /* mandatory constructor to be serializable */
   public MyObject () {
   }

}
[/code]

See more hints about GWT and more here: http://ui-programming.blogspot.com/

Cheers!

-- 
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 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: GWT compiler issues

2010-05-10 Thread Sorinel C
Maybe this helps you about choosing the right library:

http://ui-programming.blogspot.com/2010/01/comparation-ext-gwt-gxt-vs-gwt-ext-vs.html

If you have interesting findings post the results somewhere, please!

Cheers

-- 
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 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: ant hosted not working on my machine ...debugging is very tedious

2010-05-10 Thread Sorinel C
Here's how you can debug your GWT application from within the eclipse.

http://ui-programming.blogspot.com/2009/12/update-your-application-to-gwt-20.html

In a nutshell, use FF 3.6 or IE8, not Chrome  ... install the
DevPlugin for your browser ... use the URL from the above article.

Cheers

-- 
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 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: GWT issue when browser offline

2010-05-10 Thread Sorinel C
There is no solution here ...in offline mode the browser doesn't
access server  and obviously the client RPC calls fail.
So, enable the browser online and your application will be alive and
kicking.

More GWT hints you can find here: http://ui-programming.blogspot.com/

Cheers!

-- 
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 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: Object Type (typeId$) different for two of the same type: java.util.Date

2010-05-10 Thread Sorinel C
In any case, you have to be very careful with the Date class in GWT
(serialization, or manipulation on client and server).

See here what I'm talking about: 
http://ui-programming.blogspot.com/2010/02/gwt-date-and-timestamp-rpc.html

Cheers

-- 
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 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: How to correct IE font size problem?

2010-03-04 Thread Sorinel C
Are you sure isn't it the IE8 option Page ~ Zoom set to 150% instead
100% ?

Cheers!

-- 
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 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: Trouble with GWT Hosted Mode

2010-03-04 Thread Sorinel C
Are you sure isn't point 4) from this posting?

http://ui-programming.blogspot.com/2009/12/update-your-application-to-gwt-20.html

It seems that you have to clean up the cache all over

Cheers!

PS: I did successfully upgrades from 1.6.0. 171 200 201 ands so on 203

-- 
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 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: Bad time with TimeZones/Dates

2010-03-03 Thread Sorinel C
I think we are talking about different things ... so, yeah you might
be right, but my solution works for me; tested OK from Australia,
Europe to America.

http://www.google.com/url?sa=Dq=http://ui-programming.blogspot.com/2010/02/gwt-date-and-timestamp-rpc.html


Cheers!

-- 
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 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: Bug in DateTimeFormat?

2010-03-03 Thread Sorinel C
Is this browser case? that means is it happens with a certain browser
(IE). Which version 6, 7, or  8 ?
Did you try it with Firefox or Chrome?

Why do you need to do parsing of the date on the client side; cannot
you do it on server side (using the full Calendar and TimeZone
classes) ???
Cheers!

I have a posting here, but I don't think it's exactly what you are
asking for?

http://ui-programming.blogspot.com/2010/02/gwt-date-and-timestamp-rpc.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 from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: Bad time with TimeZones/Dates

2010-03-02 Thread Sorinel C
Here's the solution for your problem, which I had it last week. In my
case the hour was jumping 1 day ahead :)

http://ui-programming.blogspot.com/2010/02/gwt-date-and-timestamp-rpc.html

The main idea is to use the Date(year, month, day, hour, min, sec)
constructor for your client side, but try to avoid this, if you can.

Cheers!

-- 
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 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: GWT downgrade (2.0 - 1.7.1) insists in launching GWT 2.0

2010-03-02 Thread Sorinel C
Your solution is explained here

http://ui-programming.blogspot.com/2009/12/update-your-application-to-gwt-20.html

down at point 4)

Cheers!

-- 
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 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: Gwt hosted mode too slow

2010-03-02 Thread Sorinel C
I assume that you are using the Chrome browser for that, right?

I have explained this issue here, at point 3):

http://ui-programming.blogspot.com/2009/12/update-your-application-to-gwt-20.html

Cheers!

-- 
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 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: Gwt hosted mode too slow

2010-03-02 Thread Sorinel C
sorry about point 3) -- actually at point 2)  I meant :)

Cheers!

-- 
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 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: Ext/GXT/ExtGWT v2.1.0 vs. SmartGWT v2.0

2010-01-30 Thread Sorinel C
There you go -- I hope, here:

http://ui-programming.blogspot.com/2010/01/comparation-ext-gwt-gxt-vs-gwt-ext-vs.html

you can find more info about the same topic.

Cheers!

-- 
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 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: Swing App on browser

2010-01-17 Thread Sorinel C
There are 2 methods:

1. You can make your java swing application as applet, and add it to
the HTML pages.

2. There is a tool to convert automatically the Java Swing GUIs to the
WEB ones, but I don't remember the name ... I'll come back later!

Anyways, a very good Swing-ish GUI you can do with GWT, in Java ...and
the result is a javascript...
Check more GWT examples and tricks here: http://ui-programming.blogspot.com/

Cheers!
-- 
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 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.




Re: Problem running application GWT 2.0 with GWT Eclipse plugin

2010-01-15 Thread Sorinel C
1. Can you check to clean up your environment like is explained here?
http://ui-programming.blogspot.com/2009/12/update-your-application-to-gwt-20.html

2. If you still have problems after step 1, then check out the java
class that you get error for (maybe you use some external unsupported
classes by GWT).

Cheers!
-- 
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 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.




Re: plugin for firefox

2010-01-15 Thread Sorinel C
Can you set your dev. environment  like is said here?
http://ui-programming.blogspot.com/2009/12/update-your-application-to-gwt-20.html

You'll find out why you have to put that gwt.codesvr parameter and
others small tricks.

Cheers!
-- 
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 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.




Re: My IE plugin doesn't work...

2010-01-15 Thread Sorinel C
You can download the plugin directly from the URL ... check this
article: 
http://ui-programming.blogspot.com/2009/12/update-your-application-to-gwt-20.html

So, you download it, install it, and  run it. It should be easy :)

Cheers!
-- 
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 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.




Re: Differences Hosted Mode, Web Mode

2010-01-15 Thread Sorinel C
Beside the previous answer from Alex, there is another explanation:
- in web mode the RPC communication between the server and client is
optimized (gzip-ed), but in hosted mode this isn't true, so in this
slow case, you serialize plain data back and forth, which I believe is
big for 4000+ nodes.

Check out more GWT tricks here: http://ui-programming.blogspot.com/

Cheers!
-- 
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 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.




Re: Multiple Methods Within One RPC Service?

2010-01-15 Thread Sorinel C
The thumb rule is use as few GWT services as possible ... because
it takes more than 1+ second to initialize each service; so many you
have, more time you waste at starting up the application.

If you have fancy crazy application with timeouts and stuff, then
you're smart enough to figure out yourself the answer :)

Anyways, you can find more GWT tricks (optimizations, update to gwt
2.0, examples) here: http://ui-programming.blogspot.com/

Cheers!
-- 
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 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.




Re: GWT 2.0 Upgrade Problem

2010-01-09 Thread Sorinel C
Hi all,

There small tricks related with the environment, which aren't
documented, in the GWT tutorial.

Here you can find what helped me to solve the migration issues:

http://ui-programming.blogspot.com/2009/12/update-your-application-to-gwt-20.html


Cheers!
-- 
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 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.




Re: StringBuffer problems in GWT

2010-01-09 Thread Sorinel C
Why not using StringBuilder (faster, not thread-safe) instead of
StringBuffer (slower, thread-safe) ?

Cheers!
-- 
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 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.




Re: Development mode - refresh is not enough to see my changes!

2010-01-09 Thread Sorinel C
Depends what you change, so, if you play with the HTML or CSS you may
have caching of the browser that is playing tricks on you ... so
that's why you have to restart dev-mode ... but if you change java
code, most of the time, you don't even need refresh, except for the
static functions, that needs refresh...

Cheers!

check more GWT tricks here: http://ui-programming.blogspot.com/

-- 
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 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.




Re: HostedMode requires plugin for internal browser

2010-01-07 Thread Sorinel C
Why don't you check here?

http://ui-programming.blogspot.com/2009/12/update-your-application-to-gwt-20.html

where you have the most important steps of upgrading a GWT application
to version 2.0.

I think it will help you...


Cheers!
-- 
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 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.




Re: GWT 2.0: Debug with Firefox and Eclipse

2010-01-07 Thread Sorinel C
Why don't you check here?

http://ui-programming.blogspot.com/2009/12/update-your-application-to-gwt-20.html

where you have the most important steps of upgrading a GWT application
to version 2.0. (THE MOST IMPORTANT IS CLEARING THE BROWSER CACHE 
USE THE URL PARAMETER gwt.codesvr)

I think it will help you...


Cheers!
-- 
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 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.




Re: Eclipse + Windows 7 + GWT Debug As... doesn't work

2010-01-07 Thread Sorinel C
I use the same combination and it's working well: Eclipse 3.5 + GWT2.0
+ Windows7 x64 + GWT DevPlugin.

Why don't you check here?

http://ui-programming.blogspot.com/2009/12/update-your-application-to-gwt-20.html

where you have the most important steps of upgrading a GWT application
to version 2.0.

I think it will help you...


Cheers!
-- 
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 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.




Re: ack! migrating from gwt 1.7 to 2.0 and events don't fire anymore?

2010-01-07 Thread Sorinel C
Try this first to see if you have any problems of environment:

http://ui-programming.blogspot.com/2009/12/update-your-application-to-gwt-20.html

where you have the most important steps of upgrading a GWT application
to version 2.0.

If it's not working for you, then post the errors log please! to try
to understand what's wrong...

Cheers!
-- 
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 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.




Re: What's a good graph/chart library

2010-01-07 Thread Sorinel C
Check out the USEFUL LINKS on http://ui-programming.blogspot.com/
where you can find few that I use (pretty nice).

- pure javascript charts
- pure flash


Cheers!
-- 
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 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.




Re: GWT Intigration with existing project .... Hosted mode issues.

2010-01-07 Thread Sorinel C
Have you try to set up the dev env right? for this check first this:
http://ui-programming.blogspot.com/2009/12/update-your-application-to-gwt-20.html

Then, if it's not solving the problem for you do this:
- create a new GWT project in another eclipse workspace
- verify that the generate project structure is the same like yours.
- start adding stuff from the old project to the new one by one ...

At the end, you'll get there where you want. Success!
-- 
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 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.




Re: GWT Intigration with existing project .... Hosted mode issues.

2010-01-07 Thread Sorinel C
What I want to say is that: I don''t know if your described project
was created manually and is it working with GWT1.7, and the migration
to GWT 2.0 fails ... that's I did suggest to play with a new simple
project.

Cheers!

-- 
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 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.




Re: Unable to run DevMode

2009-12-23 Thread Sorinel C
You can start properly the GWT 2.0 DevMode like it's described here:

http://ui-programming.blogspot.com/2009/12/update-your-application-to-gwt-20.html

Cheers!

--

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 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.




Re: How to run development mode under GWT 2.0.0

2009-12-16 Thread Sorinel C
Check here the correct way of running the dev-mode for GWT2.0:

http://ui-programming.blogspot.com/2009/12/update-your-application-to-gwt-20.html

Cheers!

--

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 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.




Re: GWT Developer Plugin not working IE8

2009-12-15 Thread Sorinel C
I've tried on all OS, vista-x86, windows7-x64, xp-x86 ... and it's
working fine, better than chrome :)

download it from here: 
http://ui-programming.blogspot.com/2009/12/update-your-application-to-gwt-20.html

and have fun!

Cheers.

--

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 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.




Re: How can I disable the browser's default right click response?

2009-12-15 Thread Sorinel C
Here you have some solutions:
 
http://ui-programming.blogspot.com/2009/12/gxt-ext-gwt-how-can-i-disable-browsers.html

I hope they are good for you!

Cheers.

--

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 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.




Re: development mode isn't updating

2009-12-15 Thread Sorinel C
Why do you use that ugly URL, with IPs ? try this one:

http://localhost:/MyApplication.html?gwt.codesvr=localhost:9997

for sure is nicer ...

Cheers!

--

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 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.




Re: OOPHM is slow

2009-12-14 Thread Sorinel C
Yes, the Chrome dev-mode plugin is slow for now, but for sure they
will fix it with the next update.

Here's my discovery related the subject: http://ui-programming.blogspot.com/

Cheers,
Sorinel CRISTESCU

--

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 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.




Re: Mac, GWT Hosted Mode does not work after switching to gwt 2.0 and back to 1.7.1

2009-12-13 Thread Sorinel C
It's simple ... hosted mode uses the default browser of your OS
(windows ~ IE, linux ~ FF ).
So, first of all clean up the browser cache ... then launch a full
rebuild of the project after you change the libraries ... and the
hosted mode will come back, as you knew it :-)

BTW, better check out why your application doesn't work well with 2.0,
'cause it's better to use newest features ... new resources, faster
loading of  the application in development mode than hosted mode, code
splitting, etc

Cheers,
Sorinel CRISTESCU

--

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 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.




Re: GWT 2.0 - com.google.gwt.user.client.rpc.IsSerializable is mandatory again?

2009-12-13 Thread Sorinel C
When a new version comes these are the standard steps to do:
1 - put the jars
2 - perform a full rebuild of the application
3 - clean up the browser cache
4 - clean up the temp folder, where the GWT is generating the
compilation crap...
5 - run the application :-))

Cheers,
Sorinel CRISTESCU

--

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 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.




Re: eclipse with google plugin

2009-12-13 Thread Sorinel C
Maybe you have to disable the automatic update feature ... which is
annoying at the beginning ...

Why not trying the older version of eclipse 3.4 ? ... cause in 3.5 I
saw lots of bugs

Cheers,
Sorinel CRISTESCU

--

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 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.




Re: GWT 2.0 - Eclipse - Need to Recompile after every change

2009-12-13 Thread Sorinel C
Why do you have to change your code to manage the gwt.codesvr crap ?
Do you know what's the 9997 port for?

...just use the gwt.codesvr in the URL of the browser when you
launch the developer mode and you'll have the same result ... the
point is that the 9997 is configurable and it can be changed, so what
do you do, you modify your code every time?

http://localhost:8080/MyApp.html?gwt.codesvr=localhost:9997

8080 is the default  port for you app, 9997 is default the port for
dev mode... both of them can be changed!

Cheers,
Sorinel CRISTESCU

--

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 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.




Why the Chrome GWT-Dev plugin is so slow?

2009-12-13 Thread Sorinel C
I've tried my application using the GWT2.0 in these 3 browsers
(Chrome, IE8, and FF3.5), and as Chrome is the fastest in day to day
operations ... I expected the GWT dev-mode plugin will be the same ...
but false ... the order of speed in dev-mode is:

1. Firefox
2. Internet Explorer
...
3. Chrome (far away comes)

Why? I hope will have soon an updated version !

Cheers,
Sorinel CRISTESCU

--

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 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.




Re: SmartGWT 1.0 Released

2008-11-19 Thread Sorinel C

Is this going to be the end of older GWT-Ext library? :-))

Cheers,
Sorinel
--~--~-~--~~~---~--~~
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-Toolkit@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/Google-Web-Toolkit?hl=en
-~--~~~~--~~--~--~---