开发者

Html Attribute for Html.Dropdown

开发者 https://www.devze.com 2022-12-19 18:14 出处:网络
I am using a dropdown list as follows. <%=Html.DropDownList(\"ddl\", ViewData[\"Available\"开发者_StackOverflow社区] as SelectList,

I am using a dropdown list as follows.

<%=Html.DropDownList("ddl", ViewData["Available"开发者_StackOverflow社区] as SelectList, 
   new { CssClass = "input-config", onchange = "this.form.submit();" })%>

On its selection change I am invoking post action. After the post the same page is shown on which this drop down is present. I want to know about the HTML attribute for the drop down which will let me preserve the list selection change. But as of now the list shows its first element after the post. e.g. The dropdoen contains elements like 1,2,3,etc. By default 1 is selected. If I select 2, the post is invoked and the same page is shown again but my selection 2 goes and 1 is selected again. How can preserve the selection?

Thanks, Kapil


You have to make the list of select list items again and tell which of the items is the selected one in every post (Selected property of the SelectListItem).


When you perform the post you will be setting the ViewData["Available"] again, you can set the select item here. So when you create the drop down list in the html the selected item is already selected. So your code could look something like:

ViewData["Available"] = new SelectList( items, "dataValueField", "dataTextField", "selectedValue" );


You have to take the property model ddl, or receive it as a parameter in the action, such as:

public ActionResult Action(Model model, string ddl) 

Then to create ViewData [" Available "], you have to pass it as selected value

public ActionResult Action(Model model, string ddl) 
{
   ViewData["Available"] = List<SelectListItem>
        {
            new SelectListItem { Text = "1", Value = "1", Selected = (ddl == "1") },
            new SelectListItem { Text = "2", Value = "2", Selected = (ddl == "2") },
            new SelectListItem { Text = "3", Value = "3", Selected = (ddl == "3") }
        };

   return View(model);
}

OR:

public ActionResult Action(Model model, string ddl) 
{
   var list = List<SelectListItem>
        {
            new SelectListItem { Text = "1", Value = "1" },
            new SelectListItem { Text = "2", Value = "2" },
            new SelectListItem { Text = "3", Value = "3" }
        };

   ViewData["ddl"] = new SelectList(list, "value", "text", ddl);
   return View(model);
}

EDIT: See also this


This worked for me:

<%=Html.DropDownList("Ibus", ViewData["Ibus"] as SelectList, new { **@class** = "dASDropDown" })%>
0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号