Re: Refresh of CellTable via data transmitted via WebSocket delayed

2016-09-24 Thread Kay Pac
wrote: > > > > On Friday, September 23, 2016 at 2:04:19 AM UTC+2, Kay Pac wrote: >> >> I have a somewhat complex problem related to a CellTable that updates >> based on messages received over a WebSocket connection. The problem is as >> follows: The table does

Refresh of CellTable via data transmitted via WebSocket delayed

2016-09-22 Thread Kay Pac
I have a somewhat complex problem related to a CellTable that updates based on messages received over a WebSocket connection. The problem is as follows: The table does not update in real-time, even though "setRowData" and redraw* are called in real-time. There is a delay in the row appearing

Re: GWT SDM Polymer

2016-08-22 Thread Kay Pac
Are there recommendations for GWT/polymer versions that play nice together? And by polymer version I guess I mean the vaadin artifact that is the wrapper for polymer. vaadin-gwt-polymer-elements I am using 1.2.3.0 and gwt-2.8.0-rc2 and it does not appear to work, I get an error in

Is anyone using DockLayoutPanel?

2016-08-22 Thread Kay Pac
I can't get anything to display except for the argument to "addNorth" in the DockLayoutPanel. I am using the DockLayoutPanel as the basis for a widget that extends Composite. I am calling InitWidget and I have tried using units EM and PX. The sizing appears correct but the div that contains

Parsing URI components

2016-08-17 Thread Kay Pac
Hi, I would like to parse the UrI for the host page to populate arguments for the application. I do not know how to do this - I can use Document.get().getURL() but there is no jdk URI emulation and UriUtils and/or the URL class don't have methods to parse the query string. Any help? Kay --

Re: Webfonts with GS

2016-08-12 Thread Kay Pac
Okay, I see what I did wrong, I used the old-style CSS @def instead of the GSS @def, which must of worked because I hadn't fully enabled GSS in my application. Or something. I got it to work I just needed resourceUrl() in my @def. On Friday, August 12, 2016 at 4:34:59 PM UTC-7, Kay Pac wrote

Re: Webfonts with GS

2016-08-12 Thread Kay Pac
Well, at some point this worked but now that I've recompiled it works neither in super dev mode nor regular compiled mode. On Friday, August 12, 2016 at 4:34:59 PM UTC-7, Kay Pac wrote: > > I tried to follow the instructions at this link : > http://stackoverflow.com/questions/28507

Webfonts with GS

2016-08-12 Thread Kay Pac
I tried to follow the instructions at this link : http://stackoverflow.com/questions/28507667/using-custom-fonts-with-google-web-toolkit They are in the first answer to the question. Basically I am trying to use a webfont with GSS. I got it to work in super dev mode but it doesn't work in the

Re: selenium and waiting for CellTable to load

2016-08-09 Thread Kay Pac
I was thinking about this a bit, and I could probably use a hidden form field or some other DOM change to indicate the completion of the table load - it might be more reliable. On Monday, August 8, 2016 at 11:34:04 AM UTC-7, Kay Pac wrote: > > Does anyone have code for inter

selenium and waiting for CellTable to load

2016-08-08 Thread Kay Pac
Does anyone have code for interacting with celltables in selenim tests? I have a selenium test and a CellTable that is filled with the results of an RPC call. The table displays a "loading" image until the rows are populated, and I need to wait for the "loaded" condition in my selenium test

[gwt-contrib] Re: Documentation site on github

2016-08-04 Thread Kay Pac
I've been unable to find the "JUnit.html" page in the github gwt-site depot. The url is: http://www.gwtproject.org/doc/latest/tutorial/JUnit.html Any help? On Wednesday, February 11, 2015 at 1:05:11 AM UTC-8, Thomas Broyer wrote: > > > > On Wednesday, February 11, 2015 at 9:50:34 AM UTC+1,

Re: Documentation site on github

