Hello,
I evaluating the smartgwt enterprise edition 3.1d and try to achieve the following:
- adding several records to a ListGrid without contacting the server (the record is created by the program when a drop event occurs)
- mark some records for removing (optional)
- after triggering the save button I want to commit all the work to the server
- all ListGridFields are not editable, that's why startEditingNew(Record) doesn't work
If one ListGridField is editable everything works like expected.
I also tried to call ListGrid:addData(record) but this immediatly calls the server to add the data.
Is there a way I can schedule these adds?
I evaluating the smartgwt enterprise edition 3.1d and try to achieve the following:
- adding several records to a ListGrid without contacting the server (the record is created by the program when a drop event occurs)
- mark some records for removing (optional)
- after triggering the save button I want to commit all the work to the server
- all ListGridFields are not editable, that's why startEditingNew(Record) doesn't work
If one ListGridField is editable everything works like expected.
I also tried to call ListGrid:addData(record) but this immediatly calls the server to add the data.
Is there a way I can schedule these adds?
Comment