DataGridSummaryGroupItemBuilder<T>.AlignByColumn(JS) Method
In This Article
Indicates whether to display group summary items in parentheses after the group row header or to align them by the corresponding columns within the group row. Mirrors the client-side alignByColumn option.
Namespace: DevExtreme.AspNet.Mvc.Builders
Assembly: DevExtreme.AspNet.Core.dll
#Declaration
C#
public DataGridSummaryGroupItemBuilder<T> AlignByColumn(
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()
.Summary(summary => summary
.GroupItems(groupItems => {
groupItems.Add().AlignByColumn(new JS("myValue"));
})
)
)
See Also