columns.name String

Specifies the name of the time unit the column will hold. Can be set to the following values:

  • "days"
  • "hours"
  • "minutes"
  • "seconds"
  • "milliseconds"

Example

<input id="timedurationpicker" />
<script>
    $("#timedurationpicker").kendoTimeDurationPicker({
        columns: [ { name: "hours", min : 12 }, "minutes" ]
    })
</script>
In this article