Learning/Blazor (2) 썸네일형 리스트형 Blazor Component to Component Value change Component function FromToSetValue(TargetId, SourceValue) { if (TargetId != '') { //EnterKey Event if (window.event.keyCode == 13) { const lbl = document.getElementById(TargetId); lbl.value = SourceValue; lbl.dispatchEvent(new Event("change")); } } } Blazor 에서 EventHandler 이용하기 blazor를 사용 중 div에 마우스를 올릴때 이벤트를 걸어야 하는 경우가 생길 때 MS 공식 문서에서는 div @mouseover="functionName" 이러면 된다고 되어 있다 개뿔 안된다.... 이리 저리 찾아다 발견 한것은 아래처럼 하나 만들고 using Microsoft.AspNetCore.Components; using Microsoft.AspNetCore.Components.Web; using System; using System.Collections.Generic; using System.Text; namespace xxxxx.EventHandler { /// /// Holds attributes to configure the mappings between event names and.. 이전 1 다음