Re: GWT 2.10.0 release

2022-09-16 Thread Mark B
Thank you. Greatly appreciate the update and all the work.

Cheers,
mark...

On Thursday, June 23, 2022 at 12:16:50 PM UTC-4 nilo...@gmail.com wrote:

> I'm very happy to announce the release of GWT 2.10.0. This is the first 
> release using our new groupId, org.gwtproject, and the final release using 
> com.google.gwt. If you resolve dependencies from Maven Central, please be 
> certain that your project is using com.google.gwt:gwt (or 
> org.gwtproject:gwt) as a BOM, so that you are certain to have consistent 
> versions of gwt-user and gwt-dev, even across groupIds.
>
> For this release, either groupId will work, but future releases will only 
> be made on the org.gwtproject groupId.
>
> The zip download of the GWT SDK is available at 
> https://github.com/gwtproject/gwt/releases/download/2.10.0/gwt-2.10.0.zip
>
> --
>
> Release notes for GWT 2.10.0, taken from 
> https://www.gwtproject.org/release-notes.html#Release_Notes_2_10_0
>
> Highlights 
>
>- 
>
>Updated to HtmlUnit 2.55.0 and Jetty 9.4.44. With this newer HtmlUnit 
>build comes support for Promise in unit tests, and the browser strings 
> that 
>can be specified when running tests are “FF”, “Chrome”, “IE” (for IE11), 
>“Edge”, and “Safari”.
>- 
>
>Tested support for running on Java 17, dropped remaining support for 
>running on Java 7.
>- 
>
>Maven groupId is formally changed to org.gwtproject, projects should 
>take care to make sure they are using either the old com.google.gwt:gwt 
>BOM or the new org.gwtproject:gwt BOM to sure that Maven or Gradle 
>correctly handle this change. This will be the last published version 
> using 
>the com.google.gwt groupId.
>- 
>
>Dropped support for IE 8, 9, and 10.
>
> Bug fixes 
>
>- Correct Long.hashCode semantics
>- Support CLASSPATH environment variable when creating child 
>processes, fixing a bug where Windows could fail with a long list of 
>arguments.
>- Use Function.name instead of displayName to support visible method 
>names in Chrome 93+.
>- Allow stack traces to be available in Chrome when loading scripts 
>from a remote origin.
>
> JRE Emulation 
>
>- Added OutputStreamWriter emulation.
>- Support StringReader mark() and reset() methods.
>- Added StrictMath emulation.
>- Added BufferedWriter emulation.
>- Added incomplete PrintStream emulation.
>- Add Charset.defaultCharset() emulation.
>- Improve BigInteger emulated performance.
>- System.nanoTime() emulation with performance.now().
>- Added Optional.isEmpty emulation.
>- JRE Emulation improvements/simplifications to facilitate J2CL’s WASM 
>support. Note that these do not always offer specific improvements to GWT 
>itself, but helps to keep the codebases consistent.
>
> Miscellaneous 
>
>- Add support to compile GWT itself in Java 9+.
>- Improve compiled code size for applications that never use streams, 
>by avoiding referencing streams from Throwable.
>
> For more detail, see the commit log 
> <https://github.com/gwtproject/gwt/compare/2.9.0...2.10.0>.
>

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/google-web-toolkit/8372d65a-8ce1-49f7-be92-dc85c7f450f2n%40googlegroups.com.


GWT 2.8.2 and IntelliJ IDEA

2020-03-16 Thread Mark Fekete
HI all,

I wonder if anyone is using Intellij and GWT 2.8.2. I 've literally found 
nothing about this topic.


My problem is that whenever i want to start and debug my application, it 
fails because the buildin Jetty-server runs with the wrong version 9.2 
instead of 9.4.

The solution is to use a run configuration with a dedicated Jetty server. 
This is possible  with the "Jetty Runner"-IntelliJ-Plugin which uses Jetty 
version 9.4. 
Unfortunately, when I run this configuration in the context of my GWT 2.8.2 
project, for some reasons the wrong jetty version is started: 9.2 which is 
located somewher in gwt-dev-xxx.jar

Any idea how to fix this? Or I'm forced to switch to Eclipse?

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/google-web-toolkit/f635c420-ea0d-4f3f-8346-f80809ba1a63%40googlegroups.com.


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 - 
https://github.com/GwtMaterialDesign/gwt-material-addins/releases/tag/gwt-material-addins-2.0

3. gwt-material-themes - 
https://github.com/GwtMaterialDesign/gwt-material-themes/releases/tag/gwt-material-themes-2.0

4. gwt-material-table - 
https://github.com/GwtMaterialDesign/gwt-material-table/releases/tag/2.0

5. gwt-material-jquery - 
https://github.com/GwtMaterialDesign/gwt-material-jquery/releases/tag/2.0

Thanks for all your contributions and support for this Open Source 
community.

Best Regards.
GMD Team

-- 
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 group, send email to google-web-toolkit@googlegroups.com.
Visit this group at https://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.


Re: Programmatically clicking hyperlink

2017-08-25 Thread Mark Ulrich
On Friday, August 17, 2007 at 2:26:51 PM UTC-5, BiggerBadderBen wrote:
> I just figured out an easier way to do what I want:
> 
> 
> 
> History.add("OtherPage");
> 
> History.forward();
> 
> Works like a charm!
> 
> Ben

Ben, I unsuccessfully tried a short Google Sheet script function with these two 
lines of code and no luck (ReferenceError: "History" is not defined.) Are there 
more lines of code in your code? Thanks.

-- 
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 group, send email to google-web-toolkit@googlegroups.com.
Visit this group at https://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.


Re: GWTReact Release and Roadmap

2017-04-30 Thread Mark Erikson
For what it's worth, as a Redux maintainer I can assure you that Redux is 
very stable and not going to meaningfully change (at least at the API 
level) from here on out :)

On Sunday, April 30, 2017 at 8:27:10 AM UTC-4, Paul Stockley wrote:
>
> I have just released a new version of the GWTReact 
>  projects to support GWT 2.8.1
>
> As of this release, I will no longer be maintaining the MobX and Redux 
> projects. Our company is not using them currently and I don't have the time 
> to keep them updated. In the future, we may update MobX if we start using 
> it in production. If you would like take over maintenance of either of 
> these projects please let me know.
>
> *Road Map*
>
> With the current release, I feel pretty good about the quality of the 
> projects. We are starting to use both gwt-interop-utils and gwt-react in 
> our production code with excellent results. However, I think to get to a 
> 1.0 release I need to make the following changes:
>
>
>1. Migrate gwt-interop-utils to use the new GWT base project
>2. Migrate gwt-react to use elemental 2
>
> I will start working on these objectives in a month or two. The main 
> determining factor on how quick this happens will be how fast elemental 2 
> matures.
>
>

-- 
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 group, send email to google-web-toolkit@googlegroups.com.
Visit this group at https://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.


Calling all GMD Testers

2017-03-04 Thread mark kevin ringor
We are about to release RC4. We need GMD testers to test the current
snapshot version before releasing RC4. Just submit any issues you encounter
and kindly add a brief description and what versions of dependencies you 
have.

Also below are the changelogs of the GMD.
https://github.com/GwtMaterialDesign/gwt-material/pull/520

And here is GMD Addins.
https://github.com/GwtMaterialDesign/gwt-material-addins/pull/169

For the Demo Snapshot
http://gwtmaterialdesign.github.io/gwt-material-demo/snapshot/

We created also Automated JUnit Test on each GMD projects.
If you like to submit a pull request to update each test, please don't
hesitate to submit one. 

Thanks in advance.



-- 
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 group, send email to google-web-toolkit@googlegroups.com.
Visit this group at https://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.


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 - 
https://github.com/GwtMaterialDesign/gwt-material/releases/tag/gwt-material-2.0-rc2

2. gwt-material-addins - 
https://github.com/GwtMaterialDesign/gwt-material-addins/releases/tag/gwt-material-addins-2.0-rc2

3. gwt-material-themes - 
https://github.com/GwtMaterialDesign/gwt-material-themes/releases/tag/gwt-material-themes-2.0-rc2

4. gwt-material-table - 
https://github.com/GwtMaterialDesign/gwt-material-table/releases/tag/1.0-rc2

5. gwt-material-jquery - 
https://github.com/GwtMaterialDesign/gwt-material-jquery/releases/tag/1.0-rc2

6. gwt-material-errai-archetype - 
https://github.com/GwtMaterialDesign/gwt-material-errai-archetype

-- 
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 group, send email to google-web-toolkit@googlegroups.com.
Visit this group at https://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.


gwt-material-archetype 1.0-SNAPSHOT is live

2016-09-06 Thread mark kevin ringor





GWT Material Errai Archetype 1.0-SNAPSHOT is now available.
Repo : https://github.com/GwtMaterialDesign/gwt-material-errai-archetype

Checkout the project 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

-- 
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 group, send email to google-web-toolkit@googlegroups.com.
Visit this group at https://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.


GWT Material Tutorial #3 - Style and Layout

2016-09-06 Thread mark kevin ringor





*https://www.youtube.com/watch?v=79owqV8PPhQ* 



GWT Material Tutorial #3 - Style and Layout

On this tutorial you will learn how to upgrade your gwt material version to 
1.6.0 and the main topic which will be Style and Layout.

You will learn how to use Colors, Grids, Helpers, Icons, Shadows and also 
Theming which we will use gwt-material-themes.


00:00 - Introduction

00:38 - Upgrading to 1.6.0

01:48 - Colors

04:48 - Grid - Intro

07:55 - Grid - Offset

09:38 - Helpers - Intro

11:01 - Helpers - Float

12:20 - Helpers - Hoverable

12:54 - Helpers - hideOn and showOn

14:28 - Helpers - Truncate

15:23 - IconType

18:36 - Icon Repository

19:24 - Shadows

20:42 - Themes - Intro

24:05 - Themes - Changing Themes


Resources:

Colors - http://gwtmaterialdesign.github.io/gw... 

Grid - http://gwtmaterialdesign.github.io/gw...

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,

Kevin

-- 
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 group, send email to google-web-toolkit@googlegroups.com.
Visit this group at https://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.


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  
release notes:
https://github.com/GwtMaterialDesign/gwt-material-addins/releases/tag/gwt-material-addins-1.6.0

#gwt-material-themes  
release notes:
https://github.com/GwtMaterialDesign/gwt-material-themes/releases/tag/gwt-material-themes-1.6.0

#Central  Repository
http://search.maven.org/#search%7Cga%7C1%7Cgwt-material

#1.6.0 Demo showcase
http://gwtmaterialdesign.github.io/gwt-material-demo/



-- 
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 group, send email to google-web-toolkit@googlegroups.com.
Visit this group at https://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.


Re: GWT Material - Video tutorial #1

2016-08-04 Thread mark kevin ringor
You can try to search on GWTP how to replace that # token. 

On Tuesday, August 2, 2016 at 11:07:32 PM UTC+8, Gaurav VARSHNEY wrote:
>
> please suggestion 
>>
> GWT Build Project   Remove # Token .. 
>
> ex :
>
> http://abc.com/#kkk
>
> replace 
>
> http://abc.com/kkk
>
>>  
>>
>

-- 
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 group, send email to google-web-toolkit@googlegroups.com.
Visit this group at https://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.


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 when 2.0 is 
released). All of the features mentioned in my original post have been 
implemented, so check it out for yourself now!

The sample project demonstrates how to use the table showing majority of 
its features. There is also a demo you can look at sampling the 
gwt-material-table-sample 
project. 
InfiniteTable & StandardTable

The data table is based on GWT 2.8.0-SNAPSHOT using java 8 (yay lamdas!).

*It will be great to receive feedback from the community*! Hopefully it 
will improve things for the GMD developers, giving you all a complex data 
table for modern web application development.

You can also note that we are now utilizing JSInterop, giving us direct 
access to the JQuery javascript library (see GWT Material JQuery 
). This is a step 
in the right direction for GMD as a whole and will allow us to do some 
really neat things in the very near future!

 *- Ben Dol*
 *Creator of GMD DataTable*

You can find the demo from the link below!
https://github.com/GwtMaterialDesign/gwt-material-table-sample

-- 
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 group, send email to google-web-toolkit@googlegroups.com.
Visit this group at https://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.


Re: GWT RPC in GWT 3.0+

2016-07-07 Thread Mark Erikson
I built an app using GWT and GWT-RPC in 2011-2012, but am currently working 
on a clean-slate rewrite of the client using modern JS (ES6, React, 
Webpack, etc).  I've opted to leave the existing client codebase entirely 
as-is, and have exposed my existing backend APIs over JSON-RPC as well.  
This is allowing me to make some pretty good progress on the new client 
without having to make significant changes to the backend or the existing 
client.  It's also very nice to finally be able to examine my network calls 
in a browser debugger, and since JSON-RPC is language-independent, would 
also make it feasible to call those APIs in other contexts if I ever wanted 
to.

On Thursday, July 7, 2016 at 2:17:12 PM UTC-4, Gilberto wrote:
>
> When I first used GWT, I started using GWT RPC as the main communication 
> channel with the server. Years later, when I first needed a native mobile 
> application, and when I needed to expose API endpoints to partners to 
> integrate data with my services, I realized I should have gone RESTful from 
> day 1 - migrating from GWT RPC to a RESTful architecture was painful and 
> slow.
>
> GWT RPC is easy to implement and close to other Java communication 
> technologies (like RMI), but in my experience can create several problems 
> in the long term.
>
> Having said that, I'm always ok with options. GWT won't support GWT RPC in 
> the future, but nothing stops anyone from porting the current GWT RPC 
> mechanism to GWT 3. Of course several stuff would need to change (because 
> of the generators), but I'd imagine it's totally doable.
>

-- 
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 group, send email to google-web-toolkit@googlegroups.com.
Visit this group at https://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.


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 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 group, send email to google-web-toolkit@googlegroups.com.
Visit this group at https://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.


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 use is the MaterialSearch.  It's well 
> designed and works as expected. However, the behavior of this is 
> inconsistent across browsers. This may be a known issue but I'm sharing it 
> here for the benefit of others. If anyone has found a work around please 
> let me know. You may verify my findings at the demo site 
> .
>
> Works in
>
> Opera Version 36.0 on Windows 10.x
>
> Safari Version 9.1.x on Mac 
>
> Chrome Version 49.0.2623.112 on Mac but Version 50.x failed 
>
>  
>
>  
>
>
> 
>  
> Works but not as expected in -
>
> Chrome Version 51.0.2704.29 beta-m (64-bit) on Windows 10.x
>
> Chrome Version 50.0.x on Mac failed (Ha... why did I update?)
>
> Haven't tried 32 bit version of Chrome yet 
>
>
> 
>
> MS Edge Version 25.10... on Windows 10 (results list is shown even before 
> start searching)
>
>
> 
>  
>  
>
> Firefox Version 24 (yes, I have this version to debug GWT apps in classic 
> mode, occassionally) on Windows 10.x
>
>
> 
>  
>
> Does not appear in (actually the search icon momentarily appears and 
> disappears) --
>
> Firefox Version 44.0.2 & 46 on Mac
>
> Firefox Version 46 on Windows 10
>
>
> 
>  
> Have a great rest of the weekend!
> Thanks
> Sam Velu
>
>  
>
>  
>

-- 
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 group, send email to google-web-toolkit@googlegroups.com.
Visit this group at https://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.


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 in the GWT project, which is a problem as I have GWT projects to 
> support and further develop, as part of what I hope will be a globally used 
> and long-lived system.  Confidence in software requires the presence of 
> established releases, NOT betas, which put off investors.
>
> Is there anything that can be done to assist with progress?  Is there a 
> problem with lack of interest in GWT from, say, Google?  Does GWT 2.8 
> involve too many features when compared to 2.7? Is there a lack of 
> developers working on GWT?  Are more testers needed?  
>
> Regards
>
> Steve Zara
>
>

-- 
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 group, send email to google-web-toolkit@googlegroups.com.
Visit this group at https://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.


Re: Eclipse EE Servers

2016-05-25 Thread Mark Mark
Does the solution allows to "add gwt project's *.war to EAR" as a part of 
j2ee app including using jndi etc?

On Friday, April 17, 2009 at 11:20:18 AM UTC-5, Jamie wrote:
>
> Got the new GWT 1.6, and the Eclipse plugin.  Awesome.  I like the new 
> deployment layout. 
>
> One thing that I think is missing, however, is integration with the 
> WST tools. 
>
> So, here is a short instruction list on how to enable it: 
>
> 1. Create your new GWT project using the Eclipse plugin 
> 2. Open up the '.project' file 
> 3. insert the following natures into your .project file (inside the 
> natures node): 
> 
> org.eclipse.wst.common.modulecore.ModuleCoreNature 
>
> 
> org.eclipse.wst.common.project.facet.core.nature 
>
> org.eclipse.wst.jsdt.core.jsNature 
> 4. Save the .project file 
> 5. close the project and reopen the project (or restart eclipse) 
> 6. right-click the project and select Project Facets 
> 7. Check  'Java' and 'Dynamic Web Project' 
> 8. Click 'further configuration available' and change the Content 
> Directory to 'war', to align with GWT's output 
>
> That's it. 
> What does that give you? 
>
> - Now, you can go to the Java EE "Servers" view, configure a server, 
> and deploy your project to that server from within eclipse.  Tomcat, 
> JBoss, WebSphere, etc 
>
> - You can right-click on the project, and select 'Project Facets', and 
> add new facets like "Java Persistence", and configure persistence 
> using the Eclipse GUI stuff. 
>
> - Changes to server code are deployed immediately (well, okay, after a 
> short delay) 
>
> - You can, of course, debug the server code within eclipse.  Not quite 
> as good as hosted mode, but almost. 
>
> I still have a small problem where I have to refresh the 'war' folder 
> after clicking the GWT Compile button, but I've gotten used to it! 
>
> Thanks to the GWT developers!!! 
>
> Jamie.

-- 
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 group, send email to google-web-toolkit@googlegroups.com.
Visit this group at https://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.


parser doesn't read local code gen-ed in constructor

2016-02-12 Thread Mark Mark
Hi

