aspnet-devexpress-dot-web-dot-callbackclientsideeventsbase.md
Gets or sets the name of the JavaScript function or the entire code which will handle a web control’s client BeginCallback event.
Namespace : DevExpress.Web
Assembly : DevExpress.Web.v25.2.dll
NuGet Package : DevExpress.Web
[DefaultValue("")]
public string BeginCallback { get; set; }
<DefaultValue("")>
Public Property BeginCallback As String
| Type | Default | Description |
|---|---|---|
| String | String.Empty |
A string that represents either the name of a JavaScript function or the entire JavaScript function code used to handle an event.
|
The following code snippet (auto-collected from DevExpress Examples) contains a reference to the BeginCallback property.
Note
The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.
asp-net-mvc-scheduler-use-checkboxlist-to-filter-resources/CS/Code/SchedulerHelper.cs#L32
settings.ClientSideEvents.BeginCallback = "OnBeginCallback";
asp-net-mvc-scheduler-use-checkboxlist-to-filter-resources/VB/Code/SchedulerHelper.vb#L37
settings.ClientSideEvents.BeginCallback = "function(s, e) { " & ControlChars.CrLf & " e.customArgs['SelectedResources'] = cbResources.GetSelectedValues().join(',');" & ControlChars.CrLf & " }"
See Also
CallbackClientSideEventsBase Class