I have a datepicker in a view
@(Html.DatePickerFor(model => model.EventDate)
.Format("{0:dd/MM/yy}")
)I need to retrieve the date from the datepicker to use as the minimum value for a datetimepicker in a list view.
shiftStart.kendoDateTimePicker({
timeFormat: "HH:mm",
format: "dd/MM/yyyy HH:mm",
// min: new Date(vYear, vMonth - 1, vDay, vHour, vMinute),
interval: { minutes: 15 }
});How do I get that value?
Disregard last question. Found a sample. Internal doesn't require the {} if only one component.