I just tried eclipse indigo 3.7 and gwt plugin; The thing is it works 
pretty fine except the designer mode cause sometimes it hangs; As I could 
get it, the code editor doesn't have generated  annotations even working 
with gwt designer; Same windows eclipse indigo gwt designer, as I can 
remember, generates annotations especially above class constructor... Seems 
like parser doesn't read code if it is generated in constructor but if it 
generated in class body only - I tested; 
The thing is because all fields should be declared in class body makes hard 
to develope the mvc dedicated projects which is quite annoying :(

To be more clear I'll demo what code generation type doesn't freeze gwt 
designer and what does; Here it is...

*Code A - Code generation type which freezes gwt designer :*
import com.google.gwt.user.client.ui.Composite;
import com.google.gwt.user.client.ui.FlowPanel;
import com.google.gwt.user.client.ui.Label;

public class GwtDesignerFreezer0 extends Composite {

public GwtDesignerFreezer0() {

FlowPanel flowPanel = new FlowPanel();
initWidget(flowPanel);

Label lblNewLabel = new Label("New label");
flowPanel.add(lblNewLabel);
}

}

*Code B -  And here is the code generated type which doesn't freeze gwt 
designer : *
import com.google.gwt.user.client.ui.Composite;
import com.google.gwt.user.client.ui.FlowPanel;
import com.google.gwt.user.client.ui.Label;
import com.google.gwt.user.client.ui.Button;

public class MyComposite0 extends Composite {
private FlowPanel flowPanel;

public MyComposite0() {
jbInit();
}
private void jbInit() {

flowPanel = new FlowPanel();
initWidget(flowPanel);
}

}

As you can see, linux version of eclipse indigo doesn't generated 
annotations even working with gwt designer; Still code B is quite 
overloaded I guess if to imagine all fields declarations will be placed in 
class body :(


So my question is... is there a way to make parser refresh ui successfully 
each widget adding in code A generation way cause now if to use code A 
style the *palette*, *properties*,*structure* and *all the rest eclispe gui* 
become freezed each new widged added :P


p.s. if you need some additional information please let me know


Thanks

  
*tech spec-s* *:*
- Google Plugin for Eclipse 3.73.6.0.v201406262229-rel-r37
com.google.gdt.eclipse.suite.e37.feature.feature.groupGoogle, Inc.
- GWT Designer3.1.2.r37x201307151456
com.google.gdt.eclipse.designer.feature.feature.groupGoogle, Inc.
- GWT Designer Core3.1.2.r37x201307151442
com.google.gdt.eclipse.designer.hosted.feature.feature.groupGoogle, Inc.
- GWT Designer Editor3.1.2.r37x201307151447
com.google.gdt.eclipse.designer.editor.feature.feature.groupGoogle, Inc.
- GWT sdk 2.2 
- eclipse indigo 3.7 for linux x64
- linux x64

-- 
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 group, send email to google-web-toolkit@googlegroups.com.
Visit this group at https://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.


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
>
> -- J.
>
> --
> You received this message because you are subscribed to a topic in the
> Google Groups "GWT Users" group.
> To unsubscribe from this topic, visit
> https://groups.google.com/d/topic/google-web-toolkit/SLNo6XKfNS4/unsubscribe
> .
> To unsubscribe from this group and all its topics, send an email to
> google-web-toolkit+unsubscr...@googlegroups.com.
> To post to this group, send email to google-web-toolkit@googlegroups.com.
> Visit this group at http://groups.google.com/group/google-web-toolkit.
> For more options, visit https://groups.google.com/d/optout.
>

-- 
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 group, send email to google-web-toolkit@googlegroups.com.
Visit this group at http://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.


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 working project or article. It would be nice if the 
> gwtproject.org site will contain any tutorial / article too.
>
> E.g. I found some google group entries about JSInterop and this project:
> https://github.com/csrinaldi/samples-of-gwt/tree/master/gwt-playground
> But the maven does not work any more and the google group entries don't 
> describe a how-to.
>
>

-- 
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 group, send email to google-web-toolkit@googlegroups.com.
Visit this group at http://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.


Re: GWT 2.7 with Designer

2015-09-23 Thread Mark Wengranowski
I tried using your prebuilt SDK but got the following error:
java.lang.NoSuchMethodError: 
com.google.gwt.dev.shell.ShellModuleSpaceHost.invalidateRebind(Ljava/lang/String;)V
 
Is there a way to fix this?
 

On Wednesday, May 13, 2015 at 12:52:15 PM UTC-7, Atxhtx Atxhtx wrote:

> https://github.com/bently0602/GWT-2.7
>
> Here's some patches to support using the eclipse designer with GWT 2.7. It 
> is very hackish so it may not work in every use case or some random bugs 
> may come up. If you want to grab the SDK pre-built see the file 
> gwt-0.0.0.zip from the link.
>

-- 
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 group, send email to google-web-toolkit@googlegroups.com.
Visit this group at http://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.


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 errors:
>
> Over Quota This application is temporarily over its serving quota. Please 
>> try again later.
>>
>
>

-- 
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...@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at http://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.


GWT Material 1.3.2 Update UI / UX

2015-06-23 Thread mark kevin ringor
 











Hi We are excited to announce the GWT Material 1.3.2 Maven / Github update.


*A Google Material Design wrapper for GWT *
http://www.gwt-material.appspot.com
Version 1.3.2 
   
   - GWT Material Themes 
   - Shadow DOM on Material Panels, Columns, Rows 
   
   - Helpers (Alignment, Hiding Content, Formatting esp. Text Truncation) 
   
   - Tables (Bordered Table, Striped Table, Hoverable Table, Centered 
   Table, Responsive Table) 
   - Updated the Getting Started Page of showcase site to add Starter 
   Template Sample (UI Binder Code) Demo(Google Inbox App) 
   
   - Material Window Dialog 
   - Material Icons 
   - Sidebar supports Collapsible Submenus and multi declaration on any 
   interface
   - Scroll Spy  
   
   - Material Badge Update 




 





-- 
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...@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at http://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.


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
   - Apache License 2.0 Information Added
   - Donate Button added to support the development of GWT Material

Best Regards,
kevzlou7979

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 for GWT?
> http://www.google.com/design/spec/material-design/introduction.html
>
> Philip
>
>

-- 
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...@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at http://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.


Re: GWT 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
   - 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 with 
> the help MaterializeCSS (http://materializecss.com/). We
> are doing our best to integrate the Features to be able to integrate 
> inside GWT Applications. 
>
> Anyone interested are well appreciated to join us.
> We 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-web-toolkit+unsubscr...@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at http://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.


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 emails from it, send an email 
to google-web-toolkit+unsubscr...@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at http://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.


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  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 on Phonegap, Good
>> news to everyone the deployment process was a big success on Android Build
>> with Phonegap. Take a look at our side http://gwt-material.appspot.com .
>> See you there We have setup also gitter chat for collaboration.
>>
>> Note you 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 a topic in the
> Google Groups "Google Web Toolkit" group.
> To unsubscribe from this topic, visit
> https://groups.google.com/d/topic/google-web-toolkit/DFGQtH2OTDs/unsubscribe
> .
> To unsubscribe from this group and all its topics, send an email to
> google-web-toolkit+unsubscr...@googlegroups.com.
> To post to this group, send email to google-web-toolkit@googlegroups.com.
> Visit this group at http://groups.google.com/group/google-web-toolkit.
> For more options, visit https://groups.google.com/d/optout.
>

-- 
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...@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at http://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.


GWT Material Design

2015-03-25 Thread mark kevin ringor
Hi today we updated the GwT Material to be integrated on Phonegap, Good news to 
everyone the deployment process was a big success on Android Build with 
Phonegap. Take a look at our side http://gwt-material.appspot.com . See you 
there We have setup also gitter chat for collaboration.

Note you 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 
to google-web-toolkit+unsubscr...@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at http://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.


GWT and Material Design

2015-03-25 Thread mark kevin ringor
Hi today we updated the GwT Material to be integrated on Phonegap, Good news to 
everyone the deployment process was a big success on Android Build with 
Phonegap. Take a look at our side http://gwt-material.appspot.com . See you 
there We have setup also gitter chat for collaboration.

Note you 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 
to google-web-toolkit+unsubscr...@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at http://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.


GWT Material Design

2015-03-25 Thread mark kevin ringor
i today we updated the GwT Material to be integrated on Phonegap, Good new to 
everybody the deployment process was a big success on Android Build with 
Phonegap. Take a look at our side http://gwt-material.appspot.com . See you 
there We have setup also gitter chat for collaboration.

Note you 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...@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at http://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.


Re: GWT and Material Design

2015-03-25 Thread mark kevin ringor
Hi today we updated the GwT Material to be integrated on Phonegap, Good new to 
everybody the deployment process was a big success on Android Build with 
Phonegap. Take a look at our side http://gwt-material.appspot.com . See you 
there We have setup also gitter chat for collaboration.

Note you 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...@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at http://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.


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 emails from it, send an email 
to google-web-toolkit+unsubscr...@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at http://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.


Re: GWT Material Design

2015-03-12 Thread mark kevin ringor
Hi to all,

Just have a time to migrate the source code to GitHub today as many of you 
wants it to be in GitHub.

Here's the link: 
*https://github.com/kevzlou7979/GwtMaterial 
<https://github.com/kevzlou7979/GwtMaterial>*

*Version 15.3.13 Features:*
*1. Collabsible and Accordion*
*2. Dropdown Menu*
*3. Footer*
*4. Tabs*
*5. Collections (Dismissable and Avatar)*

*Next Steps:*
I'am planning to use this *Material Design UI / UX *on* gwt-phonegap *(
https://github.com/dankurka/gwtphonegap) 
to implement to cross platform mobile devices (Android , IOS, Windows 
etc.). If you are interested 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. 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:
>>
>> Hi to all,
>>
>> We are a team of GWT Developers to implement the GWT Material Design with 
>> the help MaterializeCSS (http://materializecss.com/). We
>> are doing our best to integrate the Features to be able to integrate 
>> inside GWT Applications. 
>>
>> Anyone interested are well appreciated to join us.
>> We 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-web-toolkit+unsubscr...@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at http://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.


Re: GWT and Material Design

2015-03-12 Thread mark kevin ringor
Hi to all,

Just have a time to migrate the source code to GitHub today as many of you 
wants it to be in GitHub.

Here's the link: 
*https://github.com/kevzlou7979/GwtMaterial*

*Version 15.3.13 Features:*
*1. Collabsible and Accordion*
*2. Dropdown Menu*
*3. Footer*
*4. Tabs*
*5. Collections (Dismissable and Avatar)*

*Next Steps:*
I'am planning to use this *Material Design UI / UX *on* gwt-phonegap *
(https://github.com/dankurka/gwtphonegap) 
to implement to cross platform mobile devices (Android , IOS, Windows 
etc.). If you are interested on joining the project don't hesitate 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 :)
>>
>> 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  
>> wrote:
>>
>>> 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  wrote:
>>>
>>>> Nice! Do you have the current code / a starting project available as 
>>>> open source? I would love to use this.
>>>>
>>>>
>>>> On Saturday, February 7, 2015 at 12:59:07 AM UTC-5, mark kevin ringor 
>>>> wrote:
>>>>>
>>>>> 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 for GWT?
>>>>>> http://www.google.com/design/spec/material-design/introduction.html
>>>>>>
>>>>>> Philip
>>>>>>
>>>>>>  -- 
>>>> You received this message because you are subscribed to a topic in the 
>>>> Google Groups "Google Web Toolkit" group.
>>>> To unsubscribe from this topic, visit 
>>>> https://groups.google.com/d/topic/google-web-toolkit/bn57tSMkH7E/unsubscribe
>>>> .
>>>> To unsubscribe from this group and all its topics, send an email to 
>>>> google-web-toolkit+unsubscr...@googlegroups.com.
>>>> To post to this group, send email to google-we...@googlegroups.com.
>>>> Visit this group at http://groups.google.com/group/google-web-toolkit.
>>>> For more options, visit https://groups.google.com/d/optout.
>>>>
>>>
>>>
>>

-- 
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...@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at http://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.


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:
>
> Hi to all,
>
> We are a team of GWT Developers to implement the GWT Material Design with 
> the help MaterializeCSS (http://materializecss.com/). We
> are doing our best to integrate the Features to be able to integrate 
> inside GWT Applications. 
>
> Anyone interested are well appreciated to join us.
> We 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-web-toolkit+unsubscr...@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at http://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.


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 there,
>
> Has anyone tried to make a Material Design for GWT?
> http://www.google.com/design/spec/material-design/introduction.html
>
> Philip
>
>

-- 
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...@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at http://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.


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 
wrote:

> 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  wrote:
>
>> Nice! Do you have the current code / a starting project available as open
>> source? I would love to use this.
>>
>>
>> On Saturday, February 7, 2015 at 12:59:07 AM UTC-5, mark kevin ringor
>> wrote:
>>>
>>> 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 for GWT?
>>>> http://www.google.com/design/spec/material-design/introduction.html
>>>>
>>>> Philip
>>>>
>>>>  --
>> You received this message because you are subscribed to a topic in the
>> Google Groups "Google Web Toolkit" group.
>> To unsubscribe from this topic, visit
>> https://groups.google.com/d/topic/google-web-toolkit/bn57tSMkH7E/unsubscribe
>> .
>> To unsubscribe from this group and all its topics, send an email to
>> google-web-toolkit+unsubscr...@googlegroups.com.
>> To post to this group, send email to google-web-toolkit@googlegroups.com.
>> Visit this group at http://groups.google.com/group/google-web-toolkit.
>> For more options, visit https://groups.google.com/d/optout.
>>
>
>

-- 
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...@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at http://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.


Re: GWT Material Design

2015-02-10 Thread mark kevin ringor
Hi to all,

We updated the Documentation Website hosted @ 
http://www.gwt-material.appspot.com with steps
on how to implement Material Design GWT. 

The source code is available here you can check it out:
https://code.google.com/p/gwt-material/source/checkout

Waiting for your responses guys 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/). We
> are doing our best to integrate the Features to be able to integrate 
> inside GWT Applications. 
>
> Anyone interested are well appreciated to join us.
> We 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-web-toolkit+unsubscr...@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at http://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.


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  wrote:

> Nice! Do you have the current code / a starting project available as open
> source? I would love to use this.
>
>
> On Saturday, February 7, 2015 at 12:59:07 AM UTC-5, mark kevin ringor
> wrote:
>>
>> 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 for GWT?
>>> http://www.google.com/design/spec/material-design/introduction.html
>>>
>>> Philip
>>>
>>>  --
> You received this message because you are subscribed to a topic in the
> Google Groups "Google Web Toolkit" group.
> To unsubscribe from this topic, visit
> https://groups.google.com/d/topic/google-web-toolkit/bn57tSMkH7E/unsubscribe
> .
> To unsubscribe from this group and all its topics, send an email to
> google-web-toolkit+unsubscr...@googlegroups.com.
> To post to this group, send email to google-web-toolkit@googlegroups.com.
> Visit this group at http://groups.google.com/group/google-web-toolkit.
> For more options, visit https://groups.google.com/d/optout.
>

-- 
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...@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at http://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.


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 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...@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at http://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.


Re: How to create a JavascriptObject object?

2015-02-09 Thread Mark Erikson
Cool, glad that was an easy fix.

Yeah, this is a good approach.  See https://github.com/richkadel/cesium-gwt 
for a larger-scale use of this technique for wrapping the Cesium.js 3D 
globe library.

On Monday, February 9, 2015 at 5:30:45 PM UTC-5, rjcarr wrote:
>
> Ha, not a stupid question at all ... it seems that was the problem! 
>  Thanks so much, good thing I copied and pasted the code into the question!
>
> But more generally, is this what I should be doing?  Or should I use a 
> different approach for what I'm trying to do?  
>
> Thanks again!
>

-- 
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...@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at http://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.


Re: How to create a JavascriptObject object?

2015-02-09 Thread Mark Erikson

Really stupid question: do you have a typo'd 'r' after the open curly?  
It's there in your pasted code snippet, and with JS's automatic semicolon 
insertion, I'm pretty sure it would try to use it as if you'd written 
"r;".  

Also, yes, I think you'd want to use "$wnd.ActualJSObjectName".


On Monday, February 9, 2015 at 4:53:39 PM UTC-5, rjcarr wrote:
>
> To create the overlay type I also tried this:
>
> return new $wnd.Timeline(canvas); 
>
> But it didn't seem to make a difference.
>
> Maybe I'm not using the right functionality here?  I'd basically like to 
> create an object in pure javascript but overlay it with java to have it 
> available to other classes that don't need to know whether it's written in 
> java or javascript.
>
> Thanks!
>

-- 
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...@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at http://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.


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 for GWT?
> http://www.google.com/design/spec/material-design/introduction.html
>
> Philip
>
>

-- 
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...@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at http://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.


GWT Material Design

2015-02-06 Thread mark kevin ringor
Hi to all,

We are a team of GWT Developers to implement the GWT Material Design with 
the help MaterializeCSS (http://materializecss.com/). We
are doing our best to integrate the Features to be able to integrate inside 
GWT Applications. 

Anyone interested are well appreciated to join us.
We 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-web-toolkit+unsubscr...@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at http://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.


Re: WARNING: Could not open/create prefs root node Software\JavaSoft\Prefs at root 0x80000002. Windows RegCreateKeyEx(...) returned error code 5.

2014-06-09 Thread Mark Vlcek
Thanks everyone, just encountered this same problem and this solved my 
issue as well!

On Saturday, June 15, 2013 1:01:22 PM UTC-7, John V Denley wrote:
>
> Just had the same problem myself, and found that to fix it I had to do 
> what you suggested, but I also had to manually create a "Prefs" key under 
> JavaSoft too, as mentioned here:
> http://www-01.ibm.com/support/docview.wss?uid=swg21496098
>
> On Friday, 14 June 2013 02:02:26 UTC+1, QingFeng Du wrote:
>>
>> well well, 4 years later, I came across the same problem.
>> here's my solution:
>> open regedit.exe ( really hate Microsoft and their regedit.reg).
>> change the permission of key: 
>> HKEY_LOCAL_MACHINE\SOFTWARE\JavaSoft.Right click the icon, then change 
>> the permission to full operation.
>>
>> On Saturday, June 27, 2009 3:03:20 PM UTC-4, Farinha wrote:
>>>
>>> The subject has it all. 
>>>
>>> Eclipse 3.4.2 
>>> GWT Eclipse Plugin 
>>> Windows 7 
>>>
>>> Thanks in advance for the help. 
>>>
>>

-- 
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...@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at http://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.


Issue with inheriting external libraries and superdevmode

2014-05-07 Thread Mark Wang
Hey guys, I can use GWT with external libraries, and I can use 
superdevmode, but I seem to have an issue when I try to do both at the same 
time. I'm using this library for oauth2 login 
http://code.google.com/p/gwt-oauth2/ and in my Project.gwt.xml I have 
 and I have the .jar in 
my WEB-INF/libs. 

Everything works fine in production, but when I try to launch superdevmode, 
I get [ERROR] Unable to find 'com/google/api/gwt/oauth2/OAuth2.gwt.xml' on 
your classpath. If I don't include that, superdevmode works fine. My 
Program arguments for my run configuration is "-src src\ -workDir 
"C:\My-Directory" -port 1234 com.package.Class" Any ideas on what to do? 
Thanks!

-- 
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...@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at http://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.


Re: GWT and SVG, the 125th... :-)

2014-02-25 Thread mark . erikson
There's two general approaches:

1) Write large JSNI methods that do all the interaction in Javascript
2) Use GWT's JavaScriptObject, subclass the library's objects, and write 
small JSNI methods that wrap individual methods of the JS object.

There's supposed to be better JS interop coming in GWT 3.0, but that's a 
ways off.

There's a number of GWT/JS wrappers out there that you could use as 
examples (Google Maps and Google Earth come to mind).

On Tuesday, February 25, 2014 11:45:10 AM UTC-5, Magnus wrote:
>
> Yes, it's cool! :-)
>
> But what about my question? :-)
>
> How to embed JS within GWT?
>
> Thanks
> Magnus
>

-- 
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...@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at http://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/groups/opt_out.


Re: Introduce SmartGWT for collapse/expand panel for with existing project

2014-02-17 Thread mark . erikson
Some thoughts on using SmartGWT:

* The SmartGWT developers are VERY insistent that you should develop your 
application using their APIs and structure, as otherwise you are "wasting 
time" and "duplicating effort" they've already put in.  To be fair, they do 
have a bit of a point in that they have designed things to work a certain 
way, and put a lot of time into that structure.
* That said, SmartGWT has enough flexibility that you can somewhat pick and 
choose how you use it, including just using the UI aspects.  For example, 
there's a post in the SmartGWT forum that offers up a subclass of the 
DataSource feature that uses GWT-RPC for communication instead of 
SmartGWT's normal protocol.  I've got an application that uses SmartGWT for 
the client UI, GWT-RPC for communication with the server, and Play 1.2 
(with the Play-GWT module) as the backend, rather than servlets and stuff.
* SmartGWT does add a pretty significant bump to your compiled JS size, at 
least 500K or so.

Overall, I'd say if you have a number of UI pieces you need to use, 
SmartGWT's an option, but probably overkill if you just need one new widget.

On Sunday, February 16, 2014 6:43:09 PM UTC-5, new_newbie wrote:
>
> Hi
>
> I need a collapse/expand panel, and SmartGWT is providing an 
> out-of-the-box solution. However, the installation has to remove all the 
> rpc configuration that I have created for long time.
>
> *Adding Smart GWT Pro/Power/EE to an existing project*
> *Important:* If you have created a project using the GWT Plugin for 
> Eclipse or a similar tool, first get rid of unused resources typically 
> included in such "starter projects":
>
>- from your *moduleName*.gwt.xml file, remove imports of any GWT 
>themes, leaving only the import of com.google.gwt.user.User. The 
>proper imports to add for Smart GWT Pro/Power/EE are shown below.
>- get rid of any sample servlets or GWT-RPC services (delete both 
>web.xml entries and server-side source)
>
> I need a package that offers more GUI components and compatible with my 
> existing gwt project.
> Any recommendation?
> Is GWT-Ext a good choice?
>
> Thanks
>

-- 
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...@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at http://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/groups/opt_out.


Re: GWT 2.6.0-rc1 error compiling

2013-11-08 Thread Mark Donszelmann
Hi

yes, that seems to work

Thanks
Mark
On Nov 8, 2013, at 1:14 PM, Cristiano Costantini 
 wrote:

> try using the following config for gwt-maven-plugin to specify using also 
> gwt's rc1 dependencies:
> 
> 
>   org.codehaus.mojo
>   gwt-maven-plugin
>   ${gwt.plugin.version}
>   
>   
>   
>   compile
>   
>   
>   
>   
>   ...
>   
>   
>   
>   com.google.gwt
>   gwt-dev
>   ${gwt.version}
>   
>   
>   com.google.gwt
>   gwt-codeserver
>   ${gwt.version}
>   
>   
>   com.google.gwt
>   gwt-user
>   ${gwt.version}
>   
>   
> 
> 
> 
> when gwt-maven-plugin 2.6.0 will be released it will be linked to GWT 2.6.0 
> and you will not need to override version of dependencies.
> 
> 
> 2013/11/8 Mark Donszelmann 
> Hi
> 
> I have no direct dependency on gwt-dev, but the 2.5.1 maven get plugin refers 
> to gwt-dev (and user and servlet) 2.5.1. 
> 
> Would that create the problem ?
> 
> Is there a newer (published) version of this plugin ?
> 
> Regards
> Mark
> 
> On Nov 8, 2013, at 11:59 AM, Thomas Broyer  wrote:
> 
>> Are you sure you're using gwt-dev from 2.6.0-rc1 too?
>> 
>> On Thursday, November 7, 2013 11:29:57 PM UTC+1, Patrick Tucker wrote:
>> I just switched one of my maven projects to use the new RC and am getting 
>> the following error on compile:
>> 
>> [INFO]Loading inherited module 'com.google.gwt.user.User'
>> [INFO]   Loading inherited module 'com.google.gwt.animation.Animation'
>> [INFO]  [ERROR] Element 'module' beginning on line 19 contains 
>> unexpected attribute 'type'
>>  
>> Any idea what would cause this?  I tried a clean and what not with no luck.
>>  
>> Thanks,
>> Pat
>> 
>> -- 
>> 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...@googlegroups.com.
>> To post to this group, send email to google-web-toolkit@googlegroups.com.
>> Visit this group at http://groups.google.com/group/google-web-toolkit.
>> For more options, visit https://groups.google.com/groups/opt_out.
> 
> 
> -- 
> 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...@googlegroups.com.
> To post to this group, send email to google-web-toolkit@googlegroups.com.
> Visit this group at http://groups.google.com/group/google-web-toolkit.
> For more options, visit https://groups.google.com/groups/opt_out.
> 
> 
> -- 
> 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...@googlegroups.com.
> To post to this group, send email to google-web-toolkit@googlegroups.com.
> Visit this group at http://groups.google.com/group/google-web-toolkit.
> For more options, visit https://groups.google.com/groups/opt_out.

-- 
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...@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at http://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/groups/opt_out.


Re: GWT 2.6.0-rc1 error compiling

2013-11-08 Thread Mark Donszelmann
Hi

I have no direct dependency on gwt-dev, but the 2.5.1 maven get plugin refers 
to gwt-dev (and user and servlet) 2.5.1. 

Would that create the problem ?

Is there a newer (published) version of this plugin ?

Regards
Mark

On Nov 8, 2013, at 11:59 AM, Thomas Broyer  wrote:

> Are you sure you're using gwt-dev from 2.6.0-rc1 too?
> 
> On Thursday, November 7, 2013 11:29:57 PM UTC+1, Patrick Tucker wrote:
> I just switched one of my maven projects to use the new RC and am getting the 
> following error on compile:
> 
> [INFO]Loading inherited module 'com.google.gwt.user.User'
> [INFO]   Loading inherited module 'com.google.gwt.animation.Animation'
> [INFO]  [ERROR] Element 'module' beginning on line 19 contains 
> unexpected attribute 'type'
>  
> Any idea what would cause this?  I tried a clean and what not with no luck.
>  
> Thanks,
> Pat
> 
> -- 
> 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...@googlegroups.com.
> To post to this group, send email to google-web-toolkit@googlegroups.com.
> Visit this group at http://groups.google.com/group/google-web-toolkit.
> For more options, visit https://groups.google.com/groups/opt_out.

-- 
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...@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at http://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/groups/opt_out.


Re: GWT 2.6.0-rc1 error compiling

2013-11-07 Thread Mark Donszelmann
Hi

I see the same problem

Regards
Mark
On Nov 7, 2013, at 11:29 PM, Patrick Tucker  wrote:

> I just switched one of my maven projects to use the new RC and am getting the 
> following error on compile:
> 
> [INFO]Loading inherited module 'com.google.gwt.user.User'
> [INFO]   Loading inherited module 'com.google.gwt.animation.Animation'
> [INFO]  [ERROR] Element 'module' beginning on line 19 contains 
> unexpected attribute 'type'
>  
> Any idea what would cause this?  I tried a clean and what not with no luck.
>  
> Thanks,
> Pat
> 
> -- 
> 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...@googlegroups.com.
> To post to this group, send email to google-web-toolkit@googlegroups.com.
> Visit this group at http://groups.google.com/group/google-web-toolkit.
> For more options, visit https://groups.google.com/groups/opt_out.

-- 
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...@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at http://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/groups/opt_out.


Re: On extension strategies for GWT applications

2013-10-25 Thread Mark Proctor
It seems like this is a common request. I wonder if there is anything the GWT 
team can put into the roadmap, that would allow for the compilation of a core 
application. Then the later compilation, aka “linking”, of other gwt code - 
where the user annotates things not to be pruned, so they can be linked against 
later. This way we can write modular applications, with runtime module plugins.

I notice GWT is moving to closure in the roadmap. Closure already has 
capabilities to mark things, to avoid for pruning, for exactly this reason. I 
believe it creates some sort of global table of compiled names, so that when 
the later module is compiled it re-uses those same names. Thus there is little 
extra baggage, from re-loading duplicate things, and no GWT <- JS -> GWT bridge 
is needed. As both Modules, the core one, and the runtime plugin one, 
understands the same names for objects and properties.

Mark


On 25 Oct 2013, at 09:49, Jens  wrote:

> We really need something like this too. We've developed a workbench UI, that 
> has plugins - all currently compile time. Would be nice to be able to have 
> those as runtime plugins, even if they are self contained GWT apps. As you 
> pointed out "you can not just simply pass those objects between the GWT 
> applications since the same Java class does not generate the identically 
> named JS class".
> 
> There are people that have used OSGI with GWT. They basically have a parent 
> app that contains an iframe and a menu that is generated based on a server 
> request. The server request figures out which OSGI bundles are deployed so 
> that if you disable an OSGI bundle or add new one the menu adjusts itself. 
> Once you hit a menu item a new GWT app will be loaded (from the corresponding 
> OSGI bundle) and displayed inside the iframe. To communicate between the 
> parent app and the app loaded in the iframe you could use window.postMessage 
> and a defined set of messages.
> 
> Then there is also https://code.google.com/p/gwt-exporter/ which can help to 
> create a JS based API that different apps can use to talk to each other.
> 
> The only thing your pay by having multiple apps that represents single 
> sections in your app is that each app will download all the required GWT 
> library code on its own. So at the end your clients need to download a bit 
> more JS.
> 
> -- J.
> 
> -- 
> You received this message because you are subscribed to a topic in the Google 
> Groups "Google Web Toolkit" group.
> To unsubscribe from this topic, visit 
> https://groups.google.com/d/topic/google-web-toolkit/mO4l7HygPoo/unsubscribe.
> To unsubscribe from this group and all its topics, send an email to 
> google-web-toolkit+unsubscr...@googlegroups.com.
> To post to this group, send email to google-web-toolkit@googlegroups.com.
> Visit this group at http://groups.google.com/group/google-web-toolkit.
> For more options, visit https://groups.google.com/groups/opt_out.

-- 
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...@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at http://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/groups/opt_out.


SimplePager buttons missing on IE8

2013-08-07 Thread Mark Wengranowski
Hi Everyone,
 
Just noticed that my app started to act different after moving to GWT 
2.5.1. I use a simplepager on a cell tables to navigate through the 
results. Normally there are the arrow icons that allow you to change 
between pages but they no longer show up and I'm not sure why. It used to 
work great. 
 
The newer browsers work just fine.
 
Anyone have any insight as to what I should try to fix the issue. I've 
tried all of the different ie8 browser modes and nothing seems to 
help(standards, quirks, compatibility).
 
I also use GCharts and it doesn't render properly anymore either. Not sure 
if it's related to the same issue. 
 
Thanks!

-- 
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...@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at http://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/groups/opt_out.




Re: I'm enhancing GWT to provide Java stack traces for clientside exceptions in production

2013-07-17 Thread mark . erikson

>
> If you use emulated stack traces (including line numbers) in current GWT 
> your app size will roughly increase by 100%. So 45% is a lot better of what 
> GWT gives you today.
>

...

Really.  I had not seen that mentioned anywhere.  What sort of approach 
does the current emulated stack implementation use, as opposed to the 
suggested function enter/exit approach?  Is there a relative speed hit 
involved with it too?  Because if so, bring on the new implementation ASAP 
:)
 

On Wednesday, July 17, 2013 7:54:28 PM UTC-4, Jens wrote:
>
>
> I certainly applaud the obvious time, effort, and care that you've put 
>> into these improvements, but "45% size and 22-44% execution speed overhead" 
>> sounds like a rather painful penalty to pay.  I'm not sure that's going to 
>> be worth using in a performance-sensitive application.
>
>
> If you use emulated stack traces (including line numbers) in current GWT 
> your app size will roughly increase by 100%. So 45% is a lot better of what 
> GWT gives you today.
>  
>  
>
>>   Also, how much does this affect compilation time?
>>
>
> This actually shouldn't matter for ordinary compilation. But it would be 
> interesting to hear in case of SuperDevMode + non SourceMaps browser.
>
>
> -- J.
>

-- 
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...@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at http://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/groups/opt_out.




Re: I'm enhancing GWT to provide Java stack traces for clientside exceptions in production

2013-07-17 Thread mark . erikson
I certainly applaud the obvious time, effort, and care that you've put into 
these improvements, but "45% size and 22-44% execution speed overhead" 
sounds like a rather painful penalty to pay.  I'm not sure that's going to 
be worth using in a performance-sensitive application.  Also, how much does 
this affect compilation time?

Mark Erikson

On Wednesday, July 17, 2013 4:56:40 PM UTC-4, Alex Epshteyn wrote:
>
> Dear fellow GWT users,
>
> I would like to announce that I have finally solved what I always thought 
> to be GWT's greatest weakness: its lack of debugging information for 
> client-side exceptions in production.  
>
> With my patch, your deployed app will be able to report stack traces like 
> this:
>
> com.google.gwt.core.client.JavaScriptException: (TypeError) : a is null
>
> com.google.gwt.dom.client.DOMImplMozilla.$getBodyOffsetLeft(DOMImplMozilla.java:145)
>  
>
> com.google.gwt.user.client.ui.PopupPanel.$setPopupPosition(Document.java:1287)
>
> com.google.gwt.user.client.ui.PopupPanel.setPopupPosition(PopupPanel.java:884)
> com.google.gwt.user.client.ui.PopupPanel.PopupPanel(PopupPanel.java:453) 
>
> com.typeracer.commons.client.widgets.EnhancedPopup.EnhancedPopup(EnhancedPopup.java:32)
>
> com.typeracer.commons.client.widgets.PopupWithIcon.PopupWithIcon(PopupWithFocusableTextBox.java:28)
>  
>
> com.typeracer.main.client.controller.TyperacerUncaughtExceptionHandler$1.execute(TyperacerUncaughtExceptionHandler.java:55)
>  
>
> com.google.gwt.core.client.impl.SchedulerImpl.runScheduledTasks(SchedulerImpl.java:50)
>  
> etc... :-)
>
>
> instead of the current state of affairs that looks like this:
>
> lineNumber: 3190 columnNumber: 15354: a is null; (TypeError) fileName:  
> http://localhost:8088/9C4DC2D905BEA407601C92C56B43E3B8.cache.html 
> stack: @
> http://localhost:8088/9C4DC2D905BEA407601C92C56B43E3B8.cache.html:2422 
> Rub@http://localhost:8088/9C4DC2D905BEA407601C92C56B43E3B8.cache.html:2423
>  
> dSb@http://localhost:8088/9C4DC2D905BEA407601C92C56B43E3B8.cache.html:3190
>  
> tA@http://localhost:8088/9C4DC2D905BEA407601C92C56B43E3B8.cache.html:2810 
> Xmb@http://localhost:8088/9C4DC2D905BEA407601C92C56B43E3B8.cache.html:2289
>  
> etc... :-(
>
>
> I am asking the community to support me in finishing this effort and 
> integrating my patch into GWT.  Please take a look and what I've done, and 
> consider making a donation:
>
> http://igg.me/at/gwt-stack-traces/x/3494291
>
> I am an indie developer and I just need some funding to continue this 
> work.  I'm looking for both grassroots and corporate sponsorship for my 
> quest of improving GWT's error reporting and debugging support.
>
> I've written a detailed white paper ( http://goo.gl/YGsrQ ) that 
> describes how my solution works and why it is necessary.  I welcome your 
> feedback!
>
> Thanks!
> Alex
>

-- 
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...@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at http://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/groups/opt_out.




Re: GWT RPC method in Window.onClose() no longer being called from Firefox

2013-06-06 Thread mark . erikson
I've actually seen similar behavior in Firefox 17 ESR.  I wound up 
implementing the following horribly disgusting hack as a workaround:

myRPCInterface.logOut(new AsyncCallback() {
public void onFailure(Throwable caught)
{
}

public void onSuccess(Boolean logoutSucceeded)
{
}
});

// HACK!  UTTER, TOTAL, DISGUSTING HACK!
// In the case where the window is closing _right now_, the 
logOut() RPC call often
// does not seem to get sent.  Adding this silly delay loop 
_appears_ to keep things open
// long enough to let the RPC call go through.
// Yes, I feel like an idiot for having to add this.

String s = "";
for(int i = 0; i < 1000; i++)
{
s += i;
}



On Thursday, June 6, 2013 10:02:51 AM UTC-7, eprice wrote:
>
> I have a GWT application that registers a CloseHandler for the 
> CloseEvent.  This handler calls the logout() method in another class, which 
> does some cleanup and calls an RPC method to log the user out of the 
> underlying server application (the GWT application is a client with web 
> server being middle tier).
>
> Here is the code for the CloseHandler:
>
> Window.addCloseHandler( 
> new CloseHandler() {
> @Override
> public void onClose( CloseEvent event ) {
> MainPresenter main = 
> Client.this.context.getMainPresenter();
>
> if (main != null) {
>  System.out.println("calling main.logout()..." );
> main.logout();
>  System.out.println("back from logout()..." );
> }
> }
> });
>  
>
> Here is the code for the logout() method:
>
> public void logout() {
> System.out.println("in logout()..." );
> /*
>  * This callback method likely will not be executed because this
>  * logout method is going to be called as the browser window is
>  * closing.  Consequently, the RPC call will not return.  But if it
>  * does, simply ignore the return.
>  */
> AsyncCallback callback = new 
> AsyncCallback() {
>
> @Override
> public void onFailure( Throwable caught ) {
> // ignore
> System.out.println("logout failed:" + caught);
> caught.printStackTrace();
> }
>
> @Override
> public void onSuccess( UserOperationResult result ) {
> // ignore
> System.out.println("result=" + result);
> }
> };
>
> System.out.println("calling authentication service-> logout()..." );
> this.context.getAuthenticationService().logout( 
> MainPresenter.this.context.getUser(), callback );
> // stop the ping service
> this.context.stopPingTimer();
> System.out.println( "stopped ping timer..." );
> this.context.stopBlockedTimer();
> System.out.println("stopped blocked timer..." );
> 
> releaseRegistrations();
> System.out.println("released registrations..." );
>
> }
>
>
> The generated output looks like:
>
>
> mozilla/5.0 (windows nt 6.1; wow64; rv:18.0) gecko/20100101 
> firefox/18.0
> closing... end session
> calling main.logout()...
> in logout()...
> calling authentication service-> logout()...
> stopped ping timer...
> stopped blocked timer...
> released registrations...
> back from logout()...
>
>
> As you can see, the RPC method is being called well before the application 
> completes, but there are no logging/debug messages from the web server RPC 
> service, and the user is not logged out of the underlying application.  
> I've verified the service method is not being called, implying the RPC 
> method is really never being executed.
>
> *This worked fine until recent upgrade to Firefox 21*.  Testing shows 
> this works for Firefox 9, 15, 16, and 17, but stopped working with version 
> 18.0.2.  It works for Chrome (27) and IE9 as well a previous versions of 
> Chrome and IE.
>
> I tried looking through the list of changes for Firefox 18 to see if there 
> was something I could determine might affect the calling of the RPC method, 
> but wasn't able to find anything obvious.
>
> Has anyone else encountered this problem or have a workaround?
>
> Thanks!
>
>

-- 
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...@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.




Re: java.security.AccessControlException: access denied (java.lang.RuntimePermission modifyThreadGroup)

2013-01-24 Thread mark peter
Am not sure what you mean " by bare jersey client " , Can you explain brief 
about it any reference links. Then for your information am not using GWT in 
my application. 





-- 
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 
google-web-toolkit+unsubscr...@googlegroups.com.
Visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.




java.security.AccessControlException: access denied (java.lang.RuntimePermission modifyThreadGroup)

2013-01-21 Thread mark peter
With the GAE am trying to access a third party API. When i Run the file it 
shows the following exception . Can anyone help me out to solve this issue. 
Thanks in advance.

 java.security.AccessControlException: access denied 
(java.lang.RuntimePermission modifyThreadGroup)

Caused by:com.sun.jersey.api.client.ClientHandlerException: 
java.security.AccessControlException: access denied 
(java.lang.RuntimePermission modifyThreadGroup) at 
com.sun.jersey.client.apache.DefaultApacheHttpMethodExecutor.executeMethod(DefaultApacheHttpMethodExecutor.java:213)
 
at 
com.sun.jersey.client.apache.ApacheHttpClientHandler.handle(ApacheHttpClientHandler.java:175)
 
at com.sun.jersey.api.client.Client.handle(Client.java:648) at 
com.sun.jersey.api.client.WebResource.handle(WebResource.java:670) at 
com.sun.jersey.api.client.WebResource.access$200(WebResource.java:74) at 
com.sun.jersey.api.client.WebResource$Builder.post(WebResource.java:563) at 
de.bitzeche.video.transcoding.zencoder.ZencoderClient.sendPostRequest(ZencoderClient.java:315)
 
at  org.apache.jasper.servlet.JspServlet.service(JspServlet.java:260) at 
com.google.appengine.tools.development.PrivilegedJspServlet.access$101(PrivilegedJspServlet.java:23)
 
at 
com.google.appengine.tools.development.PrivilegedJspServlet$2.run(PrivilegedJspServlet.java:59)
 
at java.security.AccessController.doPrivileged(Native Method) at 
com.google.appengine.tools.development.PrivilegedJspServlet.service(PrivilegedJspServlet.java:57)
 
at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) at 
org.mortbay.jetty.servlet.ServletHolder.handle(ServletHolder.java:511) at 
org.mortbay.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1166)
 
