Re: [gwt-contrib] Re: Goodbye IE 8–9 

2021-03-11 Thread Tony BenBrahim
the same corporation are not updating GWT regularly. It is hard to generalize In a multinational company with tens of thousands of employees. Regards Tony On Thu, Mar 11, 2021 at 9:49 AM Jens wrote: > Dropping IE 8-10 shouldn't really hurt. Companies that require it are > probably not upg

Re: [gwt-contrib] Re: Testing GWT 2.9.0 for release

2020-04-15 Thread Tony BenBrahim
Absolutely, I build on Windows during dev, run SDM, etc, run Jenkins in Linux On 4/15/20, Freddy Boucher wrote: > Hello, > > Any chance to include the following patch in 2.9? > https://gwt-review.googlesource.com/c/gwt/+/19800 > It has been sitting in Gerrit for years and it's a shame that

Re: [gwt-contrib] Testing GWT 2.9.0 for release

2020-04-14 Thread Tony BenBrahim
dev on: JVM 8, Windows 10, Chrome, Firefox. IE11 , Edge build on Linux, deploy on Linux, QA w/ above browsers On Tue, Apr 14, 2020 at 1:05 AM Simeon Hearring wrote: > I have JVM 8, OS X, Chrome, Firefox, & Safari. > > On Mon, Apr 13, 2020 at 9:43 PM Colin Alworth wrote: > >> Hi all, >> We have

Re: [gwt-contrib] The elusive J2CL

2018-03-07 Thread Tony BenBrahim
I am perfectly happy with Java/JsInterop in its current state. Sure there are some things that could be improved, but what couldn't. BTW, I have never used the GWT widgets, so my case may be different. I tried TS, Angular, etc..., and have come back to GWT with JsInterop to deal with large

Re: Support for GWT 2.0.3, com.extjs.gxt 2.2.0-gwt2 with IE 11

2018-02-22 Thread Tony BenBrahim
With a few changes, it will also work with Java 8 and GWT 2.8.2 See https://github.com/bedatadriven/gxt for an example. I have several GXT projects on GWT 2.8.2 On Wednesday, August 26, 2015 at 1:35:00 AM UTC-5, Narasimhulu Bysani wrote: > > Hi All, > > Currently my application was developed with

Re: ClassCastException in generics

