FilterControlColumnEditorPropertiesFactory.HyperLink(Action<MVCxColumnHyperLinkProperties>) Method
Allows you to configure a hyperlink column.
Namespace: DevExpress.Web.Mvc
Assembly: DevExpress.Web.Mvc5.v24.1.dll
NuGet Package: DevExpress.Web.Mvc5
Declaration
Optional Parameters
Name | Type | Default | Description |
---|---|---|---|
method | Action<MVCxColumnHyperLinkProperties> | null | A delegate method that accepts an MVCxColumnHyperLinkProperties object as a parameter. |
Remarks
settings.Columns.Add(column => {
...
column.EditorProperties().HyperLink(p => {
p.RemovePotentiallyDangerousNavigateUrl = DefaultBoolean.True;
...
});
});
See Also