at 
com.google.appengine.api.socket.dev.DevSocketFilter.doFilter(DevSocketFilter.java:74)
 
at 
org.mortbay.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1157)
 
at 
com.google.appengine.tools.development.ResponseRewriterFilter.doFilter(ResponseRewriterFilter.java:123)
 
at 
org.mortbay.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1157)
 
at 
com.google.appengine.tools.development.HeaderVerificationFilter.doFilter(HeaderVerificationFilter.java:34)
 
at 
org.mortbay.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1157)
 
at 
com.google.appengine.api.blobstore.dev.ServeBlobFilter.doFilter(ServeBlobFilter.java:61)
 
at 
org.mortbay.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1157)
 
at 
com.google.apphosting.utils.servlet.TransactionCleanupFilter.doFilter(TransactionCleanupFilter.java:43)
 
at 
org.mortbay.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1157)
 
at 
com.google.appengine.tools.development.StaticFileFilter.doFilter(StaticFileFilter.java:125)
 
at 
org.mortbay.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1157)
 
at 
com.google.appengine.tools.development.BackendServersFilter.doFilter(BackendServersFilter.java:97)
 
at 
org.mortbay.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1157)
 
at org.mortbay.jetty.servlet.ServletHandler.handle(ServletHandler.java:388) 
at 
org.mortbay.jetty.security.SecurityHandler.handle(SecurityHandler.java:216) 
at org.mortbay.jetty.servlet.SessionHandler.handle(SessionHandler.java:182) 
at org.mortbay.jetty.handler.ContextHandler.handle(ContextHandler.java:765) 
at org.mortbay.jetty.webapp.WebAppContext.handle(WebAppContext.java:418) at 
com.google.appengine.tools.development.DevAppEngineWebAppContext.handle(DevAppEngineWebAppContext.java:94)
 
