Getting Current Data from KendoUI TreeView
I'm using a kendo UI tree with a remote data source from a JSON file. I have a button on the tree page which gets the current data of the tree,sends it through a POST to a server and the server saves the current data to the JSON file so as the next time I reload the page,the changes I made will be kept.That's what I want to happen. So I know the current data of the tree is in: $("#treeview").data("kendoTreeView").dataSource.data() Which means the data changes real time in there for example when someone drag and drops a node of the tree. My problem starts when this data doesn't seem to change