Hi,
i have a DataTable that is Editable. In my aplications its possible that multiple users edit the same data at the same time.
How should i make sure that users dont overwritte their data? I mean in Google Docs the modifications to the table are shown in real time…so this could be one option. There are also other options. What would be the easiest to implement in DataTable ?
Websockets are the best solution: you can subscribe a dataCollection or any other data component (datatable, list, etc.) so that data updates will be synced for all clients (here’s also an article about the basic implementation). If necessary, proxy for native websockets (we provide a ready-to-use solution for Faye) can be created from the existing solution.