We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 693c596 commit c26e3d7Copy full SHA for c26e3d7
src/BootstrapBlazor/Components/TreeView/TreeView.razor.cs
@@ -394,7 +394,8 @@ protected override async Task OnAfterRenderAsync(bool firstRender)
394
{
395
Invoke = Interop,
396
Method = nameof(TriggerKeyDown),
397
- AllowDrag
+ AllowDrag,
398
+ TriggerDragEnd = nameof(TriggerDragEnd)
399
});
400
401
private bool _keyboardArrowUpDownTrigger;
@@ -423,6 +424,12 @@ public async ValueTask TriggerKeyDown(string key)
423
424
}
425
426
427
+ [JSInvokable]
428
+ public async ValueTask TriggerDragEnd(int originIndex, int currentIndex, bool isChildren)
429
+ {
430
+
431
+ }
432
433
/// <summary>
434
/// Client-side method to query the state of the specified row checkbox, called by JavaScript
435
/// </summary>
0 commit comments