DateRangePickerMessagesSettingsBuilder

Methods

StartLabel(System.String)

Allows customization of the start label text.

Parameters

value - System.String

The value that configures the startlabel.

Example

Razor
 
              @(Html.Kendo().DateRangePicker()
                        .Name("DateRangePicker")
                        .Messages(m => {
                             m.StartLabel("Start");
                        })
              )
             

EndLabel(System.String)

Allows customization of the end label text.

Parameters

value - System.String

The value that configures the endlabel.

Example

Razor
 
              @(Html.Kendo().DateRangePicker()
                        .Name("DateRangePicker")
                        .Messages(m => {
                             m.EndLabel("End");
                        })
              )