Looks like ext-js issues migrating from GWT 1.7.0 to GWT 2.7.0. Need help.

2015-02-25 Thread ssg
100 character 1954 SCRIPT5007: Unable to get property 'ui' of undefined or null reference *Can someone please help me resolve these issues so that I can successfully migrate from GWT 1.7.0 to GWT 2.7.0 ?* *Below is the screenshot of the IE10 browser Console;* *Thanks a lot in adva

Re: DeferredCommand Deprecated. Need help.

2015-02-18 Thread Jim Douglas
See the documentation: http://www.gwtproject.org/javadoc/latest/com/google/gwt/user/client/DeferredCommand.html On Wednesday, February 18, 2015 at 1:23:18 PM UTC-8, ssg wrote: > > I am migrating from GWT 1.7.0 to GWT 2.7.0 > > Below is the code from GW 1.7.0 > >* DeferredCommand*.

DeferredCommand Deprecated. Need help.

2015-02-18 Thread ssg
I am migrating from GWT 1.7.0 to GWT 2.7.0 Below is the code from GW 1.7.0 * DeferredCommand*.addPause(); *DeferredCommand*.addCommand(new Command() { @Override public void execute() { panel.getEl().un

Re: Errors migrating to GWT 2.7.0 . Can someone please help me ?

2015-02-12 Thread Jens
Its a JVM parameter for defining a system property and not a GWT compiler/DevMode parameter. -- J. -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To unsubscribe from this group and stop receiving emails from it, send an email to google

Re: Errors migrating to GWT 2.7.0 . Can someone please help me ?

2015-02-12 Thread Thomas Broyer
It's not a compiler argument, it's a JVM one (setting a system property) -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To unsubscribe from this group and stop receiving emails from it, send an email to google-web-toolkit+unsubscr...@goo

Re: Errors migrating to GWT 2.7.0 . Can someone please help me ?

2015-02-12 Thread ehodges
That fails like this: Unknown argument: -Dgwt.usearchives=false Google Web Toolkit 2.7.0 Compiler [-logLevel level] [-workDir dir] [-[no]compileReport] [-X[no]checkCasts] [-X[no]classMetadata] [-[no]draftCompile] [-[no]checkAssertions] [-X[no]closureCompiler] [-XfragmentCount numFragments] [-Xf

Re: Errors migrating to GWT 2.7.0 . Can someone please help me ?

2015-02-12 Thread Jens
Should be the JRE/JDK you have configured for your project and not the one you launched Eclipse with. I am on Mac OS and use Oracle JDK 1.7 and haven't seen any gwtar issues yet. Maybe you accidentally have two different GWT versions on classpath? But as Thomas already said, if you have trouble

Re: Errors migrating to GWT 2.7.0 . Can someone please help me ?

2015-02-12 Thread ehodges
Which GWT compiler I'm using: The one that runs when I right click on a project containing a GWT module and select Google -> GWT Compile. I just installed the latest from https://dl.google.com/eclipse/plugin/4.3. I used to have launch configurations to compile GWT, but they all seem to have b

Re: Errors migrating to GWT 2.7.0 . Can someone please help me ?

2015-02-12 Thread Juan Pablo Gardella
Which GWT compiler are you using? Eclipse 4.3 recommends JRE 1.6 , but you can add a different JDK in Eclipse from from Windows->preference->Java->Installed JRE. Then in your project you can use it (right click in the project, properties-> Java->built

Re: Errors migrating to GWT 2.7.0 . Can someone please help me ?

2015-02-12 Thread ehodges
I said "I'm compiling with Oracle's 1.7.0.u45 JDK", but I'm not quite sure. Does the Eclipse (4.3) plugin's GWT compiler use the current Eclipse default JRE? Is there something I need to do to configure it? -- You received this message because you are subscribed to the Google Groups "Google

Re: Errors migrating to GWT 2.7.0 . Can someone please help me ?

2015-02-12 Thread ehodges
Same problem here. I'm compiling with Oracle's 1.7.0.u45 JDK. I get a bunch of warnings like this: [WARN] Unable to read: jar:file:/C:/gwt-2.7.0/gwt-user.jar!/com/google/gwt/core/Core.gwtar. Skipping: java.io.InvalidClassException: com.google.gwt.dev.jjs.SourceOrigin$1; local class incomp

Re: client logging config help with unexpected popup

2015-01-27 Thread Robert J. Carr
and it happened in both 5 and 7 although I don't see how it matters). It didn't (and doesn't) happen in GWT 2.6.1 with the same exact config. Thanks for any help you can offer! On Tue, Jan 27, 2015 at 3:41 PM, Jens wrote: > > I am not sure if that also applies to GWT 2.7 as

Re: client logging config help with unexpected popup

2015-01-27 Thread Jens
I am not sure if that also applies to GWT 2.7 as I am using GWT trunk but I had to delete SDM caches to let changes to logging configuration take effect. When SDM starts it tells you which workDir it uses for compilation. Next to that workDir SDM also creates a cache directory named "gwt-cache-

Re: client logging config help with unexpected popup

2015-01-27 Thread rjcarr
/> >> >> >> >> >> >> >> >> >> Basically, all I want is the console handler as I'm doing everything else >> with a custom handler (it's silly these aren't disabled by default). My >> custom handler extend

Re: client logging config help with unexpected popup

2015-01-27 Thread rjcarr
#x27;t disabled by default). My > custom handler extends Handler and is pretty simple. It is created like > this: > > Logger.getLogger().addHandler(new CustomHandler()); > > And I'm sure the white popup isn't coming from there. So what's going on? > And isn'

client logging config help with unexpected popup

2015-01-26 Thread rjcarr
oing on? And isn't this some sort of GWT defect if things behave differently on different platforms using identical codebases? Thanks for the help! -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To unsubscribe from thi

Re: Errors migrating to GWT 2.7.0 . Can someone please help me ?

2015-01-21 Thread ssg
g JDK1.6. I am also new to GWT. >> >> 1) Can you please help me how & where to add *-Dgwt.usearchives=false* ? >> > > In your Ant build, where you call the GWT Compiler, add a key="gwt.usearchives" value="false" /> to your task. > > &g

Re: help understanding complicated client logs

2015-01-20 Thread Robert J. Carr
that panel and only proceeds after it's been created. Seems strange I can't control when the GWT files get loaded, but this will work as a backup. Thanks again for the help! On Sat, Jan 17, 2015 at 5:54 PM, Robert J. Carr wrote: > Thanks, true I guess, I'll try to sort it out

Re: help understanding complicated client logs

2015-01-17 Thread Robert J. Carr
Thanks, true I guess, I'll try to sort it out. I was able to use the throttling to reproduce the problem as you suggested so thanks! Unfortunately dev mode isn't working for me so now I have to go figure out super dev mode I guess. Thanks again for the help. You certainly gave me a

Re: help understanding complicated client logs

2015-01-17 Thread Jens
> > If the code is dereferencing null it should always be an error, right? > Not really. Maybe a field becomes null while a server request is in progress and when the request finishes the onSuccess callback tries to use that field without any checks. -- J. -- You received this message becau

Re: help understanding complicated client logs

2015-01-17 Thread Robert J. Carr
Thanks so much for the detailed response. And I'll give those dev tool suggestions a try. And what you say makes sense about dereferencing a null, but it doesn't explain how it would work most of the time, but sometimes it doesn't. If the code is dereferencing null it should always be an error,

Re: help understanding complicated client logs

2015-01-17 Thread Jens
You can test it locally if you use Chrome DevTools. When you open DevTools you can click on the small mobile device icon on the left side right next to the search icon. Once you have done that you should see a new dark toolbar at the top of your page which has a Network drop down which allows y

help understanding complicated client logs

2015-01-16 Thread rjcarr
I have a fairly large GWT application that works fine until it is behind SSL. When that happens whenever the page is reloaded on about the 5th try (but it doesn't seem to have a pattern) I'll get an error that is something like: __gwt$exception: : Cannot read property 'Z' of null Since it

Re: Errors migrating to GWT 2.7.0 . Can someone please help me ?

2015-01-16 Thread Thomas Broyer
On Friday, January 16, 2015 at 6:02:18 PM UTC+1, ssg wrote: > > Thomas, Thanks a lot for your response. > I am using JDK1.6. I am also new to GWT. > > 1) Can you please help me how & where to add *-Dgwt.usearchives=false* ? > In your Ant build, where you call the GWT Co

Re: Errors migrating to GWT 2.7.0 . Can someone please help me ?

2015-01-16 Thread ssg
Thomas, Thanks a lot for your response. I am using JDK1.6. I am also new to GWT. 1) Can you please help me how & where to add *-Dgwt.usearchives=false* ? 2) Are you suggesting me to use GWT 2.8 instead of 2.7 now? Thanks in advance. On Friday, January 16, 2015 at 4:15:32 AM UTC-5, Thomas Br

Re: Errors migrating to GWT 2.7.0 . Can someone please help me ?

2015-01-16 Thread Thomas Broyer
ary 15, 2015 at 9:42:51 PM UTC+1, ssg wrote: > > I am getting the following error while performing Ant Build. > *Can someone please help me ?* > > Compiling module com.acg.mmsea.gwt.Appname > [java][WARN] Unable to read: > jar:file:/C:/gwt-2.7.0/gwt-user.jar!/co

Errors migrating to GWT 2.7.0 . Can someone please help me ?

2015-01-15 Thread ssg
I am getting the following error while performing Ant Build. *Can someone please help me ?* Compiling module com.acg.mmsea.gwt.Appname [java][WARN] Unable to read: jar:file:/C:/gwt-2.7.0/gwt-user.jar!/com/google/gwt/core/Core.gwtar. Skipping: java.io.InvalidClassException

Help! Super Dev Mode crashes with NPE on statics???

2015-01-08 Thread Michael Joyner
Help! Super Dev Mode crashes with NPE on statics??? We have a project that compiles fine and runs fine using normally compile files. When we try and run in Super Dev Mode all statics are coming up as "undefined" in the javascript? This only happens when running SDM ? We'

Re: Need help migrating from gwt 1.7.0 to gwt 2.7.0

2014-12-17 Thread Jens
Can you please stop posting the same stuff twice? You already have a different thread with the same questions. -- J. -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To unsubscribe from this group and stop receiving emails from it, send a

Need help migrating from gwt 1.7.0 to gwt 2.7.0

2014-12-17 Thread ssg
Can someone please answer my question (bold black) below? As I am new to GWT & development, I have done the following based on current App gwt1.7.0 1) I have downloaded standalone GWT SDK 2.7.0 2) Current build.xml file using HostedMode as follows *Should I change the above lines to Sup

Re: Help with the first application

2014-12-17 Thread rhmoller
starting with the GWT now and I have a problem, if you could help me, > I'd be thankful > > I'm creating a simple program to encrypt a string. When a user types a > word in the box he clicks the button, and in the box below returns the word > changed. But I can not make

Help with the first application

2014-12-17 Thread Eduardo Pereira
Hello everyone. I'm starting with the GWT now and I have a problem, if you could help me, I'd be thankful I'm creating a simple program to encrypt a string. When a user types a word in the box he clicks the button, and in the box below returns the word changed. But I can not m

Plz help me on this..

2014-12-11 Thread Chamara Silva
Recently i am working on a gwt ext project and i used Navigation tree to list menu items in my home page.. but recently my client ask from me to disable some of the menu items until he process some task..i am really struggle with that and i did not able to find solution..if anyone know a solut

Re: Connect client gwt with server external.... help

2014-10-29 Thread Juan Pablo Gardella
en working on the same > project. But now I want to implement the project on a local client and can > connect to the server developed in another project. I've done everything > but I get this to work. I hope I can count on your help. Thank you very > much. > > -- >

Connect client gwt with server external.... help

2014-10-29 Thread carlos espitia
t and can connect to the server developed in another project. I've done everything but I get this to work. I hope I can count on your help. Thank you very much. -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To unsubsc

Re: I need help calling GWT code from Javascript passing in generic arguments and/or callbacks -- URGENT

2014-09-25 Thread Samuel Schmid
Thank you! Helped me a lot! On Tuesday, March 6, 2012 5:53:25 AM UTC+1, babakm wrote: > > I built an API in GWT for accessing a series of complex services. I > wanted to do tons of client side processing and I chose GWT (been > doing GWT for years now). However, my users will be using Javascript

i have problem changing this to native javascript. please help me

2014-08-20 Thread anuj joshi
private native void createChart() /*-{ $(function () { $wnd.$(document).ready(function () { $wnd.Highcharts.setOptions({ global: { useUTC: false } }); $wnd.$('#container').highcharts({

Re: Using super-dev mode - please help

2014-07-29 Thread Edson Richter
Thanks, Jens for your kind answer. Really, I don't know if I've even set it up. Actually, when I downloaded NetBeans GWT plugin it just worked "out-of-the-box" always with DEV mode, and I've never needed to setup anything manually - except my folders and infrastructure for security (which I use

Re: Using super-dev mode - please help

2014-07-29 Thread Jens
When SDM is active then source maps are loaded from the SDM code server and not from your app server. Whenever the browser requests a *.cache.js file from the SDM code server a HTTP response header will be set with the location of the source maps. AFAICT this location should always be fine and

Using super-dev mode - please help

2014-07-29 Thread Edson Richter
Hi! I've a project that started with GWT 2.0 and now is updated to GWT 2.6.0. Environment: - NetBeans 8.0 with latest GWT plugin - JDK 1.8.0_11 x64 working on compatibility mode (sources version 1.6) - About 30 GWT modules In order to make app working as secure as possible, everything compiled i

Re: Need help with "[ERROR] Annotation error: " while doing GWT compile

2014-05-20 Thread George Varghese
You have to compile your java source files and add the "classes" directory to your classpath On Thursday, May 9, 2013 4:13:45 PM UTC-5, Asha Paul wrote: > > Hello Sanjeev: What exactly did you do to get rid of the error? > Thank you, > Asha > > On Tuesday, October 5, 2010 4:42:16 PM UTC-4, Sanjee

Native Javascript Help

2014-04-15 Thread Nolan Brassard
if (event == "onStart") { ud.@com.framework.client.videodetails.VideoDetailsDesktopView::setPlaying(); } else if (event == "onFinish" || event == "onStop") { ud.@com.framework.client.videodetails.VideoDetailsDeskt

1m to Help a GWT application win a contest

2014-04-13 Thread Wayne Rasmuss
Got to http://goo.gl/OMfsaS And vote for What's Next Software -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To unsubscribe from this group and stop receiving emails from it, send an email to google-web-toolkit+unsubscr...@googlegroups.

Re: Need help with JSNI

2014-03-19 Thread Jens
> > As I said, it would work sporadically, but not always. An non-static > example would be very useful as I still don't completely understand why it > needed to be wrapped with an anonymous function. > Because $wnd.log = $entry(myInstance.@package.Class::log()) kind of means "assign/copy the

Re: Need help with JSNI

2014-03-19 Thread Robert J. Carr
Right, I first followed the static export example and got things working. Then realized I actually wanted to use it non-statically and got help on this forum with how to include the instance into the export (main.@...). As I said, it would work sporadically, but not always. An non-static

Re: Need help with JSNI

2014-03-19 Thread Jens
> > I don't know why this information isn't in the docs but it should be added > right away. > Indeed. I also always forget about that 'this' thing and I am pretty sure I would have written the same code as you did in the first post and would have lost some time again until remembering that

Re: Need help with JSNI

2014-03-19 Thread rjcarr
I've responded a couple times so I apologize if you get multiple copies but it wasn't showing up in the thread. Just wanted to say this worked and thank you so much. I've been battling this problem for quite a while. I don't know why this information isn't in the docs but it should be added r

Need help with JSNI

2014-03-19 Thread Thomas Broyer
Beware of JavaScript's 'this'! $entry(function(a,b) { ma...@my.app.main::method(II)(a,b); }); -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To unsubscribe from this group and stop receiving emails from it, send an email to google-web

Re: Need help with JSNI

2014-03-19 Thread rjcarr
No, nothing changes from what I can tell. I don't mean for you to be distracted when I say it sometimes works. And the example I gave using a Logger is just one example; I see the same 'undefined' problems no matter what type of member I try to dereference. I'm more interested in if what I'm

Re: Need help with JSNI

2014-03-19 Thread Jens
Is GWT's java.util.logging disabled for the compile that causes troubles? -- J. -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To unsubscribe from this group and stop receiving emails from it, send an email to google-web-toolkit+unsubs

Need help with JSNI

2014-03-19 Thread rjcarr
I'm trying to export GWT methods using JSNI and I'm not having a lot of luck. And sometimes things happen as they should and other times they don't and it seems to be magic that is making it happen. It seems the export is happening correctly (i.e., javascript can call the GWT methods) but once i

Re: Touchevent vs ClickEvent (+ phonegap help)

2014-02-21 Thread Ed
i think you need to do some Googling... See for example: https://developers.google.com/mobile/articles/fast_buttons And the m-gwt project. Understand what the use is of gwt-phonegap You don't need it until you want to access native mobile functionality... Using HTML 5 offline, makes a web app

Touchevent vs ClickEvent (+ phonegap help)

2014-02-21 Thread Axel R
he store ? ) Thanks you for the help, Axel -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To unsubscribe from this group and stop receiving emails from it, send an email to google-web-toolkit+unsubscr...@googlegroups.com. To

Re: [Help] GWT + GAE + Android - Where to start?

2014-02-20 Thread Bruno Brito
cursorString = cursor.toWebSafeString(); // Tight loop for fetching all entities from datastore and accomodate // for lazy fetch. for (DeviceInfo obj : execute) ; } finally { mgr.close(); } return CollectionResponse. builder().setItems(execute) .setNextPageToken(cursorString).build(); } But how

Re: [Help] GWT + GAE + Android - Where to start?

2014-02-15 Thread Andrew Mackenzie
Hi Bruno, well you've made a lot of progress, so congratulations. I think we need to overcome a basic misconception before going further On the server side, you should only have ONE project, a combined GAE and GWT project, not two. No need to copy classes and files between project

Re: [Help] GWT + GAE + Android - Where to start?

2014-02-14 Thread Bruno Brito
del objectsbut you might want > to JDO annotate on GAE and not on Android - that will break Android > compile :-( > > If you dont use Endpoints or some other library to help you create REST > API then in your GAE project you will have to implement API using servlets >

Re: [Help] GWT + GAE + Android - Where to start?

2014-02-11 Thread Bruno Brito
rt. It can have common model objectsbut you might want > to JDO annotate on GAE and not on Android - that will break Android > compile :-( > > If you dont use Endpoints or some other library to help you create REST > API then in your GAE project you will have to impleme

Re: [Help] GWT + GAE + Android - Where to start?

2014-02-11 Thread Andrew Mackenzie
project and by GAE/GWT webapp project.but maybe not worthy your effort. It can have common model objectsbut you might want to JDO annotate on GAE and not on Android - that will break Android compile :-( If you dont use Endpoints or some other library to help you create REST API then

Re: [Help] GWT + GAE + Android - Where to start?

2014-02-11 Thread Bruno Brito
Andrew Mackenzie, Firstly, thank you very much for your answer. I'm very new to using AppEngine and GWT, so I'm not very sure I understood everything. I still got a lot of homework to do. I'm following a GWT + AppEngine tutorial and so far I'm able to create the web client and use the datastore

Re: [Help] GWT + GAE + Android - Where to start?

2014-02-11 Thread Andrew Mackenzie
http://www.slideshare.net/andrew_d_mackenzie/google-dev-fest-presentation -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To unsubscribe from this group and stop receiving emails from it, send an email to google-web-toolkit+unsubscr...@go

Re: [Help] GWT + GAE + Android - Where to start?

2014-02-11 Thread Andrew Mackenzie
You just need to "layer" GWT on top of the GAE/J "servlet/jsp" application by including web pages that load the JS generated by the GWT compiler. I.e. you build ONE app that does it all, with server code and GWT generated JS all in one combined /war dir. You then debug locally on the devserver o

Re: [Help] GWT + GAE + Android - Where to start?

2014-02-11 Thread Bruno Brito
> I don't know if I was clear enough. I've searched the group and saw some > posts similar to my question, but none was very clear about it. > > I'll be glad if anyone can help. > > Thanks! > -- You received this message because you are subscribed to the Goog

[Help] GWT + GAE + Android - Where to start?

2014-02-11 Thread Bruno Brito
;ve searched the group and saw some posts similar to my question, but none was very clear about it. I'll be glad if anyone can help. Thanks! -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To unsubscribe from this group an

Re: Help to create Lightweight widgets

2014-02-08 Thread Axel R
> > For #2, I have tried both case and have the following errors : > extend Widget 11:58:03.274 [ERROR] [MS] Error injecting com.MS.client.application.widget.poster.Poster_Tooltip$Binder: Unable to create or inherit binding: No @Inject or default constructor found for com.MS.client.application

Help to create Lightweight widgets

2014-02-07 Thread Axel R
Hi, I know there is a lot of doc in the web, but I cannot understand well many things...please feel free to help me: #1 Does addClickListener() and addClickHandler() does the exact same thing (listener is just deprecated) ? #2 I have created the following widget: public class

Re: GWT 2.1 MVP Multiple activities clarification help

2014-01-01 Thread Ronan Quillevere
I know it might be an old topic, but I have tried to implenent thomas idea ( http://tbroyer.posterous.com/gwt-21-activities-nesting-yagni ) in this github project. I will be happy to have some comments/suggestions. https://github.com/ronanquillevere/GWT-Multi-Activities Regards On Wednesday,

Need help with manipulating java originated objects in javascript

2013-12-19 Thread rjcarr
Need help with manipulating java originated objects in javascript My goal is to initiate RPC calls directly from javascript. I have come up with ways to fake callbacks (because of the asynchronous nature of RPC) but I can't figure out how to get custom objects into javascript. So,

Need help with manipulating java originated objects in javascript

2013-12-19 Thread rjcarr
My goal is to initiate RPC calls directly from javascript. I have come up with ways to fake callbacks (because of the asynchronous nature of RPC) but I can't figure out how to get custom objects into javascript. So, I've created a class named Interop and I statically create the service I'm i

Re: Need some help, about Google web button.

2013-12-02 Thread Michael Prentice
tly working on a site on CSS3, > Html5, javascript technology. > > In Google.com was changed design, so that it now appeared context menu > (button). > I, also, want to put such (similar) button on my web site. > Please, need your help with the code. Or at least, tell me th

Re: i am getting error with on that can u please help on that

2013-11-18 Thread Jens
-Xss is a JVM parameter not a GWT compiler parameter. Check your run configuration / parameter placement. -- J. -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To unsubscribe from this group and stop receiving emails from it, send an ema

i am getting error with on that can u please help on that

2013-11-18 Thread Sreeni Reddy
Unknown argument: -Xss Google Web Toolkit 2.5.1 Compiler [-logLevel level] [-workDir dir] [-gen dir] [-style style] [-ea] [-XdisableClassMetadata] [-XdisableCastChecking] [-validateOnly] [-draftCompile] [-optimize level] [-compileReport] [-strict] [-XenableClosureCompiler] [-XfragmentMerge numFr

Re: Help with Source Map

2013-10-24 Thread Thomas Broyer
On Thursday, October 24, 2013 7:36:00 AM UTC+2, Axel R wrote: > > Hi, > > I use GWT 2.5.1 > I have at least theses configurations : > > value="false" /> > --> > > - I would like to know if Source Map should work with the *online*application > (the website in production) ? > Because, I succ

Help with Source Map

2013-10-23 Thread Axel R
Hi, I use GWT 2.5.1 I have at least theses configurations : --> - I would like to know if Source Map should work with the *online*application (the website in production) ? Because, I succeed to see the java files in local developement mode...but I didn t succeed to see the java files with

GWT compiler guru help need ...

2013-10-16 Thread Rocco De Angelis
Hi All, I checked out the latest version (trunk) of GWT from git and tried to compile my current project with this state of GWT. But during the compiling of the permutation I get an error message: Compiling 1 permutation Creating PermutationWorkerFactory instances Compiling permuta

Re: Help on defered binding with Internet Explorer

2013-09-06 Thread Thomas Broyer
On Friday, September 6, 2013 12:19:39 PM UTC+2, Thomas Broyer wrote: > > > > On Friday, September 6, 2013 11:49:25 AM UTC+2, Thomas Lefort wrote: >> >> I have two cases of defered binding not working the way I thought it >> would. The problem I have is with IE. >> >> 1) I have the following rule

Re: Help on defered binding with Internet Explorer

2013-09-06 Thread Thomas Broyer
On Friday, September 6, 2013 12:54:30 PM UTC+2, Thomas Lefort wrote: > > Thanks! makes a lot of sense. Will try the suggestion. > > Regarding the widget replacement, I assumed it was possible to proceed as > I mentioned by looking at the Popup rule provided @ > http://www.gwtproject.org/doc/la

Re: Help on defered binding with Internet Explorer

2013-09-06 Thread Thomas Lefort
Thanks! makes a lot of sense. Will try the suggestion. Regarding the widget replacement, I assumed it was possible to proceed as I mentioned by looking at the Popup rule provided @ http://www.gwtproject.org/doc/latest/DevGuideCodingBasicsDeferred.html It is true that PopupImpl is not being dire

Re: Help on defered binding with Internet Explorer

2013-09-06 Thread Thomas Broyer
On Friday, September 6, 2013 11:49:25 AM UTC+2, Thomas Lefort wrote: > > I have two cases of defered binding not working the way I thought it > would. The problem I have is with IE. > > 1) I have the following rule: >class="com.metaaps.webapps.libraries.client.widget.PasswordTextBoxIE8"> >

Help on defered binding with Internet Explorer

2013-09-06 Thread Thomas Lefort
I have two cases of defered binding not working the way I thought it would. The problem I have is with IE. 1) I have the following rule: My assumption is that the class would be replaced ONLY for IE8 browsers, however it is replaced for ALL IE versions. 2) I have the following

Re: Help for ASP.Net Developer to migrate to GWT

2013-09-03 Thread Jack Vitulli
As a ASP.NET developer, we are also migrating our apps to GWT. Knowing someone who has gone through this already, will really help. Any pointers for an ASP.NET developer as I make my transition to GWT? On Thursday, April 15, 2010 7:21:18 PM UTC-4, DrG wrote: > > I am developing a w

Re: exception when deployed on tomcat - Please help

2013-08-21 Thread Jens
How often do you want to ask this question again? An OutOfMemoryError is nothing GWT specific. There are basically three ways to deal with it: 1.) increase Tomcat's heap memory 2.) load less stuff into memory before writing the file. E.g. use Input/OutputStreams along with fixed sized buffers in

exception when deployed on tomcat - Please help

2013-08-21 Thread fedex
I built an application where I write 1 million row of data to the csv file. It works great when I deploy the application on dev mode(jetty server) but when I deployed the same application on tomcat I get the below exception.Please Can anyone suggest what could be the reason? Exception in thre

Re: Need Editor Framework help

2013-08-20 Thread Michael Prentice
Alfredo, thank you. That helps simplify things a lot. I have only used UiBinder a little bit and I haven't done anything with RequestFactory. So those examples combined with Editor Framework have really complicated things and make it hard to learn just the Editor Framework part. Your EditorView

Re: Need Editor Framework help

2013-08-20 Thread Thomas Broyer
On Tuesday, August 20, 2013 12:44:22 AM UTC+2, Michael Prentice wrote: > > I spent most of Friday reading up on Editor Framework and it seemed quite > powerful and useful. But today I'm looking at actually making use of it and > I've had some fairly basic questions which I have not been able to

Re: Need Editor Framework help

2013-08-19 Thread Alfredo Quiroga-Villamil
In my humble opinion, the editor framework is by far one of the cooolest and most important features found in GWT. For some reason it doesn't seem to be something that gets used a lot, at least I haven't seen a lot of people using it. Your questions: 1) It doesn't have to be used with UI Binder.

Need Editor Framework help

2013-08-19 Thread Michael Prentice
I spent most of Friday reading up on Editor Framework and it seemed quite powerful and useful. But today I'm looking at actually making use of it and I've had some fairly basic questions which I have not been able to find answers to in this group or anywhere on Google/gwtproject.org. 1) Does th

Help With Editable CellView Cell

2013-07-31 Thread Odili Charles
I've got a CellView containing several columns one of which is editable. However, am unable to enter text into the said cell because it results in an error in the GWT console. I have pasted the code and the resultant error here http://ur1.ca/eufjo . Please how do I fix it. -- You received this

ERROR: to help protect your security internet explorer blocked this site from downloading

2013-07-31 Thread fedex
In my application I will be downloading a csv file. When the run the GWT application in dev mode and copy the url to IE it shows this message. I was told to add the dev mode url to the trusted sites but in the trusted sites it won't accept http portals. How can I change the dev mode URL to https

help with exception

2013-07-26 Thread Magnus
Hi, what could be the cause of the exception below? All my classes in the shared folder implement IsSerializable. And: from the user's perspective everything works... #-) Thanks Magnus - Jul 26, 2013 2:43:47 PM org.apache.catalina.core.ApplicationContext log SEVERE: Exception while dispat

Re: HELP: HyperLink, Image and Text in one Cell of CellTable

2013-07-17 Thread Joshua Godi
The way I accomplish this is with a AbstractCell built from a SafeHtmlTemplate that sinks the click event. Have a template the feeds into the cell, the code will resemble something like: /** * The HTML templates used to render the cell. */ public interface Templates extends SafeH

Re: HELP: HyperLink, Image and Text in one Cell of CellTable

2013-07-12 Thread Tham
Hi Andrei, I am also in the need of implementing this one. My requirement is to show a popup when user clicks on the link only. How to do that? Thanks, Tham On Sunday, 16 September 2012 22:16:49 UTC+5:30, Andrei wrote: > > Do you need to show the DialogBox when a user clicks the link only, or >

CellList + ListDataProvider - Refresh failing in one special scenario - Please help

2013-06-17 Thread Bharat Parikh
wData(), notificationCellList.setRowCount(), notificationCellList.redraw() after removing item from the list and before calling flush() and refresh() on listdataprovider. None of these have worked. Any help in resolving this issue will be highly appreciated. -- You received this message because yo

Re: Thanks to all your help: german census results online

2013-06-03 Thread tanteanni
chart: eclipse birt (very ugly - generated api, but very flexible dynamic svg output) pdf: iText (newer versions must be licensed) excel: apache poi Am Montag, 3. Juni 2013 14:39:54 UTC+2 schrieb Lexis Nexis: > > Which libraries are being used for chart, pdf and excel? > > On Monday, June 3, 2013

Re: Thanks to all your help: german census results online

2013-06-03 Thread Lexis Nexis
Which libraries are being used for chart, pdf and excel? On Monday, June 3, 2013 3:42:43 AM UTC-4, tanteanni wrote: > > Hi there, > > https://ergebnisse.zensus2011.de/?locale=en shows not only germany's > census results but it is also a gwt in life example. For me it was my first > big public we

Re: Thanks to all your help: german census results online

2013-06-03 Thread tanteanni
Jens i remember you as one of the guys that helped much with all those new patterns. So you have your part on this census results page :-). Am Montag, 3. Juni 2013 10:19:18 UTC+2 schrieb Jens: > > Well done :) -- You received this message because you are subscribed to the Google Groups "Google

