We are using Kendo controls (date picker, numeric text box, dropdown) in our cshtml pages along with other standard html controls.
When using "shift + tab", the reverse movement halts at a datepicker.
Dropdown and other kendo controls are working fine for same process.
Following settings are applied to all DatePickers:
datepicker.setOptions({
format:
"dd/MM/yyyy"
,
parseFormats: [
"dd/MM/yy"
],
culture: window.culture,
min:
new
Date(1000, 0, 1),
max:
new
Date(9999, 11, 31),
value: dateValue
});
Please note:
1. This behavior is common in all browsers like Internet Explorer, Firefox, Chrome
2. Kendo js version: Kendo UI Complete v2013.3.1324
Please advise how to make Shift+Tab work for this scenario.