From e04915344737ffff1c75fac694164af74e20bd7f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Onur=20P=C4=B1=C3=A7akc=C4=B1?= Date: Wed, 25 Jan 2023 15:21:57 +0300 Subject: [PATCH] Update Part-3.md --- docs/en/Tutorials/Part-3.md | 30 +++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/docs/en/Tutorials/Part-3.md b/docs/en/Tutorials/Part-3.md index 3e6fb13e38..f4f6d4fcfe 100644 --- a/docs/en/Tutorials/Part-3.md +++ b/docs/en/Tutorials/Part-3.md @@ -50,13 +50,13 @@ This part is also recorded as a video tutorial and **` section with the following This will change the card header by adding a "New book" button to the right side: -![blazor-add-book-button](images/blazor-add-book-button-2.png) +![blazor-add-book-button](./images/blazor-add-book-button-2.png) Now, we can add a modal that will be opened when we click the button. @@ -1224,7 +1224,7 @@ This code requires a service; Inject the `AbpBlazorMessageLocalizerHelper` at That's all. Run the application and try to add a new book: -![blazor-new-book-modal](images/blazor-new-book-modal-2.png) +![blazor-new-book-modal](./images/blazor-new-book-modal-2.png) ## Updating a Book @@ -1250,7 +1250,7 @@ Open the `Books.razor` and add the following `DataGridEntityActionsColumn` secti The `DataGridEntityActionsColumn` component is used to show an "Actions" dropdown for each row in the `DataGrid`. The `DataGridEntityActionsColumn` shows a **single button** instead of a dropdown if there is only one available action inside it: -![blazor-edit-book-action](images/blazor-edit-book-action-3.png) +![blazor-edit-book-action](./images/blazor-edit-book-action-3.png) ### Edit Modal @@ -1338,7 +1338,7 @@ public class BookStoreBlazorAutoMapperProfile : Profile You can now run the application and try to edit a book. -![blazor-edit-book-modal](images/blazor-edit-book-modal-2.png) +![blazor-edit-book-modal](./images/blazor-edit-book-modal-2.png) > Tip: Try to leave the *Name* field empty and submit the form to show the validation error message. @@ -1359,7 +1359,7 @@ Open the `Books.razor` page and add the following `EntityAction` code under the The "Actions" button becomes a dropdown since it has two actions now: -![blazor-delete-book-action](images/blazor-delete-book-action-2.png) +![blazor-delete-book-action](./images/blazor-delete-book-action-2.png) Run the application and try to delete a book.