Re: GXT 2.3.1 to 4.0.2 migration

2022-08-06 Thread Lorenzo Aditi
. de 2022 às 16:34, Lorenzo Aditi > escreveu: > >> Hello, >> >> We used to have GWT 2.4 & GXT 2.2.5 and we migrated to GWT 2.8.1. >> >> Now I am using GWT 2.8 with gxt 2.2.5 and Jdk 1.8.0_291, even when >> upgrading gxt-2.3.1a-gwt22 I still get this error whe

Re: GXT 2.3.1 to 4.0.2 migration

2022-08-05 Thread Lorenzo Aditi
2022 à 22:19:54 UTC+2, Ricardo Serathiuk a écrit : > Try to change the line 322 of ListField to this: > sb.append(m.get(prop).toString()); > > > > Em sex., 5 de ago. de 2022 às 16:34, Lorenzo Aditi > escreveu: > >> Hello, >> >> We used to have GWT 2.

GXT 2.3.1 to 4.0.2 migration

2022-08-05 Thread Lorenzo Aditi
Hello, We used to have GWT 2.4 & GXT 2.2.5 and we migrated to GWT 2.8.1. Now I am using GWT 2.8 with gxt 2.2.5 and Jdk 1.8.0_291, even when upgrading gxt-2.3.1a-gwt22 I still get this error when maven is building I got this error

Gxt/GWT Element has been deprecated

2022-07-30 Thread Lorenzo Aditi
I migrated to gwt 2.8.1 and I am using gxt 2.2.5 I am using the method onRender from com.exts.gxt.ui.client.widget.LayoutContainer: *nRender*(com.google.gwt.user.client.Element parent, int index)

Re: How to enable automatic dev mode recompile (again)

2020-11-16 Thread Lorenzo Vannucchi
groups.google.com/d/msgid/google-web-toolkit/2860f643-5fee-4f42-8fdf-6b8d5e897f3cn%40googlegroups.com?utm_medium=email_source=footer> > . > -- *Dott. Lorenzo Vannucchi* Software Engineer - *Volare Digital Studio <https://volare.studio/>* Via Modenese 315/a, 51100 Pistoia (PT), Ita

GWT 2.7.0 and logging

2014-11-24 Thread Lorenzo Sarti
is not found in the URL the default level is set and the content of the .gwt.xml file seems to be ignored. I wonder where I am going wrong. The logging of my app works with GWT = 2.6.1. Any help will be appreciated. Best, Lorenzo -- You received this message because you are subscribed to the Google

Re: GWT Developer Plugin for Firefox 7

2011-10-07 Thread Lorenzo M
Many thanks Ivan, but still I cannot make it work on FF 7.0.1. I keep getting the same error message Kees de Kooter reported. Any chance someone can share the plugin built for Firefox 7.0.1? Unofrtunateli, I didn't manage to compile it by myself :/ Thanks! -- L. On Oct 5, 9:36 pm, Ivan Bahdanau

Using a widget that requires constructor args

2010-02-01 Thread Lorenzo
Hi all, can someone put an example of how using a widget that requires constructor args in UiBinder? I tried starting from the (very poor) documentation, but I couldn't do it I'm a newbie of GWT... Thanks, Lorenzo -- You received this message because you are subscribed to the Google Groups

UiBinder and 503 HTTP error

2010-01-31 Thread Lorenzo
Hi, I tried to do the first tutorial on UiBinder (hello world) in this page: http://code.google.com/webtoolkit/doc/latest/DevGuideUiBinder.html but when i run it I get this error: HTTP ERROR: 503 SERVICE_UNAVAILABLE RequestURI=/TestPanel.html Powered by jetty:// ideas? Thanks Lorenzo

listbox + ajax

2010-01-26 Thread Lorenzo
) at the first row of this example. Can you help me? :-) thanks! Lorenzo This is the code: Note: the error is when it executes the line: RequestBuilder builder = new RequestBuilder(RequestBuilder.GET, source); ClassNotFoundException arg0 = com/google/gwt/http/client/RequestBuilder

Re: Changing the css file at runtime

2009-01-15 Thread Lorenzo Nazario
In order to change the css at runtime (or better not change but append) try this native method: public static native void loadCss(String url) /*-{ var fileref=document.createElement(link); fileref.setAttribute(rel,stylesheet); fileref.setAttribute(type,text/css);

Re: determine browser type

2008-11-25 Thread Lorenzo Nazario
Something a little bit more detailed public static native String getUserAgent() /*-{ var ua = navigator.userAgent.toLowerCase(); if (ua.indexOf(opera) != -1) { return opera; } if (ua.indexOf(webkit) !=