Skip to main content
A newer version of this page is available. .
Tab

ASPxPopupControl.ModalBackgroundStyle Property

Gets style settings that define the appearance of the page displayed behind the invoked modal popup window.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v19.2.dll

Declaration

public PopupControlModalBackgroundStyle ModalBackgroundStyle { get; }

Property Value

Type Description
PopupControlModalBackgroundStyle

A PopupControlModalBackgroundStyle object that contains style settings.

Example

The complete sample project is available in the DevExpress Code Central database at E11.

function ShowGlossaryText(evt){
    var element = evt.srcElement;
    if (typeof(element) == "undefined") // not IE
        element = evt.target;
    if (element.className.toLowerCase() == "gli") {
        var id = element.innerHTML;
        pcGlossary.SetHeaderText(id);
        cpnText.PerformCallback(id);
        pcGlossary.ShowAtElement(element);
        return false;
    }
}
See Also