DataGridSummaryGroupItemBuilder<T>.AlignByColumn(JS) Method
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
public DataGridSummaryGroupItemBuilder<T> AlignByColumn(
JS value
)
Parameters
Name | Type | Description |
---|---|---|
value | JS | A JavaScript expression that specifies the option value. |
Returns
Type | Description |
---|---|
DataGridSummaryGroupItemBuilder<T> | 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