New to Telerik UI for ASP.NET Core? Download free 30-day trial
ASP.NET Core TimeDurationPicker Declarative Initialization
- EXAMPLE
- VIEW SOURCE
-
Change Theme
defaultDefault Theme
- Main
- Main Dark
- Nordic
- Ocean Blue
- Ocean Blue A11Y
- Purple
- Turquoise
Bootstrap Theme- Main
- Bootstrap 3
- Bootstrap 3 Dark
- Main Dark
- Nordic
- Turquoise
- Turquoise Dark
- Urban
- Vintage
Material Theme- Main
- Arctic
- Lime Dark
- Main Dark
- Nova
Classic Theme- Main
- Green
- Green Dark
- Lavender
- Lavender Dark
- Main Dark
- Metro
- Metro Dark
- Moonlight
- Opal
- Opal Dark
- Silver
- Silver Dark
- Uniform
Fluent Theme- Main
Description
The Telerik UI for ASP.NET Core TimeDurationPicker supports the declarative initialization feature, where the component declaration is serialized as an MVVM declarative configuration instead of as an inline initialization script.
The declarative initialization feature serializes the helper declaration as an MVVM configuration and initializes the component from the DOM elements on the client. This functionality is suitable when the Content Security Policy (CSP) is enabled and eliminates the requirement to call the DeferredScriptFile()
or Deferred()
methods that defer the initialization script generated after the component's HTML markup.
This example demonstrates how to enable the declarative initialization of the TimeDurationPicker:
- Add the
UseMvvmInitialization()
option in the helper declaration. - Within the
$(document).ready()
function, call thekendo.bind()
method and pass the element that wraps the helper declaration or theName()
of the component by selecting it with jQuery.