Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
  • Loading branch information
yordan-mitev authored Aug 5, 2024
1 parent d7fedfc commit 7cf463c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/getting-started/javascript-options-api.md
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ To add any custom styles to your app, insert a `<styles>` tag in the `src/App.vu

Now that you've installed all required packages, you are ready to add the Kendo UI for Vue Data Grid to the application:
1. In the `<script>` block of the `src/App.vue` file, import the Grid and its data. In addition, the `process` function from the [Data Query](https://www.telerik.com/kendo-vue-ui/components/dataquery/) package will allow you to use data operations like sorting, paging, and filtering.
1. In the `<script>` block of the `src/App.vue` file, import the Grid and its data. In addition, the `process` function from the [Data Query](https://www.telerik.com/kendo-vue-ui/components/dataquery/) package will allow you to apply data operations like sorting, paging, and filtering.
```js
import products from './appdata/products.json';
Expand Down Expand Up @@ -218,7 +218,7 @@ Now that you have a running Grid, you are ready to use some of its basic feature
- Set the page size (`take`) to `10` to define how many items are rendered on each page.
- Set the initial `skip` value, which allows the Grid to calculate how many items to skip when paging.
- Set the initial sorting by product name.
- Initialize the `dataResult` empty array, which returns the results from the sorting and paging.
- Initialize the `dataResult` empty array, which holds the results from the sorting and paging.
```js
data: function() {
Expand Down

0 comments on commit 7cf463c

Please sign in to comment.