Я хочу добавить настраиваемую дату в выпадающий список, и при нажатии на нее должна открыться дата в MVC.
JQuery
$("#CustomDate").datepicker({
numberOfMonths: 1,
dateFormat: 'dd/mm/yy',
changeMonth: true,
changeYear: true,
});
Просмотр
@Html.DropDownListFor(m => m.Period, new List<SelectListItem>
{
,
new SelectListItem {Value = "03/05/2018", Text = "Current Year" },
new SelectListItem {Value = "03/05/2017", Text = "Last Year" },
new SelectListItem {Value = "CustomDate", Text = "Custom Date"} // want to make CustomDate as link and want to open Date
},
new { @class = "form-control" })