Animated Speedometer

2012-08-15 Thread Dominic Warzok
Hi together, I want to build an animated speedometer with GWT but I have no idea where to start. I have visited the GWT showcase website and found some animation there. But it is alway how to move a picture from one position to another, in my case I need to rotate the needle, and not to move

log4j in gwt app

2012-08-15 Thread Jepse
Hi there, i'm getting frustrated more and more. I'm using an ORM Mapper Apache Cayenne. Since i turned of the AppEngine its working fine on the server side. For some reasons Cayenne uses log4j logging INFO as default value. That results a lot of logging Information. In other Servlet or Java

log4j in gwt app; how to enable setting in log4j.properties

2012-08-15 Thread Jepse
Hi there, i'm getting frustrated more and more. I'm using an ORM Mapper Apache Cayenne. Since i turned of the AppEngine its working fine on the server side. For some reasons Cayenne uses log4j logging INFO as default value. That results a lot of logging Information. In other Servlet or Java

How to set edge shade for PopupPanel?

2012-08-15 Thread Alex Luya
It seems that clip property stop me to do it,any suggestions? -- 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: Animated Speedometer

2012-08-15 Thread Jens
Hmm IE8 does not support CSS3 rotate/transform/animation/transition and with pure JS I think you can't rotate a needle. There is something called ExplorerCanvas: http://code.google.com/p/explorercanvas/ that seems to provide canvas support in IE8 by converting canvas elements in IE to VML. I

Re: How to get wrappered body element within RichTextArea?

