ClassTelerikInputBase<T>
Definition
Namespace:Telerik.Blazor.Components.Common
Assembly:Telerik.Blazor.dll
Type Parameters:
T
Syntax:
public class TelerikInputBase<T> : BaseComponent, IComponent, IHandleEvent, IHandleAfterRender, IDisposable
Inheritance: objectComponentBaseBaseComponentTelerikInputBase<T>
Derived Classes:
Implements:
Inherited Members
Constructors
TelerikInputBase()
Declaration
public TelerikInputBase()
Properties
AriaDescribedBy
Defines the aria-describedby attribute for the component.
Declaration
[Parameter]
public string AriaDescribedBy { get; set; }
Property Value
AriaLabel
Describe the aria-label attribute for the component.
Declaration
[Parameter]
public string AriaLabel { get; set; }
Property Value
AriaLabelledBy
Describe the aria-labelledby attribute for the component.
Declaration
[Parameter]
public string AriaLabelledBy { get; set; }
Property Value
CascadedEditContext
Declaration
[CascadingParameter]
public EditContext CascadedEditContext { get; set; }
Property Value
Enabled
Specifies if the Component accepts user interaction and value changes. The default value is "true".
FloatingLabel
Declaration
[CascadingParameter]
public TelerikFloatingLabel FloatingLabel { get; set; }
Property Value
Id
Specifies the id of the Component.
OnBlur
Fires when the component loses focus.
Declaration
[Parameter]
public virtual EventCallback OnBlur { get; set; }
Property Value
OnChange
Specifies the callback that's called when the current value is committed (confirmed) by the user - either through the Enter key, or when the Component loses focus.
Declaration
[Parameter]
public virtual EventCallback<object> OnChange { get; set; }
Property Value
TabIndex
Maps to the tabindex attribute of the element. Use it to customize the tabbing focus order on the page.
ValidateOn
Defines the event which specifies when validation is triggered.
Declaration
[Parameter]
public ValidationEvent ValidateOn { get; set; }
Property Value
Value
Specifies the value of the input. Used with two-way binding.
Declaration
[Parameter]
public virtual T Value { get; set; }
Property Value
T
ValueChanged
Specifies the callback that's called when the value changes.
Declaration
[Parameter]
public EventCallback<T> ValueChanged { get; set; }
Property Value
ValueExpression
Specifies the expression that identifies the bound value.
Declaration
[Parameter]
public Expression<Func<T>> ValueExpression { get; set; }
Property Value
Expression<Func<T>>
Methods
Dispose()
Declaration
public override void Dispose()
Overrides
Implements
FocusAsync()
Moves focus to the component.
SetParametersAsync(ParameterView)
Declaration
public override Task SetParametersAsync(ParameterView parameters)
Parameters
parameters
Returns
Overrides