Re: Question about SuperDevMode/codeserver

2019-03-06 Thread Bryan Bende
I was able to set the launcherDir to server/target/classes/static and that seems to make it work the way I was expecting. On Tuesday, 5 March 2019 13:55:54 UTC-5, Bryan Bende wrote: > > Hello, > > I have a multi-module Maven project setup similar to the multi-module > archety

Question about SuperDevMode/codeserver

2019-03-05 Thread Bryan Bende
would load the nocache.js from the launcherDir, but doesn't seem to really change the behavior. Maybe that part isn't working the way I think it is. Thanks, Bryan -- You received this message because you are subscribed to the Google Groups "GWT Users" group. To unsubscribe from this group

Re: New project best practice

2017-11-05 Thread Bryan Buchanan
Wow - thanks for the detailed reply. -- 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

Re: Gradle 4.1 gwt-gradle-plugin multi module project not finding other modules dependencies

2017-10-16 Thread Bryan Hughes
Was my bad. Package path's weren't lined up to be under .client. On Saturday, October 14, 2017 at 7:33:25 PM UTC-4, Bryan Hughes wrote: > > I'm trying to create a Gradle 4.1 multi module project with the > gwt-gradle-plugin. > > I have one module ":gwt-app" that I'm tr

GQuery.on() and future elements created outside of GWT.

2017-10-16 Thread Bryan Hughes
I'm using GWT and GwtQuery to create a javascript file to track some analytics. I want to bind handlers to elements with certain data- attributes, they may or may not be present onModuleLoad(). I tried: $(document).on("click", "body * img[data-im-lookingfor]", new Function() {...});

Gradle 4.1 gwt-gradle-plugin multi module project not finding other modules dependencies

2017-10-14 Thread Bryan Hughes
I'm trying to create a Gradle 4.1 multi module project with the gwt-gradle-plugin. I have one module ":gwt-app" that I'm trying to use a simple POJO from it's sibling module ":shared-lib". I have a simple sample project at https://github.com/hugheba/gwt-shared When I run "./gradlew

Starting new GWT project - what to use

2017-03-26 Thread Bryan Buchanan
Hi, I've been a long time GWT user, and my current apps use gwtbootstrap, UI Binder, widgets, GWT-RPC. i.e. most of the stuff that, IMO, makes GWT worth using. >From the stuff I've seen about the 3.x release, a lot of this disappears. I'm wondering if there's any document anywhere which sets

GWT and Thrift

2016-05-06 Thread Bryan Buchanan
Is anyone using Thrift RPC with GWT ? I know there was a GWT-Thrift project a few years ago, but I'm thinking with JSInterop the current Thrift generated JS client could be used with GWT ? -- You received this message because you are subscribed to the Google Groups "GWT Users" group. To

Re: Important videos from GWT Meet-up 2015

2015-06-20 Thread Bryan Buchanan
I'm a bit surprised that there hasn't been more comment on the direction the GWT team plan to take GWT in 3.0. I've been involved in a GWT project over the last 18 months or so where we're developing a large line-of-business app which we expect to have a lifetime of potentially a decade or

Re: GWT Material Design

2015-03-30 Thread Bryan Buchanan
Hi Kevin, Very well done. I've downloaded and built the sample, and it's very impressive. Good work ! -- 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

ListBox change event

2015-03-04 Thread Bryan Buchanan
Could some one please tell me why this doesn't generate any change events: ui:UiBinder xmlns:ui=urn:ui:com.google.gwt.uibinder xmlns:g=urn:import:com.google.gwt.user.client.ui ui:style /ui:style g:HTMLPanel g:ListBox ui:field=category/g:ListBox /g:HTMLPanel /ui:UiBinder public class Invoices

Re: AdWords Conversion Tracking

2015-02-10 Thread Bryan Buchanan
Looks like it would be possible using this StackOverflow answer: http://stackoverflow.com/a/22063668 On Wednesday, 11 February 2015 16:35:14 UTC+10, Bryan Buchanan wrote: I never figured out how to do this - has anyone who ever used GWT implemented AdWords Conversion tracking ? On Friday