2012-08-15 Thread Jinker Jiang
Hi: You should add attach event handler to the RichTextArea,like this : addAttachHandler(new AttachEvent.Handler() { public void onAttachOrDetach(AttachEvent arg0) { if(arg0.isAttached()){ Element body = ((FrameElement)

Re: Animated Speedometer

2012-08-15 Thread Dominic Warzok
Yes thats the very big problem with the IE8. But ca. 90% of my useres use this. :-( Thanks for the Speedometer Example this helps me a lot. Am Mittwoch, 15. August 2012 10:40:42 UTC+2 schrieb Jens: Hmm IE8 does not support CSS3 rotate/transform/animation/transition and with pure JS I

Re: Anyone used GWT with Require.js?

2012-08-15 Thread walker1c
Hi Joseph, I think what you suggest may be the solution. I could transplant the code from onModuleLoad() to a method that's invoked from one of the scripts loaded by Requirejs. It's slightly awkward because onModuleLoad() is an instance method, so I need to expose the EntryPoint object in a

Re: How to set edge shade for PopupPanel?

2012-08-15 Thread Jinker Jiang
I had this situation before, after animation in ie : set clip style :(-2000px,2000px,2000px,-2000px) other : remove clip style by set : 2012/8/15 Alex Luya alexander.l...@gmail.com It seems that clip property stop me to do it,any suggestions? -- You received this message because you are

GWT/GXT File-Upload Example

2012-08-15 Thread Sascha Hoffmann
Hi everybody I have only a little question. Is anybody here who knows a good example how to upload a file with gwt oder gxt? I found two in the net but they don't work. I would apreciate it if someone could help me. Sascha -- You received this message because you are subscribed to the Google

Re: DialogBox won't get CSS attribute box-shadow

2012-08-15 Thread Jinker Jiang
you should use the method PopupPanel. *setAnimationEnabled*(boolean enable), this use css style clip, and clip affect box-shadow 2012/8/9 Dominic Warzok domi...@googlemail.com Hi everyone, I have a DialogBox an want to add a box-shadow to it. So at the end it should look like

Re: Paging HTML viewer

2012-08-15 Thread dhoffer
Thanks much I'll have a look at that example in more detail to see if I can make that work for what I need to do. My case is sort of the reverse of that...in that by default the scroll is at the bottom...new messages go to the bottom of the list...so it's like a 'tail' viewer always watching the

Re: data tables with headers, footers and widgets in cells

2012-08-15 Thread Matthew Pocock
Thanks. I've cobbled something together with DataGrid. M On 7 August 2012 14:45, Andrei vol...@spiraluniverse.com wrote: Joshua is right: DataGrid is your solution. If existing cells do not meet your needs, you can build any cell you like by extending AbstractCell. -- You received this

Re: GWT/GXT File-Upload Example

2012-08-15 Thread Chak Lai
Have you try using FileUpload object from GWT? http://google-web-toolkit.googlecode.com/svn/javadoc/2.4/com/google/gwt/user/client/ui/FileUpload.html On Wednesday, August 15, 2012 5:13:52 AM UTC-4, Sascha Hoffmann wrote: Hi everybody I have only a little question. Is anybody here who

DataGrid column resizing

2012-08-15 Thread Matthew Pocock
Hi, I'm working with a DataGrid where I don't know the ideal width of the columns beforehand (or, indeed, the columns). I want it to scroll horizontally when it overflows the viewing area, and I'd like columns to minimally be wide enough to render their content and their headers/footers. If I

Re: querying binary data

2012-08-15 Thread Joseph Lust
GWT is not a drop in replacement for Swing. It's a browser side javascript technology and as such communicates over HTTP. Without using bleeding edge HTML5 features, there is no robust, dependable, cross browser mechanism for sending binary data to a browser side application. For details on

Re: Paging HTML viewer

2012-08-15 Thread Jens
I don't know your app and requirements but if you have so many log entries to show, does scrolling still makes sense? I mean at some point the scrollbar does not shrink anymore and scrolling becomes a pain if you have so many items in your list. As an user I would never search through them

Re: DialogBox won't get CSS attribute box-shadow

2012-08-15 Thread Joseph Lust
Is 'box-shadow' recognized in your version of FF? Otherwise you might want to try the vendor specific -moz-box-shadowhttps://developer.mozilla.org/en-US/docs/CSS/box-shadow?redirectlocale=en-USredirectslug=CSS%2F-moz-box-shadow. Also, such vendor specific code might not work through

Re: window scrolls to top afte closing PaopupPanel

2012-08-15 Thread Deepak Singh
Still the issue is not resolved. It happens on all browsers. Any one can figure out it. On Wed, Aug 15, 2012 at 12:17 AM, Deepak Singh deepaksingh...@gmail.comwrote: Hi, I use following code : int left = eachHotel.getAbsoluteLeft(); int top = eachHotel.getAbsoluteTop(); final DialogBox

Re: data tables with headers, footers and widgets in cells

2012-08-15 Thread Matthew Pocock
I've had a proper look at the cell sampler showcase. While it does render UI components for cells, it isn't actually embedding widgets. It's using classes like CheckboxCell that render html directly. So it doesn't look like with this approach I can embed my custom IsWidget directly as cell

Re: Hibernate session in RequestFactory

2012-08-15 Thread bond
Hi Thomas, thanks for your reply. My problem is not use or not use a Filter to solve this problem. My problem is try to send exception caugth in PersicensteFilter on the client. I need a per request session and transaction. If my problem was only lazy inizialization of course this method is not

Re: Animated Speedometer

2012-08-15 Thread Rob
Hi, There's a GWT wrapper for HighCharts: - http://www.highcharts.com/documentation/compatibility - states IE6+ - http://www.highcharts.com/component/content/article/2-news/46-gauges-ranges-and-polar-charts-in-beta - http://www.moxiegroup.com/moxieapps/gwt-highcharts/ Cheers Rob Kiahu.com

change DateBox default time

2012-08-15 Thread Joey Li
I try to use GWT DateBox. When i click the DatePicker, the date and time will be shown in the box. But it looks like the default time is 12:00pm (noon) For example, If I picked 2012, Aug, 16th in the datePicker, and my code is the following: date.setFormat(new

Re: GWT - Unexpected scrollbar appeared in GWT-DataGrid while using Canvas

2012-08-15 Thread Joey Li
On Thursday, 2 August 2012 18:13:30 UTC-4, Joey Li wrote: I found a bug that there will be some unexpected scrollbars appeared in GWT-DataGrid when using Canvas in the same area. No matter what functions of Canvas I used, even if I just use Canvas to draw a line, it will cause problem.

Re: GWT - Unexpected scrollbar appeared in GWT-DataGrid while using Canvas

2012-08-15 Thread Joey Li
On Thursday, 2 August 2012 18:13:30 UTC-4, Joey Li wrote: I found a bug that there will be some unexpected scrollbars appeared in GWT-DataGrid when using Canvas in the same area. No matter what functions of Canvas I used, even if I just use Canvas to draw a line, it will cause problem.

Re: GWT - Unexpected scrollbar appeared in GWT-DataGrid while using Canvas

2012-08-15 Thread Joey Li
Any updates? Anyone encounter this as well? -- 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/-/y0nbOSzSuFEJ. To post to this group, send email to

ScrollPanel.scrollToBottom has no effect

2012-08-15 Thread Magnus
Hello, I have a CellTable within a ScrollPanel with a fixed number of rows (40). Whenever the CellTable is filled with data by an AsyncDataProvider, the ScrollPanel should scroll down to the end of the CellTable. So I call scrollToBottom at the end of the load process triggered by

Re: ScrollPanel.scrollToBottom has no effect

2012-08-15 Thread Paul Robinson
Try calling scrollToBottom after the event loop has finished by running it inside a call to Scheduler.get().scheduleDeferred(...) Paul On 16/08/12 06:15, Magnus wrote: Hello, I have a CellTable within a ScrollPanel with a fixed number of rows (40). Whenever the CellTable is filled with

[gwt-contrib] Re: s/getException/exception/ in javadocs in GWTTestCase (issue1800805)

2012-08-15 Thread skybrian
LGTM http://gwt-code-reviews.appspot.com/1800805/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Prevent code for constraints which are not in the groups listed in the @GwtValidation annotation... (issue1802805)

2012-08-15 Thread idol
Reviewers: Nick Chalko, cromwellian, Description: Prevent code for constraints which are not in the groups listed in the @GwtValidation annotation from being generated. This greatly simplifies the creation of server-side-only constraints which will not compile using GWT - just put those