Re: Mojo's maven-gwt-plugin or Thomas's maven-gwt-plugin?

2015-11-17 Thread Tomek Kańka
Thomas. I have no luck in forcing your plugin (or/and tomcat7-maven-plugin) to work with spring application without web.xml. Whatever I tried I've got INFO: No Spring WebApplicationInitializer types detected on classpath Do you or someone else have any experience with this? -- Tomek Kanka

Re: CellTree only expands on clicking icon

2015-10-28 Thread Tomek Kańka
W dniu poniedziałek, 26 października 2015 15:24:54 UTC+1 użytkownik Jaron Shulver napisał: > > Hi, > > I want to have a CellTree which expands when you click anywhere on the > cell, not just on the icon. > I've found this in my project, but I don't remember even how it works:). Especially

Re: FieldUpdater.update it not fired for ButtonCell in Chrome browser

2014-10-22 Thread Tomek Kańka
Hi Bharat. It HAS TO work. I do such things every day. With ButtonCell, ClickableTextCell and some custom cells. Check again, there is problem somewhere else, some NPE or sthg. W dniu wtorek, 21 października 2014 14:28:21 UTC+2 użytkownik Bharat Parikh napisał: *GWT Version:* GWT 2.6.0

Re: Use FilterTextBox after a specific time

2014-08-31 Thread Tomek Kańka
W dniu czwartek, 28 sierpnia 2014 13:39:55 UTC+2 użytkownik Dominic Warzok napisał: Hi, in my webapp we have a very lagre collection. The user has the ability to filter these collection. But if you tipe in one letter and start filtering it needs a lot of time. So I try to change the

Re: SuperDevMode and Tomcat

2014-08-29 Thread Tomek Kańka
W dniu czwartek, 28 sierpnia 2014 21:11:59 UTC+2 użytkownik Joseph Lust napisał: *[...]* It's really pretty painless and makes you IDE agnostic. It also makes your IDE obsolete:). No debugger in client code (SDM) and no debugger in server code (maven). *-- Tomek* -- You received this

Re: Lessons learned moving from GWT to Spring MVC

2013-05-28 Thread Tomek Kańka
How can one compare something what lives almost entirely in presentation-layer and has none strong dependencies on server-side (GWT) with framework which is focused on server-side without any real widget library? Every SpringMVC app I developed used jQuery to add better experience to users.

Re: why is my class not serializable?

2013-05-14 Thread Tomek Kańka
W dniu wtorek, 14 maja 2013 22:14:51 UTC+2 użytkownik Travis napisał: Every time I get this it is because I have coded a constructor that takes args, but forgot to add a no-arg constructor for rpc to use. Oh, this happens to me once every month:). I suspected some fault in my brain, but I

Re: clear browser cache automatically?

2013-03-29 Thread Tomek Kańka
W dniu piątek, 29 marca 2013 10:24:59 UTC+1 użytkownik Magnus napisał: Hi, when I deploy a new version of my app on my tomcat server, the clients sometimes need to clear the browser cache. If the cache is not cleared, an exception occurrs (see below) and the client gets an error message.

Re: Custom GWT CellTree To open its nodes on a click of the whole Text and not just a pointer(image) on to its left

2013-03-07 Thread Tomek Kańka
W dniu środa, 20 lutego 2013 08:24:19 UTC+1 użytkownik magesh kumar napisał: Yea Sure There is a onBrowserEvent in the CellTree.. @Override public void onBrowserEvent(Event event) { ... } Just use the above one and you are right on the track. Sorry that i didn't

UiBinder, i18n and attributes

2013-03-05 Thread Tomek Kańka
Hi. I use ui:msg to internationalize my app, but I don't know what to do with widget attributes. For example, g:ToggleButton title=some text to i18n/. Any ideas, beside setting attributes in constructor? -- Tomek -- You received this message because you are subscribed to the Google Groups

Re: UiBinder, i18n and attributes

