-1

I'm converting a asp.net application over to asp.net mvc that uses a lot of listboxes, specifically the RadListBox from Telerik. The ListBox that comes with mvc is very basic and I'm wondering if anyone has come across a better alternative. I'm really looking for the ability to reorder, add, and delete from the client. Thanks

NullReference
  • 4,404
  • 12
  • 53
  • 90

1 Answers1

1

It seems at the moment there is no special tool (with professional features like Telerik tools) for MVC. However I suggest you using extension methods as it was my problem already:

And also you can replace it with a [Telerik MVC dropdownlist][2]

[2]: http://demos.telerik.com/aspnet-mvc/razor/combobox which is Free!

Community
  • 1
  • 1
Amir978
  • 857
  • 3
  • 15
  • 38
  • Thanks for the suggestions. How would I replace it with a Telerik MVC dropdownlist? The drop down list only displays one item... – NullReference Oct 19 '11 at 15:32