콘텐츠로 건너뛰기
» WebApp

WebApp

[Blazor] MudTable 사용 시 DB편집 후 Table에 반영 안될때 Refresh 하는법

Default Table @using System.Net.Http.Json @using MudBlazor.Examples.Data.Models @inject HttpClient httpClient <MudTable Items=”@Elements.Take(4)” Hover=”true” Breakpoint=”Breakpoint.Sm” Loading=”@_loading” LoadingProgressColor=”Color.Info”> <HeaderContent> <MudTh>Nr</MudTh> <MudTh>Sign</MudTh> <MudTh>Name</MudTh> <MudTh>Position</MudTh> <MudTh>Molar mass</MudTh> </HeaderContent> <RowTemplate> <MudTd… 더 보기 »[Blazor] MudTable 사용 시 DB편집 후 Table에 반영 안될때 Refresh 하는법

[Blazor] Mudblazor 라이브러리 이용시 Table, Button 등에서 Onclick 활용법

    아주 간단한 내용이기도 하지만… Onclick=”myFunction”을 활용할때  특정 인자를 받아야 한다면 람다식으로 하면 되고 Onclick = “@(()=>myFunction(context.condition))”   특정 인자를 받을 필요없이 실행만 되면… 더 보기 »[Blazor] Mudblazor 라이브러리 이용시 Table, Button 등에서 Onclick 활용법