Re: Trying to optimize a widget that is used a LOT of times...

2012-11-30 Thread regnoult axel
Option D works perfectly ! Merci Thomas. -- 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.

Re: GWT Hosted Mode With Sub Projects

2012-11-30 Thread Callist
How would I do this in eclipse? On Wednesday, 28 November 2012 17:17:12 UTC, Jens wrote: > > Your sub project contains GWT modules that you inherit in your main app so > the GWT compiler can actually see the source of your sub project? > > Is your classpath for hosted mode correct? It should cont

Re: Trying to optimize a widget that is used a LOT of times...

2012-11-30 Thread Thomas Broyer
I'd rather use option C or D: C: use Widget rather than Composite D: use a HTML widget (possibly HTMLPanel) as root You don't need to use a FocusPanel to listener to mouse events, addDomHandler is public. On Saturday, December 1, 2012 1:22:19 AM UTC+1, regnoult axel wrote: > > Hello, > > I am s

Trying to optimize a widget that is used a LOT of times...

2012-11-30 Thread regnoult axel
Hello, I am sorry for the unprecise subject, but I would like to know what should be "the smallest memory consuming" OR "the fastest loading" solution for my widget that I will heavily use (displaying it a hundred times so I think that the little differences should be considered). The 2 po

Re: Debug GWT in JBOSS

2012-11-30 Thread Thomas Broyer
On Friday, November 30, 2012 11:26:19 PM UTC+1, James wrote: > > What are options to debug GWT in JBOSS? Should I use Jboss tool plugin for > Eclipse? I just added a GWT module into Strut application running in Jboss. > Should I run a separate a GWT code server or run a GWT code server inside >

Debug GWT in JBOSS

2012-11-30 Thread James
What are options to debug GWT in JBOSS? Should I use Jboss tool plugin for Eclipse? I just added a GWT module into Strut application running in Jboss. Should I run a separate a GWT code server or run a GWT code server inside Jboss process? James -- You received this message because you are

Re: http://gwtgallery.appspot.com/

2012-11-30 Thread salk31
No news on this? Seems to be broken at the moment. "next" button gives 500 and trying to submit an entry gives 500. Cheers Sam On Wednesday, July 25, 2012 1:46:24 PM UTC+1, Finbox wrote: > Hi All, > > we would like to add the web app we made using gwt, in the gwt app list > but we noticed

GWT code for ,same user login to the webpage again after loggedout from the page without refreshing the webpage?

2012-11-30 Thread bala nagaraju
Hi All ! I have developed on website,in my website if one existed user is logged in to the webpage he can operate everything of that page,after he logged out from the page if he want to loggin again without refreshing the webpage it show NullPointeException,can you guys say the code for without

Re: GWT 2.5 RC1 issue -- com.google.gwt.dev.jjs.InternalCompilerException: Unexpected error during visit.

2012-11-30 Thread Thomas Broyer
There was a similar question today on StackOverflow: http://stackoverflow.com/q/13641849/116472 The problem was a method with the same name as the class, apparently GWT confused it with a constructor. On Friday, November 30, 2012 7:20:14 PM UTC+1, Eugene Ivlev wrote: > > I have the same problem

Re: GWT 2.5 RC1 issue -- com.google.gwt.dev.jjs.InternalCompilerException: Unexpected error during visit.

2012-11-30 Thread Eugene Ivlev
I have the same problem after switching to gwt 2.5.0 from 2.4.0. Do you have any solution? пятница, 5 октября 2012 г., 17:30:55 UTC+3 пользователь bkc написал: > > Bump -- the problem still happens in GWT 2.5 RC2. > > On Saturday, July 7, 2012 8:27:53 AM UTC-7, bkc wrote: >> >> Here is the releva

Re: Looks like a GWT compiler and/or GIN error.

2012-11-30 Thread seas
Thanks Thomas. That's exactly what I needed. Also, thanks for the constructive criticism. I wasn't aware the factories are not normally used for value objects, and it did seem to be muddying the waters a bit. On Friday, November 30, 2012 3:20:24 AM UTC-8, Thomas Broyer wrote: > > > > On Frida

Re: Strange RPC regression in GWT 2.5

