How to create an ASP.NET Listview with draggable column widths?

1.1k Views Asked by At

In windows applications we can change the ListView's column width by just dragging the header of the column. How can I done that in a ASP.NET ListView?

2

There are 2 best solutions below

2
On

ASP.NET listview does not support that feature. You can make your own implementation using a combination of ASP.NET and Javascript (or ASP.NET AJAX or JQuery).

0
On

I would recommend looking at the Telerik RadControls for ASP.NET.

Specifically check out the demos for:

  1. Grid
  2. ListView

DevExpress also makes some great control packages as well that might suit your needs. I haven't come across very many great 'free' ajax enabled grid controls that I would recommend unfortunately.

You can also look on the ASP.NET site for a list of controls.