2017-08-23 Thread Tony BenBrahim
public static native FileReader newFileReader() /*-{ return new *$wnd*.FileReader(); }-*/; On Wed, Aug 23, 2017 at 6:36 AM, Kirill Prazdnikov wrote: > ArrayBuffer arrayBuffer = fileReader2.resultArrayBuffer(); >> >> Logger.log("instanceOfArrayBuffer for file = " + >>

Re: ClassCastException in generics

2017-08-21 Thread Tony BenBrahim
Take the object you get back from the file reader and run it through the JSNI method below and GWT,log the result. .Let's see if it really is an ArrayBuffer.(I would note the FileReader result is sometimes a String and sometimes an ArrayBuffer). private native String getType(Object x)/*-{

Re: Accessing "basic" JS Object in JsInterop callback

2017-08-20 Thread Tony BenBrahim
regarding 1) It would be nice to initialize Objects from json. What would happen if the json text specifies members not in class though? You could always do this, if you just need to pass something to JavaScript and do not need to read it... @JsType(isNative=true, name="JSON",

Re: ClassCastException in generics

2017-08-20 Thread Tony BenBrahim
My, understanding, because I have noticed the same many times in the past few weeks. @JsType *may* (and that is a very weak may) work for a native type as long as you do not use it as you do not use it as a generic type argument. As soon as you do, for example, adding it to List, , cast

Re: [gwt-contrib] Digest for google-web-toolkit-contributors@googlegroups.com - 3 updates in 1 topic

2017-08-03 Thread Tony BenBrahim
rs < >> >> -- >> Vassilis Virvilis >> Goktug Gokdogan <gok...@google.com>: Aug 02 10:01AM -0700 >> >> Unfortunately jsinterop.base doesn't have github repo available yet so you >> can't see the commut. >> >> Change is asArray method is re

Re: [gwt-contrib] NodeList and JsArrayList.asArray

2017-08-02 Thread Tony BenBrahim
In my opinion, there is too much effort put in making Array behave like a normal Java class when it is not. There are already plenty of good options in GWT/Java for collections, arrays, etc… A JavaScript Array is not equivalent to T[], for example this is a perfectly fine JavaScript Array

Re: Vaadin GWT Polymer Elements adds about 5000 new files to the release

2016-09-21 Thread Tony
generator/blob/master/gulpfile.js, you > get rid of the bower taks. Then, you can use a tool like vulcanize which > allows to import only the polymer elements that you need in one file: > https://www.polymer-project.org/1.0/docs/tools/optimize-for-production > > > > Le ma

Vaadin GWT Polymer Elements adds about 5000 new files to the release

2016-09-20 Thread Tony
the limit. Thank you Tony -- You received this message because you are subscribed to the Google Groups "GWT Users" 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,

Re: $wnd.HTMLImports is undefined when using Vaadin GWT Polymer Elements

2016-09-20 Thread Tony
I upgraded to vaadin-gwt-polymer-elements-1.2.3.1-SNAPSHOT-sources.jar and everything seems to be working now. On Friday, September 16, 2016 at 5:51:41 PM UTC-4, Tony wrote: > > I tried to use the Polymer widgets from Vaadin. However, no matter what I > do I keep getting the er

$wnd.HTMLImports is undefined when using Vaadin GWT Polymer Elements

2016-09-16 Thread Tony
causing it? thank you tony Caused by: com.google.gwt.core.client.JavaScriptException: (TypeError) : Cannot read property 'whenReady' of undefined TypeError: Cannot read property 'whenReady' of undefined at lQf_g$ (Polymer.java:364) at QPf_g$ (Polymer.java:277) at TQf_g

Re: Create JavaScript callback in GWT using JSInterop

2016-09-10 Thread Tony
erface Function{ > public JavaScriptObject call(FBResponse event); > > } > > and then you can define your FBResponse either using JsInterop or JSNI: > > @JsType(isNative=true, namespace=GLOBAL, name="Object") > public interface FBResponse{ > public int status;

Re: Create JavaScript callback in GWT using JSInterop

2016-09-10 Thread Tony
, namespace=GLOBAL, name="Object") > public interface FBResponse{ > public int status; > > } > > > > Le samedi 10 septembre 2016 17:01:25 UTC+2, Tony a écrit : >> >> hi >> >> In JavaScript, in order to get the login status using the Facebook SDK, >

Create JavaScript callback in GWT using JSInterop

2016-09-10 Thread Tony
sure I'm missing something very basic but I can't seem to find it in the documentation. Thank you for the help! Tony -- You received this message because you are subscribed to the Google Groups "GWT Users" group. To unsubscribe from this group and stop receiving emails fro

Re: GWT 2.8.0 RC2 is here!

2016-09-08 Thread Tony
ther things that we need to do away with. Thx again. Tony On Thursday, September 8, 2016 at 7:10:05 PM UTC-4, Jens wrote: > > > What I don't understand is *why is this setup working fine with >> gwt-2.8.0-beta1 but it is not working with gwt-2.8.0-rc1 or gwt-2.8.0-rc2. * &g

Re: GWT 2.8.0 RC2 is here!

2016-09-08 Thread Tony
etty-6.1.x which provides Servlet 2.5. What I don't understand is *why is this setup working fine with gwt-2.8.0-beta1 but it is not working with gwt-2.8.0-rc1 or gwt-2.8.0-rc2. * Thanks for the help Tony On Thursday, August 11, 2016 at 9:25:18 PM UTC-4, Daniel Kurka wrote: > > Hi

Re: Reload Place using getWhere()

2014-12-01 Thread Tony B
So how do I do that with events, then? Do you have an example? On Thursday, November 10, 2011 5:52:54 PM UTC-5, Thomas Broyer wrote: Hi Mark, You shouldn't abuse places to tie them to data. If you need to refresh some data, you'd better dispatch an event on your event bus (an event that

Re: Image and ImageElement

2014-10-29 Thread Tony B
case, why not create the Image widget directly? On Oct 28, 2014 8:14 PM, Tony B tbald...@wmsvision.com javascript: wrote: Tried that - got assert error on assert Document.get().getBody().isOrHasChild(element); at start of wrap method ( see my other post here https://groups.google.com

Image and ImageElement

2014-10-28 Thread Tony B
Hello, Let's say that, for whatever reason, I have an ImageElement, not an Image. How do I add that to a Panel? Do I need to somehow convert it from ImageElement ( not a widget ) to Image ( a widget ) so I can add it? If so, how? Tony -- You received this message because you

Image.wrap( ImageElement) does not work - assert error

2014-10-28 Thread Tony B
the ImageElement to the widget Image so that I can add it to a Panel. Am I even doing the right thing? Tony -- 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: Image and ImageElement

2014-10-28 Thread Tony B
Tried that - got assert error on assert Document.get().getBody().isOrHasChild(element); at start of wrap method ( see my other post here https://groups.google.com/forum/?fromgroups#!topic/google-web-toolkit/CACHoELySTI for a post on this topic ). The wrap method not working is part of the

Continuous Delivery with GWT

2014-08-11 Thread Tony BenBrahim
Has anyone successfully implemented Continuous Delivery with GWT. The biggest obstacle I see is GWT RPC, that seems to check that the client version matches the server version, so that when a new version of a backend is deployed, users will get an error message about an incorrect version and

setting value in current field based on button press

2014-06-11 Thread Tony B
/Wymi1efk_9M ), but I think this is more a GWT question, thus posting it here as well. Thanks. Tony -- 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: setting value in current field based on button press

2014-06-11 Thread Tony B
Thanks. Your idea works perfectly. That said, it made me notice two things ( which might indicate bad design decisions - I don't know yet ). These comments are only for future reference, in case someone else comes along asking the same question. They are things to beware of. 1. The blur

FIX: Problem with Firefox 22 and GWT Dev Plugin? Upgrade to Firefox 23

2013-08-12 Thread Tony BenBrahim
Go to Help About, an update from 22 to 23 should automatically start downloading. It fixed the problem for me. -- 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

Re: GWT Upgrade from old version 1.2

2013-03-10 Thread Tony Rah
Wow - GWT 1.2! Since you are trying to resurrect a project from the dark ages of GWT I would just start fresh and avoid the sort of pains you are experiencing. Start by creating a new workspace with GWT 2.5 and create the GWT sample app. Get that running and understand how it works. Then

Re: Disable Chrome focus outline in general?

2013-02-20 Thread Tony Rah
In your apps css file just add the below 2 lines. It will scour the outline off of everything. :focus {outline:none;} ::-moz-focus-inner {border:0;} On Tuesday, February 19, 2013 5:28:17 AM UTC-7, membersound wrote: Hi, how can I disable the yellow/orange Chrome focus outline border in

Re: Error processing @WithTokenizers, cannot find type

2012-12-20 Thread Tony B
from this issue: http://code.google.com/p/google-web-toolkit/issues/detail?id=5658 On Tue 18 Dec 2012 07:01:42 PM ART, Tony B wrote: Sadly, not yet. If I found out something, I will update this thread. On Tuesday, December 18, 2012 9:51:26 AM UTC-5, sean.l...@perceptivesoftware.com

Re: Error processing @WithTokenizers, cannot find type

2012-12-20 Thread Tony B
, and started debugger. It worked 4. Changed GWT SDK back to 2.4, and started debugger. It worked. I don't know if one or all of the above acts fix it, or if some code change I forgot fixed it. Anyway, thanks. Tony On Thursday, December 20, 2012 12:25:30 PM UTC-5, Tony B wrote: Right now I am

Re: Error processing @WithTokenizers, cannot find type

2012-12-18 Thread Tony B
Sadly, not yet. If I found out something, I will update this thread. On Tuesday, December 18, 2012 9:51:26 AM UTC-5, sean.l...@perceptivesoftware.com wrote: Hi Tony, Having same problem - did you find a resolution to this? Thanks Sean On Monday, December 17, 2012 5:00:25 PM UTC-5

Error processing @WithTokenizers, cannot find type

2012-12-17 Thread Tony B
getPlace(String token) { return new ProductSummaryDetailPlace(token); } @Override public String getToken(ProductSummaryDetailPlace place) { return place.getId(); } } } Thanks. Tony -- You received this message because you

Re: DataGrid vs CellTable

2012-12-04 Thread Tony B
Yep, that makes sense as well. I finally got it working by explicitly defining the height ( 100px, for instance ). I guess I need to use something like ResizeLayoutPanel to get around such issues. we shall see. Thanks again. I do believe I am getting it. Tony On Tuesday, December 4, 2012

Re: DataGrid vs CellTable

2012-12-03 Thread Tony B
. Thanks. Tony On Monday, December 3, 2012 2:59:49 AM UTC-5, Thomas Broyer wrote: On Monday, December 3, 2012 12:05:49 AM UTC+1, Tony B wrote: Ooops, missed your second question, about the parent widget. Here is the path: FlowPanel - WidgetList - DataGrid Your comments above about

Re: DataGrid vs CellTable

2012-12-03 Thread Tony B
because ScrollPanel implements ProvidesResize. Tony On Monday, December 3, 2012 4:09:26 PM UTC-5, Chris Lercher wrote: The 100% won't help you, because the FlowPanel (which contains your DataGrid as I understand it) has a height of 0 unless you fill it with widgets that mount their own height

Re: DataGrid vs CellTable

2012-12-02 Thread Tony B
DataGridFacilityModel(); As stated above, the ONLY difference is the creation statement, which I highlighted in yellow above. Thanks. Tony On Saturday, December 31, 2011 5:38:52 AM UTC-5, Thomas Broyer wrote: DataGrid and CellTable both display data in similar ways; but DataGrid has fixed column headers

Re: DataGrid vs CellTable

2012-12-02 Thread Tony B
Nothing fills in, no values go into the table, it is empty. Thus does not work. The only difference is the creation of the object. On Sunday, December 2, 2012 4:26:24 PM UTC-5, Thomas Broyer wrote: On Sunday, December 2, 2012 1:29:22 AM UTC+1, Tony B wrote: So does this means they cannot

Re: DataGrid vs CellTable

2012-12-02 Thread Tony B
wrote: On Sunday, December 2, 2012 1:29:22 AM UTC+1, Tony B wrote: So does this means they cannot be used interchangeably? For instance, I have a table. When I define it as a CellTable, it works fine. But when I simple change it to a DataGrid ( no other changes ), it does not work

Re: Moving Animation

2012-10-24 Thread Tony Rah
Here are some tips for such a thing in GWTLand. These are off the top of my head so there might be some missing pieces. 1. Use the GWT Animation class. Read its java doc. It will tell you everything you need to know about how it works. 2. Override the onStart method and hold onto the widget to

Re: Could not load GWT DMP Plugin

2012-10-21 Thread Tony Rah
There seems to be yet another problem with the latest Chrome plugin where it won't load in dev mode when the codesvr argument is pointing to your local ip address. Try switching the ip adress portion of the argument to either 127.0.0.1 or localhost in your browser. You might also have to add

Re: DevMode not working in Chrome after update

2012-09-27 Thread Tony Rah
I +1 for Brandon's fix. All other approaches were met with failure for me and although Firefox is much faster and more stable, I just can't stomach developing on that browser anymore except during cross-browser test waves prior to checkin. I imagine the GWT team will get the plugin fixed in the

Re: GWT Dev Plugin broke (Chrome/mac osx)

2012-09-27 Thread Tony Rah
Follow Thad's link to the other discussion and use Brandon's fix from there (installing last version of Chrome side-by-side with the latest). All other approaches were met with failure for me and although Firefox is much faster and more stable, I just can't stomach developing on that browser

Re: Could somebody please point me to the GWT developer plugin for Chrome on the Chrome web store.

2012-09-05 Thread Tony Kayrouz
Open chrome browser : Tools - Extension and drag drop the plugin http://gwt.google.com/missing-plugin/MissingPlugin.html On Monday, August 27, 2012 6:16:05 AM UTC+3, Anjan Bakshi wrote: I can't find it on the web store, and I can't install it any other way. -- You received this message

Re: facebook authentication

2012-08-10 Thread Tony Kayrouz
I use GwtFB it's a wrapper for facebook graph javascript API it should handle the user authentication for you . https://github.com/olams/GwtFB Tony Kayrouz. On Tuesday, August 7, 2012 5:37:44 PM UTC+3, aamonten wrote: Hi, developing an app and would like to use facebook api to do user

Re: Application size due to Internationalization

2012-07-18 Thread Tony Rah
I use a special DevModule.gwt.xml module during development that only compiles the permutations I am interested in. This way I can control the user agent, locale, and other GWT based switches without compromising the production builds. Below is a rough overview of this approach: Create a new

Re: Debugging is terribly slow

2012-06-19 Thread Tony Rah
Your problem was answered several times. Chrome is slow due to sandboxing. FF is your best bet for now. I would just not update FF since the plugin breaks evertime. If you are on a mac then OmniWeb is a good browser. -- You received this message because you are subscribed to the Google Groups

Re: Supported Browser Versions

2012-03-08 Thread Tony Edgin
. This decreases market share and threatens the longevity of the product. Cheers, Tony On Wed, Mar 7, 2012 at 14:31, David Self dws...@gmail.com wrote: The only place I've seen supported browsers listed is in the FAQ (http://code.google.com/webtoolkit/doc/latest/FAQ_GettingStarted.html

Re: Additional plugins are required to display all the media on this page - Firefox 10.0.2

2012-02-29 Thread Tony Edgin
is mainly looking for windows media player plugin But this plug in install message not displayed in IE browser On Tuesday, February 28, 2012 9:42:26 PM UTC+5:30, Tony Edgin wrote: Maybe I misunderstood you earlier.  What plugin do Firefox and Chrome say is missing? On Mon, Feb 27, 2012

Re: Additional plugins are required to display all the media on this page - Firefox 10.0.2

2012-02-28 Thread Tony Edgin
the media on this page) error message in top of the page, the same message shown for chrome browser also but not happened for IE browser. How could we solve that an issue using gwt coding level? On Friday, February 24, 2012 9:46:04 PM UTC+5:30, Tony Edgin wrote: The plugin is only

Re: GWT/AppEngine application for distributed role playing - dorp

2012-02-24 Thread Tony Edgin
. -- Tony Edgin Software Architecture and Design Leader LBT Observatory 933 N. Cherry Ave., Tucson AZ 85721-0065 p:520-626-8951, c:520-419-8821, f:520-626-9333 -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email

Re: Additional plugins are required to display all the media on this page - Firefox 10.0.2

2012-02-24 Thread Tony Edgin
The plugin is only for development mode. The deployed app does not use it, so your users won't ever be asked to install it. Cheers. Tony On Fri, Feb 24, 2012 at 03:40, Jee sundarra...@gmail.com wrote: Thanks Broyer. Do we have any possible way to deal this an issue with gwt program level

Re: GWT StackLayoutPanel: how to change header background color

2012-02-24 Thread Tony Edgin
It's probably being overridden. A quick hack would be to make the background-color important. Otherwise, you'll need to make user your CSS is loaded after GWT's CSS. Cheers, Tony On Fri, Feb 24, 2012 at 00:11, doruk dorukkan...@gmail.com wrote: Helo; StackLayoutPanel default calor is light

Re: Private versus Protected definitions

2012-02-17 Thread Tony Edgin
+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en. -- Tony Edgin Software Architecture and Design Leader LBT Observatory 933 N. Cherry Ave., Tucson AZ 85721-0065 p:520-626-8951, c:520-419-8821, f:520-626-9333 -- You

SmartGWT 3.0 support

2011-12-22 Thread Tony
Does anyone know if and when GWT Designer will support SmartGWT 3.0 in the future. After installing SmartGWT 3.0 the designer stopped working an says: WindowBuilder supports only SmartGWT versions 2.4, 2.5. But 3.0 found Thanks for your thoughts. -- You received this message because you are

Re: GWT and Generated file download

2011-12-09 Thread Tony Edgin
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. -- Tony Edgin Software Architecture and Design Leader LBT Observatory 933 N. Cherry Ave., Tucson AZ 85721-0065 p:520

Re: GWT TextButton class - How to set an icon?

2011-11-12 Thread Tony Jewell
You've probably solved this yourself, but here's what I did: IResources.java: ==8=== package com.cregganna.web.gwt.ui.resources; import com.google.gwt.resources.client.ClientBundle; import com.google.gwt.resources.client.ImageResource; public interface IResources extends

Re: auto-fit of height

2011-11-04 Thread Tony Edgin
. 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. -- Tony Edgin Software Architecture and Design Leader LBT Observatory 933 N. Cherry Ave., Tucson

Re: GWT Visualisations API - ImageLineGraph display options

2011-10-17 Thread Tony Kennah
Any clues? -- 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 google-web-toolkit+unsubscr...@googlegroups.com. For more

GWT Visualisations API - ImageLineGraph display options

2011-10-06 Thread Tony Kennah
find any mention of this chm parameter which I thought I'd have set. Can anyone see where I've gone wrong or suggest a way of setting such a parameter? Many Thanks in advance Tony -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post

CellTable CSS (still!)

2011-09-12 Thread Tony Kennah
Hi I've managed to make a CellTable use my own CSS rules by extending CellTable.Resources with my own resources which overrides cellTableStyle, simple. I provide a link to my own CSS file within the extended Resources I can now construct a CellTable using this resource and it will render as

Re: CellTables and css

2011-09-12 Thread Tony Kennah
Thanks that's brilliant it working :) - Stage 1 complete Again thanks! PS (my nearly the same but somehow different CellTable issue...(more specific)) http://groups.google.com/group/google-web-toolkit/browse_thread/thread/7997211b49d8210f# -- You received this message because you are

setRowStyles method of the CellTable Class

2011-09-12 Thread Tony Kennah
Has anyone actually used this method successfully and can share their code? I'm finding it absolutely impossible to get it working and there is zero to no documentation about this. Tony -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group

Re: CellTable CSS (still!)

2011-09-12 Thread Tony Kennah
I mis-spelled background in the CSS rule! BACKGOUND - Dyslexic sorry! Thanks for all the help! -- 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

CellTables and css

2011-09-09 Thread Tony Kennah
Hi Could someone help me in setting the background of a CellTable row please, I've been trying all night to do it and keep failing and it's driving me mad. I tried using a call to setRowStyles() but that doesn't seem to be working and I've read that you can't change the style for a CellTable

Re: GWT Developer Plugin for Firefox 6

2011-08-25 Thread Tony Rah
GWT Team, Perhaps it would help if you posted a white paper on how to build the pluggin and then the community could keep up with the new release schedule until the official ones are available. On Aug 25, 7:07 am, JB jul.bram...@gmail.com wrote: Just confirming I applied the patch linked by

Re: How do I render celltable data in chunks?

2011-07-10 Thread Tony Rah
Attach a paging control to your cell widget and page say 10 or 20 rows at a time. You can also adapt paging to the scroll bar so the user doesnt have to press buttons. When the scroll gets to the end it will render the next page. There are samples in the gwt showcase to give you an idea how it all

MultiWordSuggestOracle default response ignores request limit

2011-06-23 Thread Tony
. Is this inconsistency intentional, or is this a bug? Cheers, Tony -- 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 google-web-toolkit

CellTree reload after empty root node

2011-06-03 Thread Tony
a time that is too old. When this happens, it correctly displays 'no data'. When the user enters a new time that is not too old, the display still shows 'no data'. What am I missing? Cheers, Tony -- You received this message because you are subscribed to the Google Groups Google Web Toolkit

Re: GWT community in Sydney?

2011-05-19 Thread Tony
a hint to start looking from somewhere. Best Regards, Tony Kayrouz On May 19, 7:52 am, Andrew J ajes...@gmail.com wrote: Firstly, good work on raising the call for a GWT community! Quite agree it's sorely needed. Trying to emulate what the rails community have achieved may be a bit ambitious

seem to be getting a 15 row limit?

2011-04-02 Thread Tony Kennah
configure this row limit. I've looked around my code and I can see places where I have instantiated a list and this will default to 10 elements but 15 has me baffled. I can provide code but thought this would jog a memory without the need for boring old code. Many thanks Tony -- You received

Re: Does GWT has any support for data binding?

2011-03-01 Thread Tony
I think gwt-ent may do the work for reflection , data binding . http://code.google.com/p/gwt-ent/ On Feb 28, 10:09 am, Sai dhana@gmail.com wrote: Hi All, I have a requirement to build GWT based User Interface and looking for a very good data binding feature, meaning binding a java

Re: chrome - prompting me to install gwt plugin but already installed

2011-01-28 Thread Tony
gwt bug report http://code.google.com/p/google-web-toolkit/issues/detail?id=5941 On Jan 26, 3:54 pm, cri chuck.irvine...@gmail.com wrote: Suddenly today, after months of running gwt in development mode in conjunction with chrome, I continually get prompted to load the gwt dev plugin for

Re: Property 'gwt.logging' not found

2010-11-12 Thread Tony
I ran into this documentation bug as well. set-property name='gwt.logging.enabled' value='TRUE' / is the correct syntax currently. On Nov 10, 8:55 am, Prashant Hegde prashant.he...@gmail.com wrote: Try set-property name='gwt.logging.enabled' value='TRUE' / *and not* set-property

How to user eclipse to Internationalize our project?

2010-08-06 Thread Tony Qiu
Hi, every body. In a regular java project, we can easily Internationalize our project using elipse's tool: sources - externalize strings. However, in our GWT project, the eclipse's tool cannot satisfy our requirement because of the eclipse's inner template. I am wondering that if we can change the

when will 2.1 be released?

2010-06-14 Thread Tony Smith
hi, any idea when 2.1 is expected to be released for production? thx, tony -- 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

DecoratedPopupPanel

2009-12-03 Thread Tony
how can i make a DecoratedPopupPanel move like a DialogBox? -- 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

Re: GWT AsyncCallback failing

2009-11-30 Thread tony,benbrahim
Does your server side methid return 200 status code? -- 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

Oooops! - GWT 1.7.1 + JDK 6.17 + VistaFei 1.0.0.2b3 On WINXP Pro SP3

2009-11-28 Thread Tony
HI I hope someone may be able to advise! Completely new to GWT Java but thought it about time I investigated GWT. Have installed tools (as listed in subject) to enable drag drop design in attempt to get started. When trying to run, in hosted mode, simple 'Hello World' app I get following error,

Re: update to Eclipse 3.5 and GWT 1.7 - problem

2009-08-08 Thread Tony Rah
Lumo, My team uses instantiations and that 'Run as...' is part of that plugin. Isaac is correct. X On Aug 7, 9:20 am, lumo lumo2...@gmail.com wrote: eh?! i'm using it now for more than half a year and never saw that Run As! GWT != GWT :) shame on me - sorry for the hassle! 2009/8/7 Isaac

Re: Future of GWT

2009-08-07 Thread Tony
Additionally, GWT is open-source, so if Google stopped supporting it the community could continue to develop the code. On Aug 7, 11:13 am, Frank Stallone toadwarr...@gmail.com wrote: I don't think that is a real concern given the direction Google's OS is going with apps seemingly being RIAs.

Modifying RequestBuilder

2009-08-06 Thread Tony
I'm new to Java, so this is probably a really newbie question, but anyway: I'm trying to use the flXHR library in one of my GWT projects (it's a Flash/Javascript solution for cross-domain XMLHttpRequests). The library basically provides a version of XMLHttpRequest that is able to make

Re: CSRF protection for RPC calls - Generate cookie on the client - is it safe?

2009-08-06 Thread Tony
This would provide protection against a typical CSRF attack - since the attacker cannot read/write to the user's cookies for your domain, he would be unable to supply two arbitrary matching strings nor match the string in an existing cookie. However, if combined with an XSS attack (where

Re: Expire an idle session

2009-06-02 Thread Tony Strauss
five minutes of inactivity. With this technique, it's actually possible to intercept requests made after a time out in the onFailure() handler and to take some kind of action (i.e., redirect to a login screen). Tony -- Tony Strauss Designing Patterns, LLC http://www.designingpatterns.com http

Re: Applet is not working in GWT

2009-05-08 Thread Tony Strauss
an external web browser with hosted mode. The catch with this is that this has not yet been released; you'll need to use the GWT trunk. Tony -- Tony Strauss Designing Patterns, LLC http://www.designingpatterns.com http://blogs.designingpatterns.com On May 8, 8:13 am, Bhavik bhavik...@gmail.com wrote: Hi

Re: One more time Type 'java.lang.ClassT' was not serializable and has no concrete serializable subtypes

2009-05-08 Thread Tony Strauss
to what actually will be used. Tony -- Tony Strauss Designing Patterns, LLC http://www.designingpatterns.com http://blogs.designingpatterns.com On May 8, 4:41 am, kleinerroemer roman.schoenbich...@gmail.com wrote: Hey guys! I ran into the following problem: my RemoteService class has

Re: I have a problem withn the refresh file

2009-05-07 Thread Tony Strauss
:\Program Files\Java\jre1.6.0 ^^^ This error might occur if you only had a JRE installed, not a JDK. Does bin\javac.exe exist? Tony -- Tony Strauss Designing Patterns, LLC http://www.designingpatterns.com http://blogs.designingpatterns.com On May 6, 2:16 pm, arnaud arnaud.ago...@atosorigin.com wrote

Re: Converting string to timestamp throws exception in GWT web mode

2009-04-24 Thread Tony Strauss
dateTime = dateTimeFormat.parse(timestampStr); DateTimeFormat works in both hosted and web mode. According to: http://code.google.com/webtoolkit/doc/1.6/RefJreEmulation.html java.sql.Timestamp.valueOf() is emulated, so perhaps you should file a bug report about it. Tony -- Tony Strauss Designing

Re: How make few pages with GWT ?

2009-04-21 Thread Tony Strauss
a sample application. Tony -- Tony Strauss Designing Patterns, LLC http://www.designingpatterns.com http://blogs.designingpatterns.com --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post

Re: embedded flash not displaying is IE7 on secured url but works fine when viewed with unsecured url

2009-04-21 Thread Tony Strauss
). Tony -- Tony Strauss Designing Patterns, LLC http://www.designingpatterns.com http://blogs.designingpatterns.com On Mar 12, 2:36 am, Tony Strauss tony.stra...@designingpatterns.com wrote: This just is a wild shot in the dark (I have very limited experience with Flash) but could

Re: creating a file

2009-04-20 Thread Tony Strauss
Perhaps be a bit more specific about exactly what you're doing. Are you trying to create this file in response to a request? Are you instead trying to create this file before your web server starts? How often will this file change? Tony -- Tony Strauss Designing Patterns, LLC http

Re: creating a file

2009-04-20 Thread Tony Strauss
a Java web application, there are a number of ways to return the contents of a file; this link has a good list: http://istvandevai.com/techlife/entry/1001_ways_to_serve_static Tony -- Tony Strauss Designing Patterns, LLC http://www.designingpatterns.com http://blogs.designingpatterns.com On Apr 20, 2

Re: Does gmail use GWT?

2009-04-17 Thread Tony Strauss
pushing down a new message, in order to send down several new messages at once...). Polling would be acceptable for GMail from a latency point of view because most people probably do not need to see a message at the very instant it is sent. Tony -- Tony Strauss Designing Patterns, LLC http

Re: Does gmail use GWT?

2009-04-17 Thread Tony Strauss
of requests the same, leaving aside the extra requests to support Google Talk). Tony -- Tony Strauss Designing Patterns, LLC http://www.designingpatterns.com http://blogs.designingpatterns.com On Apr 17, 3:03 am, Tony Strauss tony.stra...@designingpatterns.com wrote: I'm going to guess thatGMailpolls

Re: Does gmail use GWT?

2009-04-17 Thread Tony Strauss
On Apr 17, 8:51 am, Arthur Kalmenson arthur.k...@gmail.com wrote: Nice analysis Tony! This is just speculation, but perhaps before Google Talk, GMail polled for new messages every 30 seconds.  When it became necessary to support Google Talk, Google switched to server push (for both

Re: does com.google.gwt.dev.Compiler need to run prior to hosted mode?

2009-04-15 Thread Tony Strauss
changes in the client's source files (we never need to re-run GWTCompiler). Of course, for changes to the server code, jetty needs to reload the war (although not for css changes, which also saves time). Tony -- Tony Strauss Designing Patterns, LLC http://www.designingpatterns.com http

Re: how to set src attribute of an iframe?

2009-04-12 Thread Tony Strauss
Depending on your needs, gwt's Frame widget (which is an iframe) provides such programatic access for free (you even can wrap it around an already existing iframe element): http://google-web-toolkit.googlecode.com/svn/javadoc/1.5/com/google/gwt/user/client/ui/Frame.html Tony -- Tony Strauss

Re: GWT 1.6 with Maven and build system questions/survey...

2009-04-09 Thread Tony Strauss
of Ant XML, which is over 10% of the code base). Tony -- Tony Strauss Designing Patterns, LLC http://www.designingpatterns.com http://blogs.designingpatterns.com On Apr 9, 11:03 am, Benju b...@fastcastmedia.com wrote: I am curious if anybody using Maven+GWT has tried moving to GWT 1.6 yet.  I

  1   2   >