2012-11-30 Thread Jens
Also see: https://groups.google.com/forum/#!topic/google-web-toolkit/gh7NbjaSb-k/discussion -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To view this discussion on the web visit https://groups.google.com/d/msg/google-web-toolkit/-/3k

Re: Strange RPC regression in GWT 2.5

2012-11-30 Thread Jens
You should warn your customers then using iOS6 can result in unpredictable app behavior. Its not just the POST caching issue in iOS 6. The JS engine on iOS 6 seems to have some serious bugs. In this group someone posted an iOS 6 issue where HashMap.put stops working for him (maybe related to you

Re: prefix on obfuscated function names

2012-11-30 Thread Joseph Lust
What linker are you using? With the xsiframe linker the GWT code is loaded inside of its own frame and as such should not be susceptible to such namespace pollution from other libs. See the recent post that addressed this same issue as it is common: https://groups.google.com/forum/?fromgroups=#!

Re: upload file on host from diiferent pages and get back response to the same page

2012-11-30 Thread Joseph Lust
You're looking to achieve two things here: - Do a file upload - Return an arbitrary object from an RPC In that case, dig around on the forums as this has been asked and answered before: https://groups.google.com/forum/?fromgroups=#!searchin/google-web-toolkit/upload$20rpc/google-web-toolki

Re: Strange RPC regression in GWT 2.5

2012-11-30 Thread Andy
Good suggestion, but we've addressed that issue (and it was also an issue with GWT 2.4 so backporting wouldn't have resolved it). iOS 6.0.1 also stopped caching posts. Thanks for the input! On Friday, November 30, 2012 10:43:30 AM UTC-5, Joseph Lust wrote: > > A shot in the dark here, but have y

Re: gwt-dnd - Vertical (VerticalPanelDropController) and Tab (TabSelectingDropController) use

2012-11-30 Thread Joseph Lust
David, You might want to make the default on those pages for the *user-select* css property to *none* so that people don't highlight random bits of the page while tying to drag and drop around. Nice work. Sincerely, Joseph -- You received this message because you are subscribed to the Google

Re: Anyone used GWT with Require.js?

2012-11-30 Thread Joseph Lust
An update here. The external team writing in RequireJS was not so amicable about sending RequireJS packing into the night. So, we did 2 things: - Had them use the feature in RequireJS to compile to a single file with their Optimizer . - Had

Re: Strange RPC regression in GWT 2.5

2012-11-30 Thread Joseph Lust
A shot in the dark here, but have you seen the iOS6 Post Caching issue? If your app was caching an earlier blank response, that could be the issue. Sincerely, Joseph --

Re: RootPanel --> OutClickEvent -- > how to detect click event out of the HTML Page it self ?

2012-11-30 Thread Joseph Lust
To detect when the user has left the window, you can also look as the new page visibility API in HTML5. See the explication/example here: http://davidwalsh.name/page-visibility Sincerely, Joseph -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit"

Re: DataGrid with several tbody elements possible

2012-11-30 Thread Michael Vogt
So, maybe my question should have been, "How to provide my own HtmlBuilderFactory". > > That wouldn't help. HtmlBuilderFactory is only a type-safe way of building > a SafeHtml. > > Have a look at AbstractCellTable and how it depends on having a single > tbody. If you really need/want several t

Strange RPC regression in GWT 2.5

2012-11-30 Thread Andy
I'm not logging an issue yet because I don't have nearly enough information to attempt to document the issue. Instead, I wanted to share what I'm seeing and to see if anyone else has had a similar experience. For some background, we have a mature GWT application and have been happily using GWT

Re: Firefox 17 dev plugin

2012-11-30 Thread Thad
On Friday, November 30, 2012 9:44:18 AM UTC-5, Thomas Broyer wrote: > > > On Friday, November 30, 2012 3:28:57 PM UTC+1, Thad wrote: >> >> I downloaded the XPI: In Chrome, from >> http://code.google.com/p/google-web-toolkit/source/browse/trunk/plugins/xpcom/prebuilt, >> >> right click on gwt-d

Re: Firefox 17 dev plugin

