RichEditBuilder.OnLostFocus(String) Method
Assigns an event handler to the LostFocus event.
Namespace: DevExpress.AspNetCore.RichEdit
Assembly: DevExpress.AspNetCore.RichEdit.v24.2.dll
NuGet Package: DevExpress.AspNetCore.RichEdit
#Declaration
public RichEditBuilder OnLostFocus(
string callback
)
#Parameters
Name | Type | Description |
---|---|---|
callback | String | The name of the Java |
#Returns
Type | Description |
---|---|
Rich |
The builder for the Rich Text Editor. |
#Remarks
The LostFocus event occurs when the control loses focus.
@(Html.DevExpress().RichEdit("richEdit")
.OnLostFocus("function(s,e){ /* your custom actions */ }")
// ...