Re: Generated class only appearing in one permutation

2012-11-29 Thread Asif Ali
Thanks 4r your great suggestion. -- 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

Re: Textarea KeyUpHandler not working

2012-11-29 Thread marco
Hi Thomas, thanks for your explanation. I had that setElement(rootPanel.getElement()) thing in my mind, but I didn't really got what it does until your explanation. Now it makes much sense to me what happened. Cheers, Marco Am Mittwoch, 28. November 2012 14:45:51 UTC+1 schrieb Thomas Broyer:

Re: CellTable - how to avoid unnecessary onRangeChange events?

2012-11-29 Thread Rafael Paulino
Magnus, Hi. I didn't found an easy and simple solution for that. In my application I wrote a DataManager which is an AsyncDataProvider and has some cache functionality. So when I get an onRangeChange event I just go to server when it's really needed, fetching only the missing range. It do a

Re: CellTable - how to avoid unnecessary onRangeChange events?

2012-11-29 Thread Magnus
Hi Rafael, thank you for offering me your solution. But in the meantime I found a very simple solution: The application has to set the new range *before* a call to updateRowCount is made! The first thing I do right after the data source (chat room) changed is to load the new row count. But

Display errors inside FlexTable - how to get rid off them?

2012-11-29 Thread Hans
Recently there was a display error difficult to track down in my app: FlexTable cells were 4px higher than expected (regarding the content box). When I eventually set *line-height: 0* the padding/margin/you name it evaporated. So I guess there's a text node consisting of white space or a line

Re: Firefox 17 dev plugin

2012-11-29 Thread wbabachan
I have built the plugin under Fedora 17 x86 (FC17_x86) and it works fine. You can download and use it from here: https://docs.google.com/open?id=0Bz789tz1BWLqcVNrOERSOWdLNlU I hope it will work at least in all Linux x86 OS. - Waruschan Babachan Am Mittwoch, 28. November 2012 16:57:06 UTC+1

Re: Display errors inside FlexTable - how to get rid off them?

2012-11-29 Thread Hans
I changed the fix to use *display: block* for images inside table cells instead of messing with* line-height* which seems a cleaner solution. Waiting for widespread CSS3 support to fight the underlying problem of placing inline content ... -- You received this message because you are

programmatically opening a GWT ListBox

2012-11-29 Thread Tihomir Meščić
Hi everyone, I have a GWT application that needs to have the ability to programatically open a standard GWT ListBox widget (com.google.gwt.user.client.ui.ListBox). There is no method in API to do this so I was wondering, is there a workaround solution for this? Thanks in advance. -- You

CellTable, this.focus is not a function

2012-11-29 Thread Piotr Kopeć
Hi All As workaround for editing NULL values in CellTable i've extended Column All works nice till use of SingleSelectionModel With selection model editing null values goes random, some values can be edited, some not, after few tries selection model stops responding Related exception stack trace

Re: GWT Internet Explorer ListBox issues (dropdown items are chopped)

2012-11-29 Thread Yogi
Hi, I am facing the same problem in IE 8. Does anybody have any solution to this problem. Regards, Yogi On Tuesday, July 5, 2011 10:11:52 PM UTC+1, Chicones wrote: I currently have the same problem. I've made some google searches and I've only found js fixes, e.g., with jQuery. But I'd

How to dynamically add timestamp to reference script url

2012-11-29 Thread Kevin Nguyen
Hi, We're using some third party libraries where in their *gwt.xml module, they use script src= tags to include external script files. Is there a way to side effect the GWT compiler so that I can dynamically append the timestamp to the external script URL? Can it be done using a linker? If

Re: GWT 1.5.3 and gwtext-2.0.4

2012-11-29 Thread Paul Otarola Lopez
hi, there is a design component for gwt-windows-1.5.3? , Example gwt designer On Wednesday, September 15, 2010 6:13:48 PM UTC-5, Guille wrote: SOLVED The problems was that I mixed GWT-EXT with GXT, so the solution was remove GXT library and now works perfect -- Guillermo Sánchez --

Re: Firefox 17 dev plugin

2012-11-29 Thread Thad
On Thursday, November 29, 2012 10:01:49 AM UTC-5, wbabachan wrote: I have built the plugin under Fedora 17 x86 (FC17_x86) and it works fine. You can download and use it from here: https://docs.google.com/open?id=0Bz789tz1BWLqcVNrOERSOWdLNlU I hope it will work at least in all Linux x86

Canvas drawn objects mouse events

2012-11-29 Thread Matt Fair
I have the following code: public void draw(Context2d context) { context.beginPath(); context.rect(x, y, width, height); context.fill(); context.closePath(); context.stroke(); } I would like to add a mouse event for when the mouse moves over the rectangle. What's the best way to do this?

Re: add-linker name=xs compiled js files do not work, if compiled obfuscated, only if compiled pretty

2012-11-29 Thread Gasotelo
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. On Monday, January 30, 2012 8:38:17 AM UTC-5, ustakraharez wrote: Tried from the latest trunk,

prefix on obfuscated function names

2012-11-29 Thread Gasotelo
We have a project on GWT and our production version have been compiled on obfuscated mode for security reasons. The application works fine, except when a browser plugin inserts javascript on the page, because some plugins have functions with obfuscated names, like aa, ab, xv, zf, etc... We

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

2012-11-29 Thread Alp Yilancioglu
Hi, how can i detect the OutMouseClicks out side of the HTML page ? -- 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/-/HSJ3Rg8KXtUJ. To post to

Re: Firefox 17 dev plugin

2012-11-29 Thread Frank Hossfeld
OS X 10.8 works fine ... Am Donnerstag, 29. November 2012 20:22:09 UTC+1 schrieb Thad: On Thursday, November 29, 2012 10:01:49 AM UTC-5, wbabachan wrote: I have built the plugin under Fedora 17 x86 (FC17_x86) and it works fine. You can download and use it from here:

Re: Canvas drawn objects mouse events

2012-11-29 Thread Alfredo Quiroga-Villamil
I don't want to discourage you from trying your own implementation but you might want to take a look at Lienzo and see if it works for what you need. It's 100% built on GWT and lighting fast. It should do all the things you will need and likely more. It's released under Apache. Explorer:

Re: Canvas drawn objects mouse events

2012-11-29 Thread Alfredo Quiroga-Villamil
We are just a couple of weeks from having GA by the way and some of the things we are adding are just amazing. Take a look for instance at this transform. http://www.emitrom-lienzo.appspot.com/#ExplorerPlaceImpl:transform_3_points For the user of our API ... one line of code for that complicated

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

2012-11-29 Thread Jens
In general its window.onBlur in JavaScript but IE handles things a bit different as usual ;-) They tried to integrate a focus/blur handler for the window object into GWT some time ago but it does not work very well, so they removed it. See:

Pass element eventHandler to JSNI function

2012-11-29 Thread Webber
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' supported? Thanks, -- You received this message because you are subscribed to

Can anyone help me with the gwt requestfactory?

2012-11-29 Thread Anker
hi all, these days, I learn how to build the gwt project, but when i meet the requestfactory , I really don't understand how to build and which class is necessary and which is not , so I come here to look for an help . If you have a little time ,please wrote a small project for me ,just like

Tracking down an erroneous brace

2012-11-29 Thread David Pinn
I'm not seeing any ill effects of this GWT compilation error, but I'm anxious about leaving this warning un-addressed: [INFO] [gwt:compile {execution: default}] [INFO] Compiling module net.byandlarge.rendezvous.Rendezvous [INFO]Computing all possible rebind results for

Re: Tracking down an erroneous brace

2012-11-29 Thread Abraham Lin
Looks like there's an extra comma on line 20 (right before the opening brace). Not sure why the line number is off, but the column offset is correct. -Abraham -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this discussion on the

Re: Tracking down an erroneous brace

2012-11-29 Thread David Pinn
Well, that's embarrassing. You know, you can look at something forever and still not see what is right there in front of you. Abraham, thank you, thank you. -David On Friday, November 30, 2012 2:32:27 PM UTC+11, Abraham Lin wrote: Looks like there's an extra comma on line 20 (right before

Redirect in GWT

2012-11-29 Thread Jonathan Franchesco Torres Bca
Hi, I have a problem to call a module from another module Help me, please. -- 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/-/YHbgm7xGJUwJ. To post

Height of DataGrid

2012-11-29 Thread tong123123
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

Re: Firefox 17 dev plugin

2012-11-29 Thread Dimitrijević Ivan
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 Google Groups Google Web Toolkit group. To view this discussion on the web visit

[gwt-contrib] Re: Update devmode Firefox plugin to support Firefox 17 on the Mac: (issue1872803)

2012-11-29 Thread mdempsky
LGTM http://gwt-code-reviews.appspot.com/1872803/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

Re: [gwt-contrib] source maps in chrome

2012-11-29 Thread Ray Cromwell
https://gwt-review.googlesource.com/#/c/1300/1 On Wed, Nov 28, 2012 at 11:02 AM, Stephen Haberman step...@exigencecorp.com wrote: Chrome 24 introduced a bug, I'm working on a fix. Awesome, thanks for the quick reply--I updated the issue appropriately. - Stephen --