2012-11-30 Thread Thomas Broyer
On Friday, November 30, 2012 3:28:57 PM UTC+1, Thad wrote: > > I downloaded the XPI: In Chrome, from > http://code.google.com/p/google-web-toolkit/source/browse/trunk/plugins/xpcom/prebuilt, > > right click on gwt-dev-plugin.xpi, "Save link as..." to my desktop. > This is **not** the XPI, it

Re: prefix on obfuscated function names

2012-11-30 Thread Gasotelo
There is a simple way: rewrite the name obfuscator class of GWT compiler and recompile it. I just do it and it works. On Thursday, November 29, 2012 3:41:41 PM UTC-5, Gasotelo wrote: > > We have a project on GWT and our production version have been compiled on > obfuscated mode for security reas

Re: DIV with negative top floating above TabLayoutPanel

2012-11-30 Thread johnrellis
Thanks for the heads up! On Friday, 30 November 2012 13:54:45 UTC, Thomas Broyer wrote: > > > > On Friday, November 30, 2012 2:36:38 PM UTC+1, johnrellis wrote: >> >> If anybody comes across this and needs a fix, I execute this in the >> onload of the widget containing the tab layout panel >> >>

Re: Firefox 17 dev plugin

2012-11-30 Thread Thad
On Friday, November 30, 2012 8:51:59 AM UTC-5, Thomas Broyer wrote: > > > > On Friday, November 30, 2012 1:56:26 PM UTC+1, Thad wrote: >> >> How about Windows 7? > > > Some people here [1] say it's OK on Win7 (32 bits) > Sorry, I should have specified that this is Win7 64-bit > [1] https://code

Re: how to get push notification in the gwt

2012-11-30 Thread Oliver Raupach
Hi, have a look at: https://github.com/raupach/gwt-spring-jpa-jta-jms-comet-hibernate This is a demo-app, which shows how to handle push-notifications. --   Oliver Raupach Am Dienstag, dem 27.11.2012 um 11:55 schrieb ప్రభు కుమార్: Sir,           how to get push notification in the gwt.      

Re: DIV with negative top floating above TabLayoutPanel

2012-11-30 Thread Thomas Broyer
On Friday, November 30, 2012 2:36:38 PM UTC+1, johnrellis wrote: > > If anybody comes across this and needs a fix, I execute this in the onload > of the widget containing the tab layout panel > > > tabPanel.getElement().getFirstChildElement().getStyle().setProperty("top","-1ex"); > > Not pre

Re: Firefox 17 dev plugin

2012-11-30 Thread Thomas Broyer
On Friday, November 30, 2012 1:56:26 PM UTC+1, Thad wrote: > > How about Windows 7? Some people here [1] say it's OK on Win7 (32 bits) [1] https://code.google.com/p/google-web-toolkit/issues/detail?id=7801 > When I try to install this, I get "This add-on could not be installed > because it

Re: DIV with negative top floating above TabLayoutPanel

2012-11-30 Thread johnrellis
If anybody comes across this and needs a fix, I execute this in the onload of the widget containing the tab layout panel tabPanel.getElement().getFirstChildElement().getStyle().setProperty("top","-1ex"); Not pretty, but necessary it seems. On Friday, 30 November 2012 12:57:57 UTC, johnrelli

Re: DIV with negative top floating above TabLayoutPanel

2012-11-30 Thread johnrellis
Really does seem to me that this is a bug?? Does anyone agree/disagree? On Wednesday, 28 November 2012 09:28:39 UTC, johnrellis wrote: > > Hi Jens, > > Thanks for the explanation. > > The TabLayoutPanel is in a dialog that is draggable around the screen so > depending on where you drag it, it pu

Re: Firefox 17 dev plugin

2012-11-30 Thread Thad
How about Windows 7? When I try to install this, I get "This add-on could not be installed because it appears to be corrupt." wbabachan's build also fails, but it tells me the plugin only works with Firefox 3 thru 15. On Friday, November 30, 2012 2:47:50 AM UTC-5, Dimitrijević Ivan wrote: > > >

Re: GWT In Eclipse Debug Mode All Of A Sudden is Super Slow

2012-11-30 Thread hummh
I had the same problem. There was a breakpoint at Command.execute() that resulted in long waiting times (minutes) running my web application in dev mode. Removing all the breakpoints helped. Thanks for the hint! -- You received this message because you are subscribed to the Google Groups "Goog