Re: AdWords Conversion Tracking

2015-02-10 Thread Bryan Buchanan
I never figured out how to do this - has anyone who ever used GWT implemented AdWords Conversion tracking ? On Friday, 7 May 2010 16:26:41 UTC+10, bryanb wrote: Hi, Can anyone tell me if it's possible to add the AdWords Conversion tracking script

Pan image in viewport

2014-09-12 Thread Bryan Buchanan
I've tried to get the Maps example code in http://www.corewebdevelopment.com/ but it doesn't work, and uses a bunch of deprecated stuff which I'm not sure how to update. I'm wondering if anyone has a solution for panning an image by dragging the mouse. (The answer at

Gwt embeded in product sold

2012-06-07 Thread Bryan Benauro
Is gwt free to embed on a machine that is being sold commercially. -- 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

How to use custom font on gwt uibinder?

2011-07-02 Thread Bryan Lim
Hi, If i have a ttf, how can i use it on uibinder? I placed it in font directory in my war and inserted the following line in html. link href='font/LobersterTwo-Regular.ttf' rel='stylesheet' type='text/css' but it doesn't work. any advice? -- You received this message because you are

Re: how to get iphone-like changing view animation

2011-07-02 Thread Bryan Lim
Hi, Thanks everyone. But how do I create an iphone-like animation on layout panel? The tutorial did not show such example. On Sun, Jul 3, 2011 at 1:39 AM, ciosbel andrew...@gmail.com wrote: As said by Gal, Layout panel gives you max flexibility. A quick sample is the DeckLayoutPanel that

IE (8 9) reload app when internal link clicked

2011-04-13 Thread bryan
My GWT app has in the initial HTML page div id=loadingimg src=images/loading.gif/div which puts up a loading animation. Then when the app loads: public void onModuleLoad() { DOM.removeChild(RootPanel.getBodyElement(), DOM.getElementById(loading)); .. removes the animation, which all

Re: Replace Enter key by Shift + Enter

2011-02-24 Thread Bryan Donnovan
In your KeyDown event handler, examine the KeyDownEvent to see whether or not the Shift key is down, e.g. if (event.isAnyModifierKeyDown()){ // handle SHIFT-ENTER } else { // handle ENTER event.preventDefault(); } On Feb 24, 5:44 am, ryan T ryanro...@gmail.com wrote: Hi all, Is

ui:data and mime types

2011-02-24 Thread Bryan Donnovan
When including an .mp3 file using ui:data the content type in the data url is content/unknown How do I make the GWT compiler use the correct mime type? Where is the compiler's mapping between file extensions and content type? -- You received this message because you are subscribed to the

Eclipse 3.6 + GPE startup time

2011-02-23 Thread Bryan Donnovan
Eclipse takes around 1 minute to launch and seems to get worse over time. I have only 3 GWT projects in the workspace, and I'm not sure what to do about this problem. Does anyone know a method for improving the startup time? -- You received this message because you are subscribed to the

Re: Eclipse 3.6 + GPE startup time

2011-02-23 Thread Bryan Donnovan
Wow. Amazing difference. Thank you. On Feb 23, 4:58 pm, Thomas Broyer t.bro...@gmail.com wrote: Try cleaning your temp dir:http://code.google.com/p/google-web-toolkit/issues/detail?id=5261 -- You received this message because you are subscribed to the Google Groups Google Web Toolkit

content type of DataResource

2011-02-22 Thread Bryan Donnovan
I am using a ClientBundle with DataResource elements for audio files used as sound effects. e.g. public interface Sounds extends ClientBundle { @Source(sound1.mp3) DataResource sound1(); @Source(sound2.wav) DataResource sound2(); } In the above example, the url of

Re: content type of DataResource

2011-02-22 Thread Bryan Donnovan
for them as well. On Tue, Feb 22, 2011 at 7:05 PM, Bryan Donnovan bryandonno...@gmail.comwrote: I am using a ClientBundle with DataResource elements for audio files used as sound effects.  e.g. public interface Sounds extends ClientBundle {          @Source(sound1.mp3

DevMode performance with Chrome

2011-01-20 Thread Bryan Donnovan
When running in DevMode using FF 3.6 or IE8, performance is pretty good. By performance, I mean the time it takes to refresh the page containing the GWT app. When running in Chrome 8 or 9, reload takes much longer, uses more cpu, etc. I expect that this has something to do with the process per

Re: AdSense and GWT

2011-01-15 Thread Bryan Donnovan
I applied to Adsense for Ajax last May when it was introduced at Google I/O. To date I have received no response whatsoever. Pretty disheartening. Has anyone on this group received AFA access ? On Dec 30 2010, 3:48 pm, Matthew Hill matt2...@gmail.com wrote: Interesting. Thank you very much,

Re: Applet internet explorer

2011-01-10 Thread Bryan Donnovan
The problem has to do with how IE initializes applets. In my case, I saw an init/destroy cycle followed by a second cycle with init/start The solution was to move the code from Applet::init() to Applet::start() I expect that you are doing work inside init()? If so, that might explain the

Re: Wave

2011-01-09 Thread Bryan Donnovan
+1 (although, sadly, some of them are now at FB) On Jan 9, 5:41 pm, zixzigma zixzi...@gmail.com wrote: GoogleWave = Wave Protocol + GWT GUI + Brilliant Engineers at Google -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this

Re: Problems of inserting javascript dynamically under script tag in IE

2010-11-22 Thread Bryan
Instead of doc.createElement(script) you can use doc.createScriptElelment(); final Document doc = Document.get(); final ScriptElement script = doc.createScriptElement(); script.setType(text/javascript); script.setText(strJavascript); On Nov 21, 8:06 pm, Renee Lau

i18n apocalypse

2010-11-20 Thread Bryan Donnovan
I'm using eclipse helios and the GWT 2.1 plugin. My app was coming along nicely, I was learning the ins and outs of GWT, and decided to try out some of the built in i18n features. I began following the the UiBinder i18n guide and marked up one of my templates with some ui:msg fields and decided

Error No source code is available for type javax.jdo.PersistenceManager

2009-11-30 Thread Bryan Harper
setup without GWT and never had an issue. I'm not sure what information about my app would be helpful, but will be happy to provide whatever. Thanks, Bryan -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email

Re: JSNI syntax question - calling Java methods from JSNI

2009-11-20 Thread Bryan
Nice. Thanks Thomas. Worked great. I knew it had to be something as simple as that. Much appreciated. On Nov 20, 4:22 am, Thomas Broyer t.bro...@gmail.com wrote: On Nov 20, 1:07 am, Bryan bwn...@gmail.com wrote: I'm following the example seen here for 'calling Java methods from JSNI

JSNI syntax question - calling Java methods from JSNI

2009-11-19 Thread Bryan
I'm following the example seen here for 'calling Java methods from JSNI' and it works great. http://googlewebtoolkit.blogspot.com/2008/07/getting-to-really-know-gwt-part-1-jsni.html I'm trying to do something slightly different though. Here's what it is. package com.foo.bar; public class

Re: JSNI syntax question - calling Java methods from JSNI

2009-11-19 Thread Bryan
be greatly appreciated. On Nov 19, 5:07 pm, Bryan bwn...@gmail.com wrote: I'm following the example seen here for 'calling Java methods from JSNI' and it works great. http://googlewebtoolkit.blogspot.com/2008/07/getting-to-really-know-g... I'm trying to do something slightly different though

Re: RichTextArea gotchas

2009-11-04 Thread Bryan
I also want only plain text to be pasted so that I can apply my own styles to the text. The reason that I am looking at RichTextArea instead of a plain TextArea is because I want the ability to show emoticons and TextArea does not support anything like images with the text. I don't see a

Re: RichTextArea gotchas

2009-11-04 Thread Bryan
not catch all paste events, e.g. ContextMenu paste. Does anyone have a 100% reliable method of stripping formatting on pastes into a RichTextArea ? On Nov 4, 9:54 am, Bryan bryan.verg...@gmail.com wrote: I also want only plain text to be pasted so that I can apply my own styles to the text

Re: Insert addthis-button in GWT

2009-10-27 Thread Bryan
You add 2 separate elements: First add a ScriptElement containing the external JavaScript Next, add an InlineHTML element to contain the button html. On Oct 26, 6:55 pm, vokke vkub...@gmail.com wrote: Hi Bryan, many thanks for your answer. But I need more help, I'm afraid... I tried

Re: Insert addthis-button in GWT

2009-10-24 Thread Bryan
Add the script separately: Document doc = Document.get(); ScriptElement script = doc.createScriptElement(); script.setSrc(http://...;); doc.getBody().appendChild(script); Then you can add the rest of the HTML and it should work. b On Oct 24, 1:32 pm, vokke vkub...@gmail.com wrote: Hello

DockLayoutPanel and Tab Order

2009-10-23 Thread Bryan Vergato
Running 2.0m2 -- I've just noticed that when I add components to a DockLayoutPanel , the tab order is the order in which the components are added to the dock (or DOM, I suppose). If you add a North, South and Center component which are all focusable, the tab order will be North, South, then back

max-width under IE8

2009-10-23 Thread Bryan
I have a standards mode GWT app, GWT2.0 m2, and the following CSS rule. .mylabel { max-width:50px; overflow:hidden; } This works properly in all browsers except (of course) IE, where the label width is not actually constrained by max-width. This is IE8, btw. Is there any workaround other

com.google.gwt.user.client.ui.Frame and broken history

2009-08-03 Thread Bryan
The javadoc for frame says Note that if you are using History, any browser history items generated by the Frame will interleave with your application's history. Really? It just breaks it and that's it? Are there any suggested workarounds? This is a huge problem for sites that serve up ads in

Re: Popup Stealing focus

2008-11-23 Thread Bryan
Hope this helps. Mark On Nov 21, 12:24 am, Bryan [EMAIL PROTECTED] wrote: Okay so it seems that overriding show() actually is setting the focus on the textBox but the cursor is not showing up. On Nov 20, 10:51 pm, Bryan [EMAIL PROTECTED] wrote: Hey everyone, I have a pretty simple

Re: Popup Stealing focus

2008-11-20 Thread Bryan
Okay so it seems that overriding show() actually is setting the focus on the textBox but the cursor is not showing up. On Nov 20, 10:51 pm, Bryan [EMAIL PROTECTED] wrote: Hey everyone, I have a pretty simple popup with a couple of text boxes in it.  When it comes up, i'd like the focus

Re: Modular website with GWT

2008-11-19 Thread Bryan
Yes, you can embed a gwt app in a static page. You just specify an id of where to put it on the page. Let me know if you have any other specific questions. I think it's explained in the getting started doc. -bryan On Nov 19, 11:17 am, Spypunk [EMAIL PROTECTED] wrote: Hi, We would like

Re: GWT gadget - Developing Gadget Desktop

2008-11-10 Thread Bryan
You might check the gadgets group. There seem to be some examples over there that will help out. http://code.google.com/apis/gadgets/ On Nov 9, 9:54 am, ajaxDeveloper [EMAIL PROTECTED] wrote: Hi All, How can I use google-gadget library for developing application like igoogle.com. I mean to

Re: Sending asyncGet request twice

2008-11-03 Thread Bryan
I'm not sure if it will be the same, but you should be using RequestBuilder as opposed to HTTPRequest(which was deprecated as of gwt 1.5). bryan On Nov 4, 12:52 am, ArunDhaJ [EMAIL PROTECTED] wrote: Hi All, When I use HTTPRequest's asyncGet, it sends the request twice. This creates problem