GanttColumnBuilder<T>.CellTemplate(String) Method
In This Article
Specifies a custom template for data cells. Mirrors the client-side cellTemplate object.
Namespace: DevExtreme.AspNet.Mvc.Builders
Assembly: DevExtreme.AspNet.Core.dll
#Declaration
C#
public GanttColumnBuilder<T> CellTemplate(
string templateContent
)
#Parameters
Name | Type | Description |
---|---|---|
template |
String | The option value. |
#Returns
Type | Description |
---|---|
Gantt |
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