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

ASPxDropDownEdit.DropDownWindowTemplate Property

Gets or sets a common template used for displaying the content of the drop down window.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v18.2.dll

Declaration

[DefaultValue(null)]
public virtual ITemplate DropDownWindowTemplate { get; set; }

Property Value

Type Default Description
ITemplate *null*

An object supporting the System.Web.UI.ITemplate interface which contains the template used for displaying the content of the drop down window.

Remarks

This property is a wrapper of the DropDownEditProperties.DropDownWindowTemplate property.

Note

Once a template defined by this property is created, it is instantiated within a container represented by the TemplateContainerBase class. This class implements a set of properties which can be useful when designing a template and binding controls composing this template to data.

Example

This part of the Extended Lookup online demo illustrates how to use the ASPxDropDownEdit’s AdjustDropDownWindow client method.

function EndCallbackHandler(s, e) {
    DropDownEdit.AdjustDropDownWindow();
    ...
}
See Also