open
Fires when the time drop-down list is opened
Event Data
e.sender kendo.ui.TimeDurationPicker
The widget instance which fired the event.
Example - subscribe to the "open" event during initialization
<input id="picker" />
<script>
$("#picker").kendoTimeDurationPicker({
columns: [ "hours", "minutes" ],
open: function(e) {
e.preventDefault(); //prevent popup opening
}
});
</script>
Example - subscribe to the "open" event after initialization
<input id="picker" />
<script>
$("#picker").kendoTimeDurationPicker({ columns: [ "hours", "minutes" ] });
var picker = $("#picker").data("kendoTimeDurationPicker");
picker.bind("open", function(e) {
e.preventDefault(); //prevent popup opening
});
</script>