fix(Search) Fixed search auto focus, plus some WIP code

This commit is contained in:
2022-04-18 21:55:14 -04:00
parent fb70b788bc
commit ef1fa7e864
7 changed files with 127 additions and 26 deletions
+6
View File
@@ -12,6 +12,7 @@
type="text"
value="@Value"
id="@Id"
@onfocus="OnFocus"
@oninput="OnInput"
@onchange="OnChange"/>
</div>
@@ -65,9 +66,13 @@
[Parameter]
public EventCallback<ChangeEventArgs> OnInput { get; set; }
[Parameter]
public EventCallback<ChangeEventArgs> OnChange { get; set; }
[Parameter]
public EventCallback OnFocus { get; set; }
[Parameter]
@@ -83,4 +88,5 @@
labelId = Label.ToLower().Replace(" ", "_");
}
}