在Devexpress Gridview中计算SubTotal

时间:2011-03-20 19:41:18

标签: c# asp.net gridview devexpress aspxgridview

我有一个简单的Devexpress Gridview

enter image description here

这里是代码;

<dx:ASPxGridView ID="grid" runat="server" DataSourceID="MasterDataSource" Width="100%"
        AutoGenerateColumns="False" KeyFieldName="CategoryID">
        <Columns>
            <dx:GridViewDataTextColumn FieldName="CategoryID" ReadOnly="True" VisibleIndex="0" />
            <dx:GridViewDataTextColumn FieldName="CategoryName" VisibleIndex="1" />
            <dx:GridViewDataTextColumn FieldName="Description" VisibleIndex="2" />
        </Columns>
        <SettingsDetail ShowDetailRow="True" ExportMode="Expanded" />
        <Templates>
            <DetailRow>
                <dx:ASPxGridView ID="detailGrid" runat="server" AutoGenerateColumns="False" DataSourceID="DetailDataSource"
                    KeyFieldName="ProductID" Width="100%" OnBeforePerformDataSelect="detailGrid_BeforePerformDataSelect">
                    <SettingsDetail IsDetailGrid="true" ExportIndex="0" />
                    <Columns>
                        <dx:GridViewDataTextColumn FieldName="ProductID" ReadOnly="True" VisibleIndex="0" />
                        <dx:GridViewDataTextColumn FieldName="ProductName" VisibleIndex="1" />
                        <dx:GridViewDataTextColumn FieldName="UnitPrice" VisibleIndex="2" />
                        <dx:GridViewDataTextColumn FieldName="QuantityPerUnit" VisibleIndex="3" />
                    </Columns>
                </dx:ASPxGridView>

有没有办法计算Devexpress中Unit Price列的子总数?

这个例子;我只想在底部总共Unit Price列(18 + 19 + 4.5 + 14 + 18 + 263.5 + 18 + 46 + 14 + 14 + 15 = 430)..

我该怎么做?

最诚挚的问候,

Soner

2 个答案:

答案 0 :(得分:1)

这可以使用ASPxGridView使用以下方法实现:

1)以单独的方法计算摘要。 2)使用详细的GridView的DataBound和BeforeGetCallBackResult事件处理程序来设置标签的文本。这是我的代码:

protected int CalcPageSummary(ASPxGridView gridView, string fieldName) {
    GridViewDataColumn column = gridView.Columns[fieldName] as GridViewDataColumn;
    if(column == null)
        return 0;
    int pageIndex = gridView.PageIndex;
    int startRowIndex = pageIndex * gridView.SettingsPager.PageSize;
    int finishRowIndex = startRowIndex + gridView.SettingsPager.PageSize;
    if(finishRowIndex > gridView.VisibleRowCount)
        finishRowIndex = gridView.VisibleRowCount;
    int result = 0;
    for(int i = startRowIndex; i < finishRowIndex; i++) 
        result += Convert.ToInt32(gridView.GetRowValues(i, fieldName));
    return result;
}

private void SetColumnSummary(ASPxGridView gridView, string fieldName) {
    ASPxLabel lbl = gridView.FindFooterCellTemplateControl(gridView.Columns[fieldName], "ASPxLabel1") as ASPxLabel;
    if(lbl != null)
        lbl.Text = CalcPageSummary(gridView, fieldName).ToString();
}
protected void ASPxGridView2_BeforeGetCallbackResult(object sender, EventArgs e) {
    SetColumnSummary((ASPxGridView)sender, "UnitPrice");
}
protected void ASPxGridView2_BeforePerformDataSelect(object sender, EventArgs e) {
    Session["CategoryID"] = (sender as ASPxGridView).GetMasterRowKeyValue();
}
protected void ASPxGridView2_DataBound(object sender, EventArgs e) {
    SetColumnSummary((ASPxGridView)sender, "UnitPrice");
}

答案 1 :(得分:0)

我不知道devexpress,但在常规gridview中,您可以轻松计算总数并在页脚上显示它们。

 double GrdTotal = 0;
    protected void grdList_RowDataBound(object sender, GridViewRowEventArgs e)
    {
        double price = Convert.ToDouble(DataBinder.Eval(e.Row.DataItem, "UnitPrice"));
        GrdTotal += price;
        if (e.Row.RowType == DataControlRowType.Footer)
        {
            Label lblTotalPrice = (Label)e.Row.FindControl("UnitPrice");
            lblTotalPrice.Text = GrdTotal.ToString();
        }
    }