Re: Any Gwt-Mosaic user here? I've got a problem:my DropdownPanel is transparent ...

2009-12-01 Thread Andrius Juozapaitis
Hey, Try their irc channel, it's listed on the project page - I was able to get help from the guys there. It looks like a very decent alternative to gxt and smartgwt, and while it doesn't provide that many widgets, it solves a few layout and structuring issues very nicely. regards, --andrius aka

PagingScrollTable/CachedTableModel page count issue

2009-11-04 Thread Andrius Juozapaitis
a DataSourceTableModel? regards, Andrius Juozapaitis --~--~-~--~~~---~--~~ 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

Re: PagingScrollTable/CachedTableModel page count issue

2009-11-04 Thread Andrius Juozapaitis
The DataSourceTableModel is responsible for the actual server side query (one query returns both the requested results, and total row count - this saves a server roundtrip), but by default it doesn't have a reference to the CachedTableModel. I would prefer to inject this dependency by adding a

Serialization problem using CustomFieldSerializer(s) and specifying specific .java files in gwt module xml

2009-10-03 Thread Andrius Juozapaitis
Hey, I've been trying to emulate parts of 3rd party library and stumbled upon a problem. The library has certain classes with java.lang.Object references that I wanted to get rid of, and I want the classes to implement java.io.Serializable. The package structure is like that: -java/dao/

Emulated java class serialization issues

2009-09-21 Thread Andrius Juozapaitis
Hey, I stumbled upon a problem when trying to use CouchDB with GWT (the JCouchDB framework has unserializable fields in the lists they return, that are not really relevant in GWT clientside). So I created a simple test case (maven project) that tries to emulate the non-serializable class using

Re: Emulated java class serialization issues

2009-09-21 Thread Andrius Juozapaitis
Use wrapper-classes containing only the values you need in your GWT-application. The server creates these objects out of the server-side instances and set the values when received from the client. It's more or less the same as you already did but with the difference that you don't rely on

Accessing CouchDB from GWT using JCouchDB library

2009-08-24 Thread Andrius Juozapaitis
Hey, I've been toying around with the idea of using CouchDB [1] as a back- end store for my GWT applications, as it seems like a very good match - you get a flexible document structure, and easy mapping of CouchDB documents to Java domain objects using simple annotations [2]. I also use Spring