Back to Devexpress

ASPxClientUtils Class

aspnet-js-aspxclientutils.md

latest1.2 KB
Original Source

ASPxClientUtils Class

Represents an object containing service static functions and properties which can be useful when performing client-side processing.

Declaration

ts
declare class ASPxClientUtils

Remarks

In order to use the functionality provided by the ASPxClientUtils object on the client side, the object’s client scripts should be registered. If there is a DevExpress control on a page, the scripts are registered automatically. Otherwise, you should register it explicitly using the static ASPxWebControl.RegisterBaseScript method.

csharp
protected void Page_Load(object sender, EventArgs e) {
   DevExpress.Web.ASPxWebControl.RegisterBaseScript(this);
}
vb
Protected Sub Page_Load(ByVal sender As Object, ByVal e As EventArgs) _
Handles Me.Load
    DevExpress.Web.ASPxWebControl.RegisterBaseScript(Me)
End Sub

See Also

RegisterBaseScript

ASPxClientUtils Members