Friday, December 31, 2010

Re: SafeHtmlUtils

Thanks!


On Dec 31 2010, 11:56 pm, Gal Dolber <gal.dol...@gmail.com> wrote:
> You just need to keep the copyright headers.
>
> Best
>
>
>
> On Sat, Jan 1, 2011 at 12:58 AM, jaybose <onyeje.b...@gmail.com> wrote:
> > I'd like to copy/borrow the contents of the GWT's SafeHtmlUtils for a
> > new class of my own.
>
> > Does anyone have a link describing how I'm supposed to properly
> > attribute credit to Google or the GWT team?
>
> > --
> > 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+unsubscribe@googlegroups.com<google-web-toolkit%2Bunsubscribe@googlegroups.com>
> > .
> > For more options, visit this group at
> >http://groups.google.com/group/google-web-toolkit?hl=en.
>
> --
> Guit: Elegant, beautiful, modular and *production ready* gwt applications.
>
> http://code.google.com/p/guit/

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

iTunes-type display widget

http://picasaweb.google.com/onyeje.bose/12302010#5557097507546443826

Does anyone know if GWT already has a way to display cells the way
iTunes does (see image in link above)?

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

Re: SafeHtmlUtils

You just need to keep the copyright headers.

Best

On Sat, Jan 1, 2011 at 12:58 AM, jaybose <onyeje.bose@gmail.com> wrote:
I'd like to copy/borrow the contents of the GWT's SafeHtmlUtils for a
new class of my own.

Does anyone have a link describing how I'm supposed to properly
attribute credit to Google or the GWT team?

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




--
Guit: Elegant, beautiful, modular and *production ready* gwt applications.

http://code.google.com/p/guit/




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

SafeHtmlUtils

I'd like to copy/borrow the contents of the GWT's SafeHtmlUtils for a
new class of my own.

Does anyone have a link describing how I'm supposed to properly
attribute credit to Google or the GWT team?

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

Re: HTMLPanel - Why doesn't it work with setTag("button")

Perhaps because HTMLPanel allows child elements to be added, whereas a Button doesn't. The other types you are trying probably allow child elements to be added and are therefore valid.

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

Activity vs Presenter division of responsibility for Data Access/Server communication ?

Lets say we have an Activity which has a number of WidgetPresenters.
[*]

who should be responsible for using RequestFactory for server
communication ?
is it the responsibility of Activity or the Presenters ?

Activity {

WidgetPresenterA wpa;
WidgetPresenterB wpb;
WidgetPresenterC wpc;

}

Two main areas of concern:

1- getting the data into the widgets:
how can this design be improved ?
Server (RequestFactory) ---> Activity ---> WidgetPresenter --->
Widget
here, RequestFactory hands in data to Activity, which then gives it to
the Presenter
which subsequently hands it to the widget.

2- getting the data from the widgets to the server
widget ---> WidgetPresenter ---> Activity ---> Server(RequestFactory)

I am very concerned about the coupling between Presenter and Activity.

can Presenter directly use the RequestFactory to get the data,
or Activity does this and hands in the result to the Presenter ?

what about Presenter to Activity communication ?
who sends the data back to the server ? Presenter sends it directly,
or first sends it to the corresponding Activity which then sends it to
the server,
or does the Presenter do it directly ? or Presenter communicates with
Activity, through the Event Bus ?

the idea behind using a Presenter is this:

[*]
an Activity, is a display region which is related to a place.
Activity has a View, which defines the layout for this display region.
this View has a number of Slots, that are going to be filled with
widgets.
To be in line with MVP, I also apply MVP to widgets, so a Widget has
UI elements,
and a Presenter which responds to Widgets events.
this Presenter therefore is called WidgetPresenter (a Presenter
associated with a particular widget).

therefore an Activity has a View, a number of Widgets that are going
to be used in that View,
these Widgets have associated Presenters.

the Widget and associated WidgetPresenter may be re-used in other
display regions (activities).

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

Re: Happy New Year to the GWT team

happy new year

On 31 Dez. 2010, 21:13, nino ekambi <jazzmatad...@googlemail.com>
wrote:
> frohes neues Jahr :)
>
> 2010/12/31 Francesco Izzi <francesco.i...@geosdi.org>
>
> > Happy new YEAR guys
>
> > 2010/12/31 Giuseppe La Scaleia <giuseppe.lascal...@geosdi.org>
>
> > +1 . Happy new year
>
> >> 2010/12/31 Supercobra Thatbytes <superco...@gmail.com>
>
> >> Best wishes for 2011 to the GWT team. GWT is awesome.
>
> >>> Daniel
>
> >>> --
> >>> 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+unsubscribe@googlegroups.com<google-web-toolkit%2Bunsubscribe@googlegroups.com>
> >>> .
> >>> For more options, visit this group at
> >>>http://groups.google.com/group/google-web-toolkit?hl=en.
>
> >> --
> >> Giuseppe La Scaleia
> >> CNR - IMAA
> >> geoSDI - NSDI
> >> Sviluppo Software
>
> >> C.da S. Loja
> >> 85050  Tito Scalo - POTENZA (PZ)
> >> Italia
>
> >> phone:  +39 0971427305
> >> fax:      +39 0971 427271
> >> mob:    +39 3804697436
> >> mail:     giuseppe.lascal...@geosdi.org
> >> skype:  glascaleia
>
> >> web:    http://www.geosdi.org
>
> >>  --
> >> 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+unsubscribe@googlegroups.com<google-web-toolkit%2Bunsubscribe@googlegroups.com>
> >> .
> >> For more options, visit this group at
> >>http://groups.google.com/group/google-web-toolkit?hl=en.
>
> > --
> > Francesco Izzi
> > CNR - IMAA
> > geoSDI
> > Responsabile Sviluppo Software
>
> > C.da S. Loja
> > 85050  Tito Scalo - POTENZA (PZ)
> > Italia
>
> > phone:  +39 0971427305
> > fax:      +39 0971 427271
> > mob:    +39 3203126609
> > mail:     francesco.i...@geosdi.org
> > skype:  neofx8080
>
> > web:    http://www.geosdi.org
>
> >  --
> > 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+unsubscribe@googlegroups.com<google-web-toolkit%2Bunsubscribe@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+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.

Re: GWT Adsense Integration Demo and Source Code

Good job, but:

1) This is against AdSense ToS and makes you liable to removal from the program.
2) The Ads are not contextually targeted due to the IFrame and the JS-generated content.

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

GWT Adsense Integration Demo and Source Code

I have made a demo of how I use GWT and Adsense integration: http://code.google.com/p/gwt-examples/wiki/DemoGwtAdsene

Its quite easy to integrate adsense into GWT, but I'm hoping they make an GWT api for it in the near future!!!

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

Re: Happy New Year to the GWT team

frohes neues Jahr :)

2010/12/31 Francesco Izzi <francesco.izzi@geosdi.org>
Happy new YEAR guys

2010/12/31 Giuseppe La Scaleia <giuseppe.lascaleia@geosdi.org>

+1 . Happy new year

2010/12/31 Supercobra Thatbytes <supercobra@gmail.com>

Best wishes for 2011 to the GWT team. GWT is awesome.

Daniel

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




--
Giuseppe La Scaleia
CNR - IMAA
geoSDI - NSDI
Sviluppo Software

C.da S. Loja
85050  Tito Scalo - POTENZA (PZ)
Italia

phone:  +39 0971427305
fax:      +39 0971 427271
mob:    +39 3804697436
mail:     giuseppe.lascaleia@geosdi.org
skype:  glascaleia

web:     http://www.geosdi.org

 

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



--
Francesco Izzi
CNR - IMAA
geoSDI
Responsabile Sviluppo Software


C.da S. Loja
85050  Tito Scalo - POTENZA (PZ)
Italia

phone:  +39 0971427305
fax:      +39 0971 427271
mob:    +39 3203126609
mail:     francesco.izzi@geosdi.org
skype:  neofx8080


web:     http://www.geosdi.org


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

Re: Happy New Year to the GWT team

Happy new YEAR guys

2010/12/31 Giuseppe La Scaleia <giuseppe.lascaleia@geosdi.org>
+1 . Happy new year

2010/12/31 Supercobra Thatbytes <supercobra@gmail.com>

Best wishes for 2011 to the GWT team. GWT is awesome.

Daniel

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




--
Giuseppe La Scaleia
CNR - IMAA
geoSDI - NSDI
Sviluppo Software

C.da S. Loja
85050  Tito Scalo - POTENZA (PZ)
Italia

phone:  +39 0971427305
fax:      +39 0971 427271
mob:    +39 3804697436
mail:     giuseppe.lascaleia@geosdi.org
skype:  glascaleia

web:     http://www.geosdi.org

 

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



--
Francesco Izzi
CNR - IMAA
geoSDI
Responsabile Sviluppo Software

C.da S. Loja
85050  Tito Scalo - POTENZA (PZ)
Italia

phone:  +39 0971427305
fax:      +39 0971 427271
mob:    +39 3203126609
mail:     francesco.izzi@geosdi.org
skype:  neofx8080

web:     http://www.geosdi.org


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

WebSocket support in GWT

anyone know if Google plans on having (or already has) websocket
support in GWT? I cannot find any documentation on it if it already
exists. Anyone done anything successfully with websockets and GWT
that they would recommend?

Thanks.

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

Happy New Year

Happy New Year to you all!

--
Jeff Schwartz

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

Re: Happy New Year to the GWT team

+1 . Happy new year

2010/12/31 Supercobra Thatbytes <supercobra@gmail.com>
Best wishes for 2011 to the GWT team. GWT is awesome.

Daniel

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




--
Giuseppe La Scaleia
CNR - IMAA
geoSDI - NSDI
Sviluppo Software

C.da S. Loja
85050  Tito Scalo - POTENZA (PZ)
Italia

phone:  +39 0971427305
fax:      +39 0971 427271
mob:    +39 3804697436
mail:     giuseppe.lascaleia@geosdi.org
skype:  glascaleia

web:     http://www.geosdi.org
 

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

Happy New Year to the GWT team

Best wishes for 2011 to the GWT team. GWT is awesome.

Daniel

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

Re: Use of GWT (+ JTS) + JPA + Postgis

I don't work with map-based application but I use JTS, JPA and
Postgresql (without Postgis) with GWT. What kind of pointers do you
need in particular?


On Dec 28, 7:35 am, Thomas Lefort <lefortho...@gmail.com> wrote:
> Hi,
>
> Has anyone worked on an map based application using GWT with a
> spatially enabled database like Postgresql with Postgis, possibly
> using JTS for some server side processing and its geometry types for
> passing objects through RPCs?
> I need some good pointers.
>
> Thanks,
>
> Thomas

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

Re: Best way to integrate GWT with existing Spring services?

Hi

I've very successfully used a scheme for making a HandlerAdaptor for a GWT RemoteServiceServlet.

I based my code on:

http://blog.digitalascent.com/2007/11/gwt-rpc-with-spring-2x_12.html

(Chris Lee)

but I found that Chris's original code had a problem with 2.+ RemoteServiceServlets in 3 ways:

1. it only supported 'legacy' serialization.
2. it didn't provide a ServletContext so error messages generated NPEs
3. I didn't like his copy/paste approach

 so I modified his GwtRpcEndPointHandlerAdapter as below. You could inject a WebApplicationContext instead of an App.Context and then the cast. Also, possibly the servlet name should be defined differently.


package <your.package.name>

import java.util.Enumeration;
import java.util.Map;
import java.util.concurrent.ConcurrentHashMap;

