value

Gets or sets the value of the widget.

Important: This method does not trigger the change event. This could affect MVVM value binding. The model bound to the widget will not be updated. You can overcome this behavior triggering the change event manually using trigger("change") method.

Parameters

value Number

The value to set in milliseconds.

Returns

Number the value of the widget.

Example - trigger the change event after setting the value

<input id="timedurationpicker" />
<script>
    var picker = $("#timedurationpicker").kendoTimeDurationPicker({
        columns: [ "hours", "minutes" ]
    }).data('kendoTimeDurationPicker');

    picker.value(5400000);
</script>
In this article