GanttContextMenuItemBuilder.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 GanttContextMenuItemBuilder 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
This method allows you to define a template using a JavaScript function.
@(Html.DevExtreme().Gantt()
.ContextMenu(cm => {
cm.Items(i => {
i.Add().Template(new JS("my_template")));
});
})
//...
)
<script>
function my_template() {
// Template rendering logic
}
</script>
See Also