显示自定义下拉列表

发布于 2024-10-10 14:09:29 字数 1562 浏览 2 评论 0原文

我在将不同类别的名称显示为下拉列表+显示作为每个类别的选择的通用名称时遇到问题。我需要这个来创建搜索功能。

原始类别列表是:

  • Datorer & IT
  • 菲洛索菲 &宗教
  • 体育与运动弗里蒂德
  • 朱尔和自然
  • 康斯特音乐
  • 心理学与音乐心理学Pedagogik

显示为下拉列表的请求:

  • 所有类别
  • Datorer & IT
  • 菲洛索菲 &宗教
  • 体育与运动弗里蒂德
  • 朱尔和自然
  • 康斯特音乐
  • 心理学与音乐心理学Pedagogik

<%@ 导入命名空间="BokButik1"%>

<%@ 控制语言="C#" Inherits="System.Web.Mvc.ViewUserControl" %>

<% using (Html.BeginForm()) {%> 

<fieldset> 
    <legend>Edit Album</legend> 

        <%: Html.DropDownList("KategoriID", new SelectList(ViewData["Kategoris"] as IEnumerable, "KategoriID", "KategoriNamn", Model.Kategoris))%> 



    <p> 
        <input type="submit" value="Save" /> 
    </p> 
</fieldset> 

<% } %>



namespace BokButik1.ViewModels
{
    public class SokningIndexViewModel
    {
        public List<Kategori> Kategoris { get; set; }
    }
}


namespace BokButik1.Controllers
{
    public class SokningController : Controller
    {


        private IKategoriRepository myIKategoriRepository = new KategoriRepository();

        //
        // GET: /Sokning/

        public ActionResult Index()
        {
            var SokningIndexViewModel = new SokningIndexViewModel 
            {
                Kategoris = myIKategoriRepository.HamtaAllaKategoriNamn()       
            };

            return View(SokningIndexViewModel);
        }


    }
}

I have problem to display names of different category as a dropdownlist + display a general name that is a selection of every category. I need this in order to create a search function.

The orginal categori List is:

  • Datorer & IT
  • Filosofi & Religion
  • Sport & Fritid
  • Djur & Natur
  • Konst & Musik
  • Psykologi & Pedagogik

The request to display as dropdownlist:

  • All Category
  • Datorer & IT
  • Filosofi & Religion
  • Sport & Fritid
  • Djur & Natur
  • Konst & Musik
  • Psykologi & Pedagogik

<%@ Import Namespace="BokButik1"%>

<%@ Control Language="C#" Inherits="System.Web.Mvc.ViewUserControl" %>

<% using (Html.BeginForm()) {%> 

<fieldset> 
    <legend>Edit Album</legend> 

        <%: Html.DropDownList("KategoriID", new SelectList(ViewData["Kategoris"] as IEnumerable, "KategoriID", "KategoriNamn", Model.Kategoris))%> 



    <p> 
        <input type="submit" value="Save" /> 
    </p> 
</fieldset> 

<% } %>



namespace BokButik1.ViewModels
{
    public class SokningIndexViewModel
    {
        public List<Kategori> Kategoris { get; set; }
    }
}


namespace BokButik1.Controllers
{
    public class SokningController : Controller
    {


        private IKategoriRepository myIKategoriRepository = new KategoriRepository();

        //
        // GET: /Sokning/

        public ActionResult Index()
        {
            var SokningIndexViewModel = new SokningIndexViewModel 
            {
                Kategoris = myIKategoriRepository.HamtaAllaKategoriNamn()       
            };

            return View(SokningIndexViewModel);
        }


    }
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

傾城如夢未必闌珊 2024-10-17 14:09:29

混合模型和 ViewData

public ActionResult Index()
{

  var SokningIndexViewModel = new SokningIndexViewModel() 
  {
    Kategoris = myIKategoriRepository.HamtaAllaKategoriNamn();       
  };
  //add the 'all catagory' item
  SokningIndexViewModel.Kategoris.Insert(0, new Kategori() {
    KategoriID = 0,
    KategoriNamn = "All Category"
  });
  return View(SokningIndexViewModel);

}

只需将新的 Kategori 项添加到列表的开头,但您似乎也可能在视图中

<%: Html.DropDownList("KategoriID", new SelectList(Model.Kategoris as IEnumerable, "KategoriID", "KategoriNamn"))%>

Just add a new Kategori item to the beginning of your list, however it appears you may also be mixing your Model and ViewData up

public ActionResult Index()
{

  var SokningIndexViewModel = new SokningIndexViewModel() 
  {
    Kategoris = myIKategoriRepository.HamtaAllaKategoriNamn();       
  };
  //add the 'all catagory' item
  SokningIndexViewModel.Kategoris.Insert(0, new Kategori() {
    KategoriID = 0,
    KategoriNamn = "All Category"
  });
  return View(SokningIndexViewModel);

}

In your view

<%: Html.DropDownList("KategoriID", new SelectList(Model.Kategoris as IEnumerable, "KategoriID", "KategoriNamn"))%>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文