Skip to main content

DataGridSummaryGroupItemBuilder<T>.ShowInColumn(JS) Method

Specifies the column that must hold the summary item when this item is displayed in the group footer or aligned by a column in the group row. Mirrors the client-side showInColumn option.

Namespace: DevExtreme.AspNet.Mvc.Builders

Assembly: DevExtreme.AspNet.Core.dll

Declaration

public DataGridSummaryGroupItemBuilder<T> ShowInColumn(
    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().ShowInColumn(new JS("myValue"));
        })
    )
)
See Also