import javax.servlet.ServletConfig;
import javax.servlet.ServletContext;
import javax.servlet.ServletException;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;

import org.apache.log4j.Logger;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.context.ApplicationContext;
import org.springframework.web.context.WebApplicationContext;
import org.springframework.web.servlet.HandlerAdapter;
import org.springframework.web.servlet.ModelAndView;

import com.google.gwt.user.client.rpc.RemoteService;
import com.google.gwt.user.server.rpc.RemoteServiceServlet;

/**
 * Spring HandlerAdapter to dispatch GWT-RPC requests. Relies on handlers
 * registered by GwtAnnotationHandlerMapper<br>
 * <p>Re-written by me to build a cache of configured {@code RemoteServiceServlet}s, one
 * for each {@code Handler} class. The {@code RemoteServiceServlet} is now a composition rather
 * than an aggregation.</p>
 * <p>Each instance of the Remote
 *
 *
 *
 * @author Chris Lee
 * @author Alan Chaney
 *
 */
public class GwtRpcEndPointHandlerAdapter implements HandlerAdapter {

  
   
    private Map<Class<?>, RemoteServiceServlet> servletMap;
    private ServletContext servletContext;
   
    @Autowired(required=true)
    protected ApplicationContext appContext;
   
    public GwtRpcEndPointHandlerAdapter() {
        this.servletMap = new ConcurrentHashMap<Class<?>, RemoteServiceServlet>();
    }

    public long getLastModified(HttpServletRequest request, Object handler) {
        return -1;
    }
    // use with 'init-method' or appropriate life-cycle annotation
    public void init() {
        getServletContext();
       
    }

    /**
     * A local class which implements the servlet configuration.
     * @author Alan Chaney
     *
     */
    public class ServletConfigInst implements ServletConfig {

        @Override
        public String getInitParameter(String arg0) {
            // No parameters
            return null;
        }

        @Override
        public Enumeration getInitParameterNames() {
            // No parameters
            return null;
        }

        @Override
        public ServletContext getServletContext() {
            return GwtRpcEndPointHandlerAdapter.this.getServletContext();
        }

        @Override
        public String getServletName() {
            return this.getClass().getSimpleName();
        }
       
    }
   
   
    /**
     * Finds the WebApplicationContext from the Autowired application context and returns the
     * {@code ServletContext}
     *
     * @return Servlet context from WebApplicationContext.
     */
    public ServletContext getServletContext() {
        if (servletContext == null) {
            WebApplicationContext wac = (WebApplicationContext) appContext;
            servletContext = wac.getServletContext();
            if (servletContext == null) {
                logger.warn("'servletContext' was null");
            }
        }
        return servletContext;
    }

    public ModelAndView handle(HttpServletRequest request,
            HttpServletResponse response, Object handler) throws Exception {
       
        RemoteServiceServlet servlet = servletMap.get(handler.getClass());
        if (servlet == null){
            servlet = prepareServlet(handler);
        }
        servlet.doPost(request, response);
        return null;
    }


    protected RemoteServiceServlet prepareServlet(Object handler) throws ServletException {
        RemoteServiceServlet rss = new RemoteServiceServlet(handler);
        ServletConfig sc = new ServletConfigInst();
        rss.init(sc);
        this.servletMap.put(handler.getClass(), rss);
        return rss;
    }


    @Override
    public boolean supports(Object handler) {
        return handler instanceof RemoteService
                && handler.getClass().isAnnotationPresent(GwtRpcEndPoint.class);
    }

}






On 12/31/2010 6:11 AM, 华佗转世 wrote:
Is anyone know, how integrate GWT with Spring MVC (controller)? 

2010/12/31 Paul G. <palo.gressa@gmail.com>
Hi Daniel,

you are right, this question has been asked so many times. We're using
GWT-RPC because when we stared our project then GWT 1.6 was out and
actual. I don't know much about RequestFactory. But I think there is
still one same approach. So there is one big question for you. How
good is your knowledge about servlets and spring. If you don't know
much about these things, try to learn something first. Because my only
advice is: GWT-RPC is just another servlet.

If your application architecture is based on traditional j2e tiers
(presentation, business, integration) then switching between flex and
gwt is about to implement a new gwt tier and you can use still same
business tier.

GWT-RPC is just servlet, which takes input string, parses it, creates
objects based on policy file with respect to servlet and then calls
proper method.

Look at how GWT-Dispatch works: there is only one rpc method -
dispatch; where input is generic Action; return object is generic
Result.So there is one handler method and you are just calling
dispatch method with input as actions[something like a box with
properties]. Based on type of action, proper hadnler will be called.
If you are good with spring, make some automatic handler registrations
based on annotations or interface scanning of classpaths.

Daniel and all of you who are reading this post, please, if your
experiences with gwt, spring are not very good, try to dig into these
frameworks and try to learn how they works first.

Pavol

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




--
━  ・・・・  ・━  ━・  ━・━  ・・・
--------
Be the change you want to see in the world!
--------
Mars Hsu -- 华佗转世
Skype: marsxu1984

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


--  Alan Chaney CTO and Founder, Mechnicality, Inc. www.mechnicality.com

Re: I18N - How to set locale per code?

For more on the dynamic host page approach, see

http://code.google.com/webtoolkit/articles/dynamic_host_page.html

/dmc

On Fri, Dec 31, 2010 at 1:02 PM, jhulford <jhulford@gmail.com> wrote:
> Presumably you're deploying your app as a .war to a Servlet container
> (like Tomcat or Jetty), what you'll want to do is create a .jsp
> (instead of a plain static .html file) that dynamically writes out
> your host html and have that include the user's locale preference.
>
> If you're not using a java server-side, the concept is still extremely
> similar, just substitute php, perl, .net or whatever in place of jsp
> to dynamically write your GWT host page.
>
>
> On Dec 30, 4:22 pm, Magnus <alpineblas...@googlemail.com> wrote:
>> Hi Jhuford,
>>
>> this sounds interesting.
>>
>> I have the user's choice in a database. But my host page is always the
>> same. I have only one host page, which is nearly empty. Everything
>> including the login window is generated by code.
>>
>> At the moment, I feel unable to test the method you described. Could
>> you please outline the steps that I have to do?
>>
>> Below is my code that generates the main gui on top of the empty host
>> page.
>>
>> Magnus
>>
>>  private void initDisplay () // called from within onModuleLoad
>>  {
>>   DockLayoutPanel display = new DockLayoutPanel (...);
>>  ...
>>   RootLayoutPanel.get().add(display);
>>  }
>>
>> ----------
>>
>> On Dec 30, 5:41 pm, jhulford <jhulf...@gmail.com> wrote:
>>
>> > You can store off the user's chosen locale into a database of some
>> > sort and then when your host page is being written after the user logs
>> > in (like w/ jsp or php or something) load the users language
>> > preference and set it via the meta tag.
>>
>> > The only time you'd need to reload the app then is on that initial
>> > time when the user changes their language settings.
>>
>>
>
> --
> 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+unsubscribe@googlegroups.com.
> For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.
>
>

--
David Chandler
Developer Programs Engineer, Google Web Toolkit
w: http://code.google.com/
b: http://googlewebtoolkit.blogspot.com/
t: @googledevtools

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

Re: I18N - How to set locale per code?

Presumably you're deploying your app as a .war to a Servlet container
(like Tomcat or Jetty), what you'll want to do is create a .jsp
(instead of a plain static .html file) that dynamically writes out
your host html and have that include the user's locale preference.

If you're not using a java server-side, the concept is still extremely
similar, just substitute php, perl, .net or whatever in place of jsp
to dynamically write your GWT host page.


On Dec 30, 4:22 pm, Magnus <alpineblas...@googlemail.com> wrote:
> Hi Jhuford,
>
> this sounds interesting.
>
> I have the user's choice in a database. But my host page is always the
> same. I have only one host page, which is nearly empty. Everything
> including the login window is generated by code.
>
> At the moment, I feel unable to test the method you described. Could
> you please outline the steps that I have to do?
>
> Below is my code that generates the main gui on top of the empty host
> page.
>
> Magnus
>
>  private void initDisplay () // called from within onModuleLoad
>  {
>   DockLayoutPanel display = new DockLayoutPanel (...);
>  ...
>   RootLayoutPanel.get().add(display);
>  }
>
> ----------
>
> On Dec 30, 5:41 pm, jhulford <jhulf...@gmail.com> wrote:
>
> > You can store off the user's chosen locale into a database of some
> > sort and then when your host page is being written after the user logs
> > in (like w/ jsp or php or something) load the users language
> > preference and set it via the meta tag.
>
> > The only time you'd need to reload the app then is on that initial
> > time when the user changes their language settings.
>
>

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

Re: GWT AND Google Application Engine

See http://groups.google.com/group/google-appengine-java/web/will-it-play-in-app-engine

Please use the App Engine forums for future App Engine questions.

Thanks,
/dmc

On Fri, Dec 31, 2010 at 12:29 PM, Noor <bakenoor@gmail.com> wrote:
> Hi, I am currently developing an application without application
> engine. My application is using database and gilead:hibernate. Does
> application engine support hibernate
>
> --
> 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+unsubscribe@googlegroups.com.
> For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.
>
>

--
David Chandler
Developer Programs Engineer, Google Web Toolkit
w: http://code.google.com/
b: http://googlewebtoolkit.blogspot.com/
t: @googledevtools

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

Re: Expenses Sample

Hi Matt,

We don't currently host a public version due to concerns about
defacement. However, it's quite easy to upload it to App Engine
yourself.

1. Login to appspot.com create a new app
2. Edit src/main/webapp/WEB-INF/appengine-web.xml and put the newly
created app id between the <application> tags
3. Run mvn clean package gae:deploy
4. Visit http://[your-app-id].appspot.com/LoadExpensesDB.html and
click the Generate button to create some test data
5. Visit http://[your-app-id].appspot.com/Expenses.html to demo the app

/dmc


On Tue, Dec 28, 2010 at 4:55 PM, Matthew Hill <matt2224@gmail.com> wrote:
> Hi.
> Is there a hosted version of the expenses sample included with GWT 2.1? It
> used to be hosted on GAE but the link doesn't work anymore.
>
> --
> 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+unsubscribe@googlegroups.com.
> For more options, visit this group at
> http://groups.google.com/group/google-web-toolkit?hl=en.
>

--
David Chandler
Developer Programs Engineer, Google Web Toolkit
w: http://code.google.com/
b: http://googlewebtoolkit.blogspot.com/
t: @googledevtools

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

GWT AND Google Application Engine

Hi, I am currently developing an application without application
engine. My application is using database and gilead:hibernate. Does
application engine support hibernate

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

Re: Real-time app: best approach

You didn't mention if the memory usage you reported is for the server or for the client which would help further the discussion along.

On Dec 31, 2010 9:09 AM, "remuera" <brainbug@web.de> wrote:

Hello,

I've developed an app using GWT 2.1 and GXT 2.2.1 and having these
problems:

1) It is a real-time app (data update 4 times a second!) and I want to
update a grid/table with about 80 lines. The data is not that large,
some doubles and a string.

2) The user should be able to generate a report with a lot of data,
that should be displayed in a pure HTML table (up to 5000 rows). My
solution right now works not bad, but the memory usage is huge (around
400 MB!).

I would like to hear your recommendations on these two requirements.
How would you implement them? The app should be as performant as
possible with using GWT and GXT (if possible). I am deploying it on a
Tomcat 6.

Thank you in advance!

Tim

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

Upgrade to GWT 2.1.1

Hi All,

