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

Skip

methods

Skip a given amount it items

Parameters:countNumber

The number of items that should be skipped

Returns:kendo.data.Query

Returns a new instance of kendo.data.Query with the first count elements of the list skipped

<script>
    var query = new kendo.data.Query([
        { name: "Jane Doe", age: 30 },
        { name: "John Doe", age: 33 },
        { name: "Bob Smith", age: 25 },
        { name: "Alice Johnson", age: 28 }
    ]);
    
    var skippedQuery = query.skip(2);
    var result = skippedQuery.toArray();
    // the result can be seen in the browser console.
    console.log(result); // Will contain only Bob Smith and Alice Johnson
</script>
Not finding the help you need?
Contact Support