Class TelerikInputBase<T>
Inherited Members
Namespace: Telerik.Blazor.Components.Common
Assembly: Telerik.Blazor.dll
Syntax
public class TelerikInputBase<T> : BaseComponent, IDisposable, ILabelableInput
Type Parameters
T
|
Constructors
TelerikInputBase()
Declaration
public TelerikInputBase()
Properties
AriaDescribedBy
Defines the aria-describedby attribute for the component.
Declaration
public string AriaDescribedBy { get; set; }
Property Value
System.String
|
AriaLabel
Describe the aria-label attribute for the component.
Declaration
public string AriaLabel { get; set; }
Property Value
System.String
|
AriaLabelledBy
Describe the aria-labelledby attribute for the component.
Declaration
public string AriaLabelledBy { get; set; }
Property Value
System.String
|
CascadedEditContext
Declaration
public EditContext CascadedEditContext { get; set; }
Property Value
Microsoft.AspNetCore.Components.Forms.EditContext
|
Enabled
Specifies if the Component accepts user interaction and value changes. The default value is "true".
Declaration
public bool Enabled { get; set; }
Property Value
System.Boolean
|
FloatingLabel
Declaration
public TelerikFloatingLabel FloatingLabel { get; set; }
Property Value
TelerikFloatingLabel
|
Id
Specifies the id of the Component.
Declaration
public string Id { get; set; }
Property Value
System.String
|
OnBlur
Fires when the component loses focus.
Declaration
public virtual EventCallback OnBlur { get; set; }
Property Value
Microsoft.AspNetCore.Components.EventCallback
|
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
public virtual EventCallback<object> OnChange { get; set; }
Property Value
Microsoft.AspNetCore.Components.EventCallback<System.Object>
|
TabIndex
Maps to the tabindex attribute of the element. Use it to customize the tabbing focus order on the page.
Declaration
public Nullable<int> TabIndex { get; set; }
Property Value
System.Nullable<System.Int32>
|
ValidateOn
Defines the event which specifies when validation is triggered.
Declaration
public ValidationEvent ValidateOn { get; set; }
Property Value
ValidationEvent
|
Value
Specifies the value of the input. Used with two-way binding.
Declaration
public virtual T Value { get; set; }
Property Value
T
|
ValueChanged
Specifies the callback that's called when the value changes.
Declaration
public EventCallback<T> ValueChanged { get; set; }
Property Value
Microsoft.AspNetCore.Components.EventCallback<T>
|
ValueExpression
Specifies the expression that identifies the bound value.
Declaration
public Expression<Func<T>> ValueExpression { get; set; }
Property Value
System.Linq.Expressions.Expression<System.Func<T>>
|
Methods
Dispose()
FocusAsync()
Moves focus to the component.
Declaration
public virtual Task FocusAsync()
Returns
System.Threading.Tasks.Task
|
OnInitializedAsync()
Declaration
protected override Task OnInitializedAsync()
Returns
System.Threading.Tasks.Task
|
Overrides
OnParametersSetAsync()
Declaration
protected override Task OnParametersSetAsync()
Returns
System.Threading.Tasks.Task
|
SetParametersAsync(ParameterView)
Declaration
public override Task SetParametersAsync(ParameterView parameters)
Parameters
Microsoft.AspNetCore.Components.ParameterView
parameters
|
Returns
System.Threading.Tasks.Task
|