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.
Hello,
I use a Grid where I want to know the selected range of cells by the user.
Therefore I created an MouseUp event who registrates the selected range. I am only interested in the cells of a specific column.
This worked fine sofar.
But now I added an extra column to the Grid with cellType GridListControl.
If a user clicks on such a cell the MouseUp event triggers and cells who are covered by the GridListControl are in the Active Range. But this is not a selection of cells I want to register !
Does anybody know a solution for this ?
Thanks !
Eric
I found the error I made.
Some how I lost the next statement in my MouseUp event:
grid.ListBoxSelectionMode = SelectionMode.None;
after adding it, it worked fine again.
Eric