shortcuts.value Number

The value of the timeframe in milliseconds

Example

<input id="timedurationpicker" />
<script>
$("#timedurationpicker").kendoTimeDurationPicker({
    columns: [ "hours", "minutes" ],
    shortcuts: [
        { text: "1h 30min", value: 5400000 },
        { text: "2h", value: 7200000  }
    ]
});
</script>
In this article