BlazorQuery icon indicating copy to clipboard operation
BlazorQuery copied to clipboard

Just curious

Open sengiv opened this issue 3 years ago • 0 comments

Is this project still relevant? Now that we can call JQ directly from Blazor with IJSObjectReference .

Example: JQuery $('table').DataTable()

Blazor

 var jQuery = await JSRuntime.InvokeAsync<IJSObjectReference>("$", "table");
 await jQuery.InvokeVoidAsync("DataTable");

sengiv avatar Apr 10 '22 02:04 sengiv