Previously I had been configuring my DataSource with an ObservableArray initialized with an empty array, like:
dsData = new kendo.data.ObservableArray([]);
ds = new kendo.data.DataSource({
dsData = new kendo.data.ObservableArray([]);
ds = new kendo.data.DataSource({
data: dsData
});
With the newest nightly builds, this results in a "ghost" item in the DataSource with all undefined values.
Just passing the DataSource an empty array fixes the problem but is what I was doing wrong and is it effectively the same as what I'm now doing?