Initial conditions DataProcessor:
- autoupdate: false
- url is set to proxy with save method (not saveAll)
...
autoupdate: false,
url: {
$proxy: true,
save(dc, update, dp) { ... }
}
...
Calling method dp.send
returns null.
Of course the client sends as many requests as there are records changed (CRUD), but these requests should be controlled by e.g. Promise.all at the end.
In my opinion this is a bug and the _sendData DataProcessor function should be fixed.