문제

I found many questions and answers related to this issue but nothing worked for me

I am creating a dropdown list like this

@Html.DropDownListFor(m => m.SchoolYears, new SelectList(Model.SchoolYears, "YearId", "StartDates", Model.CurrentYearId), new { @class = "field_Dropdown", style = "width:100px;",onchange="return searchStudents();" })

(Model.CurrentYearId is of type int)

But it never lets current year selected.

From this post, I got that we should use string for selected value (although I don't know why because it allows object for selected value)

DropDownList SelectList SelectedValue issue

so I tried all these variations

new SelectList(Model.SchoolYears, "YearId", "StartDates", Model.CurrentYearId.ToString())

new SelectList(Model.SchoolYears, "YearId", "StartDates", 2)

new SelectList(Model.SchoolYears, "YearId", "StartDates", "2")

But they even didn't work.

There is way to create the select list through linq query or foreach loop and mark selected property of each item but why the above doesn't work?

도움이 되었습니까?

해결책

Found the problem.

The mistake I was doing is using this

m => m.SchoolYears // m.SchoolYears in a list of string

When I changed it to this

m => m.SelectedYearId // m.SelectedYearId is an integer property

it worked like a charm, so finally I have this working

@Html.DropDownListFor(m => m.SelectedYearId, new SelectList(Model.SchoolYears, "YearId", "StartDates", Model.CurrentYearId), new { @class = "field_Dropdown", style = "width:100px;",onchange="return searchStudents();" })

Thanks!

다른 팁

The solution did not work for me. It turns out selected property doesnot work if the ViewBag Property name and Model Property name is same so after changing the ViewBag Property name it worked.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top