Skip to main content
All docs
V18.2

ASPxClientWebDocumentViewer.DrillThrough(String) Method

Enables navigation between drill-through reports on the client-side.

Namespace: DevExpress.XtraReports.Web.Scripts

Assembly: DevExpress.XtraReports.v18.2.Web.Scripts.dll

Declaration

public JQueryPromise<object> DrillThrough(
    string customData
)

Parameters

Name Type Description
customData String

Provides access to custom client data associated with a currently previewed report.

Returns

Type Description
JQueryPromise<Object>

A Deferred Promise object.

Remarks

Use this method to provide drill-through functionality to web reports. The customData parameter specifies the navigation logic.

To process mouse events related to report elements on the client, handle the client-side ASPxClientWebDocumentViewer.PreviewClick event.

On the server-side, implement the IWebDocumentViewerDrillThroughProcessor interface and register it by calling the DefaultWebDocumentViewerContainer.RegisterWebDocumentViewerDrillThroughProcessor<T> method at the application startup.

For a code sample, see How to provide drill-through functionality to web reports.

See Also