at org.mortbay.jetty.handler.HandlerWrapper.handle(HandlerWrapper.java:152) 
at 
com.google.appengine.tools.development.JettyContainerService$ApiProxyHandler.handle(JettyContainerService.java:383)
 
at org.mortbay.jetty.handler.HandlerWrapper.handle(HandlerWrapper.java:152) 
at org.mortbay.jetty.Server.handle(Server.java:326) at 
org.mortbay.jetty.HttpConnection.handleRequest(HttpConnection.java:542) at 
org.mortbay.jetty.HttpConnection$RequestHandler.headerComplete(HttpConnection.java:923)
 
at org.mortbay.jetty.HttpParser.parseNext(HttpParser.java:547) at 
org.mortbay.jetty.HttpParser.parseAvailable(HttpParser.java:212) at 
org.mortbay.jetty.HttpConnection.handle(HttpConnection.java:404) at 
org.mortbay.io.nio.SelectChannelEndPoint.run(SelectChannelEndPoint.java:409) 
at 
org.mortbay.thread.QueuedThreadPool$PoolThread.run(QueuedThreadPool.java:582) 
Caused by: java.security.AccessControlException: access denied 
(java.lang.RuntimePermission modifyThreadGroup) at 
java.security.AccessControlContext.checkPermission(AccessControlContext.java:374)
 
at 
java.security.AccessController.checkPermission(AccessController.java:549) 
at java.lang.SecurityManager.checkPermission(SecurityManager.java:532) at 
com.google.appengine.tools.development.DevAppServerFactory$CustomSecurityManager.checkPermission(DevAppServerFactory.java:289)
 
at 
com.google.appengine.tools.development.DevAppSe

Re: Open url in new mobile safari instance?: Window.open()

2012-12-30 Thread Mark Wyszomierski
Hi Paul,

Thanks for the sample - it loads the target in the UIWebView. I tried using
a target of "_blank" as well, same result. I might have to just catch
external urls in the native app and launch safari manually,

Thank you

On Sun, Dec 30, 2012 at 9:30 PM, Paul Stockley  wrote:

> This works on iOS Fullscreen web applications. I think it may also work on
> a UIWebView
>
> public void open(String url) {
>  Anchor a = new Anchor();
> a.setTarget("_new");
> a.setHref(url);
> RootPanel.get().add(a);
>  NativeEvent e = Document.get().createHtmlEvent("click", true, true);
> a.getElement().dispatchEvent(e);
> RootPanel.get().remove(a);
> }
>
>
> On Sunday, December 30, 2012 1:57:50 PM UTC-5, markww wrote:
>>
>> Hi,
>>
>> I have a Button, when clicked, I'd like to open a url in a new browser
>> instance. The following works on desktop:
>>
>> Window.open(url, "_blank", null);
>>
>> When I run the same code in a UIWebView on ios, nothing happens. Ideally
>> I'd like to open a new instance of mobile safari directed to that url. Does
>> anyone have any ideas of how to do this? I can fall back on catching the
>> url in my objective-c code, but ideally there's something we could do
>> directly in javascript to trigger mobile safari to open,
>>
>> Thanks
>>
>  --
> 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/-/UVzOE3n_CyQJ.
>
> To post to this group, send email to google-web-toolkit@googlegroups.com.
> To unsubscribe from this group, send email to
> google-web-toolkit+unsubscr...@googlegroups.com.
> For more options, visit this group at
> http://groups.google.com/group/google-web-toolkit?hl=en.
>

-- 
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 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: FastButton? Handling touch events for mobile?

2012-12-18 Thread Mark Wyszomierski
This is great Ashton. Will the press handlers fire when you're scrolling a
page? For example:

   1. User presses down on a button.
   2. User starts to drag downward.
   3. Page starts scrolling (if page content tall enough for scrolling)
   4. User releases outside original button rectangle.
   5. Does that original button still fire a push event?

I tried this on the "Fast Clear" button at the bottom as a test,

Thanks


On Mon, Dec 17, 2012 at 8:58 AM, Ashton Thomas  wrote:

> Also, to get the full benefits of this you will want to test on a mobile
> device (that handles touch events and puts a delay on onClick).
>
> On a desktop browser, you should notice no difference since onClick is
> fired immediately and there are no touch events.
>
> To really see the benefit, rapidly click the "fast" buttons (using
> fast-press) and then try the same with the "slow" buttons (using regular
> clickHandler)
>
> - Ashton
>
>
> On Sunday, December 16, 2012 5:36:17 PM UTC-5, Ashton Thomas wrote:
>>
>> I wanted to take a shot at this implementation using the previous answer
>> and Ed's comments:
>>
>> http://stackoverflow.com/**questions/9596807/converting-**
>> gwt-click-events-to-touch-**events/13906134#13906134
>>
>> Example with code:
>> http://gwt-fast-touch-press.**appspot.com/
>>
>> Not sure if I hit all the edge cases so if someone notices anything
>> wrong, please let me know
>>
>>
>> - Ashton
>>
>>
>> On Monday, November 5, 2012 2:18:11 PM UTC-5, emurmur wrote:
>>>
>>> Anyplace I wrote event.preventDefault I really
>>> meant event.stopPropagation.
>>>
>>> Ed
>>>
>>> On Monday, November 5, 2012 10:57:44 AM UTC-8, emurmur wrote:

 I took a quick look at the code you linked to in stackoverflow.  I
 think the code as written has a few problems.

 (NOTE: I'm looking at code I wrote using the Elemental library as
 reference, so some of the calls might be different in the user library).

 a) The code is not filtering touches aimed at the button; it calls
 TouchEvent.getTouches().  You want to call TouchEvent.getTargetTouches() on
 touchstart and touchmove to get the the touches just for your button.  You
 want to call TouchEvent.**getChangedTouches() on touchend to get the
 end touch.
 b) The code does not take into account multitouch.  On touchstart, you
 can check that a single touch is available and bail out if there is more
 than one.  Also, on touchstart, stash away the id of touch, then use this
 in touchmove and touchend to find your touch id in the array that is
 returned (in case the user has touched another finger later on).  You can
 also simplify and check for multiple touches on touchmove and touchend and
 bail again there.
 c) I believe you need to call stopPropagation on touchstart, since you
 are handling the event. I don't see where they call event.preventDefault on
 the touchstart event  You can see that this happens in the click handlers,
 but not the touchstart.

 There is also a simpler way.  If you don't care about dragging starting
 on a button, then you can simply call your click logic in the touchstart
 event (and make sure you call event.preventDefault,
 TouchEvent.getTargetTouches() and  check for single touch) and ignore
 touchmove and touchend.  All the touchmove and touchend stuff is to handle
 the case of allowing dragging to start on the button.

 Ed

 On Monday, November 5, 2012 5:29:53 AM UTC-8, markww wrote:
