GanttToolbarItemBuilder.Template(JS) Method
In This Article
Mirrors the client-side template option.
Namespace: DevExtreme.AspNet.Mvc.Builders
Assembly: DevExtreme.AspNet.Core.dll
#Declaration
C#
public GanttToolbarItemBuilder Template(
JS value
)
#Parameters
Name | Type | Description |
---|---|---|
value | JS | A Java |
#Returns
Type | Description |
---|---|
Gantt |
A reference to this instance after the method is called. |
#Remarks
<script>
var myValue = ...;
</script>
@(Html.DevExtreme().Gantt()
.Toolbar(toolbar => toolbar
.Items(items => {
items.Add().Template(new JS("myValue"))
})
)
)
See Also