Announcement

Collapse
No announcement yet.
X
  • Filter
  • Time
Clear All
new posts

    Call transferSelectedData on ListGrid without saving data

    Hi,

    I want to move data between 2 listgrids as described in sample http://www.smartclient.com/smartgwt/showcase/#grid_db_dragging.
    In our case destination and source tables have not client only datasources and when I call transferSelectedData, server call for updating data is invoked. We want to save all edits after other button click in once not partially, is it possible to do it with transferSelectedData?
    We want only move record to listgrid without any other action.

    thanks,

    michal

    #2
    You can provide a RecordList to each ListGrid and setSaveLocally(true) and then transferSelectedData() will not attempt server contact to make changes, it will just make changes in the RecordLists. You will then need to submit the changes manually yourself once editing is complete.

    Comment

    Working...
    X