New to Kendo UI for jQueryStart a free 30-day trial

Remove

methods

Removes the specified item from an array.

Parameters:itemString|Number|Object

The item that will be removed.

<script>
  var array = new kendo.data.ObservableArray(["Apple", "Orange", "Berries", "Melon", "Grape", "Pear"])
  /* The result can be observed in the DevTools(F12) console of the browser. */
  console.log(array.length);
  array.remove("Grape");
  console.log(array); 
  console.log(array.length);
</script>
Not finding the help you need?
Contact Support