2013-03-05 Thread Tomek Kańka
W dniu wtorek, 5 marca 2013 22:46:07 UTC+1 użytkownik Tomek Kańka napisał: Hi. I use ui:msg to internationalize my app, but I don't know what to do with widget attributes. For example, g:ToggleButton title=some text to i18n/. Ha! What a great feeling, when you ask good question and find

Re: UiBinder, i18n and attributes

2013-03-05 Thread Tomek Kańka
Maybe I'd start some blog:). 2nd answer to myself (incredible, how I missed it) ui:attribute/ Thanks for your silent support:). -- Tomek -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To unsubscribe from this group and stop receiving

Re: Designing to fill the page

2013-02-20 Thread Tomek Kańka
W dniu wtorek, 19 lutego 2013 03:18:12 UTC+1 użytkownik Mike Dee napisał: I'm trying to develop an app with a screen (using AP) so that it fills the browser window. The app basically displays a bunch of images in tiles. Images are roughly the same size, 300 by 400 pixels. As the user

Re: Overriding CSS styles in ResourceBundle

2013-02-20 Thread Tomek Kańka
I don't know if it's proper solution, but be aware of http://code.google.com/p/google-web-toolkit/issues/detail?id=6144 If I understand correctly consequences of above issue, if your ResourceBundles would use the same class TestCss, styles will be mixed up, in your stylesheet you'll have two

Re: DataGrid - How to scroll latest added item into view?

2013-02-17 Thread Tomek Kańka
W dniu sobota, 16 lutego 2013 23:26:19 UTC+1 użytkownik membersound napisał: Hi, I add a new entry to a DataTable and want to scroll it into the view, as it is added at the end of the list. @UiHandler(buttonAdd) { onAdd(ClickEvent evt) { Foo foo = new Foo();

Re: ANN: GWT and OAuth Login demo with facebook, google etc.

2013-02-17 Thread Tomek Kańka
W dniu sobota, 16 lutego 2013 19:34:19 UTC+1 użytkownik muquit napisał: I needed to add OAuth login to a GWT app of mine but could not find anything nice. So I wrote an application to explore the idea. I am releasing the code with the hope that you will find it useful. The URL is:

Re: Custom GWT CellTree To open its nodes on a click of the whole Text and not just a pointer(image) on to its left

2013-02-14 Thread Tomek Kańka
Oh, there are two of us. I just asked the same question day ago:). My ideas: Should I use selectionModel for these items, and somehow find what node was selected (how?), or use CellPreviewEvent.Handlerhttp://../com/google/gwt/view/client/CellPreviewEvent.Handler.htmlin some mysterious way?

CellTree - expanding/collapsing branches

2013-02-12 Thread Tomek Kańka
Hi. What is the best way, to collapse/expand trees, just by clicking on tree item, not +/- images? Should I use selectionModel for these items, and somehow find what node was selected (how?), or use

Re: How to authenticate with Google Accoutnt ?

2012-10-16 Thread Tomek Kańka
W dniu wtorek, 16 października 2012 08:09:15 UTC+2 użytkownik YinYanSI napisał: How can we create user authentication with goolge accout with mgwt or gwt-phonegap ? I would like to use purge java api not phonegap javascript api. I would like to create activity with username and

Re: How to add scroll vertically in celltable?

2012-10-15 Thread Tomek Kańka
W dniu niedziela, 14 października 2012 17:32:52 UTC+2 użytkownik Andrei napisał: Use DataGrid instead of CellTable. or put CellTable in ScrollPanel -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this discussion on the web

Re: GWT Designer - Can't create SWT Browser

2012-09-25 Thread Tomek Kańka
W dniu wtorek, 25 września 2012 12:55:31 UTC+2 użytkownik Magnus napisał: Hi, is there really no fix? This prevents me from doing anything with UIBinder... Check this: http://www.eclipse.org/swt/faq.php Q: What do I need to run the SWT Browser inside Eclipse on Linux? -- You received