2016-08-04 Thread Kay Pac
I've been unable to find the "JUnit.html" page in the github gwt-site depot. The url is: http://www.gwtproject.org/doc/latest/tutorial/JUnit.html Any help? On Wednesday, February 11, 2015 at 1:05:11 AM UTC-8, Thomas Broyer wrote: > > > > On Wednesday, February 11, 2015 at 9:50:34 AM UTC+1,

Re: Using custom servlet for GWT-RPC with GWTTestCase

2016-08-04 Thread Kay Pac
I guess I am confused. I understand the need to do as much testing as possible with regular JUnit/TestNG tests, which I try to do. What I don't understand precisely is where the area of coverage for GWTTestCase is - it's some area between vanilla JUnit and Selenium/Webdriver, but it's clear I

Re: Using custom servlet for GWT-RPC with GWTTestCase

2016-08-03 Thread Kay Pac
:37:51 PM UTC-7, Kay Pac wrote: > > This worked great for a while, but I think it broke at some point. I just > don't know when it stopped working. I'm sure it is something on my end or > in my code. But my element is no longer working. I've checked the > jetty debug loggin

[gwt-contrib] Re: Unable to compile GWT 2.8.0-rc1 module in IntelliJ

2016-07-31 Thread Kay Pac
It's only added by IntelliJ. Do you mean it might be guava? On Sunday, July 31, 2016 at 4:27:32 PM UTC-7, Thomas Broyer wrote: > > That might be this. Do you have gwt-dev as a dependency or is it only > added by IntelliJ? -- You received this message because you are subscribed to the Google

[gwt-contrib] Re: Unable to compile GWT 2.8.0-rc1 module in IntelliJ

2016-07-31 Thread Kay Pac
Sure thing. I also looked at my dependency tree, and I seem to have a guava 19 dependency, which I heard was unsupported (although I might not use it) and I also saw: [INFO] +- org.jmock:jmock:jar:2.8.2:test [INFO] | +- org.jmock:jmock-testjar:jar:2.8.2:test [INFO] | +-

[gwt-contrib] Unable to compile GWT 2.8.0-rc1 module in IntelliJ

2016-07-31 Thread Kay Pac
I am getting strange errors in building my GWT app in IntelliJ with 2.8.0-rc1, and I have gotten them for a while with SNAPSHOT. I fixed them by adding dependencies to my module POM, but that seemed wasteful so I just stopped using intellij. I'd love to be able to get them sorted. Loading

[gwt-contrib] Re: GWT 2.8.0 RC1 is here!

2016-07-29 Thread Kay Pac
That is fantastic! Thanks to you and the rest of the team for your hard work. I am having trouble with IDE support, but that is related to the product (IntellIJ) and not GWT itself Awesome! On Thursday, July 28, 2016 at 10:39:39 PM UTC-7, Daniel Kurka wrote: > > Hi all, > > I just build the

Re: Using custom servlet for GWT-RPC with GWTTestCase

2016-07-28 Thread Kay Pac
This worked great for a while, but I think it broke at some point. I just don't know when it stopped working. I'm sure it is something on my end or in my code. But my element is no longer working. I've checked the jetty debug logging and the paths are matching, but jetty is still directing my

Re: Ui Binder Alternatives

2016-07-25 Thread Kay Pac
I don't want to start a huge discussion necessarily but are Widgets really losing support? On Monday, July 25, 2016 at 10:45:29 AM UTC-7, Paul Stockley wrote: > > One option when 2.8 is released would be to use GWT React ( > https://github.com/GWTReact/gwt-react). React is a good substitute for

[gwt-contrib] Re: Newer gwt-maven-plugin than 2.8.0-beta1 ?

2016-07-22 Thread Kay Pac
Oh sweet I didn't know there was a different maven GWT plugin. I mean Maven Plugin for GWT. ;-) It will take me a bit to process this radical life change, but I hope to get some hands on experience with it soon. Thanks so much Thomas!! On Tuesday, May 3, 2016 at 8:46:02 AM UTC-7, David Becker