I'm using STS 2.5.1 (i.e. Eclipse 3.6) and tried to upgrade to GWT 2.1.1, but I'm not able to do so. I updated the plugin and the SDK, updated the project reference to use them and compile the project. It all worked fine, but when I tried to run the project I got the errors below.

Does anybody has any idea of what I'm doing wrong here?

Thanks


[ERROR] [applicationScaffold] - Errors in 'jar:file:/D:/springsource/sts-2.5.1.RELEASE/plugins/com.google.gwt.eclipse.sdkbundle.2.1.1_2.1.1.v201012170127/gwt-2.1.1/gwt-user.jar!/com/google/gwt/requestfactory/client/impl/AbstractClientRequestFactory.java'
[ERROR] [applicationScaffold] - Line 29: The constructor DefaultRequestTransport() is undefined
[ERROR] [applicationScaffold] - Errors in 'jar:file:/D:/springsource/sts-2.5.1.RELEASE/plugins/com.google.gwt.eclipse.sdkbundle.2.1.1_2.1.1.v201012170127/gwt-2.1.1/gwt-user.jar!/com/google/gwt/requestfactory/shared/DefaultProxyStore.java'
[ERROR] [applicationScaffold] - Line 37: No source code is available for type com.google.gwt.autobean.shared.AutoBean<T>; did you forget to inherit a required module?
[ERROR] [applicationScaffold] - Line 38: No source code is available for type com.google.gwt.autobean.shared.Splittable; did you forget to inherit a required module?
[ERROR] [applicationScaffold] - Line 60: No source code is available for type com.google.gwt.autobean.shared.AutoBeanCodex; did you forget to inherit a required module?
[ERROR] [applicationScaffold] - Errors in 'jar:file:/D:/springsource/sts-2.5.1.RELEASE/plugins/com.google.gwt.eclipse.sdkbundle.2.1.1_2.1.1.v201012170127/gwt-2.1.1/gwt-user.jar!/com/google/gwt/requestfactory/shared/ProxyStore.java'
[ERROR] [applicationScaffold] - Line 36: No source code is available for type com.google.gwt.autobean.shared.Splittable; did you forget to inherit a required module?
[ERROR] [applicationScaffold] - Errors in 'jar:file:/D:/springsource/sts-2.5.1.RELEASE/plugins/com.google.gwt.eclipse.sdkbundle.2.1.1_2.1.1.v201012170127/gwt-2.1.1/gwt-user.jar!/com/google/gwt/requestfactory/shared/impl/AbstractRequest.java'
[ERROR] [applicationScaffold] - Line 39: Bound mismatch: The type BaseProxy is not a valid substitute for the bounded parameter <P extends EntityProxy> of the type InstanceRequest<P,T>
[ERROR] [applicationScaffold] - Line 113: No source code is available for type com.google.gwt.autobean.shared.Splittable; did you forget to inherit a required module?
[ERROR] [applicationScaffold] - Errors in 'jar:file:/D:/springsource/sts-2.5.1.RELEASE/plugins/com.google.gwt.eclipse.sdkbundle.2.1.1_2.1.1.v201012170127/gwt-2.1.1/gwt-user.jar!/com/google/gwt/requestfactory/shared/impl/AbstractRequestContext.java'
[ERROR] [applicationScaffold] - Line 19: The import com.google.gwt.requestfactory.shared.impl.Constants.REQUEST_CONTEXT cannot be resolved
[ERROR] [applicationScaffold] - Line 63: The type AbstractRequestContext must implement the inherited abstract method RequestContext.create(Class<T>)
[ERROR] [applicationScaffold] - Line 63: The type AbstractRequestContext must implement the inherited abstract method RequestContext.edit(T)
[ERROR] [applicationScaffold] - Line 374: Constants.VERSION_PROPERTY_B64 cannot be resolved
[ERROR] [applicationScaffold] - Line 411: Constants.VERSION_PROPERTY_B64 cannot be resolved
[ERROR] [applicationScaffold] - Line 511: REQUEST_CONTEXT cannot be resolved
[ERROR] [applicationScaffold] - Line 606: The type new RequestTransport.TransportReceiver(){} must implement the inherited abstract method RequestTransport.TransportReceiver.onTransportFailure(String)
[ERROR] [applicationScaffold] - Line 616: The constructor ServerFailure(String, String, String, boolean) is undefined
[ERROR] [applicationScaffold] - Line 654: The constructor ServerFailure(String, String, String, boolean) is undefined
[ERROR] [applicationScaffold] - Line 698: REQUEST_CONTEXT cannot be resolved
[ERROR] [applicationScaffold] - Line 845: REQUEST_CONTEXT cannot be resolved
[ERROR] [applicationScaffold] - Errors in 'jar:file:/D:/springsource/sts-2.5.1.RELEASE/plugins/com.google.gwt.eclipse.sdkbundle.2.1.1_2.1.1.v201012170127/gwt-2.1.1/gwt-user.jar!/com/google/gwt/requestfactory/shared/impl/AbstractRequestFactory.java'
[ERROR] [applicationScaffold] - Line 18: The import com.google.gwt.requestfactory.shared.impl.Constants.STABLE_ID cannot be resolved
[ERROR] [applicationScaffold] - Line 65: STABLE_ID cannot be resolved
[ERROR] [applicationScaffold] - Line 95: The method getTypeToken(Class<? extends BaseProxy>) in the type IdFactory is not applicable for the arguments (Class<capture#1-of ? extends EntityProxy>)
[ERROR] [applicationScaffold] - Line 105: Bound mismatch: The generic method getTypeFromToken(String) of type IdFactory is not applicable for the arguments (String). The inferred type EntityProxy is not a valid substitute for the bounded parameter <P extends BaseProxy>
[ERROR] [applicationScaffold] - Line 107: Bound mismatch: The generic method getTypeFromToken(String) of type IdFactory is not applicable for the arguments (String). The inferred type EntityProxy is not a valid substitute for the bounded parameter <P extends BaseProxy>
[ERROR] [applicationScaffold] - Errors in 'jar:file:/D:/springsource/sts-2.5.1.RELEASE/plugins/com.google.gwt.eclipse.sdkbundle.2.1.1_2.1.1.v201012170127/gwt-2.1.1/gwt-user.jar!/com/google/gwt/requestfactory/shared/impl/BaseProxyCategory.java'
[ERROR] [applicationScaffold] - Line 18: The import com.google.gwt.requestfactory.shared.impl.Constants.REQUEST_CONTEXT cannot be resolved
[ERROR] [applicationScaffold] - Line 19: The import com.google.gwt.requestfactory.shared.impl.Constants.STABLE_ID cannot be resolved
[ERROR] [applicationScaffold] - Line 68: REQUEST_CONTEXT cannot be resolved
[ERROR] [applicationScaffold] - Line 68: REQUEST_CONTEXT cannot be resolved
[ERROR] [applicationScaffold] - Line 74: REQUEST_CONTEXT cannot be resolved
[ERROR] [applicationScaffold] - Line 79: STABLE_ID cannot be resolved
[ERROR] [applicationScaffold] - Errors in 'jar:file:/D:/springsource/sts-2.5.1.RELEASE/plugins/com.google.gwt.eclipse.sdkbundle.2.1.1_2.1.1.v201012170127/gwt-2.1.1/gwt-user.jar!/com/google/gwt/requestfactory/shared/impl/EntityCodex.java'
[ERROR] [applicationScaffold] - Line 45: No source code is available for type com.google.gwt.autobean.shared.AutoBean<T>; did you forget to inherit a required module?
[ERROR] [applicationScaffold] - Line 46: No source code is available for type com.google.gwt.autobean.shared.Splittable; did you forget to inherit a required module?
[ERROR] [applicationScaffold] - Line 64: No source code is available for type com.google.gwt.autobean.shared.impl.LazySplittable; did you forget to inherit a required module?
[ERROR] [applicationScaffold] - Line 80: No source code is available for type com.google.gwt.autobean.shared.ValueCodex; did you forget to inherit a required module?
[ERROR] [applicationScaffold] - Line 116: No source code is available for type com.google.gwt.autobean.shared.impl.StringQuoter; did you forget to inherit a required module?
[ERROR] [applicationScaffold] - Line 153: No source code is available for type com.google.gwt.autobean.shared.AutoBeanUtils; did you forget to inherit a required module?
[ERROR] [applicationScaffold] - Errors in 'jar:file:/D:/springsource/sts-2.5.1.RELEASE/plugins/com.google.gwt.eclipse.sdkbundle.2.1.1_2.1.1.v201012170127/gwt-2.1.1/gwt-user.jar!/com/google/gwt/requestfactory/shared/impl/EntityProxyCategory.java'
[ERROR] [applicationScaffold] - Line 19: The import com.google.gwt.requestfactory.shared.impl.Constants.STABLE_ID cannot be resolved
[ERROR] [applicationScaffold] - Line 62: STABLE_ID cannot be resolved
[ERROR] [applicationScaffold] - Errors in 'jar:file:/D:/springsource/sts-2.5.1.RELEASE/plugins/com.google.gwt.eclipse.sdkbundle.2.1.1_2.1.1.v201012170127/gwt-2.1.1/gwt-user.jar!/com/google/gwt/requestfactory/shared/impl/MessageFactoryHolder.java'
[ERROR] [applicationScaffold] - Line 25: No source code is available for type com.google.gwt.autobean.server.AutoBeanFactoryMagic; did you forget to inherit a required module?
[ERROR] [applicationScaffold] - Errors in 'jar:file:/D:/springsource/sts-2.5.1.RELEASE/plugins/com.google.gwt.eclipse.sdkbundle.2.1.1_2.1.1.v201012170127/gwt-2.1.1/gwt-user.jar!/com/google/gwt/requestfactory/shared/impl/ProxySerializerImpl.java'
[ERROR] [applicationScaffold] - Line 63: No source code is available for type com.google.gwt.autobean.shared.AutoBean<T>; did you forget to inherit a required module?
[ERROR] [applicationScaffold] - Line 82: Bound mismatch: The generic method doDeserialize(SimpleProxyId<T>) of type ProxySerializerImpl is not applicable for the arguments (SimpleEntityProxyId<T>). The inferred type T is not a valid substitute for the bounded parameter <T extends BaseProxy>
[ERROR] [applicationScaffold] - Line 89: No source code is available for type com.google.gwt.autobean.shared.Splittable; did you forget to inherit a required module?
[ERROR] [applicationScaffold] - Line 94: No source code is available for type com.google.gwt.autobean.shared.AutoBeanUtils; did you forget to inherit a required module?
[ERROR] [applicationScaffold] - Line 112: No source code is available for type com.google.gwt.autobean.shared.AutoBeanVisitor; did you forget to inherit a required module?
[ERROR] [applicationScaffold] - Line 114: No source code is available for type com.google.gwt.autobean.shared.AutoBeanVisitor.Context; did you forget to inherit a required module?
[ERROR] [applicationScaffold] - Line 126: No source code is available for type com.google.gwt.autobean.shared.AutoBeanVisitor.CollectionPropertyContext; did you forget to inherit a required module?
[ERROR] [applicationScaffold] - Line 165: Constants.STABLE_ID cannot be resolved
[ERROR] [applicationScaffold] - Line 199: No source code is available for type com.google.gwt.autobean.shared.AutoBeanCodex; did you forget to inherit a required module?
[ERROR] [applicationScaffold] - Errors in 'jar:file:/D:/springsource/sts-2.5.1.RELEASE/plugins/com.google.gwt.eclipse.sdkbundle.2.1.1_2.1.1.v201012170127/gwt-2.1.1/gwt-user.jar!/com/google/gwt/requestfactory/shared/impl/SimpleEntityProxyId.java'
[ERROR] [applicationScaffold] - Line 28: Bound mismatch: The type P is not a valid substitute for the bounded parameter <P extends BaseProxy> of the type SimpleProxyId<P>
[ERROR] [applicationScaffold] - Errors in 'jar:file:/D:/springsource/sts-2.5.1.RELEASE/plugins/com.google.gwt.eclipse.sdkbundle.2.1.1_2.1.1.v201012170127/gwt-2.1.1/gwt-user.jar!/com/google/gwt/requestfactory/shared/impl/ValueProxyCategory.java'
[ERROR] [applicationScaffold] - Line 33: No source code is available for type com.google.gwt.autobean.shared.AutoBean<T>; did you forget to inherit a required module?
[ERROR] [applicationScaffold] - Line 37: No source code is available for type com.google.gwt.autobean.shared.AutoBeanUtils; did you forget to inherit a required module?
[ERROR] [applicationScaffold] - Errors in 'jar:file:/D:/springsource/sts-2.5.1.RELEASE/plugins/com.google.gwt.eclipse.sdkbundle.2.1.1_2.1.1.v201012170127/gwt-2.1.1/gwt-user.jar!/com/google/gwt/requestfactory/shared/messages/InvocationMessage.java'
[ERROR] [applicationScaffold] - Line 36: No source code is available for type com.google.gwt.autobean.shared.Splittable; did you forget to inherit a required module?
[ERROR] [applicationScaffold] - Errors in 'jar:file:/D:/springsource/sts-2.5.1.RELEASE/plugins/com.google.gwt.eclipse.sdkbundle.2.1.1_2.1.1.v201012170127/gwt-2.1.1/gwt-user.jar!/com/google/gwt/requestfactory/shared/messages/MessageFactory.java'
[ERROR] [applicationScaffold] - Line 24: No source code is available for type com.google.gwt.autobean.shared.AutoBeanFactory; did you forget to inherit a required module?
[ERROR] [applicationScaffold] - Line 25: No source code is available for type com.google.gwt.autobean.shared.AutoBean<T>; did you forget to inherit a required module?
[ERROR] [applicationScaffold] - Errors in 'jar:file:/D:/springsource/sts-2.5.1.RELEASE/plugins/com.google.gwt.eclipse.sdkbundle.2.1.1_2.1.1.v201012170127/gwt-2.1.1/gwt-user.jar!/com/google/gwt/requestfactory/shared/messages/OperationMessage.java'
[ERROR] [applicationScaffold] - Line 35: No source code is available for type com.google.gwt.autobean.shared.Splittable; did you forget to inherit a required module?
[ERROR] [applicationScaffold] - Errors in 'jar:file:/D:/springsource/sts-2.5.1.RELEASE/plugins/com.google.gwt.eclipse.sdkbundle.2.1.1_2.1.1.v201012170127/gwt-2.1.1/gwt-user.jar!/com/google/gwt/requestfactory/shared/messages/ResponseMessage.java'
[ERROR] [applicationScaffold] - Line 38: No source code is available for type com.google.gwt.autobean.shared.Splittable; did you forget to inherit a required module?
[ERROR] [applicationScaffold] - Errors in 'jar:file:/D:/springsource/sts-2.5.1.RELEASE/plugins/com.google.gwt.eclipse.sdkbundle.2.1.1_2.1.1.v201012170127/gwt-2.1.1/gwt-user.jar!/com/google/gwt/view/client/CellPreviewEvent.java'
[ERROR] [applicationScaffold] - Line 18: The import com.google.gwt.cell.client.Cell.Context cannot be resolved
[ERROR] [applicationScaffold] - Line 66: Context cannot be resolved to a type
[ERROR] [applicationScaffold] - Line 88: Context cannot be resolved to a type
[ERROR] [applicationScaffold] - Line 107: Context cannot be resolved to a type
[ERROR] [applicationScaffold] - Line 111: Context cannot be resolved to a type
[ERROR] [applicationScaffold] - Line 132: Context cannot be resolved to a type
[ERROR] [applicationScaffold] - Line 140: Context cannot be resolved to a type
[ERROR] [applicationScaffold] - Line 141: Context cannot be resolved to a type
[ERROR] [applicationScaffold] - Line 155: Context cannot be resolved to a type
[ERROR] [applicationScaffold] - Errors in 'jar:file:/D:/springsource/sts-2.5.1.RELEASE/plugins/com.google.gwt.eclipse.sdkbundle.2.1.1_2.1.1.v201012170127/gwt-2.1.1/gwt-user.jar!/com/google/gwt/view/client/DefaultSelectionEventManager.java'
[ERROR] [applicationScaffold] - Line 336: The method clear() is undefined for the type MultiSelectionModel<capture#13-of ? super T>
[ERROR] [applicationScaffold] - Line 467: The method getVisibleItemCount() is undefined for the type HasData<T>
[ERROR] [applicationScaffold] - Line 471: The method getVisibleItem(int) is undefined for the type HasData<T>
[INFO] [applicationScaffold] - Module applicationScaffold has been loaded

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

Re: Real-time app: best approach

400mb? :-)  That would be a general design/implementation issue: not GWT specific.  Regardless of frameworks, there needs to be paged requests from UI to server and server to Db.  Play with request and cache sizes to get memory footprint -vs- performance balanced where you want.  Good luck!

