vote up 0 vote down star

Using the templated helpers in MVC2.0 I ran into a dillema, how to get the items to fill a dropdownlist. I am using a [UIHint(BadgesDropDown)] attribute, but how will i get the list items without violating the MVC Pattern, should the controller place them in the ViewData? Should the BadgesDropDown.ascx invoke a Helper to get them ?

Right now i am going for:

BadgesDropDown.ascx

<%@ Control Language="C#" Inherits="System.Web.Mvc.ViewUserControl" %>
<%= Html.DropDownList("", ViewData["Badges"] as IEnumerable<SelectListItem>)%>

Controller

ViewData["Badges"] = new SelectList(SiteRepository.GetBadges(), "RowKey", "BadgeName");

Is this the way to go ?

flag

3 Answers

vote up 0 vote down check

In the MVC 2 a great new method... which if used relies on all the attribute data.

`<%@ Page Title="" Language="C#" MasterPageFile="~/Views/Shared/Site.Master" Inherits="System.Web.Mvc.ViewPage" %>

Association: Edit

Association: Edit

<% using (Html.BeginForm()) { %> <%= Html.ValidationSummary("Edit was unsuccessful. Please correct the errors and try again.") %> <%= Html.EditorForModel() %> <% } %>

<%= Html.ActionLink("Details", "Index") %>

`

For this to work there is 2 options. Either the UIHint has to provide the source of the data or the controller must. If the UIHint does then the data provided to thhe dropdown is fixed. The other option is the controller, which allows us to switch out the dropdown data with a different set of data as reqired.

There is some related examples I found:

Nerd Dinner

[1]: searcch for codeclimber.net.nz and how-to-create-a-dropdownlist-with-asp.net-mvc [2]: bradwilson.typepad.com and templates-part-5-master-page-templates

link|flag
vote up 0 vote down

I would love to know this as well.

link|flag
I would be glad if someone at least pointed a link to a concrete case. This must be a recurrent pattern. – Carlos Fernandes Nov 6 at 11:59
vote up 0 vote down

I implemented the solution as the above example. One thing to be noted is that Helpers should only work with the data supplied to them, see View dependency

The best practice is to write Html helpers unaware of controllers and contexts. They should do their job only based on what data is supplied by the caller.

I agree on the above statement. It's just that a lot of work needs to be done when compared to the regular ASP.Net development.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.