Я хочу отключить пользовательскую дату и время из календаря на основе выбранного значения в раскрывающемся списке
Tabel1: Uername
Tabel2: Timefrom - Timeto
Dropdownlist1 = //show Username from Tabel1 (Done)
Editor= //show calendar (disable date and time or Highlight it which is equal Timefrom and Timeto in Tabel2 for the same Uername )
Мне нужна помощь
@Html.DropDownList1("Userlist", null, htmlAttributes: new { @class = "form-control" })
@Html.EditorFor(model => model.Schedules.TimeTo, new { htmlAttributes = new { @class = "form-control" } })
Контроллер
ViewBag.Userlist = new SelectList(dbContext.Users, "Id", "UserName");
ViewBag.Date= new SelectList(data.FuelersSchedules, "Id", "Timefrom");
Я хочу, чтобы CalendarEditor отключил дату и время или выделил их равными Timefrom и Timeto в Tabel2 для пользователя, выбранного в DropDownList1