Skip to main content
Tab

FileManagerDetailsColumn.AllowTextTruncationInAdaptiveMode Property

Specifies whether column’s text of the file manager can be truncated in adaptive mode.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v23.2.dll

NuGet Package: DevExpress.Web

Declaration

[DefaultValue(false)]
public bool AllowTextTruncationInAdaptiveMode { get; set; }

Property Value

Type Default Description
Boolean false

true to allow text truncation; false to show the column with full text only.

Remarks

When the FileManagerFileListDetailsViewAdaptivitySettings.Mode property is set to FileManagerDetailsViewAdaptivityMode.HideDataCells the File Manager provides a responsive layout for the details view mode. In this case, the file manager automatically calculates the width of the visible columns when the browser window is resized, and if the column width does not fit the window, the control hides columns one by one (based on the FileManagerDetailsColumn.AdaptivePriority property value).

Set the AllowTextTruncationInAdaptiveMode property to true to exclude the current column from the width calculation. Therefore, the column’s text can be truncated in adaptive mode.

See Also