>
> Hi,
>
> I've got some buttons on a page which will primarily be used from
> mobile devices. The click handlers fire only after a 300ms delay
> (intentional on mobile devices as detailed here [
> https://developers.google.**com/mobile/articles/fast_**buttons]
> ).
>
> Looks like someone has tried to implement the above for GWT:
> http://stackoverflow.com/**questions/9596807/converting-**
> gwt-click-events-to-touch-**events
>
> but I'm getting strange behavior from that FastButton implementation.
> Is there something baked into GWT 2.5 that does this for us?
>
> Thanks
>
  --
> 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/-/y2H4Yk7xV5MJ.
>
> To post to this group, send email to google-web-toolkit@googlegroups.com.
> To unsubscribe from this group, send email to
> google-web-toolkit+unsubscr...@googlegroups.com.
> For more options, visit this group at
> http://groups.google.com/group/google-web-toolkit?hl=en.
>

-- 
You r

Re: Strange results for Window.getClientWidth() on mobile safari vs UIWebView

2012-12-10 Thread Mark Wyszomierski
Thanks, I was expecting mobile safari and UIWebView to behave the same way
(big mistake). I'll have a go from there,

Thanks

On Mon, Dec 10, 2012 at 4:09 AM, Jens  wrote:

> 980 pixel is the default width mobile safari zooms websites to if they
> dont provide any viewport meta information. When you choose "device-width"
> in the meta tag the website dimensions will be set to 320x480 for both
> retina and non-retina iPhones (and I guess its the size that is also
> reported by UIWebView). The only difference is that the JS property
> window.devicePixelRatio should return 2 on the retina display iPhone
> because every pixel is doubled.
>
> So if you want super sharp graphics on retina iPhone you have double size
> everything and then display it 50% smaller. In case of your canvas you
> would have a canvas with 320x480 css size, a canvas coordinate space of
> 640x960 and finally a scale factor of 2 for your paint operations.
>
> See:
> http://joubert.posterous.com/crisp-html-5-canvas-text-on-mobile-phones-and
>
> -- 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/-/TQFq60loAI8J.
>
> To post to this group, send email to google-web-toolkit@googlegroups.com.
> To unsubscribe from this group, send email to
> google-web-toolkit+unsubscr...@googlegroups.com.
> For more options, visit this group at
> http://groups.google.com/group/google-web-toolkit?hl=en.
>

-- 
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 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: Could not load GWT DMP Plugin

2012-11-26 Thread Mark Bosshard
Hey Brian

It says "Your computer doesnt support this App" when I try downloading it 
from the appstore. However with drag and drop I get the gwt-plugin working, 
but it crashes with this error "Could not load GWT DMP" Plugin. I added 
0.0.0.0, 127.0.0.1 as well as localhost both in server and local in the 
table of the gwt plugin options. So - no chance on chrome.

I tried firefox. Downloaded the normal today's version of firefox on 
mozilla.org. But: The Plugin is not accepted by Firefox since today we're 
on version 17 and the GWT Plugin is outdated.

This means: Your GWT Plugin is right now only working on Internet Explorer 
as a major windows browser. THATS A PAIN IN THE ASS

On Saturday, October 20, 2012 10:08:44 PM UTC+2, seas wrote:
>
> Started getting 'Could not load GWT DMP Plugin' yesterday when I start my 
> app from Eclipse using Chrome.  Happening on both work and home computers. 
>  From web searches, it looks like this has happened in the past, which 
> seemed to indicate that in those cases a new plugin was deployed that had 
> issues.  In those cases there was no clear fix except some people has 
> success rolling back to an earlier version of the plugin.
>
> I've tried reinstalling the latest plugin.  Didn't see any option for 
> downloading previous versions from the app store.  Tried restarting Chrome, 
> Eclipse, and rebooting the machine.
>
> Has there been a recent update to the plugin?  Where can I get the 
> previous one to roll back to?  Is there another update coming soon that 
> will fix this?
>
> My home set up is:
> Windows XP SP 3
> Eclipse Helios Service Release 2 build ID 20110218-0911
> Chrome 22.0.1229.94 m
> GWT Developer Plugin 1.0.11338
>
> My work set up is similar but with Window 7
>
>

-- 
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/-/vmppr1eY64IJ.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



TouchEndHandler not firing on ios or android browsers?

2012-11-01 Thread mark
Hi,

I have a few touch handlers registered on a canvas:

Canvas canvas = ...;

canvas.addTouchStartHandler(new TouchStartHandler() {
@Override
public void onTouchStart(TouchStartEvent event) {
 // works fine
}
});

canvas.addTouchEndHandler(new TouchEndHandler() {
@Override
 public void onTouchEnd(TouchEndEvent event) {
 // never fires?  <---
 }
});

Do I need to do something special to get the onTouchEnd() event to fire?

Thanks

-- 
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/-/IpvkL6VmVZAJ.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: RPC call from server to client

2012-10-17 Thread Mark Donszelmann
Try atmosphere

Regards
Mark

Sent from my iPhone

On 17 Oct 2012, at 13:31, Magnus  wrote:

> Hello,
> 
> I realized a simple chat within my chess application:
> 
> When the user posts something, the posting is sent to the server and the chat 
> view on the client side is updated.
> But when another user posts something, the user's view is not updated 
> automatically.
> 
> I wonder how to realize an automatic update. From the server's point of view 
> it chould be realized like this:
> 
> Whenever *some* user sends a posting, do the following:
> {
>  List l = getAllUsersThatAreCurrentlyLoggedIn();
>  for (User u:l)
>   notifyClientOfUser(u);
> }
> 
> However, I do not know how and where to start and how to realize the methods 
> used above.
> How can I determine the users who need to be notified?
> How can I send the notification to the users? I have access to the user's 
> session data, but how can I make a call, where do I have to define the 
> service methods and where does the call come out within the client?
> 
> Thanks
> Magnus
> 
> -- 
> 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/-/DoASuAbKVnkJ.
> To post to this group, send email to google-web-toolkit@googlegroups.com.
> To unsubscribe from this group, send email to 
> google-web-toolkit+unsubscr...@googlegroups.com.
> For more options, visit this group at 
> http://groups.google.com/group/google-web-toolkit?hl=en.

-- 
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 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



How to set stroke width for Canvas Context2d?

2012-08-29 Thread mark
Hi,

I'd like to change the stroke width but am not clear how to do this:

Context2d context = ...;
context.setStrokeStyle(FillStrokeStyle ?);
context.strokeRect(…);

I'm not sure how to create a FillStrokeStyle object (or specifically how to 
create one where I can control its width). Anyone know?

Thanks



http://google-web-toolkit.googlecode.com/svn/javadoc/2.2/com/google/gwt/canvas/dom/client/FillStrokeStyle.html

-- 
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/-/ldo3jY79GdMJ.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: Have ScrollPanel use 100% height?

2012-08-19 Thread mark
Hi Jens,

Ok I thought we had to wrap our contents in a ScrollPanel if we wanted 
scroll support,

Thanks




