SchedulerFormTemplateContainer.ControlClientId Property
Gets the Client ID of the form.
Namespace: DevExpress.Web.ASPxScheduler
Assembly: DevExpress.Web.ASPxScheduler.v24.1.dll
NuGet Package: DevExpress.Web.Scheduler
Declaration
Property Value
Type | Description |
---|---|
String | A string containing the identifier generated by ASP.NET. |
Remarks
A Client ID is the control ID for the HTML markup that is generated by ASP.NET.
Example
<dx:ASPxGlobalEvents ID="ASPxGlobalEvents1" runat="server">
<ClientSideEvents
BeginCallback="function(s, e) {
alert('BeginCallback ' + e.control.name);
}" CallbackError="function(s, e) {
alert('CallbackError ' + e.control.name);
}" EndCallback="function(s, e) {
alert('EndCallback ' + e.control.name);
}" />
</dx:ASPxGlobalEvents>
See Also