Skip to main content

GanttContextMenuItemBuilder.Template(JS) Method

Mirrors the client-side template option.

Namespace: DevExtreme.AspNet.Mvc.Builders

Assembly: DevExtreme.AspNet.Core.dll

Declaration

public GanttContextMenuItemBuilder Template(
    JS value
)

Parameters

Name Type Description
value JS

A JavaScript expression that specifies the option value.

Returns

Type Description
GanttContextMenuItemBuilder

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