The long awaited GMD 2.0 is now available

2017-11-05 Thread mark kevin ringor
Showcase: http://gwtmaterialdesign.github.io/gwt-material-demo/ Release Notes: 1. gwt-material - https://github.com/GwtMaterialDesign/gwt-material/releases/tag/gwt-material-2.0 2. gwt-material-addins -

Re: Problem with GWT 2.8

2016-11-20 Thread Kevin Langille
https://github.com/gwtproject/gwt/issues/9463 -- You received this message because you are subscribed to the Google Groups "GWT Users" group. To unsubscribe from this group and stop receiving emails from it, send an email to google-web-toolkit+unsubscr...@googlegroups.com. To post to this

Re: Problem with GWT 2.8

2016-11-20 Thread Kevin Langille
Thanks for the reply. Compiling with pretty shows the issue. if (!(Math.abs(x - y) < 0.0001)) gets turned into if (Math.abs(x - y) >= 0.0001) So when Math.abs(x - y) results in NaN the if always results in false. In my mind this is a mistake because it doesn't accurately represent what is

Re: Problem with GWT 2.8

2016-11-16 Thread Kevin Langille
Additional information Running superdev mode from Intellij failed to show the error, only once our product was compiled is the error visible. I tested using log statements to show the values of the expressions. I am testing on Windows 10, Chrome, JDK 1.8.0_111. I also reproduced the issue in

Re: Problem with GWT 2.8

2016-11-16 Thread Kevin Langille
Sorry I should have mentioned. I was unable to see it using superdev mode in Intellij. Only once compiled did the error show. -- You received this message because you are subscribed to the Google Groups "GWT Users" group. To unsubscribe from this group and stop receiving emails from it, send

Problem with GWT 2.8

2016-11-15 Thread Kevin Langille
lso returns false. !(Math.abs(Double.NaN) < 0.0001) We are able to avoid this situation with additional checks but its seems like a bug to me. Is anyone else able to confirm this issue? This was working as expected in 2.7. Thanks, Kevin -- You received this message because you are subs

Possible issue in GWT 2.8

2016-11-15 Thread Kevin Langille
to see this problem. We are able to work around it but it seems like a bug to me. This was working correctly in GWT 2.7. Thanks, Kevin Langille -- You received this message because you are subscribed to the Google Groups "GWT Users" group. To unsubscribe from this group and stop recei

GWT Material 2.0 is now available

2016-11-12 Thread mark kevin ringor
Thanks to all contributors who made this project to 2.0 Showcase: http://gwtmaterialdesign.github.io/gwt-material-demo/ Release Notes: 1.

gwt-material-archetype 1.0-SNAPSHOT is live

2016-09-06 Thread mark kevin ringor
roject and install it on your Maven Repo. Then mvn archetype:generate -DarchetypeGroupId=com.github.gwtmaterialdesign -DarchetypeArtifactId=gwt-material-errai-archetype -DarchetypeVersion=1.0-SNAPSHOT. Finally you have now a gwt-material running in Errai ! without any hassle. Best Regards, Kevin -

GWT Material Tutorial #3 - Style and Layout

2016-09-06 Thread mark kevin ringor
Helper - http://gwtmaterialdesign.github.io/gw... Icons - http://gwtmaterialdesign.github.io/gw... Shadow - http://gwtmaterialdesign.github.io/gw... Theming - http://gwtmaterialdesign.github.io/gw... Tutorial Repo: https://github.com/GwtMaterialDesign/gwt-material-tutorial Best Regards,

gwt-material 1.6.0 is now available

2016-08-25 Thread mark kevin ringor
Hi everyone, Here comes the release of 1.6.0 on gwt-material projects: #gwt-material release notes: https://github.com/GwtMaterialDesign/gwt-material/releases/tag/gwt-material-1.6.0 #gwt-material-addins

GWTMaterialDesign Data Table 1.0-SNAPSHOT is available.

