Performance question: css images or incoded ?

2010-07-15 Thread grandanat
Which approach is better, to have images set in code (ImageResource +ResBundle, etc...) or to have set them in css. One string good reason is that in css u can set different images according to screen resolution. You can have separated css's for different screen resolution, to customize gui better

can't seem to get spring-security and gwt going...

2010-07-15 Thread Henry HO
hi, i've spent the past couple of days trying to add spring security to my unsecured gwt app without success. after researching spring docs and forums; i added the spring- security.jar to the project. and the following to my web.xml : AppsecurityContext /WEB-INF/AppContext-security.xml spri

Re: GWT client as Maven module in multi-module project

2010-07-15 Thread andreas
Hey David, I was trying to get our newly introduced maven based build cycle to work with GPE a few months ago. At that time GPE had some issues regarding flexibility in configuration to work with maven-gwt project layout (in particular no "war/" directory, which GPE was expecting). After all our

Re: Eclipse debugger not running in hosted mode?

2010-07-15 Thread David Vree
I should mention that the only jar I have in my WEB-INF/lib is "gwt- servlet.jar" -- do I need any of the others? On Jul 16, 12:36 am, David Vree wrote: > I did!  In fact it's only in the debug configurations menu...not the > run configurations menu. > > I am using maven and am wondering if there

Re: LayoutPanel: How to program cascade menuBar and rootLayoutPanel?

