Skip to main content
All docs
V23.2

GanttColumnBuilder<T>.CellTemplate(String) Method

Specifies a custom template for data cells. Mirrors the client-side cellTemplate object.

Namespace: DevExtreme.AspNet.Mvc.Builders

Assembly: DevExtreme.AspNet.Core.dll

Declaration

public GanttColumnBuilder<T> CellTemplate(
    string templateContent
)

Parameters

Name Type Description
templateContent String

The option value.

Returns

Type Description
GanttColumnBuilder<T>

A reference to this instance after the method is called.

Remarks

This method allows you to specify a short template for a cell. Refer to the Templates article for more information and code examples.

@(Html.DevExtreme().Gantt()
    .Columns(columns => {
        columns.Add().CellTemplate("Template content");
    })
)
See Also