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.
I've finally got a GridListControl working like I want with alternating background colors, hidden columns, etc. Thanks for the great postings. I'm in need of the GridListCOntrol to support column sorting. I viewed your example file of the Microsoft ListView performing this, but I also saw that you were expecting this capability to be included in future releases. Can you offer a status, or advice? I'd also like to utilize some form of incremental search depending on what column is clicked with a timer that would clear out the input string after a few seconds and start from the beginning. Any advice or working code (vb.net please if possible, C# makes my head hurt) to accomodate this would be much appreciated.
ADAdministrator Syncfusion Team June 9, 2003 11:03 AM
Have you thought about using a GridDataBoundGrid with the ListBoxSelectionMode property set? That way, you get sorting without additional work (as long as your datasource supports sorting).
(If you don't want the current cell to be colored differently than the rest of the row, hanlde the CurrentCellActivating event and in it, set e.ColIndex = 0).
ACAaron ChingJune 17, 2003 11:19 AM
If I can't use DataBoundGrid for sorting, how can I do sorting for GridListControl?
Thanks again for all the great forum support.
ADAdministrator Syncfusion Team June 17, 2003 12:09 PM
What is your datasource? The GridListControl just displays exactly whst is in your datasource.
So, you have to come up with a strategy for sorting your datasource.
ACAaron ChingJune 17, 2003 02:39 PM
My datasource is a simply ArrayList object, similar to the USStates. So I need to do my own sorting algorithms.
Thanks.
GLGavin LambertJanuary 7, 2004 06:41 PM
Just sort the ArrayList first (before binding it to the control), using its Sort method.