On Sunday, August 19, 2012 3:55:43 PM UTC-4, mark wrote:
>
> Hi,
>
> I want to make a VerticalPanel inside a ScrollPanel which takes up 100% 
> width and height. I can't get this to work:
>
>   VerticalPanel vp = new VerticalPanel();
>   vp.setHeight("100%");
>   vp.add(new Label("please...");
>  
>   ScrollPanel sp = new ScrollPanel();
>   sp.setHeight("100%");
>   sp.add(vp);
>
>   RootPanel.get().add(sp);
>
> What am I missing? The width seems to be 100%, but the height keeps 
> wrapping.
>
> Thanks
>

-- 
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/-/GqzxywNCOq4J.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Have ScrollPanel use 100% height?

2012-08-19 Thread mark
Hi,

I want to make a VerticalPanel inside a ScrollPanel which takes up 100% 
width and height. I can't get this to work:

  VerticalPanel vp = new VerticalPanel();
  vp.setHeight("100%");
  vp.add(new Label("please...");
 
  ScrollPanel sp = new ScrollPanel();
  sp.setHeight("100%");
  sp.add(vp);

  RootPanel.get().add(sp);

What am I missing? The width seems to be 100%, but the height keeps 
wrapping.

Thanks

-- 
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/-/HaR-pmmy51YJ.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Can't get touch handlers to fire?

2012-08-09 Thread mark
Hi,

I can't get touch handlers to fire:

RootPanel rp = RootPanel.get("dummy");
rp.sinkEvents(Event.TOUCHEVENTS);
rp.addHandler(new TouchStartHandler() {
@Override
public void onTouchStart(TouchStartEvent event) {
// touch down!
}
}, TouchStartEvent.getType());

What am I missing?

Thanks

-- 
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/-/ytcG1GLoQUIJ.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: StackLayoutPanel change default behaveeior for header onclick

2012-07-27 Thread Mark Wengranowski
Thanks for your help Rob!

Cheers,
-Mark

-- 
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/-/VUrC8EZUh0gJ.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: StackLayoutPanel change default behaveeior for header onclick

2012-07-27 Thread Mark Wengranowski
OK, if i do that i can call event.cancel() wich stops it from changing.

My button that changes the stackpanel to the next stack uses the 
showWidget(int) method and when i call that it triggers the same event 
which is then cancelled. Is there a work around for this? I guess i could 
just put in a switch or something that would detect if it was a header 
click vs a button click?




On Friday, July 27, 2012 1:14:22 PM UTC-7, Rob Whiteside wrote:
>
> Looks like you can register a "BeforeSelectionHandler" then just call 
> cancel on the event.  Looks like that's what it's intended for.
>
> --Rob
>
> On Friday, July 27, 2012 9:13:43 AM UTC-7, Mark Wengranowski wrote:
>>
>> Hi Everyone,
>>
>> I want my stacklayoutpanel to only change stacks when i click on a button 
>> i've created and not when someone clicks on the header. i.e. i only want 
>> the stack to change once my validation has passed.
>>
>> The only way I can see to do this is to copy/paste the 
>> StackLayoutPanel.java code into my own file and remove the handler that 
>> gets added to the header. Then use my custom SLP for my ui. 
>>
>> Does anyone have a better alternative? I'm unable to override the insert 
>> method for stacklayoutpanel
>>
>

-- 
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/-/wH_d2IwIiigJ.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



StackLayoutPanel change default behaveeior for header onclick

2012-07-27 Thread Mark Wengranowski
Hi Everyone,

I want my stacklayoutpanel to only change stacks when i click on a button 
i've created and not when someone clicks on the header. i.e. i only want 
the stack to change once my validation has passed.

The only way I can see to do this is to copy/paste the 
StackLayoutPanel.java code into my own file and remove the handler that 
gets added to the header. Then use my custom SLP for my ui. 

Does anyone have a better alternative? I'm unable to override the insert 
method for stacklayoutpanel

-- 
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/-/hr7bwp6xCcAJ.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: guice injecting remote servlet. Error 404 not found

2012-05-31 Thread Mark Diesta
It was a jar issues. You should check if you have multiple guice jars in
your build path. As much as possible use the guice included in the gin so
there will be no conflict.

On Thu, May 31, 2012 at 3:45 AM, Ali Thabet  wrote:

> did you have guice-snapshot.jar in your classpath?
>
> --
> 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
> google-web-toolkit+unsubscr...@googlegroups.com.
> For more options, visit this group at
> http://groups.google.com/group/google-web-toolkit?hl=en.
>

-- 
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 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: Firefox 12 release

2012-04-30 Thread Mark Piergrossi
Roger:

I agree with the opinion that excessive FireFox releases are hard to keep 
up with. Our FireFox constraint is due to customer demand. All of our large 
telecommunication customers standardize on FireFox through out their 
company for it's stability (the majority also run Windows clients).

Mark

-- 
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/-/r6q38_lWc5kJ.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



RE: Firefox 12 release

2012-04-30 Thread Piergrossi, Mark J
Alan:

Just wanted to say thank you man. The plug-in works great. It is a shame that 
Google couldn't create these in a timely manner. Your effort is greatly 
appreciated - especially from those of us that have to get real work done.

Mark

From: google-web-toolkit@googlegroups.com 
[mailto:google-web-toolkit@googlegroups.com] On Behalf Of Alan Leung
Sent: Thursday, April 26, 2012 8:38 PM
To: google-web-toolkit@googlegroups.com
Subject: Re: Firefox 12 release

http://acleung.com/ff12-win.xpi

That should cover all the OS'es. I am going to put together all that and check 
it in soon.

Let me know if you run into problems.

-Alan
On Thu, Apr 26, 2012 at 6:45 AM, Marcel Stör 
mailto:mar...@frightanic.com>> wrote:
What about Windows?
--
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/-/fAwX-dqYQQAJ.

To post to this group, send email to 
google-web-toolkit@googlegroups.com<mailto:google-web-toolkit@googlegroups.com>.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com<mailto:google-web-toolkit%2bunsubscr...@googlegroups.com>.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.

--
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<mailto:google-web-toolkit@googlegroups.com>.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com<mailto:google-web-toolkit+unsubscr...@googlegroups.com>.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.

-- 
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 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: Firefox 12 release

2012-04-27 Thread mark
Can you also create the Windows xpi? Thanks man.

-- 
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 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: Firefox 12 release

2012-04-27 Thread Mark Piergrossi
I second that - for Windows.

-- 
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/-/tG6GvK_FBEwJ.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Please - I 2nd the request for a Windows plugin

2012-04-27 Thread mark
Thanks Alan.

-- 
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 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



UIBinder @Path annotation with arrays

2012-04-20 Thread Mark Trueman
Hi guys,

If i have an Editor set up which is bound to Object1 using a
SimpleBeanEditorDriver. Object1 contains a list of Object2s. How (if
at all) do i use the @Path annotation to bind the object at a certain
index with the list to a field?

Ive tried a few things, such as
@Path("Object2list[0].value")
@Path("Object2list.[0].value")

but im having no luck.

Id rather not have to provide accessors in my Object1 such as
"getFirstObject2()", but this currently seems like the only way around
this.

Thanks

Mark

-- 
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 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



GIN 1.5 and GUICE 3.0 Integration Error

2012-03-21 Thread Mark Diesta
In my build path I have this jars

lib

aopalliance.jar

gin-1.5-post-gwt-2.2.jar
guice-3.0.jar
guice-assistedinject-3.0.jar
guice-servlet-3.0
javax.inject.jar



And got this error.
java.lang.NoSuchMethodError: 
com.google.inject.Scopes.isSingleton(Lcom/google/inject/Binding;)Z
at 
com.google.inject.servlet.ServletDefinition.init(ServletDefinition.java:103)
at 
com.google.inject.servlet.ManagedServletPipeline.init(ManagedServletPipeline.java:82)
at 
com.google.inject.servlet.ManagedFilterPipeline.initPipeline(ManagedFilterPipeline.java:102)
at com.google.inject.servlet.GuiceFilter.init(GuiceFilter.java:172)
at org.mortbay.jetty.servlet.FilterHolder.doStart(FilterHolder.java:97)
at org.mortbay.component.AbstractLifeCycle.start(AbstractLifeCycle.java:50)
at 
org.mortbay.jetty.servlet.ServletHandler.initialize(ServletHandler.java:662)
at org.mortbay.jetty.servlet.Context.startContext(Context.java:140)
at 
org.mortbay.jetty.webapp.WebAppContext.startContext(WebAppContext.java:1250)
at org.mortbay.jetty.handler.ContextHandler.doStart(ContextHandler.java:517)
at org.mortbay.jetty.webapp.WebAppContext.doStart(WebAppContext.java:467)
at org.mortbay.component.AbstractLifeCycle.start(AbstractLifeCycle.java:50)
at org.mortbay.jetty.handler.HandlerWrapper.doStart(HandlerWrapper.java:130)
at org.mortbay.component.AbstractLifeCycle.start(AbstractLifeCycle.java:50)
at org.mortbay.jetty.handler.HandlerWrapper.doStart(HandlerWrapper.java:130)
at org.mortbay.jetty.Server.doStart(Server.java:224)
at org.mortbay.component.AbstractLifeCycle.start(AbstractLifeCycle.java:50)
at 
com.google.appengine.tools.development.JettyContainerService.startContainer(JettyContainerService.java:191)
at 
com.google.appengine.tools.development.AbstractContainerService.startup(AbstractContainerService.java:239)
at 
com.google.appengine.tools.development.DevAppServerImpl.start(DevAppServerImpl.java:146)
at 
com.google.appengine.tools.development.gwt.AppEngineLauncher.start(AppEngineLauncher.java:97)
at com.google.gwt.dev.DevMode.doStartUpServer(DevMode.java:509)
at com.google.gwt.dev.DevModeBase.startUp(DevModeBase.java:1068)
at com.google.gwt.dev.DevModeBase.run(DevModeBase.java:811)
at com.google.gwt.dev.DevMode.main(DevMode.java:311)
 
I'm also using GWT 2.4 and GAE 1.6.3

TIA

-- 
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/-/J5DrlfRMJLgJ.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



guice injecting remote servlet. Error 404 not found

2012-03-20 Thread Mark Diesta
I would like to use the Guice in my remote servlet but encountered this 
annoying errors.

Before starting my project there is error already.

WARNING: Error starting handlers
java.lang.NoSuchMethodError: 
com.google.inject.Scopes.isSingleton(Lcom/google/inject/Binding;)Z
at 
com.google.inject.servlet.ServletDefinition.init(ServletDefinition.java:103)
at 
com.google.inject.servlet.ManagedServletPipeline.init(ManagedServletPipeline.java:82)
at 
com.google.inject.servlet.ManagedFilterPipeline.initPipeline(ManagedFilterPipeline.java:102)
at com.google.inject.servlet.GuiceFilter.init(GuiceFilter.java:172)
at org.mortbay.jetty.servlet.FilterHolder.doStart(FilterHolder.java:97)
at org.mortbay.component.AbstractLifeCycle.start(AbstractLifeCycle.java:50)
at 
org.mortbay.jetty.servlet.ServletHandler.initialize(ServletHandler.java:662)
at org.mortbay.jetty.servlet.Context.startContext(Context.java:140)
at 
org.mortbay.jetty.webapp.WebAppContext.startContext(WebAppContext.java:1250)
at org.mortbay.jetty.handler.ContextHandler.doStart(ContextHandler.java:517)
at org.mortbay.jetty.webapp.WebAppContext.doStart(WebAppContext.java:467)
at org.mortbay.component.AbstractLifeCycle.start(AbstractLifeCycle.java:50)
at org.mortbay.jetty.handler.HandlerWrapper.doStart(HandlerWrapper.java:130)
at org.mortbay.component.AbstractLifeCycle.start(AbstractLifeCycle.java:50)
at org.mortbay.jetty.handler.HandlerWrapper.doStart(HandlerWrapper.java:130)
at org.mortbay.jetty.Server.doStart(Server.java:224)
at org.mortbay.component.AbstractLifeCycle.start(AbstractLifeCycle.java:50)
at 
com.google.appengine.tools.development.JettyContainerService.startContainer(JettyContainerService.java:191)
at 
com.google.appengine.tools.development.AbstractContainerService.startup(AbstractContainerService.java:239)
at 
com.google.appengine.tools.development.DevAppServerImpl.start(DevAppServerImpl.java:146)
at 
com.google.appengine.tools.development.gwt.AppEngineLauncher.start(AppEngineLauncher.java:97)
at com.google.gwt.dev.DevMode.doStartUpServer(DevMode.java:509)
at com.google.gwt.dev.DevModeBase.startUp(DevModeBase.java:1068)
at com.google.gwt.dev.DevModeBase.run(DevModeBase.java:811)
at com.google.gwt.dev.DevMode.main(DevMode.java:311)


After starting the project.

404 


Error 404 NOT_FOUND


HTTP ERROR: 404
Problem accessing /mercado/login. Reason:
NOT_FOUND
Powered by Jetty://


Here is my code.

web.xml



ph.com.mercado.server.ioc.GuiceServletListener


guiceFilter
com.google.inject.servlet.GuiceFilter



guiceFilter
/*



public class GuiceServiceModule extends AbstractModule {

@Override
protected void configure() {
bind(LoginServiceImpl.class).in(Singleton.class);


public class GuiceServletListener extends GuiceServletContextListener{

@Override
public Injector getInjector() {
return Guice.createInjector(new GuiceServletModule(), new 
GuiceServiceModule());
}

public class GuiceServletModule extends ServletModule  {

@Override
protected void configureServlets() {
serve("/mercado/login").with(LoginServiceImpl.class);

@RemoteServiceRelativePath("login")
public interface LoginService extends RemoteService {
public LoginInfo loginGoggle(String requestUri);


public class LoginServiceImpl extends RemoteServiceServlet implements
LoginService {

@Inject
private UserDao userDao;
 @Override
public LoginInfo loginGoggle(String requestUri) {}

}



What seems to be the problem? Thank you.


-- 
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/-/LvW6JuFvZbsJ.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



java.lang.NoClassDefFoundError: com/google/gwt/core/client/JavaScriptObject in hosted mode (only)

2012-02-13 Thread Mark
I have been developing an app of several thousand lines that has
worked great for weeks.All of a sudden yesterday it stopped loading in
hosted mode (eclipse Indigo, chrome 16.0.912.77, GWT 2.4.0, Google
plugin 3.7) .  As described below, the problem is  in
myProject.gwt.xml that is included for charts (and this used to
work...)

 On loading (hosted mode on jetty), it raises this error:

[ERROR] [reagentcalculator] - Failed to load module
'reagentcalculator' from user agent 'Mozilla/5.0 (Windows NT 6.1;
WOW64)   AppleWebKit/535.7 (KHTML, like Gecko) Chrome/16.0.912.77
Safari/535.7' at quickstart.local:8243


21:48:57.007 [ERROR] [reagentcalculator] Unable to initialize static
dispatcher

java.lang.NoClassDefFoundError: com/google/gwt/core/client/
JavaScriptObject
at java.lang.ClassLoader.findBootstrapClass(Native Method)
at java.lang.ClassLoader.findBootstrapClassOrNull(Unknown Source)
at java.lang.ClassLoader.loadClass(Unknown Source)
at java.lang.ClassLoader.loadClass(Unknown Source)
at java.lang.ClassLoader.defineClass1(Native Method)
at java.lang.ClassLoader.defineClassCond(Unknown Source)
at java.lang.ClassLoader.defineClass(Unknown Source)
at java.lang.ClassLoader.defineClass(Unknown Source)
at
com.google.gwt.dev.shell.CompilingClassLoader.findClass(CompilingClassLoader.java:
1085)
at java.lang.ClassLoader.loadClass(Unknown Source)
at java.lang.ClassLoader.loadClass(Unknown Source)
at java.lang.Class.forName0(Native Method)
at java.lang.Class.forName(Unknown Source)
at com.google.gwt.dev.shell.JsValueGlue.set(JsValueGlue.java:220)
at
com.google.gwt.dev.shell.ModuleSpaceOOPHM.doInvoke(ModuleSpaceOOPHM.java:
129)
at
com.google.gwt.dev.shell.ModuleSpace.invokeNative(ModuleSpace.java:
561)
at
com.google.gwt.dev.shell.ModuleSpace.invokeNativeVoid(ModuleSpace.java:
289)
at com.google.gwt.dev.shell.ModuleSpace.onLoad(ModuleSpace.java:
332)
at
com.google.gwt.dev.shell.OophmSessionHandler.loadModule(OophmSessionHandler.java:
200)
at
com.google.gwt.dev.shell.BrowserChannelServer.processConnection(BrowserChannelServer.java:
525)
at
com.google.gwt.dev.shell.BrowserChannelServer.run(BrowserChannelServer.java:
363)
at java.lang.Thread.run(Unknown Source)


Next step was to try a new project from the GWT template... it
worked!  Okay, so I assumed I introduced a bug.  Over several hours, I
reduced my application down to the following (which you may recognize
as the preamble to the template).


public void onModuleLoad() {
final Button sendButton = new Button("Send");
final TextBox nameField = new TextBox();
nameField.setText("GWT User");
final Label errorLabel = new Label();

// We can add style names to widgets
sendButton.addStyleName("sendButton");

// Add the nameField and sendButton to the RootPanel
// Use RootPanel.get() to get the entire body element
RootPanel.get("nameFieldContainer").add(nameField);
RootPanel.get("sendButtonContainer").add(sendButton);
RootPanel.get("errorLabelContainer").add(errorLabel);
}

Alas, it STILL throws the error!  Tracked down the problem to the line
in myProject.gwt.xml

because I am using google charts in the full app (but not in the small
version above).   gwt-visualization.jar (latest 1.1.2) is copied into
WEB-INF/lib and in project build path.  If I comment out the inherits
line, The code above works fine.

Any ideas?

Thanks,
Mark

-- 
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 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: How to stall GWT app while it is writing file in background? Timer object??

2012-02-01 Thread Mark
The whole idea between AJAX is asynchronous operation, the client
continues working while the server does work.  There's no telling how
long the server will take to do its work so a Timer is not the best
option.  Since you want the client to react when the server finishes
you need to pass the workload to the server method and pass an
AsyncCallback object.  In that object you put your Window.open() call
in the onSuccess() method.

Hope this helps.

On Feb 1, 1:52 pm, Joshua Carey  wrote:
> I have a gwt application that calls a gwt servlet (from my presenter class)
> to write a PDF file to disk, then in my presenter class I display the newly
> created PDF using Window.open("my.pdf");.  The problem is that the
> window.open executes before the pdf is finished writing to disk.  I would
> like to know if there is a way to stall any further statements from
> occurring until the pdf is finished writing.  Or is there a way to use some
> sort of timer object that waits 5 seconds or more while the PDF is  being
> created?  It would be nice to prompt the user a message box that says
> "please wait while PDF is retrieved" and then when the PDF is finished
> writing, we could automatically close the message box and execute the
> window.open("my.pdf") command.  Here is the lines of code in the presenter
> class:
>
> ButtonCell genericButtonCellType = new ButtonCell();
> FieldUpdater previewUpdater = new
> FieldUpdater()
> {
> @Override
> public void update(int index, EOMDocument object, String value)
> {
> if (object.getByteBlob() == null) {
> Window.alert("Sorry but the PDF you are requesting from the database is
> empty. Please select another PDF to view!");} else {
>
> eventBus.writePdf(object.getByteBlob(), object.getIdocNumber());
>         String blobURL =  GWT.getHostPageBaseURL() + "sp_pdf/" +
> object.getPreviewBlobPath();
>         Window.open(blobURL, "Search And Preview - PDF Review", null);
>
> }
> }
> };
>
> Thanks for the help.
>
> Joshua

-- 
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 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: Code splitting size analysis

2012-01-12 Thread Mark
Try -compileReport unless that's what you meant.  If there is a lot of
code shared between the different modules then code splitting won't
give you the great results you're hoping to get.  As I believe he
documentations says, code splitting is an iterative process of getting
a compile report , seeing what is included where you don't expect it,
and trying to eliminate that.

On Jan 12, 4:26 pm, Sergey  wrote:
> Hi!
>
> I'm developing some application and recently realized that it's size
> is too big (nearly 1,5MB per browser permutation) and decide to use a
> code splitting feature. But when I split one of my 5 modules to be
> load first it just take 60% of size, so it is not super efficient.
> My question is - how can I know what code exactly are going to be
> split and what not?
> Compiling with -htmlReport is not answering this question, or mb I
> didn't notice some features?
>
> Thanks,
> Sergey.

-- 
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 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: gwt gui with no servlet container

2012-01-05 Thread Mark
GWT doesn't require you to make any server calls so while I've never
done something like that there should be no reason that it cannot be
done.

On Jan 4, 2:54 pm, Sebastian Gurin  wrote:
> Hi all. This is my first message to the group. I'm a contributor on a similar 
> project at j2s.sf.net. Tried GWT some years ago and didn't like it, but now, 
> it has improved a lot. My congrats to the authors! keep the good work.
>
> Now my question, I would like create a simple html site, with no server stuff 
> at all, only text, images and css, in gwt. Is it possible to deploy a gwt app 
> (with no rpc/requestfractory/server at all) as static content in a non 
> servlet support like plain apache?
>
> The gwt app will not use rpc or any server comunication at all, only gwt 
> widgets and themes. So I suppose there is a way of deploying 
> javascript+html+css gwt generated files as static content? Any suggestions?
>
> Thanks in advance.
>
> --
> Sebastian Gurin 

-- 
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 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: Creating image from base64

2011-12-26 Thread Mark
The OP didn't say anything about a specific browser; this is the only
solution I know of for client-side handling of base64 data using GWT.
I would suggest that you make an HTML element containing an "" that points to a servlet that will stream the decoded data
back to you.
On Dec 26, 12:11 am, vmnikulin  wrote:
> Mark, your method doesn't work in IE8 because it has 32KB limitation
> on data url size.
>
> On 26 ÄÅË, 07:19, Mark  wrote:
>
>
>
>
>
>
>
> > If you just want to display the image then just use what you have and
> > let the browser do the rest. šAdd an HTML object containing
>
> >  > height="Y" alt="alternate text"/>
>
> > As shown here: 
> > šhttp://www.websiteoptimization.com/speed/tweak/inline-images/
>
> > On Dec 25, 6:46šam, vmnikulin  wrote:
>
> > > Hi all!
>
> > > How I can create Image from base64 string?
>
> > > Thank in advance.- óËÒÙÔØ ÃÉÔÉÒÕÅÍÙÊ ÔÅËÓÔ -
>
> > - ðÏËÁÚÁÔØ ÃÉÔÉÒÕÅÍÙÊ ÔÅËÓÔ -

-- 
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 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: Creating image from base64

2011-12-25 Thread Mark
If you just want to display the image then just use what you have and
let the browser do the rest.  Add an HTML object containing



As shown here:  http://www.websiteoptimization.com/speed/tweak/inline-images/

On Dec 25, 6:46 am, vmnikulin  wrote:
> Hi all!
>
> How I can create Image from base64 string?
>
> Thank in advance.

-- 
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 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: Code Splitting Causes Eclipse to Freeze

2011-12-12 Thread Mark Wengranowski
That seems to have fixed it. Thanks Jens.

On Dec 12, 2:29 pm, Jens  wrote:
> I had this once and I think Eclipse sees the generated deferred .js files
> and tries to validate them if you have the J2EE version of Eclipse
> installed. Seems like these files are quite complex and/or Eclipse somehow
> runs out of memory and freezes.
>
> What I have done is to disable all JavaScript validation:
>
> - Project preferences -> Builders -> disable JavaScript Validator.
> - Project preferences -> Validation -> enable project specific settings ->
> disable any JavaScript validation
>
> Hope this helps.
>
> -- J.

-- 
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 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: Code Splitting Causes Eclipse to Freeze

2011-12-12 Thread Mark Wengranowski
Sorry for this additional post but i accidently hit the post button
before i was done typing.

Adding the code example above is all im doing.

Im using GWT 2.4 w/latest update and Eclipse 3.7.

-- 
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 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Code Splitting Causes Eclipse to Freeze

2011-12-12 Thread Mark Wengranowski
Hi Everyone,

It seems that when i add code splitting to my program and compile it
Eclipse freezes when it tries to build the workspace.

It gets hung up on the javascript files in the deferredjs folder in
the war directory. They only way i have found to stop this is to
recompile the code without the code splitting.

GWT.runAsync(new RunAsyncCallback() {
   public void 
onSuccess() {

cp.buildMainModule();
}
   public void 
onFailure(Throwable t) {
 //handle 
somehow
   }
   });

-- 
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 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: transfer Objects between GWT and EJB

2011-12-01 Thread Mark
I dont know that you can do that directly.  The best way I know of is
to create a pojo to represent the entity on the gwt side and then
translate back and forth between them.

On Dec 1, 5:01 pm, ph09  wrote:
> Hello,
>
> I have got a question because of the architectur of my project.
> At the one side there is a GWT Package with the Client Side and also a
> Servlet to communicate with an EJB Project.
> On the other Side there is a EJB Project with Session Beans and
> Entities which schould be stored in a database and send between GWT
> Client and the database. But I don't know how I can realize that. how
> can I send an Object from my Session Bean to the GWT Servlet, because
> the GWT Servlet don't know about the Entitities Classes.
>
> Thats my Project Structur:
>
> Entities + Session Bean:http://pastebin.com/anAbCqgd
>
> GWT Servlet:http://pastebin.com/Ujjka9vT
>
> I hope that it is clear where my problem is ;)

-- 
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 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: Ideal development platform for GWT/GAE?

2011-11-28 Thread Mark Molloy
Thanks! Boy, I thought I would get more opinions on this!  Aren't
there any ex-Windows users out there who have something to say about
the development platform to which they moved?

On Nov 28, 4:35 am, Robert Lockwood  wrote:
> Hi, Mark.  I use a mac Air but a larger or second display would be better.
>  I use an old macMini as a server for testing.  I'm a rank amateur here
> though.  My code will run on LINUX on a small intranet when finished.
>
> I missed Pete and the boys, and the rest of the family as I'm in Brazil on
> vacation.  Hope you're well.
>
> Nate
>
> On Sat, Nov 26, 2011 at 8:40 AM, Mark Molloy wrote:
>
>
>
>
>
>
>
>
>
> > Hi, I currently have one laptop (Windows 7 64-bit) that I use for
> > everything -- and that's a lot of #&^%.  It is an operational mess.
> > Now, I've installed MyEclipse 9.0 to develop a GWT/GAE application.
> > Unfortunately, whenever Eclipse is running, the browsers start timing
> > out.  E.g., it is impossible to use gmail. :(  Performance of Eclipse
> > is pretty erratic, too.
>
> > I'm thinking that I should get a machine dedicated to development/
> > testing of my GWT/GAE application. I just want to install Java,
> > Eclipse, and the plugins I need for the app.
>
> > What do people in this group recommend? I want a minimum of
> > operational maintenance, reasonable performance, and consistent "it
> > just works" behavior, in place of the constant hanging, re-installing,
> > head-scratching operational frustration I currently experience. I'd
> > like to be able to spend my productive time coding and testing
> > algorithms, not trying to figure out why the layers of software
> > underneath don't work.
>
> > Thanks in advance for your help!
>
> > -Mark
>
> > --
> > 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
> > google-web-toolkit+unsubscr...@googlegroups.com.
> > For more options, visit this group at
> >http://groups.google.com/group/google-web-toolkit?hl=en.
>
> --
> When I was 12 I thought I would live forever.
> So far, so good.

-- 
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 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Ideal development platform for GWT/GAE?

2011-11-26 Thread Mark Molloy
Hi, I currently have one laptop (Windows 7 64-bit) that I use for
everything -- and that's a lot of #&^%.  It is an operational mess.
Now, I've installed MyEclipse 9.0 to develop a GWT/GAE application.
Unfortunately, whenever Eclipse is running, the browsers start timing
out.  E.g., it is impossible to use gmail. :(  Performance of Eclipse
is pretty erratic, too.

I'm thinking that I should get a machine dedicated to development/
testing of my GWT/GAE application. I just want to install Java,
Eclipse, and the plugins I need for the app.

What do people in this group recommend? I want a minimum of
operational maintenance, reasonable performance, and consistent "it
just works" behavior, in place of the constant hanging, re-installing,
head-scratching operational frustration I currently experience. I'd
like to be able to spend my productive time coding and testing
algorithms, not trying to figure out why the layers of software
underneath don't work.

Thanks in advance for your help!

-Mark

-- 
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 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Login Page Options/Opinions

2011-11-22 Thread Mark Wengranowski
Hi Everyone,

Im finishing my first GWT app and am about to implement the login
page. I've been doing a lot of reading and wanted to get some opinions
on different ways to go about doing it.

The options I have found are the following:

1. Implement the login page into the main application and allow the
user into the next section once they successfully login.

2. Have a separate GWT program for the login that redirects to the
main program once the user successfully logs in

3. Modify the GWT main HTML page to a .jsp and use jsp to set the
session variables and authenticate the user. After successfully
logging in, the page will refresh and the line for the my programs
GWT .js file is written to the page causing it to load.

4. Same as #3 but create a new jsp ad the default page and redirect to
the normal GWT .html page for the program.

Ideally i would like to have my GWT app loading in the background
while the user is typing in their username and password. That way they
won't have to wait for the program to load once they submit their
credentials. Will any of these methods allow me to do this?

Thanks!
-Mark

-- 
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 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: Reload Place using getWhere()

2011-11-10 Thread Mark Wengranowski
The code example you provided works perfectly! It reloads the place
without refreshing the entire page.

Instead of making a class i just added it into an onClick event in my
application. Because of this i couldn't figure out how to create the
delegate variable but removing it and the || delegate.confirm(warning)
didn't seem to affect it.

Thanks for your help.

Cheers,
-Mark

On Nov 9, 3:34 pm, Jens  wrote:
> 1.) You can do a Window.Location.reload() which will reload your page which
> in turn will load the same place again (url does not change and should
> reflect the current app state).
>
> 2.) A different way would be to create a custom PlaceController that
> provides a method like .forcedGoTo(Place newPlace) which would skip the
> equals() check between getWhere() and the new place. PlaceController is a
> pretty simple class, take a look at its source code.
>
> 3.) Maybe you could also copy some code from the PlaceController if you
> dont want to introduce a custom PlaceController:
>
> public class PlaceUtils {
>
>   public static void reloadCurrentPlace(PlaceController.Delegate delegate,
> EventBus eventBus, PlaceController placeController) {
>     Place where = placeController.getWhere();
>     //Taken from PlaceController.maybeGoTo()
>     PlaceChangeRequestEvent willChange = new PlaceChangeRequestEvent(where);
>     eventBus.fire(willChange);
>     String warning = willChange.getWarning();
>     //Taken from PlaceController.goTo()
>     if(warning == null || delegate.confirm(warning)) {
>       eventBus.fire(new PlaceChangeEvent(where));
>     }
>   }
>
> }
>
> Haven't tried it but maybe it works. Thats basically what
> PlaceController.goTo() does but without the equals check (and this code
> also does not update the "where" instance variable of PlaceController as
> its not possible from outside. But as the code works on the same place
> instance the whole time it does not have to update the "where" variable).
> The default implementation of PlaceController.Delegate is
> PlaceController.DefaultDelegate.
>
> -- J.

-- 
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 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Reload Place using getWhere()

2011-11-09 Thread Mark Wengranowski
Hi Everyone,

Just wondering if anyone knows a way to reload the applications
current place in the following way:

PlaceController.goto(PlaceController.getWhere());

What happens is that the place controller realizes that it's the same
place your trying to go to so it doesn't do anything.

I could write an extremely long if statement that compares getWhere()
to all of my places but that seems a little long winded to do a simple
thing. ie:

if( (PlaceController.getWhere() instanceof TestPlace){
  PlaceController.goto(new TestPlace());
}else if(...

any simple workarounds would be greatly appreciated. I'm using the
activities and places mvp pattern.

Cheers,
-Mark

-- 
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 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: SuggestBox with RequestFactory

2011-11-09 Thread Mark Wengranowski
Thanks. I should be able to figure it out from here but more source
code is always helpful.

On Nov 8, 7:34 pm, Ashwin Desikan  wrote:
> have you checked out the sample in the following location.
>
> http://jectbd.com/?p=45
>
> the example uses an RPC connection, but that can be easily replaced
> with RF. This has example of how to implement filtering and restrict
> the number of results from server.
>
> one option for you would be to use a range query on the server.
>
> I implemented a dynamic version based on the above sample code. i
> currently restrict my results to 75 currently and I perform a query
> only after the user has typed in 3 characters to reduce the number of
> calls to server, but would soon be changing to a range query. If you
> are interested can share my work.
>
> thanks
> Ashwin
>
> On Wednesday 09 November 2011 05:14:41 AM IST, Mark Wengranowski wrote:
>
>
>
>
>
>
>
> > Hi Everyone,
>
> > I was wondering if anyone knows of a source code example that uses
> > requestfactory, a suggestbox and a dynamic suggest oracle?
>
> > I already have suggestboxes that i populate with a list of strings
> > from a RF call but  need a more dynamic approach for a search tool.
> > The list is way too long to load all of the answers so i need to
> > create a suggest oracle that makes an RF call after each key is typed.
>
> > All i can find is examples for RPC.
>
> > Thanks,
> > -Mark

-- 
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 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



SuggestBox with RequestFactory

2011-11-08 Thread Mark Wengranowski
Hi Everyone,

I was wondering if anyone knows of a source code example that uses
requestfactory, a suggestbox and a dynamic suggest oracle?

I already have suggestboxes that i populate with a list of strings
from a RF call but  need a more dynamic approach for a search tool.
The list is way too long to load all of the answers so i need to
create a suggest oracle that makes an RF call after each key is typed.

All i can find is examples for RPC.

Thanks,
-Mark

-- 
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 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Hosted mode memory leaks - am I missing something?

2011-11-08 Thread Mark Allerton
Hi,

I'm sure I'm not the only person who has ever thought that it might be
possible to use Java-based heap profiling tools to look for memory
leaks in GWT-based applications, but in practice this has turned out
to be a little frustrating because at least based on my naive
interpretation, Hosted Mode leaks pretty much every object that needs
to be invoked from the native side, apparently by design.

So my question is, am I missing something?

To be more specific about what I am seeing, I see many many objects
referenced only via the ThreadLocal "dispatchObjectCache" in
JsValueOOPHM. As far as I can tell based on searching the source code,
objects are only ever put into this cache and none are ever removed.

I have had some (apparent) success with the Eclipse Memory Analyzer,
which allows me to exclude refs via Thread.threadLocals when tracing
from GC roots, but I want to be sure that the references I am
excluding can in fact be ignored (i.e there is not some way that
objects are removed from dispatchObjectCache that has escaped my
attention.)


Thanks in advance

..Mark..

-- 
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 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: it is not a circular structure

2011-10-14 Thread .Mark
I have just updated my Ubuntu workstation to 11.10 which has provided
me Eclipse Indigo.  With that I have updated my Google plug-in to the
version for Eclipse Indigo.  I have GWT 2.4.0 and AppEngine 1.5.5.  It
appears things are working better. I am not currently getting the
circular reference exception in the same code.  I am going to test
things a bit more before I consider this issue completed.



On Oct 11, 7:07 am, "J.Ganesan"  wrote:
> Please check up whether equals method returns true for two different
> objects. Often, that is a reason for circularity.
>
> J.Ganesanwww.DataStoreGwt.com
> Persist objects directly in App Engine
>
> On Oct 8, 5:26 pm, ".Mark"  wrote:
>
>
>
>
>
>
>
> > I have a problem that I can not figure out.  I have some classes
> > extending the JavaScriptObject class.  None of these classes reference
> > each other or reference itself.  I only access them in my java code
> > and use the JSON to store these data structures.
>
> > I get an error of "(TypeError): Convertingcircularstructure to
> > JSON".
>
> > Each class's unit test works on the stringify calls.
> > The program works if I put debug lines to stringify each class before
> > the natural flow of the program.
>
> > What happens during run time is I fire events when data is written to
> > the jnsi objects.  A listener to the event is taking these objects and
> > serializing them to save.  It is during that call when triggered by
> > the events that I get thecircularerror.  But it works if I put a
> > debug call to stringify each object before it's chane event is fired.
>
> > I am lost in finding out what is going on or why this happens.

-- 
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 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



ListBox CSS with GWT Clean Theme

2011-10-12 Thread Mark Wengranowski
Hi Everyone,

I recently started using the newer Clean theme for GWT. I prefer it to
the standard theme but don't like the way that ListBox looks. Is there
any way that i can get the ListBox styles from the Standard theme? I
looked in the generated CSS file but the ListBox style is empty.

Thanks,
-Mark

-- 
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 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



  1   2   3   >