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

FileManagerDetailsColumn.ItemTemplate Property

Gets or sets a common template used for displaying the content of all items within the current details view column.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v18.2.dll

Declaration

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

Property Value

Type Default Description
ITemplate *null*

An object supporting the ITemplate interface, which contains the template.

Remarks

Use the ItemTemplate property to define a common content for all items displayed within the current details view column. The template created using this property replaces the content of each item, preserving its style settings (if specified).

You can specify an item template for thumbnails view mode using the FileManagerFileListThumbnailsViewSettings.ItemTemplate property.

Note

Once a template defined via the ItemTemplate property is created within a control, it is instantiated within a container object of the FileManagerDetailsViewItemTemplateContainer type. This container object exposes a set of specific properties to which the template’s child controls can be bound.

See Also