You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add blur (remove focus) functionality to Control<TOwner>.
Implementation
Control<TOwner>
Add method to Control<TOwner>:
/// <summary>/// Removes focus from the control./// Executes an associated with the component <see cref="BlurBehaviorAttribute"/>/// that is <see cref="BlursUsingScriptAttribute"/> by default./// Also executes <see cref="TriggerEvents.BeforeBlur" /> and <see cref="TriggerEvents.AfterBlur" /> triggers./// </summary>/// <returns>The instance of the owner page object.</returns>publicTOwnerBlur();
TriggerEvents
Add BeforeBlur and AfterBlur values to TriggerEvents.
Behaviors
Add abstract BlurBehaviorAttribute and BlursUsingScriptAttribute as a default implementation.
UIComponentScriptExecutor<TOwner>
Add method to UIComponentScriptExecutor<TOwner>.
publicTOwnerBlur();
The text was updated successfully, but these errors were encountered:
Add blur (remove focus) functionality to
Control<TOwner>
.Implementation
Control<TOwner>
Add method to
Control<TOwner>
:TriggerEvents
Add
BeforeBlur
andAfterBlur
values toTriggerEvents
.Behaviors
Add abstract
BlurBehaviorAttribute
andBlursUsingScriptAttribute
as a default implementation.UIComponentScriptExecutor<TOwner>
Add method to
UIComponentScriptExecutor<TOwner>
.The text was updated successfully, but these errors were encountered: