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

Select

methods

Maps over the data items

Parameters:selectorFunction

A function that is applied to each of the items

Returns:kendo.data.Query

Returns a new instance of kendo.data.Query containing the mapped collection

<script>
    var query = new kendo.data.Query([
      { name: "Jane Doe", age: 30 },
      { name: "John Doe", age: 33 }
    ]);

    var selectedItems = query.select(function(item){
        return item.name;
    })
    // the result can be seen in the browser console.
    console.log(selectedItems);
</script>
Not finding the help you need?
Contact Support