[gwt-contrib] Re: Change to SerializbleTypeOracleBuilder constructor removing an argument

2016-07-22 Thread Kay Pac
Sorry, the change is at https://gwt-review.googlesource.com/#/c/8041/ On Friday, July 22, 2016 at 4:13:38 PM UTC-7, Kay Pac wrote: > > In change 580db4248fc38f9721d0a920cabfc2b17e10d73f ( > http://gwt-code-reviews.appspot.com/1113801/show), the constructor for > SerializableTypeO

[gwt-contrib] Change to SerializbleTypeOracleBuilder constructor removing an argument

2016-07-22 Thread Kay Pac
In change 580db4248fc38f9721d0a920cabfc2b17e10d73f (http://gwt-code-reviews.appspot.com/1113801/show), the constructor for SerializableTypeOracleBuilder was changed. from: public SerializableTypeOracleBuilder(TreeLogger logger, PropertyOracle propertyOracle, GeneratorContext context) throws

users of spring 4 gwt?

2016-07-13 Thread Kay Pac
Are there users of spring 4 gwt? I have a fork I am working to get published to maven central, and it would be nice to have a beta tester or two before I publish any artifacts. Please let me know ! Original project URL is here: https://code.google.com/archive/p/spring4gwt/ I will publish my

Re: Spring4GWT fork published to github

2016-07-13 Thread Kay Pac
I forgot to include the github url for the project: https://github.com/heptetgroup/spring4gwt On Wednesday, July 13, 2016 at 10:59:44 AM UTC-7, Kay Pac wrote: > > > Greetings, > > I forked Spring4Gwt which was on google code ( > https://code.google.com/archive/p/spring4g

Spring4GWT fork published to github

2016-07-13 Thread Kay Pac
Greetings, I forked Spring4Gwt which was on google code (https://code.google.com/archive/p/spring4gwt/) and published it to github. I'm working to get it deployed to central but I just opened a ticket. The fork isn't polished yet but I needed to publish it in order to deploy to central. It

Re: GWT RPC in GWT 3.0+

2016-07-13 Thread Kay Pac
Will the gwt serialization mechanism used in GWT-RPC remain? GWT object serialization has been plugged into the atmosphere (realtime communication/websockets) GWT extension. It would be useful to know if we should migrate away from the GWT serialization and towards JSON. On Thursday, July 7,

Re: Website docs: incorporate gwt-maven-plugin ?

2016-07-10 Thread Kay Pac
s. If you think it'd be quite long, then better wait for > feedback from others ;-) > Also don't hesitate to join GWT-Contrib if you intend to contribute to the > docs (or anything else, even just testing the snapshots): > https://groups.google.com/forum/#!forum/google-web-toolkit-contributor

Logging in a GWTTestCase with gwt-maven-plugin

2016-07-08 Thread Kay Pac
I've never used GWTTestCase much because I found it too difficult to use, but I am trying to add some basic tests. I want to use logging to monitor the test results at a finer granularity (rather than just pass/fail) while I am developing them. However, I am unable to see the results of my

Website docs: incorporate gwt-maven-plugin ?

2016-07-08 Thread Kay Pac
What do people think about incorporating some notes for users for gwt-maven-plugin on the website? For instance I am reviewing the JUnit testing guide and there is no help for me as a user of gwt-maven-plugin. I realize there is a risk of providing too much or conflicting information, but I

GWT - No CAPTCHA reCAPTCHA

2015-03-31 Thread pac
Is it possible to use new No CAPTCHA reCAPTCHA (http://googlewebmastercentral.blogspot.ie/2014/12/are-you-robot-introducing-no-captcha.html) with GWT? For old style I think https://code.google.com/p/gwt-recaptcha/ worked with GWT Just wondering how to use new API with GWT Thanks -- You

Re: SDM with modular-webapp - no client-side debugging possible

2014-11-22 Thread Kay Pac
I'm not sure I understand how launcherDir would allow you to recompile on load? Doesn't this just set an output directory? On Saturday, November 22, 2014 1:34:15 AM UTC-8, Thomas Broyer wrote: BTW, how about using launcherDir to have recompile on load instead of using the bookmarklets? On

Using custom servlet for GWT-RPC with GWTTestCase

2014-11-22 Thread Kay Pac
Hi everyone, I am using spring4gwt, which is a servlet that allows me to use Spring DI with GWT-RPC servlets. It's a very simple wrapper that just provides the injected objects and I just use @RemoteServiceRelativePath to set the service URL properly so that it is directed to the correct

Use of HandlerManager in GWT example code conflicts with javadoc

2014-06-19 Thread Kay Pac
I've been implementing the MVP pattern for my application. The description of MVP on the site and the example code has been very helpful, especially as I lack experience with GUI patterns and many descriptions of MVP and MVC are somewhat abstract. However, I've noticed that the javadoc for

debugId with UiBinder not working?

2014-05-30 Thread Kay Pac
Hello there! I am trying to use selenium with my GWT app and I have noticed that it uses inappropriate css class selectors to find the widgets. I did some research into this and it seems I need to use 'debugId' attribute in my UiBinder xml template. I have added debugId attributes and have

useManifestOnlyJar and too-long command lines on Windows

2014-05-30 Thread Kay Pac
I have been getting errors when running 'mvn package'. They appeared when I changed the configuration for maven-surefire-plugin. I set useManifestOnlyJar to true, which is the default value for the plugin. The value was being set to false. I copied the POM XML directly from the output of

Re: What's the version of Jetty in gwt-dev.jar ?

2014-05-19 Thread Kay Pac
. On Sunday, May 18, 2014 7:12:05 AM UTC+2, Kay Pac wrote: Thanks! I have been fiddling with the embedded jetty instance in order to enable AnnotationConfiguration. I have it working but only on a shell project with out all the dependencies my regular application uses, as I am trying to debug

Re: What's the version of Jetty in gwt-dev.jar ?

2014-05-18 Thread Kay Pac
:46 AM UTC-7, Thomas Broyer wrote: The same link hints at jetty-8.1.12.v20130726 (assuming that by now you mean GWT 2.6+), confirmed by the build scripts: https://gwt.googlesource.com/gwt/+/2.6.1/dev/build.xml On Saturday, May 17, 2014 5:52:51 AM UTC+2, Kay Pac wrote: Okay, how about now

Re: Possible RFE: Make UiBinder aware of IsWidget interfaces

2014-05-18 Thread Kay Pac
I've been trying to learn UiBinder with some success although I am at the beginning stages. I've been trying to embed one view inside another in a way similar to, or the same as, the original poster. I haven't had success at all because I don't understand how these classes work. My case

Re: What's the version of Jetty in gwt-dev.jar ?

2014-05-17 Thread Kay Pac
Okay, how about now? Trying to determine which version of jetty mostly to have accurate source, trying to figure out how to configure spring. I realize I don't need source code for this, but I also just want current source. On Friday, September 9, 2011 12:26:18 AM UTC-7, Thomas Broyer wrote:

abc wants to chat - what’s the story behind these posts

2011-07-06 Thread pac
Yesterday I saw a similar post in gwt forum from my account (which I didn't post) I thought my account is compromised, I deleted that post and changed my password. But nothing else looked suspicious but just one post in gwt forum. Message itself looks bit promotional from google team. Today, I

Re: abc wants to chat - what’s the story behind these posts

2011-07-06 Thread pac
the group email address in the Gmail chat box, perhaps with the help of auto-complete. It is definitely not intentional promo from Google. /dmc On Wed, Jul 6, 2011 at 8:54 AM, pac parvez.chau...@gmail.com wrote: Yesterday I saw a similar post in gwt forum from my account (which I didn't

Re: gae gwt - to serve compressed java script

2011-03-25 Thread pac
Will appreciate any suggestions to fix this. On Mar 24, 11:11 pm, pac parvez.chau...@gmail.com wrote: I did post this in gae forumhttps://groups.google.com/forum/?fromgroups#!topic/google-appengine-j... Posting here as well if somebody can suggest something. It looks that app engine

GWT 2.2 and gwt-maps.jar not compatible

2011-02-14 Thread pac
Just upgraded to GWT 2.2 and getting in error in project compilation, looks gwt-maps library no longer compatible. Do I need something to make it work? [ERROR] Errors in 'jar:file:/myproject/war/WEB-INF/lib/gwt- maps.jar!/com/google/gwt/maps/client/impl/InfoWindowImpl.java' [ERROR]

Re: GWT 2.2 and gwt-maps.jar not compatible

2011-02-14 Thread pac
Thanks dilbert, that worked. Built new jar, also attached here http://code.google.com/p/gwt-google-apis/issues/detail?id=447 may help some other people. On Feb 14, 4:52 pm, Eric Ayers zun...@google.com wrote: FYI, I updated an issue in the issue tracker on this problem:

application gets reloaded

2010-11-18 Thread pac
String links causing application to reload. e.g. a href=\# + word + \ + word + /a; Looks like it is issue 2152 http://code.google.com/p/google-web-toolkit/issues/detail?id=2152 I tried solution mentioned in the issue i.e. cleanAnchors() by pabs87 But it reloads the application and error in

Re: application gets reloaded

2010-11-18 Thread pac
changes to login without any reload and then automatically it changes token back to my Account and reloads the application at this stage. Any suggestions? Thanks. On Nov 18, 5:50 pm, pac parvez.chau...@gmail.com wrote: String links causing application to reload. e.g. a href=\# + word + \ + word

grid column and flow panel

2010-08-08 Thread pac
I am using a flow panel in one of grid's column. I want objects to wrap in flow panel as needed. It works fine when there is only one widget in flow panel but does not when there are more than one object. I have to add few labels and links in panel but here in this example just 2 labels just to

Re: SplitLayoutPanel - initial split between top and bottom panel

2010-06-14 Thread pac
you cant specifiy EM or PCT On Sun, Jun 13, 2010 at 5:17 PM, pac parvez.chau...@gmail.com wrote: Thanks for your reply Stefan. As such I do not have height for north and center panel, but I did try a style for both panels  and tried to make their size half of split panel i.e. 300px

Re: SplitLayoutPanel - initial split between top and bottom panel

2010-06-13 Thread pac
Thanks for your reply Stefan. As such I do not have height for north and center panel, but I did try a style for both panels and tried to make their size half of split panel i.e. 300px, but did not work. And half half I really do not need, as long as both panels are visible, at the moment center

Re: waiting for help

2009-03-24 Thread poonam pac
Hello, No reason as particular but I just wanted to check whether it works with struts and if it works then how does it works? If u have the solution ar tried out something then please let me know. Thanks. --~--~-~--~~~---~--~~ You received this message because you

Re: GWT on Eclipse

2009-03-09 Thread poonam pac
Hi, I have not used Netbeans. But I am using Eclipse and I find it good to work upon the platform. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group,

Unable to solve the warning.

2009-03-02 Thread poonam pac
Hello, As suggested by you I made the changes in my Application developed integrating GWT+Spring +Hibernate in the Hosted mode but still I am getting the same Warning message as : StandardContext[]Exception while dispatching incoming RPC call Please help me to solve it. I am sending

Re: Integrating GWT+Spring application with Hibernate

2009-02-13 Thread poonam pac
Hello, Actually I have used the same link http://software-wonders.blogspot.com/2007/02/it-is-not-mistery-that-google-web.html to develop my GWT+Spring application, now I want to integrate my this application with Hibernate. Please help me in doing that. Thanks, Poonam.