GridColumnEditorPropertiesFactory.HyperLink(Action<MVCxColumnHyperLinkProperties>) Method
Allows you to configure a hyper link column.
Namespace: DevExpress.Web.Mvc
Assembly: DevExpress.Web.Mvc5.v24.1.dll
NuGet Package: DevExpress.Web.Mvc5
Declaration
Parameters
Name | Type | Description |
---|---|---|
method | Action<MVCxColumnHyperLinkProperties> | A delegate method that accepts an MVCxColumnHyperLinkProperties object as a parameter. |
Remarks
settings.Columns.Add(column => {
column.FieldName = "Site";
column.EditorProperties().HyperLink(p => {
p.AllowEllipsisInText = true;
});
});
See Also