Re: Animated Speedometer

2012-08-16 Thread Jens
Looks nice! Didn't know that Highcharts supports gauges. -- J. Am Donnerstag, 16. August 2012 05:41:16 UTC+2 schrieb Rob: Hi, There's a GWT wrapper for HighCharts: - http://www.highcharts.com/documentation/compatibility - states IE6+ -

Re: change DateBox default time

2012-08-16 Thread Jens
1. How can I change the default time to midnight, which is [2012-Aug-16 00:00:00 am]. The DatePicker sets the time to 12:00 pm because some countries seems to do their day light saving correction at 0:00 am (which would mean that 0:00 am would not exists on these days because it becomes

Re: GWT/GXT File-Upload Example

2012-08-16 Thread Sascha Hoffmann
Thanks that will help. Do you know where I can get an example with a servlet? I know not much about servlets. Am Mittwoch, 15. August 2012 16:42:53 UTC+2 schrieb Chak Lai: Have you try using FileUpload object from GWT?

updating a single cell

2012-08-16 Thread Matthew Pocock
Hi, I'm using DataGrid with some grids that get quite large. Individual cell values alter independently of each other due to events coming into the application over comet. At the moment, to display the new value I have to call table.redraw(). This is very inefficient when the table has a lot of

Re: GWT/GXT File-Upload Example

2012-08-16 Thread Jens
Thanks that will help. Do you know where I can get an example with a servlet? I know not much about servlets. You could use Apache Commons FileUpload to read the form data in your servlet. The library also provides a FileUploadServlet I think. Just google for it. -- J. -- You received

[no subject]

2012-08-16 Thread Dennis Haupt
i'm trying to add widgets into a flextables header. the header itself required me to add native th / tr elements and add my widgets there: if (model.header().totalHeaderRowCount() 0) { final Element head = DOM.createElement(thead); for (final int headerRowIndex :

grid, header and events

2012-08-16 Thread Dennis Haupt
i'm trying to add widgets into a flextables header. the header itself required me to add native th / tr elements and add my widgets there: if (model.header().totalHeaderRowCount() 0) { final Element head = DOM.createElement(thead); for (final int headerRowIndex :

Re: grid, header and events

2012-08-16 Thread Jens
Take a look at ComplexPanel.add(Widget, Element) to see what GWT does when adding a widget to another. Technically the method Widget.onAttach() must be called to activate event handlers and Widget.onDetach() to clean them up. In GWT these methods are called in Widget.setParent() which is called

Re: updating a single cell

2012-08-16 Thread ssamara
Not sure if you can re-render cells in isolation, but you should be able to get it to redraw individual rows rather than the whole table. Try replacing the updated item with itself in the DataProvider (e.g. if using a ListDataProvider by calling set(index, item) on the underlying List, or if

Automatic Retina Images

2012-08-16 Thread DCYorke
I've built a module to automatically use retina images on devices that support them. It can be found here: http://retina.teknonsys.com -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this discussion on the web visit

Re: How to get wrappered body element within RichTextArea?

2012-08-16 Thread kredi kartı
Thank you very useful thing. a href=http://www.sizebirsorumvar.com; title=just been paidjust been paid/a -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this discussion on the web visit

Re: JSONParser.parseStrict() exception Unexpected token

2012-08-16 Thread Dylan Spurgin
seven.reeds, can you give more detail on how you got the JSON from the result HTML? Here is the code I'm currently trying: HTML results = new HTML(event.getResults()); String text = results.getText(); JSONValue jsonValue = JSONParser.parseStrict(text); Which results in Error parsing JSON:

Iframe takes more time to load local html page in IE

2012-08-16 Thread mathews
Iframe is taking more time to load local html page in IE when compared to Firefox. if we add iframe in new dialog/window, it is a taking more time to load the page in IE, is there any way to speed up the Iframe page load in IE. Thanks. -- You received this message because you are

Re: SWFObject wrappers

2012-08-16 Thread mike gieson
On Saturday, February 6, 2010 6:54:44 PM UTC-5, charlie wrote: Anyone have a GWT wrapper for SWFObject  http://code.google.com/p/swfobject/ ? Here's a relatively simple SWFobject wrapper: http://www.gieson.com/Library/projects/utilities/easyswf/ -- You received this message because you are

Re: Cannot compile from command line

2012-08-16 Thread mariannasb
Hi, I was having a similar problem Try removing the .\src\de\crizzi\testwiese; and using de.crizzi.testwiese.testwiese as the module instead For my app it worked like this: java -cp

Re: can i specify the filename when compiling ?

2012-08-16 Thread wahaha
no one can help me ? On Friday, August 10, 2012 3:51:07 PM UTC+8, wahaha wrote: there are 3 files after GWT's compiling: hosted.html moduleName.nocache.js randomName.cache.html i want to ask that can we specify the name of randomName.cache.html as we like ? -- You received this

Re: data received from a running servlet

2012-08-16 Thread Yarden Shem Tov
Thomas, any idea how it can be done when using RF? Perfect solution would be to have in a Receiver onSuccess(response..) onFailure(error...) onProgress(status...) And inside the onProgress maybe to ask the server what is the progress with *Process X*... On Friday, June 22, 2012 11:33:46

Re: How to mark a field as completely hidden for smartgwt ListGrid?

2012-08-16 Thread Frankee
On Wednesday, January 4, 2012 6:04:23 PM UTC+8, Daniel wrote: Hi guys, How to mark a field as completely hidden for smartgwt ListGrid? I do listGridFields[i].setHidden(true) according to API,But it still could be able to show the field via a context menu. and the API said

Re: Error: Permission denied for domain2 to get property Location.href from domain1.

2012-08-16 Thread SeleniumTester
While implementing Selenium RC I’ve come across one issue which is blocking me in automating more than 10 clients.Would really appreciate your help. *My Requirement is:* * * 1. go the site ‘missselfridge.com’ 2. In that go to the UK site(there is a link to select country on

Cross Site Request

2012-08-16 Thread Muhammad Muaz
I am trying this tutorial https://developers.google.com/web-toolkit/doc/2.0/tutorial/Xsite,it is working fine if server specify the call back object, like if server prints like this, callback125([{symbol:DDD,price:10.610339195026,change:0.053085447454327}]); But my requirements are

Re: Deferred Binding with ClientBundle

2012-08-16 Thread DCYorke
I've described a method here: http://retina.teknonsys.com On Monday, June 25, 2012 11:06:51 PM UTC-4, KevMo wrote: Is there an easy way to use different source images with client bundle for different permutations without creating a different implementations and adding a deferred binding

Re: Resolution Dependent ImageBundles

2012-08-16 Thread DCYorke
I've described a method for using retina images here: http://retina.teknonsys.com On Tuesday, April 17, 2012 5:21:41 AM UTC-4, Evan Ruff wrote: Hey guys, So I'm designing an application to be used on tablets and phones. With the introduction of the new iPad, my images are getting BIG. Real

Re: Resolution Dependent ImageBundles

2012-08-16 Thread Evan Ruff
David, This is EXACTLY what I was looking for! IMHO, this is absolutely a critical feature for webapps to have moving forward. It would be great to move this into the trunk for 2.6. Thanks! E On Wednesday, August 15, 2012 3:35:35 PM UTC-4, DCYorke wrote: I've described a method for using

Re: updating a single cell

2012-08-16 Thread Thomas Broyer
On Thursday, August 16, 2012 5:22:51 PM UTC+2, ssamara wrote: Not sure if you can re-render cells in isolation, but you should be able to get it to redraw individual rows rather than the whole table. Try replacing the updated item with itself in the DataProvider (e.g. if using a

Re: updating a single cell

2012-08-16 Thread ssamara
Aha! I knew there had to be a simpler way so this is good to know. Thanks. On Thursday, 16 August 2012 17:42:41 UTC+1, Thomas Broyer wrote: …or use redrawRow() -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this discussion on

Re: change DateBox default time

2012-08-16 Thread Joey Li
there is DST in where I am living. In my app, I want to show users their correct TimeZone no matter where they live. For example, in Eastern America/Canada users, the app shoulde show UTC-5 in summer time( DST ), and In winter, it should show UTC-4 (PDT). However, my app is always showing UTC-4

Re: Automatic Retina Images

2012-08-16 Thread KevMo
Wow, this is really nice. Thanks for sharing! On Tuesday, August 14, 2012 6:10:16 AM UTC-7, DCYorke wrote: I've built a module to automatically use retina images on devices that support them. It can be found here: http://retina.teknonsys.com -- You received this message because you are

Re: change DateBox default time

2012-08-16 Thread Joey Li
Oh, never mind. I made a mistake. UTC-4 is what it should be right now. The clock in computer shows that I am at UTC-5 which is the standard time. It does not consider DST time. UTC-4 should be the correct one. So my 2nd question is resolved. Computer Clock makes me confused and thought my app

Re: Automatic Retina Images

2012-08-16 Thread Juan Pablo Gardella
Great work!. Thanks for sharing!!! 2012/8/16 KevMo kevinps...@gmail.com Wow, this is really nice. Thanks for sharing! On Tuesday, August 14, 2012 6:10:16 AM UTC-7, DCYorke wrote: I've built a module to automatically use retina images on devices that support them. It can be found here:

Re: Automatic Retina Images

2012-08-16 Thread Jens
Nice! Would you mind releasing the source on Github? -- J. -- 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/-/7kK3eaIClqwJ. To post to this group,

JSNI and method pointer

2012-08-16 Thread Harold Comere
Hi all, I have a small JSNI method calling a javascript method. public native void requestAnimFrame() /*-{ window.requestAnimationFrame( ); }-*/; but window.requestAnimationFrame takes a function pointer for parameter as a callback. So i need to give as parameter of the JSNI method

Re: change DateBox default time

2012-08-16 Thread Andrei
There is no such thing as 00:00 am :) Midnight is 12:00 pm, so there is no problem in your app. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this discussion on the web visit

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

2012-08-16 Thread Andrei
What do you want to embed in your cells? I may give you some pointers. -- 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/-/WXquccAOwlcJ. To post to

Re: change DateBox default time

2012-08-16 Thread Jens
There is no such thing as 00:00 am :) Hehe yeah I am used to 24 hours and I actually meant 12:00 a.m. = 00:00 (24-hour clock) = midnight. So some countries activate their DST on midnight and thats why GWTs date picker chooses noon by default. Midnight is 12:00 pm, so there is no

Re: JSNI and method pointer

2012-08-16 Thread Alfredo Quiroga-Villamil
This might be useful: http://google-web-toolkit.googlecode.com/svn/javadoc/latest/com/google/gwt/animation/client/AnimationScheduler.html Regards, Alfredo On Thu, Aug 16, 2012 at 1:36 PM, Harold Comere harold.com...@gmail.com wrote: Hi all, I have a small JSNI method calling a javascript

Re: change DateBox default time

2012-08-16 Thread Jens
Jens suggests using CalendarUtil.resetTime() , but i have no idea how. I suggested to do reference searches in your IDE starting from that method and to find out how the date picker may uses this method indirectly. Then you can see what you need to overwrite to change the DatePicker

Re: JSNI and method pointer

2012-08-16 Thread Harold Comere
Hi, That responds perfectly to the problem. Thank you :) Regards, Harold 2012/8/16 Alfredo Quiroga-Villamil laww...@gmail.com This might be useful: http://google-web-toolkit.googlecode.com/svn/javadoc/latest/com/google/gwt/animation/client/AnimationScheduler.html Regards, Alfredo On

Re: window scrolls to top afte closing PaopupPanel

2012-08-16 Thread Thad
Sorry, I can't help you. That's far more complex than what I use. I've been sticking with the GWT API, something like: final DialogBox dialog = new DialogBox(true, true); // Create dialog contents--panel, text, buttons, etc dialog.setGlassEnabled(true); dialog.setAnimationEnabled(true); // I've

Re: data received from a running servlet

2012-08-16 Thread Thad
On Thursday, June 21, 2012 12:36:49 PM UTC-4, Akis wrote: Hi there. I've got a question: i need to have a sort of percentage progress of the elaboration of the servlet i call sending it data from a form. How could I do it? thank you! I check file upload progress with RequestBuilder

Re:

2012-08-16 Thread Thad
There's a lot lacking in FlexTable. If you need th, thead, etc. I think you need CellTable or DataGrid. They extend AbstractCellTable which (from looking at the code) includes all that. The javadoc's say you can add custom Header's that take events. (I've scant experience with the

Re: GWT/GXT File-Upload Example

2012-08-16 Thread Rob
Hi, This post might help: - http://uptick.com.au/content/taking-advantage-apache-fileupload-and-opencsv Cheers Rob Kiahu.com On Thursday, August 16, 2012 10:11:55 PM UTC+10, Jens wrote: Thanks that will help. Do you know where I can get an example with a servlet? I know not much about

Re: CheckboxCell 2 clicks for selection, when using SingleSelectionModel

2012-08-16 Thread Craig Mitchell
I also ran into this problem. I managed to get around it by extending CheckboxCell to listen for the click event, instead of the change event. To do this, in my new class, I just overrode getConsumedEvents: @Override public SetString getConsumedEvents() { HashSetString result = new

Re: ScrollPanel.scrollToBottom has no effect

2012-08-16 Thread Magnus
Hello Paul, this works fine! Thank you very much!!! When I first saw your posting, I thought, that this would produce an unwanted flicker effect, because the list would first be drawn and then be scrolled. But this doesn't seem to be the case. I wonder, why? Does GWT wait with redrawing until

Re: Cross Site Request

2012-08-16 Thread Michael Allan
Padding the response with a function call - e.g. callback( ... ) - is what makes it readable by pages from other domains. If that's what you need and the source domain provides only JSON: [{symbol: ABC,price: 87.86,change: -0.41}] then one solution (I've heard) is to create a pipe

Re: DevMode not working in Chrome after update

2012-08-16 Thread R
Opening finder, opening chrome extensions page, and dragging the file from the finder to the extensions page worked for me too. On Saturday, 11 August 2012 16:17:02 UTC-6, Piotr Swietoslawski wrote: I have the same issue on OSX with Chrome 21 and Eclipse Juno. However I was able to install

[gwt-contrib] Force returning integer pixel values from DOMImplWebkit (#6130) (issue1797805)

2012-08-16 Thread t . broyer
absoluteTop/Left are not enough: http://code.google.com/p/google-web-toolkit/issues/detail?id=7575 And WebKit is probably not enough too (subpixel rendering is becoming standard, and will soon be mainstream). http://gwt-code-reviews.appspot.com/1797805/ --

[gwt-contrib] Add setComparator to allow custom sorting of candidates from search. (issue1807805)

2012-08-16 Thread dvik
Reviewers: reviewers_userid_google.com, Description: Add setComparator to allow custom sorting of candidates from search. Fixes issues 4373, 5920 Review by: skybr...@google.com Please review this at http://gwt-code-reviews.appspot.com/1807805/ Affected files: M

[gwt-contrib] Removed EXPERIMENTAL flag from GWT validation. Cleaned up all JavaDoc comments to reflect this c... (issue1811803)

2012-08-16 Thread idol
Reviewers: Nick Chalko, cromwellian, Description: Removed EXPERIMENTAL flag from GWT validation. Cleaned up all JavaDoc comments to reflect this change. Please review this at http://gwt-code-reviews.appspot.com/1811803/ Affected files: M

[gwt-contrib] Re: Removed EXPERIMENTAL flag from GWT validation. Cleaned up all JavaDoc comments to reflect this c... (issue1811803)

2012-08-16 Thread nchalko
lgtm http://gwt-code-reviews.appspot.com/1811803/diff/1/user/src/com/google/gwt/validation/client/GwtValidation.java File user/src/com/google/gwt/validation/client/GwtValidation.java (right):

[gwt-contrib] Re: Move GAE Auth functionality from Expenses over the MobileWebApp sample. (issue1806803)

2012-08-16 Thread t . broyer
FYI, my take on authentication and RequestFactory can be found at https://github.com/tbroyer/gwt-maven-archetypes/tree/master/guice-rf-activities (also uses Guice, GIN and Guava). I'm in the process of trading the userName and isAdmin JS variables for an object (managing ser/deserialization with