DataGridEditingBuilder<T>.EditColumnName(JS) Method
In This Article
The name of a column being edited. Applies only if editing.mode is 'cell' or 'batch'. Mirrors the client-side editColumnName option.
Namespace: DevExtreme.AspNet.Mvc.Builders
Assembly: DevExtreme.AspNet.Core.dll
#Declaration
C#
public DataGridEditingBuilder<T> EditColumnName(
JS value
)
#Parameters
Name | Type | Description |
---|---|---|
value | JS | A Java |
#Returns
Type | Description |
---|---|
Data |
A reference to this instance after the method is called. |
#Remarks
Use the new JS() expression to set the option’s value.
<script>
var myValue = ...;
</script>
@(Html.DevExtreme().DataGrid()
.Editing(editing => editing
.EditColumnName(new JS("myValue"))
)
)
See Also