What is the recommended method for removing all items from a Kendo UI MVVM ObservableArray?
First, I tried re-initializing the ObservableArray, but that caused problems in my app. Next, I tried setting the length of the ObservableArray to 0, but that also caused problems. Then, I put the pop() method in a while loop. So far, that seems to be working, but I'm wondering if that's the recommended method.