Skip to content
Discussion options

You must be logged in to vote

The last issue solved already. The problem was in RowUpdating and RowUpdated events, that is, I use they at the same time in my grid. Here in this issue, I solve like this.

@using Grpc.Core
@using Blazorise.DataGrid
@using GrpcService.BlazorApp.Models
@using Google.Protobuf.WellKnownTypes
@using ValuesgRPCService
@inject ILogger<GoldBar> _logger
@inject ValuesgRPCService.ValuesService.ValuesServiceClient valuesServiceClient

<DataGrid TItem="ValuesModel"
          Data="_values"
          Virtualize
          Editable
          EditMode="DataGridEditMode.Popup"
          RowUpdating="@OnRowUpdating"
          @bind-SelectedRow="valuesModel"
          Hoverable="true"
          HeaderTheme…

Replies: 2 comments 3 replies

Comment options

You must be logged in to vote
3 replies
@GevorDanielyan
Comment options

@David-Moreira
Comment options

@GevorDanielyan
Comment options

Comment options

You must be logged in to vote
0 replies
Answer selected by GevorDanielyan
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants