Dev Mode Unusably slow after OS X Mavericks 10.9 Upgrade

2013-10-24 Thread KevMo
I'm not sure where to start debugging this issue. After I upgraded my machine to 10.9 Mavericks my dev mode is incredibly slow. I thought maybe the new App Nap feature was killing it, so I've disabled that for my IDE (IntelliJ) and browsers, still no difference. This is happening for all of my

Re: Dev Mode Unusably slow after OS X Mavericks 10.9 Upgrade

2013-10-24 Thread KevMo
Well, my co-workers were able to run the same projects on their machines without issue, so it must be something wrong with my machine. Any clue where to start? On Thursday, October 24, 2013 9:54:23 AM UTC-7, KevMo wrote: I'm not sure where to start debugging this issue. After I upgraded my

Encoding/decoding POJO to JSON

2013-04-15 Thread KevMo
Are there any JSON encoding/decoding libraries that will work on both client and server and that will work with inheritance? Here's the basic structure I'm working with: Class Recording { String title; ListEvent events; } abstract class Event { Long time; } class EventOne extends Event {

Re: I/O 2013 - GWT Sessions?

2013-03-06 Thread KevMo
I'd love to know this too. I was also a bit bummed out last year about the lack of GWT sessions. On Wednesday, March 6, 2013 2:56:52 PM UTC-8, James wrote: I know it's earlybut is anyone familiar with the planned Google Web Toolkit sessions for Google I/O 2013? It was a bit

Re: Is it possible to create auto scroling text from bottom to top in GWT? ( not scrolling bars)

2012-11-15 Thread KevMo
You can always use the marquee tag. marquee behavior=scroll direction=upYour upward scrolling text goes here/marquee Or some CSS3 http://www.hongkiat.com/blog/css3-animation-advanced-marquee/ But please, don't have auto scrolling text. I beg you. On Thursday, November 15, 2012 7:01:12 AM

Re: List all the strings and ints in a class?

2012-10-19 Thread KevMo
I've never used it, but you might give GWT Reflection a try. http://gwtreflection.sourceforge.net/ On Friday, October 19, 2012 12:58:40 PM UTC-7, darkflame wrote: I am looking to make a little debugging widget for my (rather complex) app. It would be helpfull if I could construct something

iOS 6 Bug: Safari caches POST requests

2012-09-23 Thread KevMo
I'm not sure how many people this will affect, but I thought I would send out a heads up. Check out these posts for more information: http://stackoverflow.com/questions/12506897/is-safari-on-ios-6-caching-ajax-results http://www.devthought.com/2012/09/22/understanding-the-ios6-ajax-bugs/ -- You

Re: What happened to composite images for ClientBundles?

2012-09-19 Thread KevMo
I believe it still makes composite images for older versions of IE, as those don't support data URIs. On Wednesday, September 19, 2012 8:30:46 AM UTC-7, Chris Lercher wrote: According to https://developers.google.com/web-toolkit/doc/latest/DevGuideUiImageBundles, multiple images in the

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: Deferred Binding with ClientBundle

2012-06-26 Thread KevMo
I thought about using lib-gwt-svg, but it seemed like a bit of overkill for just half a dozen images. And even with that I would still need to make a separate version for IE correct? On Tuesday, June 26, 2012 7:32:16 AM UTC-7, Joseph Lust wrote: First, you don't need to set custom MIME

Deferred Binding with ClientBundle

2012-06-25 Thread KevMo
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 property to my gwt.xml? For example, I would like to use SVG images for a lot of my icons, but IE8 and below would need a

Re: GWT Debug Firefox (for the n'th time)

2012-05-15 Thread KevMo
If you're looking for the windows version, here you go. http://www.oldapps.com/firefox.php On Tuesday, May 15, 2012 11:32:11 AM UTC-7, Rori Stumpf wrote: I made the mistake of upgrading to FireFox 12. I thought Chrome would work for GWT debug, but that pig still isn't flying. So... where

Re: Is SplitLayoutPanel stupid or arrogant?

2012-04-15 Thread KevMo
Check out the docs. https://developers.google.com/web-toolkit/doc/latest/DevGuideUiPanels When should I *not* use layout panels? The panels described above are best used for defining your application's outer structure — that is, the parts that are the least document-like. You should continue

Re: GWT Compiler as a stand-alone javascript compiler?

2012-04-02 Thread KevMo
I don't know if you can use GWT, but check out Google Closure for javascript optimization/minification. https://developers.google.com/closure/compiler/ -Kevin On Monday, April 2, 2012 3:03:42 PM UTC-7, Transplant wrote: Is there a way to use the GWT Compiler as a stand-alone javascript

Re: Is there a way to determine if a GWT app is active or inactive?

2012-02-26 Thread KevMo
Try JSNI with this: http://stackoverflow.com/questions/1060008/is-there-a-way-to-detect-if-a-browser-window-is-not-currently-active On Feb 26, 6:22 pm, m8o m8of...@gmail.com wrote: Is there a way to determine if a GWT app is active thru the Window or DOM class -- well, or any other class -- be

Re: compile to some html pieces

2012-02-15 Thread KevMo
Take a look at Code Splitting. If I'm understanding you correctly, it's exactly what you need. http://code.google.com/webtoolkit/doc/latest/DevGuideCodeSplitting.html On Feb 15, 7:02 pm, wahaha il...@yahoo.com.cn wrote: there is a project has much classes,but GWT compile it into just one

Re: Is it bad practice to use links like #viewObject104 instead of eventBus.fireEvent(viewObjectEvent(id)) ?

2012-02-09 Thread KevMo
If you're just passing an ID, I think just using links is a lot better than making events and listening for them. If you're passing an entire object, then events are probably better to keep you from making another call to the server. I personally prefer links, because it also allows the user to

Sharing @eval between CSS resources

2012-02-03 Thread KevMo
I was hoping to implement some simple customizable themes for my project. Nothing fancy, just pretty much changing color schemes. Based on the wiki for CssResource I was planning on using @eval to determine colors and things at runtime like so: @eval userBackground

Re: Multiple gwt-rpc calls and UI

2011-12-14 Thread KevMo
Have you tried making an RPC that returns A, B, C at the same time? On Dec 14, 10:55 am, Mike Dee mdichiapp...@gmail.com wrote: What is a preferable way to do multiple gwt-rpc calls to setup a UI? In particular, we have a view that requires several successive calls (order is important) to the

Re: How do I get a reference to a div and set its inner HTML?

2011-10-26 Thread KevMo
If you know the ID of an element, you can get it by: Document.get().getElementById(CONTENT_DIV_ID); Cheers, Kevin On Oct 26, 11:18 am, laredotornado laredotorn...@zipmail.com wrote: Hi, I'm using GWT 2.4.  I have a click handler attached to a button. Within the handler, I make an ajax call

Re: Popup Panels are always displayed behind the youtube iframe

2011-09-19 Thread KevMo
Try adding wmode=Opaque to the end of the iFrame URL. On Sep 19, 1:16 am, erebrus ereb...@gmail.com wrote: Hi, I have HTMLPanel in which I include an iframe with a youtube. My problem is that whenever I display a popup panel (e.g. custom made dialog boxes) that youtube iframe is always

Re: Youtube iFrame z-index problem

2011-07-08 Thread KevMo
By default flash will display on top of everything else, regardless of any z-index Try adding ?wmode=Opaque to the end of you iFrame src URL. On Jul 7, 7:16 am, tobirius t.herrm...@alkacon.com wrote: I am struggling to put UI elements above an embedded youtube iframe. No z-index seems large

Re: Facebook like Chat App with GWT

2011-06-28 Thread KevMo
I'm currently looking at iJab myself. It doesn't look like there is any active development. Also, the latest beta has connection issues on Safari. Check http://code.google.com/p/ijab/issues/detail?id=16 On Jun 28, 2:28 am, Uemit uemit.se...@gmail.com wrote: Check out ijab. It is based on GWT

Re: RPC Error after 2.3 upgrade: The response could not be deserialized

2011-05-06 Thread KevMo
.GA-sources.jar On May 5, 5:29 pm, Juan Pablo Gardella gardellajuanpa...@gmail.com wrote: Can you paste to your .classpath file ? 2011/5/5 KevMo kevinps...@gmail.com Thanks for the suggestion.  I've replaced all the GWT jars just to be double sure.  I still have the same problem though

Re: RPC Error after 2.3 upgrade: The response could not be deserialized

2011-05-06 Thread KevMo
I asked the same question on StackOverflow (http://stackoverflow.com/ questions/5914189/rpc-error-after-gwt-2-3-upgrade) and apparently it's an issue with gilead not being compatible with 2.3. A bug has already been filed, with a fix. I haven't attempted it yet, but I'll report back once I do.

Re: RPC Error after 2.3 upgrade: The response could not be deserialized

2011-05-06 Thread KevMo
Well thank's for your helpful answer :) Removing com.google.gwt.user.client.rpc.core.java.sql from gilead4gwt worked for me too. Should I post the custom .jar somewhere and put a link to it in the gilead support forum? On May 6, 3:19 pm, VKMS vkm...@gmail.com wrote: At stackoverflow - that's

RPC Error after 2.3 upgrade: The response could not be deserialized

2011-05-05 Thread KevMo
After upgrading to GWT 2.3 some of my RPC services no longer work and fail with The response could not be deserialized. It seems to happen to services that are returning objects that are use Date objects that are annotated with @Temporal(TemporalType.TIMESTAMP). I use Gilead 1.3.1 and Hibernate

Re: RPC Error after 2.3 upgrade: The response could not be deserialized

2011-05-05 Thread KevMo
Thanks for the suggestion. I've replaced all the GWT jars just to be double sure. I still have the same problem though. On May 5, 12:59 pm, Andrei Bulanau helper.h...@gmail.com wrote: May be you have old version gwt-servlet.jar in your project. -- You received this message because you are

Re: GWT war file inside a EAR file

2010-09-05 Thread KevMo
I've successfully created an EAR with GWT and glassfish, it wasn't too difficult. I used gilead with hibernate for persistence. The only trick was getting GWT to compile, as my entities are in the EJB, and GWT was in the WAR. I simply made sure the .java files we available to the WAR. I can

Re: Assigning Minimum Height/Width to DockLayoutPanel?

2010-05-09 Thread KevMo
I have a horrible solution... but at least it works on IE 6. I insert a clear .gif 1 pixel wide, and however tall you want, and another one 1px tall and however wide you want. It'n not pretty, but it works well. On May 9, 5:27 am, matttai matt...@hotmail.com wrote: Hi Group, I am trying to

Re: HTML5 Video in Mobile Safari

2010-04-22 Thread KevMo
13, 10:44 am, KevMo kevinps...@gmail.com wrote: 'm trying to code a site in GWT that plays videos with HTML5. Everything works great on the desktop, but mobile Safari on both the iPhone andiPaddo not play the video. I can play a video using Video for Everybody. I've even copied

HTML5 Video in Mobile Safari

2010-04-13 Thread KevMo
'm trying to code a site in GWT that plays videos with HTML5. Everything works great on the desktop, but mobile Safari on both the iPhone and iPad do not play the video. I can play a video using Video for Everybody. I've even copied the code to my own plain HTML page, and it works flawlessly. If

Re: GWT URL Parameters

2009-07-16 Thread KevMo
token for the parameters. Cheers, Kevin On Jul 15, 9:24 pm, Max maks...@gmail.com wrote: Hi KevMo, I think you can find this information in this post:http://groups.google.com/group/Google-Web-Toolkit/browse_thread/threa... Also you can search for URL Parameters or Parameters in this group

GWT URL Parameters

2009-07-15 Thread KevMo
I know I can get URL parameters by using Window.Location.getParameter (), but how does one programatically set the url parameter? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to