vote up 0 vote down star
2

My page view currently has a dropdownlist on it that is getting bound to a collection from the controller. This is working fine, However I want to insert an item to the top of the dropdownlist that is not in my collection e.g the list currently gets the following items

Open
Closed

I want to add a third option of "All" but I don't want to add this option to my database. In Webforms I would have just bound the control then inserted another item however it seems this is not possible with MVC, am I right in thinking I will need to add some Javascript to the view to add this new item once the dropdownlist has been bound?

Thanks

flag

Why not to use <%= Html.DropDownList("DropDown","all" )%> ? because at server side value will be null or empty string i guess.. and you get the condition. – Vikas Jun 5 at 13:19

3 Answers

vote up 1 vote down check

No. Construct your data as a list of SelectListItems and prepend in the controller.

   var list = db.Table
                .Select( t => new SelectListItem
                              { 
                                  Key = t.ID.ToString(),
                                  Value = t.Name
                              } )
                .ToList();
   list.Insert( 0, new SelectListItem { Key = "-1", Value = "All" } );

   ViewData["TableSelect"] = list;

On the view side:

   <%= Html.DropDownList( "TableID",
                          (IEnumerable<SelectListItem>)ViewData["TableSelect"] ) %>
link|flag
We can also use <%= Html.DropDownList("TableSelect" )%> directly if the same name contains in viewdata. – Vikas Jun 5 at 12:23
Ultimately he has to check it at server side because GavD Don't want "all" to be in DB – Vikas Jun 5 at 12:25
I cant get list.Insert to work its implying there is no insert method – Gavin Draper Jun 5 at 12:39
Because list is of type Interface ( IQueryable) and there is no way to add new item in it, unless you merge two Interface. – Vikas Jun 5 at 13:17
Sorry -- missed a step. After selecting the new SelectListItems you need to add a ToList() to make it into List<SelectListItem> instead of IEnumerable<SelectListItem>. Then you can add to it. I've updated. – tvanfosson Jun 5 at 13:20
vote up -1 vote down

Have you tried adding the AppendDataBoundItems="True"? See below for an example;

 <asp:DropDownList ID="DDL_Name" runat="server" DataSourceID="Name" 
            DataTextField="Name" DataValueField="name" AutoPostBack="True" 
            AppendDataBoundItems="True">
        <asp:ListItem Value="">All</asp:ListItem>
    </asp:DropDownList>
link|flag
This question is about MVC - Not WebForms – mlarsen Aug 31 at 7:54
vote up 0 vote down

Simple

you can make it as you wish in controller.

and pass it in viewdata.

other option is directly in view page.

<%= Html.DropDownList("DropDown","all" )%>

But you can add only one option..

Make sure you are not storing added options in ur db, right? so before you save it, check option value in action and apply your logic.

link|flag
The value for this is the empty string and as such I don't think it will get posted back. If you want a value like "all" instead of "none", you'll need to adjust the list on the server side (or with Javascript). – tvanfosson Jun 5 at 12:21

Your Answer

Get an OpenID
or

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