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

GridViewColumn.AllowTextTruncationInAdaptiveMode Property

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

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v20.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 ASPxGridViewAdaptivitySettings.AdaptivityMode property is set to HideDataCells the grid provides a responsive layout. In this case, the grid 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 grid hides columns one by one (based on the GridViewColumn.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