shortcuts Array
An array of buttons that hold certain timeframe values and will be displayed in the popup
Example
<input id="timedurationpicker" />
<script>
$("#timedurationpicker").kendoTimeDurationPicker({
columns: [ "hours", "minutes" ],
shortcuts: [
{ text: "1h 30min", value: 5400000 },
{ text: "2h", value: 7200000 }
]
});
</script>