You need to call your getter method from your back end. Your response should
be either XML or JSON.

Then define your RECORD and the READER and call the fields you want to show
in the ComboBox, TextField or what ever it is.

e.g.
// record definition
        final RecordDef recordDef = new RecordDef(
                new FieldDef[]{
                        new StringFieldDef( "createdDate" ),
                        new StringFieldDef( "project" )
                }
        );

reader = new JsonReader(recordDef);
reader.setRoot( "root" );
reader.setTotalProperty( "results" );

store = new Store( reader );

---




On Wed, Sep 17, 2008 at 10:31 AM, MN <[EMAIL PROTECTED]> wrote:

>
> given situation:
>
> we have still an object on client side that have all data and handle
> to get more data from server etc.
>
> i want to implement some DataProxy / Reader for this.
>
>
> my questions:
>
> - how i implement this in Java (not as native javascript).
> - there some skeletons or examples avaliable?
> - can i exchange the data between DataProxy and Reader not as text
> (like in all still implemented Proxy/Reader) but in my still existing
> Objects?
>
>
> some ideas and hints are welcome
>
> >
>

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"GWT-Ext Developer Forum" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/gwt-ext?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to