Skip to main content

TreeListColumnBuilder<T>.EditCellTemplate(JS) Method

Specifies the client-side editCellTemplate.

Namespace: DevExtreme.AspNet.Mvc.Builders

Assembly: DevExtreme.AspNet.Core.dll

Declaration

public TreeListColumnBuilder<T> EditCellTemplate(
    JS value
)

Parameters

Name Type Description
value JS

A JavaScript function that specifies the template.

Returns

Type Description
TreeListColumnBuilder<T>

A reference to this instance after the method is called.

Remarks

This method allows you to define an edit cell template using a JavaScript function. You can access editCellTemplate‘s parameters from this function. Refer to JavaScript Functions as Templates for more information.

@(Html.DevExtreme().Gantt()
    .Columns(columns => {
        columns.Add().EditCellTemplate(new JS("myTreeListColumn_editCellTemplate"));
    })
)

<script>
    function myTreeListColumn_editCellTemplate() {
        // Template rendering logic
    }
</script>
See Also