Skip to content

Commit

Permalink
Merge branch 'rel-4.0' into dev
Browse files Browse the repository at this point in the history
  • Loading branch information
erolarkat committed Dec 17, 2020
2 parents 7c83a0d + 9f15a9c commit 25f75ca
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions en/tutorials/book-store/part-2.md
Original file line number Diff line number Diff line change
Expand Up @@ -630,6 +630,7 @@ Open the `Books.razor` and replace the content as the following:
<DataGrid TItem="BookDto"
Data="Entities"
ReadData="OnDataGridReadAsync"
CurrentPage="CurrentPage"
TotalItems="TotalCount"
ShowPager="true"
PageSize="PageSize">
Expand Down
1 change: 1 addition & 0 deletions en/tutorials/book-store/part-3.md
Original file line number Diff line number Diff line change
Expand Up @@ -1424,6 +1424,7 @@ Here the complete code to create the book management CRUD page, that has been de
<DataGrid TItem="BookDto"
Data="Entities"
ReadData="OnDataGridReadAsync"
CurrentPage="CurrentPage"
TotalItems="TotalCount"
ShowPager="true"
PageSize="PageSize">
Expand Down
1 change: 1 addition & 0 deletions en/tutorials/book-store/part-9.md
Original file line number Diff line number Diff line change
Expand Up @@ -855,6 +855,7 @@ Create a new Razor Component Page, `/Pages/Authors.razor`, in the `Acme.BookStor
<DataGrid TItem="AuthorDto"
Data="AuthorList"
ReadData="OnDataGridReadAsync"
CurrentPage="CurrentPage"
TotalItems="TotalCount"
ShowPager="true"
PageSize="PageSize">
Expand Down

0 comments on commit 25f75ca

Please sign in to comment.