Skip to main content

ASPxClientPageControl.SetTabContentHTML(tab, html) Method

Defines the HTML content for a specific tab page within the page control.

Declaration

SetTabContentHTML(
    tab: ASPxClientTab,
    html: string
): void

Parameters

Name Type Description
tab ASPxClientTab

An ASPxClientTab object that specifies the required tab page.

html string

A string value that represents the HTML code defining the content of the specified page.

Remarks

Use the SetTabContentHTML method on the client side to dynamically provide a tab page specified by the tab parameter with the HTML contents.

Note

If the loaded HTML contains DevExpress MVC extensions and these extensions require specific resources, such as scripts or CSS files, you should call the FinalizeCallback method to force loading of these resources.

See Also