The Syncfusion native Blazor components library offers 70+ UI and Data Viz web controls that are responsive and lightweight for building modern web apps.
.NET PDF framework is a high-performance and comprehensive library used to create, read, merge, split, secure, edit, view, and review PDF files in C#/VB.NET.
Right now I only get a selected event when I click on a new node in a tree view (i.e. if i click on the same node twice i only get one event). If my tree represents data that is subject to change, like a filesystem then this is no good.
Is there a better way of always being informed about clicks other than handling MouseDown and executing the following code.
treeFacts.SelectedNode = null;
treeFacts.SelectedNode = treeFacts.GetNodeAtPoint(new Point(e.X, e.Y), true);
ADAdministrator Syncfusion Team February 12, 2004 12:37 PM
Hi Simon,
This is standard behaviour in any TreeView control. What you could do is to clear the selected node when the underlying content changes to address your requirement.
Regards
Arun