Re: Thanks to all your help: german census results online

2013-06-03 Thread Frank Hossfeld
Nice Am Montag, 3. Juni 2013 09:42:43 UTC+2 schrieb tanteanni: > > Hi there, > > https://ergebnisse.zensus2011.de/?locale=en shows not only germany's > census results but it is also a gwt in life example. For me it was my first > big public web project. The best of all choices i did was to take

Re: Thanks to all your help: german census results online

2013-06-03 Thread Islam AbdelMageed
nice work On 3 June 2013 09:42, tanteanni wrote: > Hi there, > > https://ergebnisse.zensus2011.de/?locale=en shows not only germany's > census results but it is also a gwt in life example. For me it was my first > big public web project. The best of all choices i did was to take gwt. It > was a

Re: Thanks to all your help: german census results online

2013-06-03 Thread Jens
Well done :) -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To unsubscribe from this group and stop receiving emails from it, send an email to google-web-toolkit+unsubscr...@googlegroups.com. To post to this group, send email to google-w

Thanks to all your help: german census results online

2013-06-03 Thread tanteanni
Hi there, https://ergebnisse.zensus2011.de/?locale=en shows not only germany's census results but it is also a gwt in life example. For me it was my first big public web project. The best of all choices i did was to take gwt. It was a steep learning curve but you all helped much especially with

Re: Need help with Can't create ICOFile: Can't read bytes: 4 while creating ClientBundle

2013-05-19 Thread Vaimuk
I finally found the problem. In my project I am using a third party library that uses some other third party library for reading ICO files. It was a class in this file that was throwing a NPE. I have no idea why that class was being referred anyway because I am not using ICO files at all. So I

<    1   2   3   4   5   6   7   8   9   10   >