Is it possible to set a direction for the Kendo DatePicker (Calendar)?
问题 I have a calendar input on the bottom of a form. When the user clicks on it, the calendar pops up bellow the input creating scroll bars. Is there any way I can set the direction that a DatePicker will open? For instance... left, right, above? Here's my code: $("#dpBirthDate").kendoDatePicker(); Thanks 回答1: Yes and no. You can edit the popup origin and position like this: $("#date").kendoDatePicker({ origin: "top left", position: "bottom left", animation: { open: { effects: "slideIn:up" } } })