Re: Future of GWT survey

2012-11-30 Thread Joonas Lehtinen
It has takes a bit of time to compile the report. Sorry. The survey results will be published on Dec 4th on vaadin.com/blog -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To view this discussion on the web visit https://groups.google.co

Problem with "gwt-MenuBarPopup"

2012-11-30 Thread Dominic Warzok
Hi Guys, i have a little Problem with my MenuBar. It is possible to set the z-index value from gwt-MenuBarPopup ? At java doc I didn't found this css-Property but in my Website it exist. Thanks Domi -- You received this message because you are subscribed to the Google Groups "Google Web

Re: Pass element & eventHandler to JSNI function

2012-11-30 Thread Thomas Broyer
On Friday, November 30, 2012 12:20:58 AM UTC+1, Webber wrote: > > Hi, > > I'm developing a JS library using GWT. I have a JSNI function and I'm able > to pass in premitive types to it from js. I'm looking for a way to pass in > an htmlElement and an EventHandler. Is this something that' supporte

Re: Height of DataGrid

2012-11-30 Thread Thomas Broyer
On Friday, November 30, 2012 7:37:05 AM UTC+1, tong123123 wrote: > > I placed a datagrid inside a column of flextable and I found that I must > expliciitly set the height, and cannot use % like 100%, but % is allowed to > use in the width, why this happens? due to Datagrid implements > Require

Re: Looks like a GWT compiler and/or GIN error.

2012-11-30 Thread Thomas Broyer
On Friday, November 30, 2012 9:14:03 AM UTC+1, seas wrote: > > I've got a class, TestPlace, that derives from Place that takes two > parameters, both Strings. > > I use GIN so I have a PlaceFactory to create instances of my places. > Places are value-objects, so it's not clear to me why you nee

Re: Can anyone help me with the gwt requestfactory?

2012-11-30 Thread Thomas Broyer
Have a look at: - http://tbroyer.posterous.com/gwt-211-requestfactory and http://tbroyer.posterous.com/gwt-211-requestfactory-part-ii - https://github.com/tbroyer/gwt-maven-archetypes which has 2 Maven archetypes using RequestFactory #shamelessPlug On Friday, November 30, 2012 2

Re: compiled js files do not work, if compiled "obfuscated", only if compiled "pretty"

2012-11-30 Thread Thomas Broyer
On Thursday, November 29, 2012 9:38:53 PM UTC+1, Gasotelo wrote: > > I got this problem, it was because we have a browser plugin that inserts > javascript with obfuscated names too, so when the GWT calls a function like > xf, it was really calling the plugin xf function. > You should try the x

Re: CellTable, this.focus is not a function

2012-11-30 Thread Thomas Broyer
On Thursday, November 29, 2012 1:54:38 PM UTC+1, Piotr Kopeć wrote: > > Hi All > As workaround for editing NULL values in CellTable i've extended Column > Why? That's the job of cells, not columns. If a cell doesn't allow editing a 'null', then extend/fork that cell instead; or give it a non-nu

Re: RootPanel --> OutClickEvent -- > how to detect click event out of the HTML Page it self ?

2012-11-30 Thread Alp Yilancioglu
Thanks ;) -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To view this discussion on the web visit https://groups.google.com/d/msg/google-web-toolkit/-/jvLmul8VzWwJ. To post to this group, send email to google-web-toolkit@googlegroups.com

Re: Firefox 17 dev plugin

2012-11-30 Thread Karl
Works like a charm on linux 64-bit. Thank you! On Friday, November 30, 2012 8:47:50 AM UTC+1, Dimitrijević Ivan wrote: > > > http://code.google.com/p/google-web-toolkit/source/browse/trunk/plugins/xpcom/prebuilt/gwt-dev-plugin.xpi > -- You received this message because you are subscribed to the

Looks like a GWT compiler and/or GIN error.

2012-11-30 Thread seas
I've got a class, TestPlace, that derives from Place that takes two parameters, both Strings. I use GIN so I have a PlaceFactory to create instances of my places. It has a method for creating TestPlace that has two String parameters. It all looks pretty straight forward, except that inside the