On Fri, Dec 31, 2010 at 1:50 AM, remuera <brainbug@web.de> wrote:
Hello,

I've developed an app using GWT 2.1 and GXT 2.2.1 and having these
problems:

1) It is a real-time app (data update 4 times a second!) and I want to
update a grid/table with about 80 lines. The data is not that large,
some doubles and a string.

2) The user should be able to generate a report with a lot of data,
that should be displayed in a pure HTML table (up to 5000 rows). My
solution right now works not bad, but the memory usage is huge (around
400 MB!).

I would like to hear your recommendations on these two requirements.
How would you implement them? The app should be as performant as
possible with using GWT and GXT (if possible). I am deploying it on a
Tomcat 6.

Thank you in advance!

Tim

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

Re: Abridged summary of google-web-toolkit@googlegroups.com - 87 Messages in 43 Topics

2010/12/28, google-web-toolkit+noreply@googlegroups.com
<google-web-toolkit+noreply@googlegroups.com>:
> =============================================================================
> Today's Topic Summary
> =============================================================================
>
> Group: google-web-toolkit@googlegroups.com
> Url: http://groups.google.com/group/google-web-toolkit/topics
>
> - Annotation Processing for GWT using javax.annotation.processing.
> Alternatives, Compile tips ? [5 Updates]
> http://groups.google.com/group/google-web-toolkit/t/a8c33c17bca4b5ae
> - GWT failing on Internet Explorer on LAbel Click [1 Update]
> http://groups.google.com/group/google-web-toolkit/t/662dfbb97fc1ea1e
> - rest / json command pattern implementation project [1 Update]
> http://groups.google.com/group/google-web-toolkit/t/4d2838783167b5e
> - handling session timeout - is there a central hook? [3 Updates]
> http://groups.google.com/group/google-web-toolkit/t/947b701d11650443
> - requestFactory, how to get entity proxy transitively [2 Updates]
> http://groups.google.com/group/google-web-toolkit/t/466c4d05457513dc
> - Click event for custom cell renderer (HyperlinkCell) for CellTable isn't
> firing. [5 Updates]
> http://groups.google.com/group/google-web-toolkit/t/73402e88176bf910
> - GWT 2.1.1 RequestFactory Persist method [4 Updates]
> http://groups.google.com/group/google-web-toolkit/t/f7f7fad863f0dc1b
> - new free book chapter available: RESTful services [2 Updates]
> http://groups.google.com/group/google-web-toolkit/t/dfb3a0ad116d1b39
> - Lost handlers after moving Element of a Widget [1 Update]
> http://groups.google.com/group/google-web-toolkit/t/450415c1dc8fc7af
> - Is encryption over RCP possible? [2 Updates]
> http://groups.google.com/group/google-web-toolkit/t/77064129f7ee170b
> - how to edit celltable css.. [1 Update]
> http://groups.google.com/group/google-web-toolkit/t/735571e34fa4017f
> - CellTree, how can I hide blue background of cell and yellow background
> of head of cell after focus [1 Update]
> http://groups.google.com/group/google-web-toolkit/t/d9ea493c6efd7f3
> - image sprite in uibinder not working [7 Updates]
> http://groups.google.com/group/google-web-toolkit/t/e310b760f5d96ffd
> - Filtering feature on cell table [1 Update]
> http://groups.google.com/group/google-web-toolkit/t/faa085042a93c629
> - Pager in Cell List Example [1 Update]
> http://groups.google.com/group/google-web-toolkit/t/505e5960f0a2f684
> - Type mismatch: cannot convert from Request<capture#1-of ?> to
> Request<EmployeeProxy> [6 Updates]
> http://groups.google.com/group/google-web-toolkit/t/25096dd7550c3c3e
> - Editor Framework Questions [3 Updates]
> http://groups.google.com/group/google-web-toolkit/t/d8252e4b9c957e90
> - Interacting with Google Docs (Client side) [2 Updates]
> http://groups.google.com/group/google-web-toolkit/t/6dbe68723cafcd42
> - Dropping support for ie6? [4 Updates]
> http://groups.google.com/group/google-web-toolkit/t/dc39ad4151b8f53c
> - Unknown problem upgrading from 1.7.1 to 2.1.0 [2 Updates]
> http://groups.google.com/group/google-web-toolkit/t/39443eedba1cb469
> - Logging problem, please Help ! [2 Updates]
> http://groups.google.com/group/google-web-toolkit/t/684c83c0d3f5b603
> - RequestFactory don't play nice with guice? [1 Update]
> http://groups.google.com/group/google-web-toolkit/t/f56fe66ac6545237
> - Java Mail API Error [3 Updates]
> http://groups.google.com/group/google-web-toolkit/t/479c75d4ff97423d
> - ClassNotFoundException: org.slf4j.LoggerFactory [2 Updates]
> http://groups.google.com/group/google-web-toolkit/t/ee85dbf35f5a2f74
> - Purposes of three JAR files [1 Update]
> http://groups.google.com/group/google-web-toolkit/t/d2a057d4d72ac28
> - Maven repository for GWT 2.1.1 [2 Updates]
> http://groups.google.com/group/google-web-toolkit/t/e19c647b84497749
> - RequestFactory JSR303 Validation [2 Updates]
> http://groups.google.com/group/google-web-toolkit/t/cee069f9869cc67b
> - Getting a CellTree to show a specific node [1 Update]
> http://groups.google.com/group/google-web-toolkit/t/64162c34c71f243c
> - RequestFactory server-side inheritance [2 Updates]
> http://groups.google.com/group/google-web-toolkit/t/6a9303f00a206e6a
> - configure jetty to listen to normal IP as well [2 Updates]
> http://groups.google.com/group/google-web-toolkit/t/f00936a87a66979d
> - Attach a ClickHandler to a CellTable row [2 Updates]
> http://groups.google.com/group/google-web-toolkit/t/47b08ab9851d796c
> - Issues in handling Keyboard events in a custom Grid [1 Update]
> http://groups.google.com/group/google-web-toolkit/t/fba694b44347d5e3
> - How to download all developer's guide and other articles? [1 Update]
> http://groups.google.com/group/google-web-toolkit/t/32d99c8d261f5696
> - gwt-maven-plugin / "google plugin for eclipse" / working for anyone?!?!
> [1 Update]
> http://groups.google.com/group/google-web-toolkit/t/e7fb8cbf7114442e
> - client bundle for image collection [1 Update]
> http://groups.google.com/group/google-web-toolkit/t/e9213e957817d673
> - GWT Application Login/Logout [1 Update]
> http://groups.google.com/group/google-web-toolkit/t/53cd99a56af278a1
> - image bundle in uibinder [2 Updates]
> http://groups.google.com/group/google-web-toolkit/t/1f6fed6c90cafcdb
> - GWT Spring Roo: support for a class object inside an ENTITY [1 Update]
> http://groups.google.com/group/google-web-toolkit/t/ee2aff70ea861b8e
> - Tomcat - Failed to get the SerializationPolicy (gwt/rpc) [1 Update]
> http://groups.google.com/group/google-web-toolkit/t/3016c87bb70465bc
> - Code viewer like on google code search [1 Update]
> http://groups.google.com/group/google-web-toolkit/t/135364c75be3ec58
> - Display an Image from JPA entity. [1 Update]
> http://groups.google.com/group/google-web-toolkit/t/f421681943a401de
> - org.eclipse.jdt.internal.core.JavaModel cannot be cast to
> org.eclipse.jdt.core.IJavaProject [1 Update]
> http://groups.google.com/group/google-web-toolkit/t/80b8452b67168148
> - Client-side JSR 303 validation in editors framework. What version ? [1
> Update]
> http://groups.google.com/group/google-web-toolkit/t/befc34cf2cc3e9fd
>
>
> =============================================================================
> Topic: Annotation Processing for GWT using javax.annotation.processing.
> Alternatives, Compile tips ?
> Url: http://groups.google.com/group/google-web-toolkit/t/a8c33c17bca4b5ae
> =============================================================================
>
> ---------- 1 of 5 ----------
> From: zixzigma <zixzigma@gmail.com>
> Date: Dec 27 06:10PM -0800
> Url: http://groups.google.com/group/google-web-toolkit/msg/b4d503281f044df1
>
> I have defined a custom annotation in my GWT app,
> and have annotated my classes with it.
>
> I would like to process it and generate some code,
> that rest of my app would depend on it.
>
>
> ---------- 2 of 5 ----------
> From: Thomas Broyer <t.broyer@gmail.com>
> Date: Dec 28 03:54AM -0800
> Url: http://groups.google.com/group/google-web-toolkit/msg/58f241e4ebb548c5
>
> On Tuesday, December 28, 2010 3:10:01 AM UTC+1, zixzigma wrote:
>> javax.annotation.processing
>
>> is a good idea ? are there any alternatives ?
>> how does it compare to :com.google.gwt.core.ext ?
>
> ---------- 3 of 5 ----------
> From: Gal Dolber <gal.dolber@gmail.com>
> Date: Dec 28 08:16AM -0400
> Url: http://groups.google.com/group/google-web-toolkit/msg/b87417549cf798fc
>
> Guaw! great project
>
>
> --
> Guit: Elegant, beautiful, modular and *production ready* gwt applications.
>
> http://code.google.com/p/guit/
>
>
> ---------- 4 of 5 ----------
> From: Gal Dolber <gal.dolber@gmail.com>
> Date: Dec 28 08:54AM -0400
> Url: http://groups.google.com/group/google-web-toolkit/msg/a3a85b8a52490249
>
> Thomas,
> where you been able to use lombok with gwt code?
> I getting error while running (or compiling) on every call to a generated
> method.
>
> [ERROR] [testapp] - Line 61: The method getMarketing()
>
> ---------- 5 of 5 ----------
> From: Thomas Broyer <t.broyer@gmail.com>
> Date: Dec 28 05:05AM -0800
> Url: http://groups.google.com/group/google-web-toolkit/msg/f37751909b526341
>
> Yes we do. You have to add the generated sources output dir to your
> classpath for GWT to see them, and make sure GWT doesn't see the "original"
> source files (either by putting them "later" on the
>
>
> =============================================================================
> Topic: GWT failing on Internet Explorer on LAbel Click
> Url: http://groups.google.com/group/google-web-toolkit/t/662dfbb97fc1ea1e
> =============================================================================
>
> ---------- 1 of 1 ----------
> From: Noor <bakenoor@gmail.com>
> Date: Dec 28 04:43AM -0800
> Url: http://groups.google.com/group/google-web-toolkit/msg/4318d2e32d9d4f0
>
> I was working on IE, then I decided to test this on IE. I am getting
> an exception when I am clicking on a label, the label has a click
> handler attached to it
>
> [ERROR] [biddingsystem] Uncaught
>
>
> =============================================================================
> Topic: rest / json command pattern implementation project
> Url: http://groups.google.com/group/google-web-toolkit/t/4d2838783167b5e
> =============================================================================
>
> ---------- 1 of 1 ----------
> From: "Raphael André Bauer" <raphael.andre.bauer@gmail.com>
> Date: Dec 28 01:38PM +0100
> Url: http://groups.google.com/group/google-web-toolkit/msg/a0ba36a5806147e8
>
>
>> can you please explain some of your stragies
>> for implementing "caching" and "batching" ?
>
>> some tips/high level overview of how you are going to design them ?
>
> Currently, the dispatcher is
>
>
> =============================================================================
> Topic: handling session timeout - is there a central hook?
> Url: http://groups.google.com/group/google-web-toolkit/t/947b701d11650443
> =============================================================================
>
> ---------- 1 of 3 ----------
> From: Magnus <alpineblaster@googlemail.com>
> Date: Dec 27 02:56PM -0800
> Url: http://groups.google.com/group/google-web-toolkit/msg/ae8530c05c60be80
>
> Hi,
>
> I wondered why my application still worked, even when the session
> timed out on the server. It still worked, because the current user is
> also stored in my application and I never check this
>
> ---------- 2 of 3 ----------
> From: Sergio Von Knorring <svonknorring@gmail.com>
> Date: Dec 27 10:58PM -0300
> Url: http://groups.google.com/group/google-web-toolkit/msg/e72aa092ea69df39
>
> Hi you can use a Java filter in the server side to check if the session id
> Regards
>
> Enviado desde mi iPhone
>
>
>
> ---------- 3 of 3 ----------
> From: sergio von Knorring <svonknorring@gmail.com>
> Date: Dec 28 09:27AM -0300
> Url: http://groups.google.com/group/google-web-toolkit/msg/9104c18a611f969
>
> Hi Magnus
>
> You can implement a java Filter in the server Side and check if the session
> is valid
>
> if is not valid yo do the redirect in the server side.
>
> you can use that way if you call a
>
>
> =============================================================================
> Topic: requestFactory, how to get entity proxy transitively
> Url: http://groups.google.com/group/google-web-toolkit/t/466c4d05457513dc
> =============================================================================
>
> ---------- 1 of 2 ----------
> From: Mike Guo <gsun616@gmail.com>
> Date: Dec 28 03:00AM -0800
> Url: http://groups.google.com/group/google-web-toolkit/msg/4212de973e3cee65
>
> @Entity
> class A
> {
> Set<B> bs;
> }
>
> @Entity
> class B
> {
> C c;
> }
>
> @Entity
> class C
> {
> }
>
> i didn't type annotation for brevity. from client, using requestFactory i
>
> ---------- 2 of 2 ----------
> From: Thomas Broyer <t.broyer@gmail.com>
> Date: Dec 28 04:27AM -0800
> Url: http://groups.google.com/group/google-web-toolkit/msg/4fd91cd155cb8af7
>
> context.getAllAs().with("bs", "bs.c")
>
> (the "bs" isn't required actually, you can use "bs.c" only, but then you
> might not have other fields of BProxy --haven't checked--, and I find it
>
>
> =============================================================================
> Topic: Click event for custom cell renderer (HyperlinkCell) for CellTable
> isn't firing.
> Url: http://groups.google.com/group/google-web-toolkit/t/73402e88176bf910
> =============================================================================
>
> ---------- 1 of 5 ----------
> From: Ketan Shah <ketan.shah@gmail.com>
> Date: Dec 28 01:50AM -0800
> Url: http://groups.google.com/group/google-web-toolkit/msg/1349f8a172fd4fec
>
> Greetings,
>
> I have created a custom hyperlinkcell column renderer for celltable widget.
> Source can be found here
> http://pastebin.com/hM7rg4tF<http://pastebin.com/hM7rg4tF>
>
> The hyperlink
>
> ---------- 2 of 5 ----------
> From: Subhrajyoti Moitra <subhrajyotim@gmail.com>
> Date: Dec 28 03:32PM +0530
> Url: http://groups.google.com/group/google-web-toolkit/msg/41b8bfd4766194be
>
> @Override AFAIK is a jdk 1.6 feature.
> Can u see your project Compiler settings in Eclipse. Set it to follow 1.6
> conventions.
>
> Your code looks alright to me..
>
> HTH.
>
> Thanks,
> Subhro.
>
>
>
> ---------- 3 of 5 ----------
> From: Ketan Shah <ketan.shah@gmail.com>
> Date: Dec 28 03:44PM +0530
> Url: http://groups.google.com/group/google-web-toolkit/msg/f5ba1586fb3f86c0
>
> Thanks Subhro. The @Override annotation works for *render()* method in the
> same class but not for onBrowserEvent. I tried your suggestion too but didnt
> work (I have openjdk version 1.6.0_20).
>
>
> ---------- 4 of 5 ----------
> From: Nirmal Patel <nirmaljpatel@gmail.com>
> Date: Dec 28 04:20AM -0800
> Url: http://groups.google.com/group/google-web-toolkit/msg/497b1c3a10548874
>
> Here's how to configure what Subhro suggests...
> In Eclipse; goto Project -> Properties -> Java Compiler -> (Check)Enable
> Project Specific Settings -> Compiler Compliance Level (select 1.6)
>
> ---------- 5 of 5 ----------
> From: Thomas Broyer <t.broyer@gmail.com>
> Date: Dec 28 04:24AM -0800
> Url: http://groups.google.com/group/google-web-toolkit/msg/a7441f111f26dd22
>
> The signature of onBrowserEvent has changed between 2.1.0 and 2.1.1, which
> version are you using?
>
>
>
> =============================================================================
> Topic: GWT 2.1.1 RequestFactory Persist method
> Url: http://groups.google.com/group/google-web-toolkit/t/f7f7fad863f0dc1b
> =============================================================================
>
> ---------- 1 of 4 ----------
> From: giannisdag <pascoualis@gmail.com>
> Date: Dec 27 03:19PM -0800
> Url: http://groups.google.com/group/google-web-toolkit/msg/2a6f8cf279a2fc93
>
> Hi I am trying to use the service layer of GWT 2.1.1. I have created
> the infrastracture meaning:
> 1. An entity proxy, entity and entity locator
> 2. A request, a service and a service locator
>
> ---------- 2 of 4 ----------
> From: Thomas Broyer <t.broyer@gmail.com>
> Date: Dec 27 03:37PM -0800
> Url: http://groups.google.com/group/google-web-toolkit/msg/8a7216caef6cd131
>
> On Tuesday, December 28, 2010 12:19:37 AM UTC+1, giannisdag wrote:
>> 2. A request, a service and a service locator
>> I am using an interface which I annotate as service, and which I
>> implement.
>
> ---------- 3 of 4 ----------
> From: giannisdag <pascoualis@gmail.com>
> Date: Dec 28 12:37AM -0800
> Url: http://groups.google.com/group/google-web-toolkit/msg/5002d967d9dc727f
>
> thank you Thomas. Before trying the new service layer, I have looked
> this thread,
> http://groups.google.com/group/google-web-toolkit/browse_thread/thread/846564e9fc303be0,
> to understand how it works.
>
> ---------- 4 of 4 ----------
> From: Thomas Broyer <t.broyer@gmail.com>
> Date: Dec 28 04:20AM -0800
> Url: http://groups.google.com/group/google-web-toolkit/msg/3e9079bf96316e95
>
> You declared your method as InstanceRequest<UserProxy, Void>, i.e. "this is
> an instance method of UserProxy, that returns void". If your method is in
> your service, then it has to be a
>
>
> =============================================================================
> Topic: new free book chapter available: RESTful services
> Url: http://groups.google.com/group/google-web-toolkit/t/dfb3a0ad116d1b39
> =============================================================================
>
> ---------- 1 of 2 ----------
> From: "marius.andreiana" <marius.andreiana@gmail.com>
> Date: Dec 27 11:59PM -0800
> Url: http://groups.google.com/group/google-web-toolkit/msg/985296462d68f455
>
> Hi,
>
> Part of GWT/GAE book, I've just added a chapter on RESTful services:
> http://code.google.com/p/gwt-gae-book/wiki/ManagingLocations
>
> Looking forward to group feedback and better ways to
>
> ---------- 2 of 2 ----------
> From: Thomas Broyer <t.broyer@gmail.com>
> Date: Dec 28 04:14AM -0800
> Url: http://groups.google.com/group/google-web-toolkit/msg/494c9440b8e514fb
>
> This is not ReST, ReST is about hypertext (HATEOAS). Using a URL per
> resource is not enough to make a service "RESTful":
> http://www.crummy.com/writing/speaking/2008-QCon/act3.html (only level 3
>
>
> =============================================================================
> Topic: Lost handlers after moving Element of a Widget
> Url: http://groups.google.com/group/google-web-toolkit/t/450415c1dc8fc7af
> =============================================================================
>
> ---------- 1 of 1 ----------
> From: Flori <floonweb@googlemail.com>
> Date: Dec 28 02:54AM -0800
> Url: http://groups.google.com/group/google-web-toolkit/msg/2375acb6f60d9c84
>
> Hey all,
>
> I've got some code which moves some elements from one to another
> position:
>>Element parentElement = inputElement.getParentElement();
>>parentElement.insertAfter(picker.getElement(),
>
>
> =============================================================================
> Topic: Is encryption over RCP possible?
> Url: http://groups.google.com/group/google-web-toolkit/t/77064129f7ee170b
> =============================================================================
>
> ---------- 1 of 2 ----------
> From: UseTheFork <jverstry@gmail.com>
> Date: Dec 27 08:15AM -0800
> Url: http://groups.google.com/group/google-web-toolkit/msg/371f24ff4b152bb3
>
> I just came across the Secure Remote Password protocol (http://
> srp.stanford.edu/). To reduce the TLS/SSL load on the server, one
> could create accounts/pwd (and perform commercial transactions)
>
> ---------- 2 of 2 ----------
> From: Basdl <bz@cirosec.de>
> Date: Dec 28 01:54AM -0800
> Url: http://groups.google.com/group/google-web-toolkit/msg/7589dab032fb1be5
>
> The protocol self seems to be pretty save.
> But with webapplications you have the problem that the algorithm using
> that protcol is written in javascript.
> Therefore, you must guard this JS via SSL or
>
>
> =============================================================================
> Topic: how to edit celltable css..
> Url: http://groups.google.com/group/google-web-toolkit/t/735571e34fa4017f
> =============================================================================
>
> ---------- 1 of 1 ----------
> From: jhpark <aquua77@gmail.com>
> Date: Dec 28 12:53AM -0800
> Url: http://groups.google.com/group/google-web-toolkit/msg/b280b77608ca4191
>
> sorry,, I can't write english..
>
> I use cellable and apply callTable.css.
>
>
> 1.. load css..
> public interface CellTableResource extends CellTable.Resources
> {
> public interface CellTableStyle
>
>
> =============================================================================
> Topic: CellTree, how can I hide blue background of cell and yellow
> background of head of cell after focus
> Url: http://groups.google.com/group/google-web-toolkit/t/d9ea493c6efd7f3
> =============================================================================
>
> ---------- 1 of 1 ----------
> From: vkrejcirik <vkrejcirik@gmail.com>
> Date: Dec 28 12:44AM -0800
> Url: http://groups.google.com/group/google-web-toolkit/msg/f6e7ad202d393e45
>
> Hi, I use CellTree wieh TreeViewModel for creating applications menu.
> When I select some cell, it changes background. (cells body is blue
> and cells head is yellow)
> Is it possible to remove this
>
>
> =============================================================================
> Topic: image sprite in uibinder not working
> Url: http://groups.google.com/group/google-web-toolkit/t/e310b760f5d96ffd
> =============================================================================
>
> ---------- 1 of 7 ----------
> From: asianCoolz <second.comet@gmail.com>
> Date: Dec 27 06:08PM -0800
> Url: http://groups.google.com/group/google-web-toolkit/msg/7a8f01c6ffd02007
>
> <ui:image field='logo' src='logo.png'/>
> @sprite .logo {
> gwt-image: 'logo';
> position: absolute;
> }
> div class='{style.logo}'/> <div class='{style.logo}'/>
>
> when i run my app, i
>
> ---------- 2 of 7 ----------
> From: Matthew Hill <matt2224@gmail.com>
> Date: Dec 27 07:10PM -0800
> Url: http://groups.google.com/group/google-web-toolkit/msg/e244a6d9d66aea7e
>
> No, that's the default behavior for all browsers which support data URIs.
> The sprite image method is used in IE <8
>
>
> ---------- 3 of 7 ----------
> From: asianCoolz <second.comet@gmail.com>
> Date: Dec 27 07:45PM -0800
> Url: http://groups.google.com/group/google-web-toolkit/msg/a0efa7977c3d3f12
>
> @Matthew, thank for the update, arent sprite image (combine multiple
> images into 1) is faster if we need to reuse example div
> class='{style.logo}'/> <div class='{style.logo}'/> ? no way to
>
> ---------- 4 of 7 ----------
> From: Matthew Hill <matt2224@gmail.com>
> Date: Dec 27 08:16PM -0800
> Url: http://groups.google.com/group/google-web-toolkit/msg/cc5e9033eaa3160b
>
> The base64 encoded string is only stored once within your compiled JS file -
> so reuse makes no difference.
>
> There is a way to force it to use sprites, but I've never used it and don't
>
> ---------- 5 of 7 ----------
> From: asianCoolz <second.comet@gmail.com>
> Date: Dec 27 08:52PM -0800
> Url: http://groups.google.com/group/google-web-toolkit/msg/374a0b1a345ba21c
>
> yes, i agreed stored in base64 . but let say ur same js page is
> refresh each time, the page will need to "re-read" the encoded string
> from the server right? aren't using sprites is better, as it
>
> ---------- 6 of 7 ----------
> From: Matthew Hill <matt2224@gmail.com>
> Date: Dec 27 09:04PM -0800
> Url: http://groups.google.com/group/google-web-toolkit/msg/f6d62b95a6516231
>
> The string is stored in the permutation cache.html file which contains all
> of the javascript. This file is cached - so it isn't re-downloaded on every
> request from the same browser.
>
>
> ---------- 7 of 7 ----------
> From: Nirmal Patel <nirmaljpatel@gmail.com>
> Date: Dec 27 09:34PM -0800
> Url: http://groups.google.com/group/google-web-toolkit/msg/b536e4434509c543
>
> You can disable inline data urls by following:
> <set-property name="ClientBundle.enableInlining" value="false">
>
> Even I havent used it personally; think inlining best serves nby saving a
>
>
> =============================================================================
> Topic: Filtering feature on cell table
> Url: http://groups.google.com/group/google-web-toolkit/t/faa085042a93c629
> =============================================================================
>
> ---------- 1 of 1 ----------
> From: newbee <gandhamsatish@gmail.com>
> Date: Dec 27 08:47PM -0800
> Url: http://groups.google.com/group/google-web-toolkit/msg/a9c2df224b055be8
>
> Hi All,
>
> I have a requirement from the client to provide filtering feature on
> the data list. I am using cell table to show up the data and trying to
> add filtering feature to it. I tried to add the
>
>
> =============================================================================
> Topic: Pager in Cell List Example
> Url: http://groups.google.com/group/google-web-toolkit/t/505e5960f0a2f684
> =============================================================================
>
> ---------- 1 of 1 ----------
> From: jaybose <onyeje.bose@gmail.com>
> Date: Dec 27 07:38PM -0800
> Url: http://groups.google.com/group/google-web-toolkit/msg/86bdaec39c349125
>
> http://gwt.google.com/samples/Showcase/Showcase.html#!CwCellList
>
> In the example above, in the CwCellList.ui.xml, there's a row defined,
> referring to ShowMorePagerPanel's pager field - see below.
>
>
> =============================================================================
> Topic: Type mismatch: cannot convert from Request<capture#1-of ?> to
> Request<EmployeeProxy>
> Url: http://groups.google.com/group/google-web-toolkit/t/25096dd7550c3c3e
> =============================================================================
>
> ---------- 1 of 6 ----------
> From: Matthew Hill <matt2224@gmail.com>
> Date: Dec 27 05:27PM -0800
> Url: http://groups.google.com/group/google-web-toolkit/msg/6687d74de573babe
>
> The following line of code throws the above error:
>
> Request<EmployeeProxy> request = requestFactory.find(employee.stableId())
> ;
>
>
> employee is just an EmployeeProxy instance.
>
>
>
> ---------- 2 of 6 ----------
> From: zixzigma <zixzigma@gmail.com>
> Date: Dec 27 05:52PM -0800
> Url: http://groups.google.com/group/google-web-toolkit/msg/706e84f714323512
>
> it might be that you need to get the employeeRequest first, before
> invoking find on it
>
> requestFactory.employeeRequest().find(xxxx).fire
>
>
> ---------- 3 of 6 ----------
> From: Matthew Hill <matt2224@gmail.com>
> Date: Dec 27 05:59PM -0800
> Url: http://groups.google.com/group/google-web-toolkit/msg/af86d3b6cd68d3a8
>
> I'm going to try using my own find method on employeeRequest, like you said.
>
> Request<EmployeeProxy> request = requestFactory
> .employeeRequest().findEmployee(employee.getId());
>
>
>
> ---------- 4 of 6 ----------
> From: zixzigma <zixzigma@gmail.com>
> Date: Dec 27 06:17PM -0800
> Url: http://groups.google.com/group/google-web-toolkit/msg/22c7fbac300e2318
>
> is it enough to just declare the stableId property
> or we also need to provide implementation ?
>
>
> and one question about Version.
> does RequestFactory depend on version property ?
>
> ---------- 5 of 6 ----------
> From: Matthew Hill <matt2224@gmail.com>
> Date: Dec 27 07:15PM -0800
> Url: http://groups.google.com/group/google-web-toolkit/msg/33943be18eb044d3
>
> Right. So from the overridden stableId method I return the unique ID which
> I'm using for my persistence?
>
> And then what happens when you call RequestFactory#Find? How does it 'find'
> the proxy?
>
>
> ---------- 6 of 6 ----------
> From: Matthew Hill <matt2224@gmail.com>
> Date: Dec 27 07:25PM -0800
> Url: http://groups.google.com/group/google-web-toolkit/msg/ed1240bd8a09dccf
>
> I've got it now. I just need to add it to the interface.
>
>
>
> =============================================================================
> Topic: Editor Framework Questions
> Url: http://groups.google.com/group/google-web-toolkit/t/d8252e4b9c957e90
> =============================================================================
>
> ---------- 1 of 3 ----------
> From: Dhruv Shukla <dhruvshukla82@gmail.com>
> Date: Dec 27 09:39AM -0600
> Url: http://groups.google.com/group/google-web-toolkit/msg/85c1846d4cefc6a6
>
> What are the setting to be done on Server side to make request factory work
>
>
> --
> Regards
> Dhruv
> 404-551-2578
>
>
> ---------- 2 of 3 ----------
> From: Thomas Broyer <t.broyer@gmail.com>
> Date: Dec 27 10:58AM -0800
> Url: http://groups.google.com/group/google-web-toolkit/msg/c9c6fc58311a8dd0
>
> On Saturday, December 25, 2010 12:54:51 AM UTC+1, Matthew Hill wrote:
>
>> After reading
>> this<http://code.google.com/webtoolkit/doc/latest/DevGuideUiEditors.html>
>> page,
>> I'm still unclear as to
>
> ---------- 3 of 3 ----------
> From: Matthew Hill <matt2224@gmail.com>
> Date: Dec 27 06:04PM -0800
> Url: http://groups.google.com/group/google-web-toolkit/msg/9840e034d328b228
>
> Thanks.
>
> I'm finding the dynatablerf example as confusing as hell.
>
> *
>
>
> =============================================================================
> Topic: Interacting with Google Docs (Client side)
> Url: http://groups.google.com/group/google-web-toolkit/t/6dbe68723cafcd42
> =============================================================================
>
> ---------- 1 of 2 ----------
> From: amjibaly <amjibaly@gmail.com>
> Date: Dec 27 02:41PM -0800
> Url: http://groups.google.com/group/google-web-toolkit/msg/d4c97e0dcc9c5c32
>
> What is the recommended approach to interacting with the Google Docs
> API? I want to be able to read/write to a Google Spreadsheet from
> client-side GWT, do I need to use JSNI to accomplish that?
>
>
> ---------- 2 of 2 ----------
> From: Matthew Hill <matt2224@gmail.com>
> Date: Dec 27 03:48PM -0800
> Url: http://groups.google.com/group/google-web-toolkit/msg/60868b953e05c69a
>
> If you can't find a wrapper library out there, then doing it yourself with
> JSNI is the way to go.
>
>
>
> =============================================================================
> Topic: Dropping support for ie6?
> Url: http://groups.google.com/group/google-web-toolkit/t/dc39ad4151b8f53c
> =============================================================================
>
> ---------- 1 of 4 ----------
> From: Gal Dolber <gal.dolber@gmail.com>
> Date: Dec 27 01:15PM -0300
> Url: http://groups.google.com/group/google-web-toolkit/msg/fe2dbf86343ce5c4
>
> I don't know about dropping ie6, but Microsoft is really promoting ie9 all
> over the web. I feel we'll really need that support..
>
> ---------- 2 of 4 ----------
> From: David Chandler <drfibonacci@google.com>
> Date: Dec 27 11:44AM -0500
> Url: http://groups.google.com/group/google-web-toolkit/msg/5f489ac402753141
>
> See also
>
> http://googlewebtoolkit.blogspot.com/2010/12/support-for-gwt-dev-mode-in-ie-9.html
>
> for a workaround to a dev mode issue in IE9 beta.
>
> /dmc
>
>
> --
> David Chandler
>
> ---------- 3 of 4 ----------
> From: jay <jay.gindin@gmail.com>
> Date: Dec 27 11:24AM -0800
> Url: http://groups.google.com/group/google-web-toolkit/msg/74bba8638ac3bcde
>
> Certainly *NOT*. There are those of us with customers who (for various
> reasons of their own) cannot at this time retire IE6.
>
> Luckily, those folks are few, but they still exist.
>
>
> ---------- 4 of 4 ----------
> From: Thomas Broyer <t.broyer@gmail.com>
> Date: Dec 27 11:42AM -0800
> Url: http://groups.google.com/group/google-web-toolkit/msg/e79a7ac11b73a617
>
> On Monday, December 27, 2010 8:24:50 PM UTC+1, jay wrote:
>
>> Certainly *NOT*. There are those of us with customers who (for various
>> reasons of their own) cannot at this time retire IE6.
>
>
>
> =============================================================================
> Topic: Unknown problem upgrading from 1.7.1 to 2.1.0
> Url: http://groups.google.com/group/google-web-toolkit/t/39443eedba1cb469
> =============================================================================
>
> ---------- 1 of 2 ----------
> From: miller <millermichael@gmail.com>
> Date: Dec 27 10:53AM -0800
> Url: http://groups.google.com/group/google-web-toolkit/msg/3aed90c6cf90d98d
>
> I am having the same issue. Did you find a solution?
>
>
> ---------- 2 of 2 ----------
> From: Rob Tanner <caspersgrin@gmail.com>
> Date: Dec 27 11:27AM -0800
> Url: http://groups.google.com/group/google-web-toolkit/msg/d4bf4ec3b1e9fc3d
>
> Yes I did. It's called read the release notes (or, as they say,
> RTFM :-) ). Buried within the document is a small notation that the
> hosted mode is renamed to development mode and that the old
>
>
> =============================================================================
> Topic: Logging problem, please Help !
> Url: http://groups.google.com/group/google-web-toolkit/t/684c83c0d3f5b603
> =============================================================================
>
> ---------- 1 of 2 ----------
> From: David Chandler <drfibonacci@google.com>
> Date: Dec 27 12:18PM -0500
> Url: http://groups.google.com/group/google-web-toolkit/msg/3d630ec20c760085
>
> GWT uses standard java.util.logging, which lets you specify a custom
> formatter in logging.properties. Perhaps this will help:
>
>
> ---------- 2 of 2 ----------
> From: Mauro Bertapelle <mauro.bertapelle@gmail.com>
> Date: Dec 27 11:11AM -0800
> Url: http://groups.google.com/group/google-web-toolkit/msg/948b7a59cf9349a8
>
> First you need to supply a custom formatter. Look at
> com.google.gwt.logging.client.TextLogFormatter for a simple example or, this
> is an example of a formatter that format log message in a single
>
>
> =============================================================================
> Topic: RequestFactory don't play nice with guice?
> Url: http://groups.google.com/group/google-web-toolkit/t/f56fe66ac6545237
> =============================================================================
>
> ---------- 1 of 1 ----------
> From: Thomas Broyer <t.broyer@gmail.com>
> Date: Dec 27 10:35AM -0800
> Url: http://groups.google.com/group/google-web-toolkit/msg/efa456d742a09eb6
>
> For information:
>
> - I use Guice's ServletModule to bind my RequestFactory servlet
> - to benefit from Guice in Service-s and Locator-s, I use a very simple
> ServiceLayerDecorator, that I
>
>
> =============================================================================
> Topic: Java Mail API Error
> Url: http://groups.google.com/group/google-web-toolkit/t/479c75d4ff97423d
> =============================================================================
>
> ---------- 1 of 3 ----------
> From: Ahmed Shoeib <ahmedelsayed.shoeib@gmail.com>
> Date: Dec 27 06:37AM -0800
> Url: http://groups.google.com/group/google-web-toolkit/msg/a354cec89acec82e
>
> Compiling module com.fuoeg.testMail.TestMailAPI
> Validating newly compiled units
> [ERROR] Errors in 'file:/home/sho3ebovich/workspace/testMailAPI/
>
> ---------- 2 of 3 ----------
> From: Jason Essington <jasone@greenrivercomputing.com>
> Date: Dec 27 07:59AM -0700
> Url: http://groups.google.com/group/google-web-toolkit/msg/2348ac617fa6345d
>
> You cannot send email from the client portion of a GWT application. You can
> only email from the server side portion.
> The errors indicate that you were trying to use javamail from the client
> portion.
>
> ---------- 3 of 3 ----------
> From: Ahmed Shoeib <ahmedelsayed.shoeib@gmail.com>
> Date: Dec 27 10:33AM -0800
> Url: http://groups.google.com/group/google-web-toolkit/msg/842cfe979beb1355
>
> thanks Jason
>
> On Dec 27, 4:59 pm, Jason Essington <jas...@greenrivercomputing.com>
> wrote:
>
>
>
> =============================================================================
> Topic: ClassNotFoundException: org.slf4j.LoggerFactory
> Url: http://groups.google.com/group/google-web-toolkit/t/ee85dbf35f5a2f74
> =============================================================================
>
> ---------- 1 of 2 ----------
> From: David Chandler <drfibonacci@google.com>
> Date: Dec 27 12:00PM -0500
> Url: http://groups.google.com/group/google-web-toolkit/msg/a3d863c1ce860a9f
>
> I'm using the following set of dependencies with Hibernate validator
> successfully:
>
> <dependency>
> <groupId>org.slf4j</groupId>
> <artifactId>slf4j-api</artifactId>
>
> ---------- 2 of 2 ----------
> From: branni <ujlaki.imre@gmail.com>
> Date: Dec 27 09:54AM -0800
> Url: http://groups.google.com/group/google-web-toolkit/msg/859f1295bda8cec5
>
> Thanks, but now I've got another problem:
>
> com.google.gwt.user.client.rpc.IncompatibleRemoteServiceException:
> This application is out of date, please click the refresh button on
>
>
> =============================================================================
> Topic: Purposes of three JAR files
> Url: http://groups.google.com/group/google-web-toolkit/t/d2a057d4d72ac28
> =============================================================================
>
> ---------- 1 of 1 ----------
> From: Thomas Broyer <t.broyer@gmail.com>
> Date: Dec 27 09:47AM -0800
> Url: http://groups.google.com/group/google-web-toolkit/msg/16564ac36cf54c93
>
> On Sunday, December 26, 2010 1:07:13 AM UTC+1, David Pinn wrote:
>
>> What purposes are served by each of the main GWT JAR files: gwt-user.jar,
>> gwt-servlet.jar, and gwt-dev.jar?
>
>
>
> =============================================================================
> Topic: Maven repository for GWT 2.1.1
> Url: http://groups.google.com/group/google-web-toolkit/t/e19c647b84497749
> =============================================================================
>
> ---------- 1 of 2 ----------
> From: David Chandler <drfibonacci@google.com>
> Date: Dec 27 11:51AM -0500
> Url: http://groups.google.com/group/google-web-toolkit/msg/c96938bd50077ea3
>
> Use mvn clean compile gwt:compile to be sure you're doing all
> compilation. If you still get the compilation warning, try deleting
> browser cache.
>
> /dmc
>
>
>
> --
> David Chandler
>
> ---------- 2 of 2 ----------
> From: ailinykh <ailinykh@gmail.com>
> Date: Dec 27 09:25AM -0800
> Url: http://groups.google.com/group/google-web-toolkit/msg/610b58d4aadc1ba3
>
> It helped.
> Thank you!
>
> Andrey
>
>
>
>
> =============================================================================
> Topic: RequestFactory JSR303 Validation
> Url: http://groups.google.com/group/google-web-toolkit/t/cee069f9869cc67b
> =============================================================================
>
> ---------- 1 of 2 ----------
> From: Matthew Hill <matt2224@gmail.com>
> Date: Dec 27 05:38AM -0800
> Url: http://groups.google.com/group/google-web-toolkit/msg/708395fa6fea8157
>
> Hi.
>
> I'm wanting to get RequestFactory validating my beans. I've added the apache
> bval jars from here: http://incubator.apache.org/bval/cwiki/index.html
>
> Now what? My beans aren't validated yet
>
> ---------- 2 of 2 ----------
> From: Matthew Hill <matt2224@gmail.com>
> Date: Dec 27 08:59AM -0800
> Url: http://groups.google.com/group/google-web-toolkit/msg/a851a18ef9089127
>
> Never mind, I've got it working now. I'd imported the JARs incorrectly.
>
>
>
> =============================================================================
> Topic: Getting a CellTree to show a specific node
> Url: http://groups.google.com/group/google-web-toolkit/t/64162c34c71f243c
> =============================================================================
>
> ---------- 1 of 1 ----------
> From: "alan@mechnicality.com" <alan@mechnicality.com>
> Date: Dec 27 08:52AM -0800
> Url: http://groups.google.com/group/google-web-toolkit/msg/87cd23022e97c313
>
> Hi
>
> Could someone point me at an example of how to get a CellTree to open up to
> show and select a
> specific node?
>
> I have a multi-level tree where I want to be able to programmatically open
> the
>
>
> =============================================================================
> Topic: RequestFactory server-side inheritance
> Url: http://groups.google.com/group/google-web-toolkit/t/6a9303f00a206e6a
> =============================================================================
>
> ---------- 1 of 2 ----------
> From: Ruben Leal <rusoleal@gmail.com>
> Date: Dec 26 05:02AM -0800
> Url: http://groups.google.com/group/google-web-toolkit/msg/e04499f737a15359
>
> I'm writing an GWT/GAE application with some server-persistent classes
> inheritance. From server-side, my inheritance works well, but when I
> try to connect my classes with my proxies via
>
> ---------- 2 of 2 ----------
> From: Matthew Hill <matt2224@gmail.com>
> Date: Dec 27 08:45AM -0800
> Url: http://groups.google.com/group/google-web-toolkit/msg/6b0ff49b3f3dfeb9
>
> Probably just an error in your post, but you have DerivedClass extending
> BaseClass, right?
>
> class DerivedClass extends BaseClass
> {
> int field2;
> }
>
>
>
> =============================================================================
> Topic: configure jetty to listen to normal IP as well
> Url: http://groups.google.com/group/google-web-toolkit/t/f00936a87a66979d
> =============================================================================
>
> ---------- 1 of 2 ----------
> From: Karel <karel.crombecq@gmail.com>
> Date: Dec 25 05:34PM -0800
> Url: http://groups.google.com/group/google-web-toolkit/msg/e18adb34b184f737
>
> Hello,
>
> I am trying to get jetty to listen to the public IP of my PC as well.
> Right now, I can only access my app through the following urls:
>
> ---------- 2 of 2 ----------
> From: David Chandler <drfibonacci@google.com>
> Date: Dec 27 11:39AM -0500
> Url: http://groups.google.com/group/google-web-toolkit/msg/6e3183f67c4b54b3
>
> Karel,
>
> You can pass the -bindAddress argument when you start hosted mode:
>
>
>
> =============================================================================
> Topic: Attach a ClickHandler to a CellTable row
> Url: http://groups.google.com/group/google-web-toolkit/t/47b08ab9851d796c
> =============================================================================
>
> ---------- 1 of 2 ----------
> From: Matias <matiassurdi@gmail.com>
> Date: Dec 27 04:04AM -0800
> Url: http://groups.google.com/group/google-web-toolkit/msg/9193d62991be3fbf
>
> Could somebody provide an example or any instructions on how to listen
> for a click event on a CellTable row?
>
> I want to have the same behavior of for example, gmail, when you click
>
> ---------- 2 of 2 ----------
> From: Gal Dolber <gal.dolber@gmail.com>
> Date: Dec 27 01:38PM -0300
> Url: http://groups.google.com/group/google-web-toolkit/msg/453253cd1a8a947e
>
> You need to use a SingleSelectionModel.
>
> SingleSelectionModel mySelectionModel =
> new SingleSelectionModel<Mode>();
> table.setSelectionModel(mySelectionModel);
>
>
> =============================================================================
> Topic: Issues in handling Keyboard events in a custom Grid
> Url: http://groups.google.com/group/google-web-toolkit/t/fba694b44347d5e3
> =============================================================================
>
> ---------- 1 of 1 ----------
> From: SS <smritis@activateapps.com>
> Date: Dec 26 10:02PM -0800
> Url: http://groups.google.com/group/google-web-toolkit/msg/b5e0d9c0940ea524
>
> Hi All,
>
> I am facing tabing and keyboard events related issues in a custom
> grid created using composite in our application.To handle all the
> keyboard events we have a KeyDownHandler added to the
>
>
> =============================================================================
> Topic: How to download all developer's guide and other articles?
> Url: http://groups.google.com/group/google-web-toolkit/t/32d99c8d261f5696
> =============================================================================
>
> ---------- 1 of 1 ----------
> From: Alex Luya <alexander.luya@gmail.com>
> Date: Dec 24 06:02PM -0800
> Url: http://groups.google.com/group/google-web-toolkit/msg/d731af1156d1fe92
>
> Sometimes,when I am reading a articles ,a question comes up,but I want
> to delay to get answer,so I mark it(coloring it or do something else
> by a chrome extension called PageEdit) then save this
>
>
> =============================================================================
> Topic: gwt-maven-plugin / "google plugin for eclipse" / working for
> anyone?!?!
> Url: http://groups.google.com/group/google-web-toolkit/t/e7fb8cbf7114442e
> =============================================================================
>
> ---------- 1 of 1 ----------
> From: Mars Hsu <marsxu1984@gmail.com>
> Date: Dec 26 07:02AM -0800
> Url: http://groups.google.com/group/google-web-toolkit/msg/d85cfe7b11987f4
>
> Hi Pete,
> how do you use gwt-maven-plugin2.2.1 to integrate with spring
> project?
> I met same problem with you.
> Would you like to give me a easy example?
>
>
>
>
>
> =============================================================================
> Topic: client bundle for image collection
> Url: http://groups.google.com/group/google-web-toolkit/t/e9213e957817d673
> =============================================================================
>
> ---------- 1 of 1 ----------
> From: sunady <yelena.rubilova@gmail.com>
> Date: Dec 26 11:41AM -0800
> Url: http://groups.google.com/group/google-web-toolkit/msg/7f443c4691d7e0fc
>
> Hello everybody!
> I want to add an image chooser to my application. As i didn't find the
> existing component (light-weight solution, easy to set up) i decided
> to use a simple grid with client bundle.
>
>
> =============================================================================
> Topic: GWT Application Login/Logout
> Url: http://groups.google.com/group/google-web-toolkit/t/53cd99a56af278a1
> =============================================================================
>
> ---------- 1 of 1 ----------
> From: "katampavan@gmail.com" <katampavan@gmail.com>
> Date: Dec 26 11:01PM -0800
> Url: http://groups.google.com/group/google-web-toolkit/msg/5fe7aa50afa8e19d
>
> Hi,
>
> I am developing RIA with GWT frame work which is built using MVP
> architecture [Views, Places, Activities & model]. This application
> include login page, main page and logout page etc..
>
>
> =============================================================================
> Topic: image bundle in uibinder
> Url: http://groups.google.com/group/google-web-toolkit/t/1f6fed6c90cafcdb
> =============================================================================
>
> ---------- 1 of 2 ----------
> From: asianCoolz <second.comet@gmail.com>
> Date: Dec 27 07:39AM -0800
> Url: http://groups.google.com/group/google-web-toolkit/msg/192721aa1e73e514
>
> may i know is it possible to set url in css like below
> @Sprite .logotest {
>
> gwt-image: url("/path/image.png");
> }
>
>
> ---------- 2 of 2 ----------
> From: Matthew Hill <matt2224@gmail.com>
> Date: Dec 27 07:57AM -0800
> Url: http://groups.google.com/group/google-web-toolkit/msg/163161e1fac10282
>
> .logotest {
>
> background-image: url("/path/image.png");
> }
>
> should do it if I understand you correctly. The gwt-image property and
> @sprite is for use with ClientBundle.
>
>
>
> =============================================================================
> Topic: GWT Spring Roo: support for a class object inside an ENTITY
> Url: http://groups.google.com/group/google-web-toolkit/t/ee2aff70ea861b8e
> =============================================================================
>
> ---------- 1 of 1 ----------
> From: Amit <a.b.kleinmann@gmail.com>
> Date: Dec 27 06:52AM -0800
> Url: http://groups.google.com/group/google-web-toolkit/msg/71963413a262af1b
>
> Hi,
> We are running successfully the Expenses example using Spring-Roo.
>
> Now we want to add a simple class object ("MyAddress" as illustrated
> below) to one of the entities (e.g., Employee).
>
>
> =============================================================================
> Topic: Tomcat - Failed to get the SerializationPolicy (gwt/rpc)
> Url: http://groups.google.com/group/google-web-toolkit/t/3016c87bb70465bc
> =============================================================================
>
> ---------- 1 of 1 ----------
> From: Magnus <alpineblaster@googlemail.com>
> Date: Dec 27 06:51AM -0800
> Url: http://groups.google.com/group/google-web-toolkit/msg/739e452519dc090c
>
> Hi,
>
> my Tomcat shows the following errors in the logs:
>
> Dec 27, 2010 8:52:47 AM org.apache.catalina.core.ApplicationContext
> log
> INFO: ChatServlet: ERROR: The serialization policy file '/bcs/
>
>
> =============================================================================
> Topic: Code viewer like on google code search
> Url: http://groups.google.com/group/google-web-toolkit/t/135364c75be3ec58
> =============================================================================
>
> ---------- 1 of 1 ----------
> From: Musicman75 <stephan.beutel@googlemail.com>
> Date: Dec 27 06:23AM -0800
> Url: http://groups.google.com/group/google-web-toolkit/msg/391dc7b292da6117
>
> Hello,
>
> does anybody knows if the code viewer which is used on google code
> search is available for download anywhere?
>
>
> =============================================================================
> Topic: Display an Image from JPA entity.
> Url: http://groups.google.com/group/google-web-toolkit/t/f421681943a401de
> =============================================================================
>
> ---------- 1 of 1 ----------
> From: Eric <ericbouer@gmail.com>
> Date: Dec 27 05:22AM -0800
> Url: http://groups.google.com/group/google-web-toolkit/msg/dc22381f2a5af63b
>
> Unfortunately,the following code produces a broken image in the
> browser.
> imagePath.setUrl("data:image/png;base64,"+proxy.getImageData());
>
> I can't figure out what is wrong with this since nothing,
>
>
> =============================================================================
> Topic: org.eclipse.jdt.internal.core.JavaModel cannot be cast to
> org.eclipse.jdt.core.IJavaProject
> Url: http://groups.google.com/group/google-web-toolkit/t/80b8452b67168148
> =============================================================================
>
> ---------- 1 of 1 ----------
> From: TBirch <tjfbirch@bellsouth.net>
> Date: Dec 27 05:22AM -0800
> Url: http://groups.google.com/group/google-web-toolkit/msg/14c6b0d9dc4f02fb
>
> It has been several months since I first posted about this issue and
> since then I've been waiting to see if any others might also have this
> problem but I don't believe I've seen references at least
>
>
> =============================================================================
> Topic: Client-side JSR 303 validation in editors framework. What version ?
> Url: http://groups.google.com/group/google-web-toolkit/t/befc34cf2cc3e9fd
> =============================================================================
>
> ---------- 1 of 1 ----------
> From: Matthew Hill <matt2224@gmail.com>
> Date: Dec 27 05:04AM -0800
> Url: http://groups.google.com/group/google-web-toolkit/msg/8ea130be1abdf686
>
> It could be any post-GWT 2.1 release, hence the lack of specific version.
>
>
>
>
> --
> 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+unsubscribe@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+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.