Reputation: 115
i have datagrid in my flex application,i am binding datagrid using Arraycollection(getting data from java class using remoteobject method call).
now i am performing add/edit/delete in datagrid i want this change should be reflect in database.
how can i do this?
thanks.
Upvotes: 0
Views: 410
Reputation: 13327
You have to fully implement the CRUD functions in your java class. Then you can invoke these functions via RemoteObject calls.
Upvotes: 1