views:

305

answers:

2

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?

A: 

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).

Ralph Stevens
Is there any samples or tutorials available?
Sauron
Just search "AJAX table grid". There are many products but mostly for a fee. If you know JavaScript well, you can write your own.
Ralph Stevens
A: 

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.

Kelsey

related questions