Skip to main content
Tab

ASPxImageGallery.FullscreenViewerItemTextTemplate Property

Specifies a common template to display the content of all items’ fullscreen viewer text area.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v23.2.dll

NuGet Package: DevExpress.Web

Declaration

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

Property Value

Type Default Description
ITemplate null

The template to display all items’ fullscreen viewer text area.

Remarks

The FullscreenViewerItemTextTemplate template container is the ImageGalleryFullscreenViewerItemTemplateContainer object. This object contains a set of properties to design and bind controls within this template to data.

Note

ASPxImageGallery renders controls from the FullScreenViewerItemTextTemplate template before its own render. The first rendered control loads scripts and styles for all controls on a page. If your page does not contain other DevExpress ASP.NET controls before ASPxImageGallery, controls from the FullScreenViewerItemTextTemplate are the first rendered controls on the page. The template’s content (along with scripts for all other controls) is rendered in the middle of the ASPxImageGallery‘s initialization script. To overcome this specific, add any invisible DevExpress ASP.NET control (for example, ASPxHiddenField) to your page before ASPxImageGallery.

See Also