shortcuts.text String

The text that will be displayed in the button

Example

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