aspnet-devexpress-dot-web-dot-aspxgridbehaviorsettings.md
Specifies whether the control can automatically truncate the cell texts if they don’t fit into the cell width.
Namespace : DevExpress.Web
Assembly : DevExpress.Web.v25.2.dll
NuGet Package : DevExpress.Web
[DefaultValue(false)]
public bool AllowEllipsisInText { get; set; }
<DefaultValue(False)>
Public Property AllowEllipsisInText As Boolean
| Type | Default | Description |
|---|---|---|
| Boolean | false |
true, to automatically truncate text; otherwise, false.
|
Set the AllowEllipsisInText property to true to automatically truncate cell texts if they don’t fit into the cell width. To indicate that the text is clipped, the control displays an ellipsis (‘…’).
Note
true.true as the grid uses the fixed table layout in this case.Web Forms:
<dx:ASPxGridView runat="server" Width="100%" ID="ASPxGridView1" ClientInstanceName="sampleGrid" ...>
<SettingsBehavior AllowEllipsisInText="true"/>
...
</dx:ASPxGridView>
MVC:
@Html.DevExpress().GridView(settings => {
settings.Name = "GridView";
...
settings.SettingsBehavior.AllowEllipsisInText = true;
...
}).Bind(Model).GetHtml()
See Also
ASPxGridBehaviorSettings Class