I've got a datagrid bound to ArrayCollection via a destination. Pretty close
to the standard example.

This part works.

What I haven't been able to get to work is to make an update to the java
object on the server and have that be reflected in the client.

My ArrayCollection is [Bindable]
AutoSyncEnabled is set to the default true value.

I am sure that my server side object changes ( if I refresh I see the
changes ... but don't get them pushed to the datagrid ).

I've tried executing the following ...

        public void pushChanges() {
                DataServiceTransaction myDataServiceTransaction =
DataServiceTransaction.begin(true);
                updateLastRadarData();
                myDataServiceTransaction.refreshFill("radardata", null );
        }

But am still not getting seeing updates on the client.

Any suggestions on where to go next?

Many thanks,

Paul






--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
Yahoo! Groups Links

<*> To visit your group on the web, go to:
    http://groups.yahoo.com/group/flexcoders/

<*> To unsubscribe from this group, send an email to:
    [EMAIL PROTECTED]

<*> Your use of Yahoo! Groups is subject to:
    http://docs.yahoo.com/info/terms/
 


Reply via email to