We are using KendoReact TaskBoard with a backend.
On every TaskBoard change we receive newData and update state using:
setTaskData(newData);This replaces the entire tasks array and causes all cards to re-render.
Is there a way to update only the affected task (created, updated, moved, or deleted) instead of replacing the whole taskData collection?
Our backend returns only the changed task, and we would like to keep the frontend synchronized without re-rendering the entire TaskBoard.
What is the recommended approach for this scenario?