2010-07-15 Thread jim9
Thank you Magnus, With your suggestion I have solved my menubar display problem as follow: == public void onModuleLoad() { // Make a command that we will execute from all leaves. Command cmd = new Command() { public

Re: Eclipse debugger not running in hosted mode?

2010-07-15 Thread David Vree
I did! In fact it's only in the debug configurations menu...not the run configurations menu. I am using maven and am wondering if there is an issue there Although Eclipse is compiling my classes to "war/WEB-INF/classes" On Jul 15, 10:53 pm, lineman78 wrote: > You have to make sure you s

Re: Gwt-servlet 2.0.4 in Maven repo

2010-07-15 Thread David Vree
It's literally being added RIGHT NOW On Jul 15, 6:16 pm, hbf wrote: > Dear list, > > I hope this is the right place to ask Maven questions related to GWT. > > I see that > >  http://repo2.maven.org/maven2/com/google/gwt/gwt-user/ > > contains the latest (2.0.4) release but that > >  http://re

Re: GWT client as Maven module in multi-module project

2010-07-15 Thread David Vree
Thanks -- makes sense, although I hate the idea of having to do a "mvn package" everytime before running in host mode. If I punt on the maven directory structure and go with the "war" directory can I shorten my edit-debug cycle? What do most maven users do? On Jul 15, 6:25 pm, Daniel wrote: > T

Basic purpose of onEnsureDebugId

2010-07-15 Thread Aditya
hello, Can anyone has answer why is onEnsureDebugId() is used...? how does it helps while creating custom widgets. -- Aditya -- 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...@googlegr

Re: Client session

2010-07-15 Thread Prashant Hegde
The way I would do is to define a application event (eg. LocationEvent) & handler encapsulating whatever data (ex. co ordinates) that you need to send and fire the event. First presenter fires the event when the mouse is clicked. Second Presenter handles the event and takes appropriate action.

Re: Can the GWT Eclipse Plugin use Maven downloaded artifacts for the SDK?

2010-07-15 Thread David Vree
BTW - The version of the plug-in I am using is 1.3.3. I have also noticed that I can delete the SDK from my build path and configure the plug-in not to complain. This takes care of the duplicate JARs in my build path problem. However, the plugin still demands I point it to an "SDK" directory whi

Re: network data per second

2010-07-15 Thread mk
the requirement we are trying to meet is scalability... To get scalability in our app we have to reduce network calls by each user. Thus we are bundling data of 3-4 web pages in one webpage transfer. Or for autosuggestion box, we are transferring all possible suggestions (in hundreds) in one tran

Re: Eclipse debugger not running in hosted mode?

2010-07-15 Thread lineman78
You have to make sure you start it with "Debug As" not "Run As" On Jul 15, 8:20 pm, David Vree wrote: > I believe so, but I don't know how to tell for sure.  I can tell you > that the "Development Mode" tab in Eclipse gets focus, and provides me > the following URL: > > http://127.0.0.1:/inde

Re: Eclipse debugger not running in hosted mode?

2010-07-15 Thread David Vree
I believe so, but I don't know how to tell for sure. I can tell you that the "Development Mode" tab in Eclipse gets focus, and provides me the following URL: http://127.0.0.1:/index.html?gwt.codesvr=127.0.0.1:9997 When I put that URL in the browser the app runs. But no stopping from within

Re: network data per second

2010-07-15 Thread Ian Petersen
I don't personally have an answer for you. I'm not using GWT anymore these days--I've moved on to a new project and it's got nothing to do with the web. I stick around because I think it's cool tech and I'd like to come back one day. I think narrowing yourself to urban US and urban Europe, and

Re: Can the GWT Eclipse Plugin use Maven downloaded artifacts for the SDK?

2010-07-15 Thread David Vree
Thanks Kathrin -- I went ahead and tried that, but it wouldn't let me... Check this out -- the artifact is in this directory that was created by Maven: ~/.m2/repository/com/google/gwt/gwt-user/2.0.3 But the plugin seems to be hard-coded to look for a file named "gwt- user.jar" but in this case, t

Re: Possible to access GWT-RPC serializer?

2010-07-15 Thread Yau
If you don't want to use JSON serialization (or can't use JSON because you're using non-POJO object), you can try the following way. It's calling the RPC serialization method directly and it works! http://www.techhui.com/profiles/blogs/simpler-and-speedier-gwt-with On Jul 15, 3:41 am, Sekhar wr

Re: Can the GWT Eclipse Plugin use Maven downloaded artifacts for the SDK?

2010-07-15 Thread Katharina Probst
Hi David, yes, you can point to any SDK you choose (maven, compile from trunk, ...). If you right-click on your project and go to Google->Web Toolkit Settings, it'll let you configure where your SDK sits. Click on "Configure SDKs..." and then Add, point it to whatever directory your SDK sits in.

Re: Eclipse debugger not running in hosted mode?

2010-07-15 Thread lineman78
Are you running in the embedded server? On Jul 15, 2:05 pm, David Vree wrote: > I have tried to use the Eclipse debugger with the sample application > in hosted mode, so I know it works.  But in my own application (a > multi-module maven project) the stop point I put on OnModuleLoad isn't > trigg

Re: Which library for Money/Time-Format

2010-07-15 Thread Richard
Hi Alex, http://code.google.com/p/gwt-java-math is a pure Java implementation of BigDecimal for GWT and is the one that is getting merged into GWT itself. >From Richard. On Jul 15, 7:01 pm, AlexG wrote: > Hi, > > i got what I needed, thanks to you both. > > Greets > Alex > > On 14 Jul., 18:10

Re: This is getting beyond a joke

2010-07-15 Thread Ben Harris
I build gwt with maven. I haven't checked if you do, but you don't/ shouldn't bundle the gwt-user dependencies with the artefact. Gwt-dev needs all its dependencies bundled though; gwt-maven-plugin won't work otherwise. On Jul 15, 10:18 am, David Chandler wrote: > Hang tight, folks, we're on it.

Re: GWT client as Maven module in multi-module project

2010-07-15 Thread Daniel
The GWT Maven plugin deviates from the standard Maven directory structure by default, to accommodate the Google Plugin for Eclipse's default directory structure. If you want to use the standard Maven directory layout (with the static resources for your War file in src/ main/webapp instead of the wa

Re: DockLayoutPanel MVP and events

2010-07-15 Thread Thomas Broyer
On 15 juil, 20:22, Nirmal wrote: > Thanks Thomas, your explanation puts the new Activity/Place into > perspective. > > I have a question; how does the PlaceChange Event gets fired?? As of 2.1M2, PlaceController still isn't bound to History, so only PlaceController#goTo will fire first a PlaceCh

Gwt-servlet 2.0.4 in Maven repo

2010-07-15 Thread hbf
Dear list, I hope this is the right place to ask Maven questions related to GWT. I see that http://repo2.maven.org/maven2/com/google/gwt/gwt-user/ contains the latest (2.0.4) release but that http://repo2.maven.org/maven2/com/google/gwt/gwt-servlet/ only contains releases up to 2.0.3. Do

Re: Client session

2010-07-15 Thread munna kaka
You wrote that On Thu, Jul 15, 2010 at 11:36 AM, Feldman, Nir (48Upper) wrote: > Sharing of data is threw the bus. You should have your display expose > mouseClickedEvent. The presenter should capture it and fire it to the bus. > The secondPresenter should get the event and notify the second dis

Re: network data per second

2010-07-15 Thread munna kaka
I was afraid that I will get the response you sent. If I can add more to the original question than it's that US urban broadband connected users will be served by servers in US and european urban broadband connected users will be served by servers in europe. thus what's your assumptions about spe

Re: MyNamedFrame is better than GWT's NamedFrame

2010-07-15 Thread Sky
Make sure you modify the following native method to point to your own package structure: public native void setMyOnload(JavaScriptObject elm, MyNamedFrame frame)/*-{ elm.myonload = function(event){ fra...@com.skystrider.subtabs.client.gwtutils.mynamedframe::onload(Lcom/ g

Re: network data per second

2010-07-15 Thread Ian Petersen
I think that question is impossible to answer in general. If you have a user base in mind, it might be possible to start generalizing, but the internet as a whole is too diverse for averages to have any utility. For example, the Canadian government has (had?) a mandate to make its online properti

network data per second

2010-07-15 Thread mk
Any idea how much actual data we can send per second over boradband connection? Is this assumption true that a general internet user gets an average of 1Mbps ( after http,tcp,ethernet ovrehead ) ? Thus we can send 128KB of data (i.e.html, js, image, css) per second. There is no ocean hop of packet

Eclipse debugger not running in hosted mode?

2010-07-15 Thread David Vree
I have tried to use the Eclipse debugger with the sample application in hosted mode, so I know it works. But in my own application (a multi-module maven project) the stop point I put on OnModuleLoad isn't triggering. I've tried many different things. Any ideas? -- You received this message bec

Re: How to send message from server to client without callback(RPC)

2010-07-15 Thread dolcra...@gmail.com
You're basically asking for server push, I'd look into either comet, server events, or websockets. Regardless none will be available (except maybe comet, haven't checked this) in GWT since there isn't a large base (IE) that supports those methods. Also, you can use "real java codes", they're just

Re: newbie question: deploying the starter web project

2010-07-15 Thread Oby Sumampouw
I agree this seems to be some tomcat issue not GWT issue. Ok I'll try and reply back. Thanks Oby On Jul 15, 6:30 am, Katharina Probst wrote: > I think I know what the problem may be related to. > > When I navigate to:http://www.tuwuk.com/mainarea/ > > I get nothin

JUnit to test if Class is gwt-serializable?

2010-07-15 Thread Eric
Hi All, Can anyone point me to the part of the GWT compiler that determines if a class is serializable such that it would go in the serialization policy file? I'd like to write some simple JUnits which assert that some of my classes are serializable to GWT's liking. I think this this could help

Re: GWT client as Maven module in multi-module project

2010-07-15 Thread David Vree
The documentation is very complex, but ultimately it provided the answer. I needed to configure the maven-war-plugin to filter (e.g. copy) the files from my webapp directory to the war directory. I accomplished this via the following snippet in my module level POM:

Re: Menu Item and MVP (2)

2010-07-15 Thread Eric Landry
Thanks! That's exactly what I was looking for. I added a few things. I added 2 methods to the HasCommandHandlers interface: - void setHandlerEnabled(boolean isEnabled); - boolean isHandlerEnabled(); This way, my presenter can disable MenuItems using: display.getExportCmd().setHandlerEnabled(false

Re: DockLayoutPanel MVP and events

2010-07-15 Thread Nirmal
Thanks Thomas, your explanation puts the new Activity/Place into perspective. I have a question; how does the PlaceChange Event gets fired?? Regards, Nirmal On Jul 14, 8:07 pm, Thomas Broyer wrote: > On 8 juil, 10:39, xworker wrote: > > > Hi > > > Very new to GWT and MVP. Trying to expand the

Re: JAXB & GWT How I can use JAXB generated classes on client side

2010-07-15 Thread lineman78
Personally, I prefer to use Jersey vs GWT RPC because it is more flexible and exposes standard interfaces. For instance, in our group there are both Java and C# guys, so if our webservices have the ability to support multiple standards everyone can use them. I have Jersey set up so that depending

Re: JAXB & GWT How I can use JAXB generated classes on client side

2010-07-15 Thread David Vree
I don't want to hijack your thread, but I am new to this and am wondering why you don't use GWT-RPC to do the client/server communication? On Jul 15, 12:40 pm, lineman78 wrote: > It is not possible to convert POJO to XML without using some sort of > library, but Jersey does have the ability to do

Can the GWT Eclipse Plugin use Maven downloaded artifacts for the SDK?

2010-07-15 Thread David Vree
I am currently using Maven to download the GWT dependencies from the Maven central repository as follows: com.google.gwt gwt-servlet ${gwt.version} runtime

Re: Qt for Mobile Application Development for Education v1.0 Beta

2010-07-15 Thread Jeff Chimene
On 07/15/2010 08:02 AM, Stefan Bachert wrote: > Hi, > > I do not see any relevance to this forum? > Could someone help me? > > Stefan Bachert > http::/gwtworld.de > > On 15 Jul., 03:54, James Baker wrote: >> A really comprehensive knowledge enhancing training material from >> Forum Nokia, you g

Re: GWT 2.0.4 caused Class Not Found, TransformerFactoryImpl

2010-07-15 Thread Jeff Chimene
On 07/15/2010 01:47 AM, Jan wrote: > In my case even the workaround suggested by google fails. The error > message is the following: java.lang.IllegalAccessException: Reflection > is not allowed on public > com.sun.org.apache.xalan.internal.xsltc.trax.TransformerFactoryImpl() > > I am really looki

Re: How to write good performance code?

2010-07-15 Thread Sebastian Rothbucher
You might have a look @ http://code.google.com/events/io/2010/sessions/faster-apps-faster-gwt-compiler.html and @ http://code.google.com/events/io/2010/sessions/architecting-performance-gwt.html Some patterns are really helpful, esp. when it comes to minimizing we objects (so it's not just a micr

Re: Timer to Refresh a Table View

2010-07-15 Thread Ian Petersen
The footprint is both small and probably constant. It's not actually recursive. You're effectively registering a pointer to the run() function with a scheduler in the browser. Every interval, the browser will invoke the function, wait for it to return, and then move on. I don't know how t.sched

Re: Mixed content warning on Chrome (skull and bones)

2010-07-15 Thread Chris Conroy
On Thu, Jul 15, 2010 at 12:17 PM, Danny Goovaerts wrote: > Speedtracer shows "From cache :false" but I > do find the components in the cache. > I don't know how the mobile browser handle it, but the js files are > probably too big anyway to be cached. > > Danny There have been some known issue

Re: Timer to Refresh a Table View

2010-07-15 Thread Irving Ruan
Hi, That solved my problem. Thanks! So, what's the memory footprint like? It seems that it's just creating more stacks. Thanks, Irving On Jul 15, 6:32 am, AgitoM wrote: > You can use this: > > public void refreshTable() { >     Timer t = new Timer() { >        public void run() { >          //

RE: Client session

2010-07-15 Thread Feldman, Nir (48Upper)
Regarding the MODEL, you should not have static variables, Instead you should have a singleton Service in the client side. Create UserService Interface with one method getLoggedInUserInfo(AsyncCallBack). Whenever you need it call this interface. In the implementation you should have cache so onl

Re: Reusability of GWT UI

2010-07-15 Thread Vik
Hie Phani The yes requirement is right. But the solution you suggested seems a little confusing. Can you put a more detailed example on this? Please advise, I am stuck on it. Thankx and Regards Vik Founder www.sakshum.com www.sakshum.blogspot.com On Wed, Jul 14, 2010 at 4:40 PM, phani kumar

Re: GWT Navigation Problem

2010-07-15 Thread lineman78
Look at the history api On Jul 14, 4:16 pm, Ahmed Shoeib wrote: > Hi all , > i face a problem With Navigation . > > now i have multiple panel added to the RootPanel ( clear the panel and > add the next panel ) > > now i want to support next & back for these panels > > how i can do it ??? -- You

Re: Caution: SmartGwt loadup size is big

2010-07-15 Thread lineman78
SmartGWT is only a GWT wrapper on a javascript library so it is expected that you would have this problem. If you can stand the licensing, GXT is supposed to be a pure GWT implementation of their javascript library, so unused portions of the library are not included. Due to licensing I have not u

Re: is there any json parser that can parse UTF-8 json text

2010-07-15 Thread lineman78
Jersey is a project for implementing REST services, but would probably be overkill for your situation. You could simply write a servlet with a doGet method if you are handling any marshaling yourself. The Jersey project allows you to expose methods to specific URLs and any marshaling/unmarshaling

Re: JAXB & GWT How I can use JAXB generated classes on client side

2010-07-15 Thread lineman78
It is not possible to convert POJO to XML without using some sort of library, but Jersey does have the ability to do JSON. I use JAXB to generate my server side classes and JAX-RS to marshal to XML and JSON depending on the Accepts header. This is fairly easy to do using a services context resolv

Re: Mixed content warning on Chrome (skull and bones)

2010-07-15 Thread Danny Goovaerts
Thanks, I'll go for the cache-control public solution that you suggest such that the users can be confident about the confidentiality. I've tested with FF3 and IE7. These browsers seem to persistently cache the js when cache-control public is set on the reply headers. I don't know about Chrome. Spe

Re: Possible to access GWT-RPC serializer?

2010-07-15 Thread Sekhar
Thanks guys, yes looks like JSON is the way to go. POJO->JSON should be easy (using the JSON API), but the other way is a bit tricky. I don't think overlays help because the JavaScript side never sees the objects (just the string) and the JSON->POJO process shouldn't depend on the specific class. A

Re: Get session object from ID sent in RCP

2010-07-15 Thread Stefan Bachert
Hi, I guess you refer to http://code.google.com/p/google-web-toolkit-incubator/wiki/LoginSecurityFAQ quite frankly, this document does not convince me at all. I see the following attack vectors a) just reading unsecured tcp. this will give you account and password in plain text. Solution: alway

Re: Possible to access GWT-RPC serializer?

2010-07-15 Thread charlie
Sorry if this is off topic, but what are 'overlay types' ? On Thu, Jul 15, 2010 at 10:08 AM, Paul Stockley wrote: > You could use JSON and javascript overlay types to access the > information in a type safe way. > > On Jul 15, 10:55 am, Stefan Bachert wrote: > > Hi Sekhar, > > > > this is my fi

Re: GWT Eclipse Plugin doesn't work with read-only Eclipse Helios file system

2010-07-15 Thread Rajeev Dayal
Hi, We've been hearing reports of this, but also for people using Eclipse 3.5. Do you run into the same problem if using Eclipse 3.5? Also, did you install Eclipse as a root user, but the plugin as a non-root user? Rajeev On Wed, Jul 14, 2010 at 11:29 PM, blackbeltdev wrote: > Sorry if this i

GWT Eclipse Plugin doesn't work with read-only Eclipse Helios file system

2010-07-15 Thread blackbeltdev
Sorry if this is the wrong place to post this... The GWT eclipse 3.6 plugin doesn't work at all if Helios Eclipse is installed to a read-only file system (e.g. /opt on unix). I believe this is a new issue related to the 3.6 version of the plugin but I'm not 100% certain. For example none of the n

Re: GWT client as Maven module in multi-module project

2010-07-15 Thread SalvadorDiaz
Hi, You might want to take a look at the GWT maven plugin documentation (there are lots of useful tips): http://mojo.codehaus.org/gwt-maven-plugin/ Hope that helps, Salvador On 15 juil, 03:35, David Vree wrote: > Manually moving index.html to the WEB-INF directory solver the 404 > problem. Bu

Re: Possible to access GWT-RPC serializer?

2010-07-15 Thread Paul Stockley
You could use JSON and javascript overlay types to access the information in a type safe way. On Jul 15, 10:55 am, Stefan Bachert wrote: > Hi Sekhar, > > this is my first thought. Just use JSON. Then you can use "eval" to > read it. > However, I do not know any method to export a object to json s

Re: Qt for Mobile Application Development for Education v1.0 Beta

2010-07-15 Thread Stefan Bachert
Hi, I do not see any relevance to this forum? Could someone help me? Stefan Bachert http::/gwtworld.de On 15 Jul., 03:54, James Baker wrote: > A really comprehensive knowledge enhancing training material from > Forum Nokia, you guys should check out!! > This training material is intended for ed

Re: Client session

2010-07-15 Thread Stefan Bachert
Hi, I am not sure what you mean with client side sessions? Do you mean to pass the HttpSession (maybe just the id) to the client side? But for what reason? It is already there. Either due to url-rewriting or by cookie. Stefan Bachert http://gwtworld.de On 9 Jul., 19:48, mk wrote: > How to i

Re: Possible to access GWT-RPC serializer?

2010-07-15 Thread Stefan Bachert
Hi Sekhar, this is my first thought. Just use JSON. Then you can use "eval" to read it. However, I do not know any method to export a object to json string. But this should not be too complicated to do yourself, or lookout for such a library Stefan Bachert http://gwtworld.de On 15 Jul., 01:34, S

Re: Caution: SmartGwt loadup size is big

2010-07-15 Thread Stefan Bachert
Hi, this is the major problem using a javascript wrapper instead of a real GWT based library. However, even a poor designed GWT library may (but should not) run into this problem due to poor dependencies. (Everthing depends on everthing) Stefan Bachert http://gwtworld.de On 15 Jul., 01:22, mk

Re: JAXB & GWT How I can use JAXB generated classes on client side

2010-07-15 Thread chris
Thank you for the advice and it appears that this would work for server but not for client marshalling. I have been investigating a way to use JAXB to marshall soap requests on the client side but have not found a way as of yet. I would love to get rid of soap all together but unfortunately that wi

Re: JAXB & GWT How I can use JAXB generated classes on client side

2010-07-15 Thread chris
Thank you for the advice and it appears that this would work for server but not for client marshalling. I have been investigating a way to use JAXB to marshall soap requests on the client side but have not found a way as of yet. I would love to get rid of soap all together but unfortunately that wi

The new shiny GwtRpcCommLayer

2010-07-15 Thread monkeyboy
This is great news for me: http://googlewebtoolkit.blogspot.com/2010/07/gwtrpccommlayer-extending-gwt-rpc-to-do.html It is about a GWT RPC library that works on any Java client. I would like to give some suggestions to the developer(s) of the library. 1. The server side should work on GAE. 2. The

Re: GWT/iphone/phonegap server communication

2010-07-15 Thread Arthur Kalmenson
We also ran into this issue while building a GWT based iPhone app using phonegap. We also didn't want to use JSONp as our servers were Java based and GWT-RPC makes life easier. The solution lay in a blog post by Ray Cromwell: http://timepedia.blogspot.com/2009/04/gwt-rpc-over-arbitrary-transports-u

Re: This is getting beyond a joke

2010-07-15 Thread Thomas Broyer
On 15 juil, 14:52, monkeyboy wrote: > Now that I think about it this development was expected since Google > and WMWare decided to integrate GWT with Spring Roo which uses Maven > under the hood. The integration would not make sense if they did not > put the GWT libs in the repo. Will Google be

Re: GWT/iphone/phonegap server communication

2010-07-15 Thread Youen
MMmm.. just to understand well. In our case the RPC endpoint are in HTTP server (tomcat, apache, whatever), and we call theses endpoints from HTMl/JS/GWT file loaded from file://. It is easy to do it by calling "jsonp endpoint" (with JsonpRequestBuilder) but I am wondering if it is possible with

Re: Timer to Refresh a Table View

2010-07-15 Thread AgitoM
You can use this: public void refreshTable() { Timer t = new Timer() { public void run() { //Retrieve Data //Refresh table refreshTable(); } }; // Schedule the timer to run once in 5 minutes. t.schedule(30); } This essentially this creat

Re: newbie question: deploying the starter web project

2010-07-15 Thread Katharina Probst
I think I know what the problem may be related to. When I navigate to: http://www.tuwuk.com/mainarea/ I get nothing, but when I go to http://www.tuwuk.com Given what I've told you to do, I would expect the first one to work, not the second one. I get your starte

Re: This is getting beyond a joke

2010-07-15 Thread monkeyboy
Now that I think about it this development was expected since Google and WMWare decided to integrate GWT with Spring Roo which uses Maven under the hood. The integration would not make sense if they did not put the GWT libs in the repo. Will Google be developing a Maven plugin (or contribute to the

Re: Which library for Money/Time-Format

2010-07-15 Thread AlexG
Hi, i got what I needed, thanks to you both. Greets Alex On 14 Jul., 18:10, Jaroslav Záruba wrote: > I used gwt-math on my previous project. works fine. > 2.1 (m1, m2) has BigDecimal support built in. > > On Wed, Jul 14, 2010 at 5:52 PM, Scott Fines wrote: > > I don't know about the money situ

Re: Distributing a fix to the customer

2010-07-15 Thread Parag Thakur
thanks Gal. On Jul 15, 11:42 am, Gal Dolber wrote: > no really, you need to recompile and replace the all folder > > 2010/7/15 Parag Thakur > > > > > > > hello, > > > We need to provide a fix to a customer that's in our client side GWT > > code. Is there a way to avoid sending the entire ui fol

Fatching application object to gwt project

2010-07-15 Thread Siraj
Hi I m facing problem to fatching the application object to the gwt project at the time of complilation it gives me the object.xml file is not configure. Thanks in advance Siraj -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To

Re: GWT 2.0.4 caused Class Not Found, TransformerFactoryImpl

2010-07-15 Thread Jan
In my case even the workaround suggested by google fails. The error message is the following: java.lang.IllegalAccessException: Reflection is not allowed on public com.sun.org.apache.xalan.internal.xsltc.trax.TransformerFactoryImpl() I am really looking forward to a bugfix or a reliable workaround

Re: ui:style content, UTF-8 characters

2010-07-15 Thread turumbay
On Jul 15, 2:54 am, Thomas Broyer wrote: > On 14 juil, 16:29, turumbay wrote: > > > > > Is where any way to use specific symbols in style declaration? > > > > >         .expandable:after{ > >                 content: "▼"; > >         } > > > > > >         it works in html code: ▼ > >      

Re: location of .cache.html

2010-07-15 Thread lam
I didn't know that in development mode, no cache.html file are created. After I did GWT compile, I found them. thanks :) On Jul 15, 4:01 am, Katharina Probst wrote: > Are you looking for the GWT output JS?  If you look at the *.cache.html > files in the war directory, you'll see that they contai

Re: This is getting beyond a joke

2010-07-15 Thread andreas
Thanks David! I'll spread the news in our team... Andreas On 15 Jul., 04:18, David Chandler wrote: > Hang tight, folks, we're on it. As has been noted in this thread, GWT > itself is not built with maven, so it's not a 100% automated process > to push to maven central. But we're working hard to

Qt for Mobile Application Development for Education v1.0 Beta

2010-07-15 Thread James Baker
A really comprehensive knowledge enhancing training material from Forum Nokia, you guys should check out!! This training material is intended for educational purposes. The objective of the course is to teach students all the essential knowledge and skills to develop well-written cross-platform Qt a

Re: Currency/Money and Time Library

2010-07-15 Thread Frederic Conrotte
For Money there is nothing specific to GWT. But for dates, if you want to avoid loosing lot of times with OS/ browsers specific javascript date management and time zones, I strongly advise you to use you own date class with Strings to represent fields. On Jul 15, 9:18 am, AlexG wrote: > Hi @ all

Currency/Money and Time Library

2010-07-15 Thread AlexG
Hi @ all, i am just wondering, is there any library for GWT, that provides money and time classes, to deal correct with prices and dates? greets Alex -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this group, send email to go

Re: is there any json parser that can parse UTF-8 json text

2010-07-15 Thread Alex
for client side i have alwasy use com.google.gwt.json.client.JSONParser without any problem. its for my server side. im not trying to convert the json string into java class, but rather i just need to send the string representation of a json object that was extracted from a json array to client s