2016-07-20 Thread mark kevin ringor
Proud to announce that the GMD Table is now available for community use! It has been set up as a separate library for the time being (could eventually be moved into the GMD library

GWT Material - Video tutorial #1

2016-06-10 Thread mark kevin ringor
We've just released our gwt-material first video tutorial - Project Setup using gwt-material-archetype with Eclipse IDE and Intelij IDEA. Also during weeked we will do some shooting to provide the next tutorial series. https://www.youtube.com/watch?v=sEVqfqDUOpE -- You received this message

Re: MaterialSearch - issues

2016-06-02 Thread mark kevin ringor
This is solved on 1.5.1 On Sunday, May 1, 2016 at 6:23:28 AM UTC+8, Velusamy Velu wrote: > > Hi Everyone - > > The GWT Material Design is a great contribution. I'm trying to use it in > our project (http://peruselab.com), we plan to release in Aug 2016. > > One of the component I'm trying to

Re: GWT 2.8 delays

2016-06-02 Thread mark kevin ringor
https://www.youtube.com/watch?v=CElykwDVrBc Here is a video about GWT 2.8 On Sunday, May 8, 2016 at 11:26:22 PM UTC+8, steve Zara wrote: > > GWT 2.8 is now well over a year behind what seemed to be the original > schedule. I'm having to deal with colleagues who say they have lost > confidence

Re: Client side format string response to json array and display in jtextetable

2016-04-16 Thread schmitt kevin
> > problem resolved, error is due to bad json, i changed it and work, for testing my json array i'm gone https://jsonformatter.curiousconcept.com/ > . > -- You received this message because you are subscribed to the Google Groups "GWT Users" group. To unsubscribe from this group and stop

Client side format string response to json array and display in jtextetable

2016-04-16 Thread schmitt kevin
Hello everyone, can you help me please? I try from Client side format string response to json array and display in jtextetable. My class javascript object : package project.client; import com . google . gwt. core . client . JavaScriptObject ; import com . google . gwt. core . client . JsArray

Re: How to use json in client side

2016-04-03 Thread schmitt kevin
thanks, finally i used a regex expression with split for get my string in client side, and i diplay witht flextable its more easy for me . -- You received this message because you are subscribed to the Google Groups "GWT Users" group. To unsubscribe from this group and stop receiving emails

How to use json in client side

2016-04-02 Thread schmitt kevin
Hello everyone , can you help me please? in my server wich connect with mysql databse i send to my client one json table like that rs = stmt.executeQuery("SELECT * FROM test"); res ="["; while (rs.next()) { String titre = rs.getString("id"); String auteur = rs.getString("comment"); res +=

Re: JSInterop sample / tutorial?

2015-11-24 Thread mark kevin ringor
Any updates about the starting guide of JSInterop? On Wednesday, January 28, 2015 at 5:30:55 AM UTC+8, marian lux wrote: > > Is there a working JSInterop sample (e.g. project on github) online or an > article how to get started? It is part of the current gwt 2.7 release but I > could not find a

Re: JSInterop sample / tutorial?

2015-11-24 Thread mark kevin ringor
Thank you very much Jens On Tue, Nov 24, 2015 at 10:48 PM Jens wrote: > > Any updates about the starting guide of JSInterop? >> > > Everything you need to know for GWT 2.8 JsInterop: > https://docs.google.com/document/d/10fmlEYIHcyead_4R1S5wKGs1t2I7Fnp_PaNaa7XTEk0/edit

Re: Ongoing discussion of Jetty problems in Eclipse with 2.6.1-rc2 (issue #8526)

2015-10-02 Thread Kevin Wilson
Hello I have this problem when I try to start my local host (127.0.0.1) Could not find required bundle org.eclipse.jetty.webapp. Would you happen to know where I might download and install this missing bundle? Kevin On Tuesday, May 6, 2014 at 12:23:42 PM UTC-6, pron...@gmail.com wrote

Re: Recommended GWT Map Library?

2015-08-31 Thread Kevin Workman
ted / are > maintained by GWT Team. > > On Tuesday, August 25, 2015 at 8:16:34 PM UTC+2, Kevin Workman wrote: >> >> I've been using gwt-google-apis >> <https://code.google.com/p/gwt-google-apis/> as a GWT wrapper of the >> Google Maps JavaScript API. I've b

Re: Recommended GWT Map Library?

2015-08-26 Thread Kevin Workman
I also wonder whether Google or the GWT team are planning on releasing an updated version of the GWT wrapper for the Google Map JavaScript API anytime soon. If so, maybe it would be better to wait for that? -- You received this message because you are subscribed to the Google Groups Google

Re: Recommended GWT Map Library?

2015-08-26 Thread Kevin Workman
Thanks Alain. Does your produce have a getting started guide or a showcase? Can you tell me why a developer should choose that over OpenLayers or the older GoogleMaps api? -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To unsubscribe

Re: Recommended GWT Map Library?

2015-08-26 Thread Kevin Workman
-Openlayers. grt Frank Op dinsdag 25 augustus 2015 20:16:34 UTC+2 schreef Kevin Workman: I've been using gwt-google-apis https://code.google.com/p/gwt-google-apis/ as a GWT wrapper of the Google Maps JavaScript API. I've been using the jar from here https://code.google.com/p/gwt-google-apis

Re: Recommended GWT Map Library?

2015-08-26 Thread Kevin Workman
for Google maps. We are currently updating it to the latest maps api. Have a look at opensource.ahome-it.com Cheers Alain On 25 Aug 2015 20:16, Kevin Workman kevina...@gmail.com javascript: wrote: I've been using gwt-google-apis https://code.google.com/p/gwt-google-apis/ as a GWT

Recommended GWT Map Library?

2015-08-25 Thread Kevin Workman
I've been using gwt-google-apis https://code.google.com/p/gwt-google-apis/ as a GWT wrapper of the Google Maps JavaScript API. I've been using the jar from here https://code.google.com/p/gwt-google-apis/downloads/list. It works okay, but I'm starting a new GWT project that requires a map

Re: GWT Material 1.3.2 Update UI / UX

2015-06-24 Thread mark kevin ringor
Hi, Now its working pretty well. GAE has a daily quota we rich the limit of 1GB bandwidth usage thats why we have quota problem. Regards, GWT Material Design On Wednesday, June 24, 2015 at 2:23:23 AM UTC+8, Gilberto wrote: The demo app running on App Engine is returning 503 - over quota

GWT Material 1.3.2 Update UI / UX

2015-06-23 Thread mark kevin ringor
https://camo.githubusercontent.com/4a82e7a186aaf5991c973ce5f6d0c134e04d5f73/687474703a2f2f642d6d6174657269616c2e61707073706f742e636f6d2f62696e2f69635f645f6c6f676f2e706e67 Hi We are excited to announce the GWT Material 1.3.2 Maven / Github update. *A Google Material Design

Re: GWT and Material Design

2015-04-12 Thread mark kevin ringor
Hi to all we release an early version of GWT Material as of: Version 15.4.15 - GWT Material Showcase - Parallax - Material Weather - Login UI - Material Collapsible Popout - Material Bottom Sheets - Side Bar nav fixed with overflow auto on small devices -

Re: GWT Material Design

2015-04-12 Thread mark kevin ringor
- Apache License 2.0 Information Added - Donate Button added to support the development of GWT Material Best Regards, kevzlou7979 On Friday, February 6, 2015 at 1:51:20 PM UTC+8, mark kevin ringor wrote: Hi to all, We are a team of GWT Developers to implement the GWT Material Design

Re: GWT Material Design

2015-03-28 Thread mark kevin ringor
GWT Phonegap also is added in the repository. You can check it out and play with as Im studying the RPC mechanism of GWT inside phonegap. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To unsubscribe from this group and stop receiving

Menu like in http://www.gwtproject.org/

2015-03-25 Thread mark kevin ringor
Hi, You can use GWT Material to implement a nice responsive menu just check this out http://gwt-material.appspot.com Regards, kevzlou -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To unsubscribe from this group and stop receiving

GWT Material Design

2015-03-25 Thread mark kevin ringor
will find those new Features on our Footer navigation. 1. Gitter link 2. Phonegap APK download Warm regards, Kevin -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To unsubscribe from this group and stop receiving emails from it, send an email

GWT and Material Design

2015-03-25 Thread mark kevin ringor
will find those new Features on our Footer navigation. 1. Gitter link 2. Phonegap APK download Warm regards, Kevin -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To unsubscribe from this group and stop receiving emails from it, send an email

Re: GWT and Material Design

2015-03-25 Thread mark kevin ringor
will those new Features on our Footer navigation. Warm regards, Kevin -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To unsubscribe from this group and stop receiving emails from it, send an email to google-web-toolkit+unsubscr

GWT Material Design

2015-03-25 Thread mark kevin ringor
will those new Features on our Footer navigation. Warm regards, Kevin -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To unsubscribe from this group and stop receiving emails from it, send an email to google-web-toolkit+unsubscr

Re: GWT Material Design

2015-03-25 Thread mark kevin ringor
Check the Github repo: http://github.com/kevzlou7979/GwtMaterial/ On Thu, Mar 26, 2015 at 8:31 AM, David leeon2...@gmail.com wrote: Is source code available? On Thursday, March 26, 2015 at 8:08:37 AM UTC+8, mark kevin ringor wrote: Hi today we updated the GwT Material to be integrated

Re: GWT Material Design

2015-03-12 Thread mark kevin ringor
on joining the project don't hesitate to contact me. *Skype: markkevin7979* Best Regards, Kevin On Thursday, February 19, 2015 at 2:37:25 PM UTC+8, mark kevin ringor wrote: Hi, We updated the site and implemented some new Material Widgets: 1. Nav Bar 2. Collapsible 3. DropDown 4. Switches 5

Re: GWT and Material Design

2015-03-12 Thread mark kevin ringor
to contact me. *Skype: markkevin7979* Best Regards, Kevin On Thursday, March 12, 2015 at 6:59:35 PM UTC+8, Meryem Alay wrote: Hi, It looks great! thank you for sharing 11 Şubat 2015 Çarşamba 08:04:53 UTC+2 tarihinde mark kevin ringor yazdı: Hi, I forgot to give you the Repository

Re: GWT and Material Design

2015-02-18 Thread mark kevin ringor
Hi, We updated the site and implemented some new Material Widgets: 1. Nav Bar 2. Collapsible 3. DropDown 4. Switches 5. Range 6. Fixed Floating Button with container 7. Cards Hope you like it guys. Best Regards, Kevin On Tuesday, January 6, 2015 at 10:30:37 AM UTC+8, philip andrew wrote: Hi

Re: GWT Material Design

2015-02-18 Thread mark kevin ringor
Hi, We updated the site and implemented some new Material Widgets: 1. Nav Bar 2. Collapsible 3. DropDown 4. Switches 5. Range 6. Fixed Floating Button with container 7. Cards Hope you like it guys. Best Regards, Kevin On Friday, February 6, 2015 at 1:51:20 PM UTC+8, mark kevin ringor wrote

Re: GWT and Material Design

2015-02-10 Thread mark kevin ringor
Hi, I forgot to give you the Repository :) The source code is available here you can check it out: https://code.google.com/p/gwt-material/source/checkout Best Regards: Kevin On Wed, Feb 11, 2015 at 1:19 PM, mark kevin ringor kevzlou7...@gmail.com wrote: Hi Grace, I have updated the Getting

Re: GWT Material Design

2015-02-10 Thread mark kevin ringor
on how we can leverage and make this project more easy to embed. Best Regards, Kevin On Friday, February 6, 2015 at 1:51:20 PM UTC+8, mark kevin ringor wrote: Hi to all, We are a team of GWT Developers to implement the GWT Material Design with the help MaterializeCSS (http://materializecss.com

Re: GWT and Material Design

2015-02-10 Thread mark kevin ringor
Hi Grace, I have updated the Getting Started Documentation on how to implement material design in GWT (http://www.gwt-material.appspot.com). I need more help on how to make it more easy (like using gQuery). Best Regards, Kevin On Wed, Feb 11, 2015 at 4:33 AM, Grace C glchri...@gmail.com wrote

Re: GWT Material Design

2015-02-09 Thread mark kevin ringor
Hi, I will publish the repo today. Just need to make sure the first release is stable. Do you have any Skype Account so that we can communicate easily and faster. Yes if we can use any alternative on Jquery and other external resources dont hesitate to tell me. Regards, Kevin -- You

Re: GWT and Material Design

2015-02-06 Thread mark kevin ringor
Checkout our under development project on http://gwt-material.appspot.com/ we are integrating the MaterializeCSS(http://materializecss.com/) to GWT. Hope you like it :) On Tuesday, January 6, 2015 at 10:30:37 AM UTC+8, philip andrew wrote: Hi there, Has anyone tried to make a Material Design

GWT Material Design

2015-02-06 Thread mark kevin ringor
have deployed a demo material here: http://gwt-material.appspot.com/. Hope you like it. Regards, Kevin -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To unsubscribe from this group and stop receiving emails from it, send an email to google

Re: DataGrid inside InfoWindow doesn't show table data

2015-01-15 Thread Kevin Workman
16:49:54 UTC+1 schreef Kevin Workman: I posted this on StackOverflow here http://stackoverflow.com/questions/27847411/datagrid-inside-infowindow-doesnt-show-table-data, but nobody is biting, so I'm cross-posting here. I'm using GWT along with the GoogleMaps GWT API (v3.8 https

DataGrid inside InfoWindow doesn't show table data

2015-01-12 Thread Kevin Workman
I posted this on StackOverflow here http://stackoverflow.com/questions/27847411/datagrid-inside-infowindow-doesnt-show-table-data, but nobody is biting, so I'm cross-posting here. I'm using GWT along with the GoogleMaps GWT API (v3.8 https://code.google.com/p/gwt-google-apis/downloads/list,

Re: ExceptionInIntializerError with MapTypeStyleFeatureType and MapTypeStyleElementType

2014-12-22 Thread Kevin Workman
I found one workaround involving writing native JavaScript that bypasses the GoogleMaps GWT API: package com.test.client; import com.google.gwt.ajaxloader.client.AjaxLoader; import com.google.gwt.ajaxloader.client.AjaxLoader.AjaxLoaderOptions; import

Re: ExceptionInIntializerError with MapTypeStyleFeatureType and MapTypeStyleElementType

2014-12-19 Thread Kevin Workman
Thanks for the reply. Unfortunately, I'm stuck with the official GoogleMaps GWT API. On Thursday, December 18, 2014 3:36:51 PM UTC-5, Lars wrote: Try this API https://github.com/branflake2267/GWT-Maps-V3-Api for Google Maps v3 support! -- You received this message because you are

ExceptionInIntializerError with MapTypeStyleFeatureType and MapTypeStyleElementType

2014-12-18 Thread Kevin Workman
I posted this question on StackOverflow http://stackoverflow.com/questions/27533785/gwt-googlemaps-hide-default-layers-using-styles, but I haven't received any answers, so I'm posting here. I'm using GWT and GoogleMaps (v3.8.0 https://code.google.com/p/gwt-google-apis/downloads/list), which I

Consuming GWT RPC Response

2014-06-27 Thread Kevin Cho
Hello, I got a question regarding GWT RPC Response format. I am trying to consume GWT RPC Response format and parse it but I'm not having much luck. My application is client to exiting GWT application... Unfortunately, they do not provide JSON response... all I get is this cryptic

Re: synthesizing sounds in GWT application

2013-09-27 Thread Kevin O'Dwyer
I tried a few different ways to play dynamically generated sound for my emulator. Sound mostly works OK. See JsSound and JsFallbackSound in the below source code tree. http://sourceforge.net/p/jsdosbox/code/HEAD/tree/src/src2/net/sourceforge/jsdosbox/client/replaced/ On Friday, 27 September

Re: Changing Activity/View without Place

2013-09-20 Thread Kevin Baynes
You are right. I extended PlaceHistoryHandler.DefaultHistorian and intercepted the tokens in newItem() and it's working great. It's the least intrusive solution. Now I have encapsulation with discrete Activities, Views and Places, but I'm skipping the History. Just what I needed. Thanks! On

Changing Activity/View without Place

2013-09-19 Thread Kevin Baynes
approach that will allow me to encapsulate my functionality into smaller chunks? Thanks, Kevin -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To unsubscribe from this group and stop receiving emails from it, send an email to google-web

Re: Changing Activity/View without Place

2013-09-19 Thread Kevin Baynes
, but it's working. I would do what you said with PopupPanel, but this is a mobile app, so I have a lot of little screens with various functions. Thanks for your help. If anyone else has any guidance or can point out pitfalls of this hack I'd like to know. Kevin On Thursday, September 19, 2013 3:05:59

Css issues post GWT 2.5 Upgrade?

2013-01-02 Thread kevin
I recently upgrade to 2.5 and it seems like there is a new bug somewhere within the CssResource stuff. I think the bug only happens in development mode but after refreshing my application a couple times, certain css classes seems to get overwritten or merged with other css classes. I can't

How to dynamically add timestamp to reference script url

2012-11-29 Thread Kevin Nguyen
? If so, how? Many thanks. Kevin -- 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/-/NGAmcJP85i0J. To post to this group, send email to google-web-toolkit

Navigate CellTable with arrow keys

2012-11-20 Thread Kevin Buikema
I'm trying to come up with a way to navigate the elements of a CellTable with arrow keys, and while I can get the key events pretty easily, I'm not sure of a good way to move the focus from one Cell to another within the table. -- You received this message because you are subscribed to the

Re: [gwt-contrib] Re: KineticGWT

2012-11-16 Thread Kevin Zhang
around contributions to the GWT codebase; for support regarding the use of GWT, please use https://groups.google.com/d/forum/google-web-toolkit On Tuesday, November 13, 2012 7:29:12 AM UTC+1, Kevin wrote: Hi, I'm new to GWT and KineticGWT. I just downloaded KineticGWT. When I tried to run

Re: GWT 2.5.0-rc1 on IPad not firing click events

2012-10-02 Thread Kevin Campbell
I'm seeing this as well. It's happening on all iOS devices I've tested, and is also preventing focus on input elements. On Wednesday, August 22, 2012 8:45:17 AM UTC-7, Casey Rodgers wrote: In GWT 2.5.0-rc1 buttons (and anchors) will only fire the click event every few clicks. Meaning you

Two footers in a CellTable?

2012-09-17 Thread Kevin Buikema
Is there a way within the standard CellTable to add two footers to the table? I need to have two separate non-editable total rows, and I was hoping to be able to do it without having to customize objects or create a separate table for the totals. -- You received this message because you are

CellTable - style specific columns

2012-08-27 Thread Kevin Buikema
I'm using a CellTable element via UIBinder, and I'm trying to come up with a way to simply style specific columns in the table to make them look distinct. To make it as simple as possible, I set up a separate css style for them: .special_column_style { background-color: pink; } and used the

Re: CellTable - style specific columns

2012-08-27 Thread Kevin Buikema
Doing some additional debugging, it appears the browser is unable to locate special_column_style, because GWT translates the css file into it's own custom resource. Is there some way I can figure out what GWT transforms my css into, so I can set that style class for a column? -- You received

Handling events via @UiHandler with CellTable

2012-08-22 Thread Kevin Buikema
I'm using a CellTable with EditTextCells and CheckboxCell columns in an MVP app, and I'm trying to set up a UiHandler for the updates instead of explicitly declaring field updaters for each column, to make it more abstracted so the handling can be done in the presenter. Is something like that

Re: RequestFactory VS Cloud Endpoints (App Engines Java Rest API)

2012-07-17 Thread Kevin Moore
: Hello Kevin, It didn't work for me :( I'm working on HP 64bit WIndows Vista. Is that a problem for some reason? Not sure! Here's what I have/did: 1. I have everything latest: Juno, GPE 1.7 etc 2. The system did behave as explained by you when I changed Facet to 1.6 3. After

Re: RequestFactory VS Cloud Endpoints (App Engines Java Rest API)

2012-07-16 Thread Kevin Moore
Regards, Raj On Mon, Jul 16, 2012 at 11:19 AM, Kevin Moore kmoore...@gmail.com wrote: I thought so also but that turned out to not be the case, it is is late for me now I promise I will send email tomorrow with exactly how to get it working locally On Jul 16, 2012 1:46 AM, YatiRaj B byati

Re: RequestFactory VS Cloud Endpoints (App Engines Java Rest API)

2012-07-15 Thread Kevin Moore
On Thursday, July 12, 2012 12:05:35 PM UTC-4, Daryl Bergeron wrote: +1. I signed up two days ago. Thought I might at least get a confirmation email that my request was received, but have not. Just anxious to get started on it, and don#39;t want my request to fall thru the cracks. Thanks.

Re: RequestFactory VS Cloud Endpoints (App Engines Java Rest API)

2012-07-15 Thread Kevin Moore
I thought so also but that turned out to not be the case, it is is late for me now I promise I will send email tomorrow with exactly how to get it working locally On Jul 16, 2012 1:46 AM, YatiRaj B byati...@gmail.com wrote: Hi Kevin, I don't know how you would do that. After annotating

Re: Google IO 2012 : no GWT session ?

2012-07-06 Thread Kevin Moore
Thomas, The uncertainty spooks me just a little, since the rumors started I have been going over in my head what It would take to retool my existing app to a Jsp/appengine app, and so far I like what I am thinking, especially given the new Rest features announced at IO. What are your thoughts on

Re: Google IO 2012 : no GWT session ?

2012-07-06 Thread Kevin Moore
Thomas, Thanks for your comments, very nsightful. It was not my intention to compare jsp/appengime to gwt but rather to the RPC portion of gwt . With appengine I have the flexibility of many of ux approaches., but now I am excited about creating a services based approach to my product giving the

Re: DatePicker UTC

2012-03-29 Thread Kevin Jordan
http://code.google.com/p/gwt-traction/ (Look for UTCDateBox towards the bottom) http://gwt-traction.googlecode.com/hg/demo/com.tractionsoftware.gwt.demo.utcdatebox.UTCDateBoxDemo/UTCDateBoxDemo.html (Demo of it). I created one based off of this for GXT and this should do what you want.

Re: Client plugin architecture with GWT

2012-03-29 Thread Kevin Wan
Hi Marco, I'm currently working on a web application base on GWT. We're trying to support plugins. Would you please let me know if you open sourced the plugin project? Thank you very much! Kevin On Thursday, May 17, 2007 9:57:38 PM UTC+8, Netsurfer wrote: We are working on it. The idea

Re: How is Math.Random emulated? and how good is it?

2012-01-11 Thread Kevin Jordan
All GWT's emulation does is natively call the javascript Math.random(). On Jan 11, 3:02 am, darkflame darkfl...@gmail.com wrote: I have been playing about drawing fractals in GWT using canvas and the ¨ chaos game¨ method. However when picking large amounts of random numbers I seem to be

Re: Serializing and Deserializing EntityProxy with created EntityProxy inside makes root EntityProxy have created EntityProxy's stableId

2011-12-30 Thread Kevin Jordan
That appears to be the problem. Hopefully they put in a fix for it since I could reproduce it 100% of the time and it's not an easy bug to track down where it's happening. Thank you for the fix though. On Dec 29, 6:13 pm, Aidan O'Kelly aida...@gmail.com wrote: There's an issue with

Re: Serializing and Deserializing EntityProxy with created EntityProxy inside makes root EntityProxy have created EntityProxy's stableId

2011-12-29 Thread Kevin Jordan
, id); //Deserialize it to the original Proxy. And in production this would be read either from client-side storage or through a call to the server to get the serialized string instead of in one flow. But it behaves the same either way. On Dec 29, 11:16 am, Kevin Jordan ke...@kjordan.net wrote

Serializing and Deserializing EntityProxy with created EntityProxy inside makes root EntityProxy have created EntityProxy's stableId

2011-12-29 Thread Kevin Jordan
I'm trying to preserve a modified EntityProxy's state between user session by using the ProxyStore to serialize it and deserialize it, but it appears that if it has a reference EntityProxy in a field inside, the root proxy's stableId gets overriden with the one of the created EntityProxy. This

Re: Serializing and Deserializing EntityProxy with created EntityProxy inside makes root EntityProxy have created EntityProxy's stableId

2011-12-29 Thread Kevin Jordan
(item); item.getChild(); //This will throw a classcastexception as child is overwritten now to be pointing to the TestRootProxy. On Dec 29, 10:45 am, Kevin Jordan ke...@kjordan.net wrote: I'm trying to preserve a modified EntityProxy's state between user session by using the ProxyStore to serialize

Re: Opera 11.60 + GWT 2.4.0: Code load failed!

2011-12-06 Thread Kevin Jordan
Is this in hosted mode or for the compiled app? Also, are you using this project http://code.google.com/p/gwt-platform/? That seems to have a Code load failed that pops up in an alert window. On Dec 6, 5:28 am, Michael Würtinger wuertin...@cip.ifi.lmu.de wrote: Hi folks, I just installed

Re: Defining widgets as static

2011-11-17 Thread Kevin Jordan
Anything static in your client-side code is static only for that user's instance of it since it is running as javascript in their browser. Only static things on the server would affect per user/ session. On Nov 17, 8:30 am, Ahmet Dakoglu ahmetdako...@gmail.com wrote: Hi All, Although i use

Re: How To Upload a File Over 2GB?

2011-11-08 Thread Kevin Jordan
If your server supports uploading that much (i.e. no POST quota), then yes. Except for initiating the form POST, GWT doesn't have much to do with file upload to the server. On Nov 8, 1:36 am, Boris boris2...@163.com wrote: Can I upload a file over 2GB to server by GWT? Thank you. -- You

HTML5 Drag N Drop Not Working in IE 8+

2011-11-07 Thread Kevin Anderson
According to the last GoogleIO (2011) the session on HTML5 and GWT stated that Drag N Drop was supported on IE 8+. I have been unable to get it working because in the code the DragDropEventBase.DragSupportDetector has a problem with the function detectDragSupport. In IE the ondragstart

Re: No source code is available for type java.io.FileNotFoundException

2011-11-06 Thread Kevin Jordan
Are you talking about using the HTML 5 File API? If so, you should never run into a FileNotFoundException there if that's one you're adding since you can't directly open a file, it has to be done with either a request to the server or through user interaction with a file dialog or drag and drop.

Re: @ExtraTypes examples?

2011-10-21 Thread Kevin Jordan
More on the issue with a fix I had to make: http://groups.google.com/group/google-web-toolkit/browse_thread/thread/1387f28687571bf7/bfc53339a05f5d00?lnk=gstq=kjordan#bfc53339a05f5d00 The problem is that when it goes to examine the subclass in the @ExtraTypes when it's set on a super type, the

Re: Serialization Exception for Integer !?!?

2011-10-21 Thread Kevin Jordan
What's actually getting serialized here? It looks like it's also inside a map and that it's also an array of ints inside the map. On Oct 20, 4:21 pm, Eben Haber e...@haber.net wrote: Hi, Due to hardware problems, I set up a new server (RedHat) running TomCat for deploying my GWT apps. I

Re: Compiler exception occured. Not able to compile GWT application

2011-10-14 Thread Kevin Jordan
You'll need to put a SomeName.gwt.xml in some directory relative to the com.gwt classpath that has source path=demo / and then in your app's entrypoint module .gwt.xml file you add a line that says inherits name=com.gwt.SomeName/ where SomeName is the module you name where you're putting your

Re: Code Splitting / GWT.runAsync (Web mode vs. Hosted Mode)

2011-10-13 Thread Kevin Jordan
Yeah, in hosted mode it just goes directly into the onSuccess callback whereas in web mode it has to download the piece of javascript needed for that point and so that requires it to do it asynchronously which means anything else inside your function where you call runAsync will be executed while

Re: Server Side serial port access in GWT with RXTX

2011-10-12 Thread Kevin Jordan
Remove any appengine jars from your app since you won't be needing anything from that for this. And if you're using eclipse or something like that to build/run it, remove it from your project there too. On Oct 12, 8:53 pm, Steve Struebing steve.strueb...@gmail.com wrote: I've been looking

Re: fileupload does not work with files larger than around 15kb: ACCESS DENIED!

2011-10-12 Thread Kevin Jordan
Does whatever user you're running your web app in have write access to that directory? It could be for smaller files it's just loading those into memory directly instead of a temp file. On Oct 12, 2:14 pm, m...@grayout.de m...@grayout.de wrote: Hi all, I am currently working on an gwt

Re: CAS SSO

2011-10-02 Thread Kevin Jordan
Yes, I've worked CAS authentication into my GWT app. Mine ends up using Spring Security with its CAS modules, but it should work under the JA-SIG client too (which eventually even Spring Security ends up using I believe). What sorts of problems are you having? Except for what you code your

Re: GWT 2.4 Spring Integration Using RequestFactory

2011-09-14 Thread Kevin Jordan
From that, it sounds like you may have a 2.3.0 version of RequestFactory on there too if you are indeed trying to use 2.4.0. The line in question in the top of the stack trace makes no sense for the 2.4.0 source, but in the 2.3.0 source it does: Method contextMethod =

Re: GWT 2.4 Validation Tool not picking up @ExtraTypes on superclasses

2011-09-08 Thread Kevin Jordan
Doesn't appear much has changed on the RequestFactoryGenerator in the final release from RC1. I ended up having to do a copy of RequestFactoryGenerator and change AllReachableTypesVisitor to be: private static class AllReachableTypesVisitor extends RequestMethodTypesVisitor {

Re: GWT 2.4 Validation Tool not picking up @ExtraTypes on superclasses

2011-09-08 Thread Kevin Jordan
Also, after you put that in your copied RequestFactoryGenerator, you'll need to put: generate-with class=package where you put your copied generator.RequestFactoryGenerator when-type-assignable

Re: GWT 2.4 Validation Tool not picking up @ExtraTypes on superclasses

2011-09-08 Thread Kevin Jordan
Looking further, it would probably be best though if a fix for RequestFactoryModel was checked in that had a check against the type being examined and the type it gets for the proxy type in the @ExtraTypes array: private ListEntityProxyModel checkExtraTypes(JClassType type, boolean

Re: File download with GWT

2011-09-08 Thread Kevin Jordan
Yeah, use an anchor which will automatically launch it through the built-in function in the browser or you can use the open method in the GWT Window class to open a new window pointing to your servlet:

All EntityProxies inside ValueProxy inside Collection do not get properties populated?

2011-09-07 Thread Kevin Jordan
I have a ValueProxy which references an EntityProxy to add some data to return to the client, in this case a child count for the current branch in a tree structure. I want properties reference from the EntityProxy, but only one Entity seems to have the getter on my domain object called.

Re: Re-firing a failed/rejected server call in RequestFactory, is this possible?

2011-09-06 Thread Kevin Jordan
I'm running into this issue too. It seems when the server throws an exception it gets sent to the individual Request not the fail() method in the RequestContext. So reuse() is never called from it in the case of a server exception. I'm not sure why they designed it this way. A server

  1   2   3   >