CyberStore Ecommerce 2023 Documentation
CheckOutDisplayOrderTotals Class
Members 


Dovetail.Ecommerce.Controls Namespace : CheckOutDisplayOrderTotals Class

A checkout display order totals control.

Remarks

The CheckOutOrderTotals control displays the OrderTotal, GiftCertificateValue, ShippingCost, Tax, SubTotal, and Discount values for an order.

An example fo the CheckOutOrderTotals control in use is below:

 

 

Property Usage

By changing the values of the control's properties in the SitePages.config file for your Site, you can enable or disable certain behaviors, set certain defaults, alter aspects of the display or otherwise cusomtize your site's implementaion of the control.

The following describes properties pertaining to key functional areas of the control that can be configured to suit your needs.

The CurrencyCode is the currency code of the order. If not specified, the currency of the logged user is used for displaying.

Label Properties

There are multiple propreties which can be configured in this control to provide customizable labels these include the DiscountLabel,  OrderTotalLabel, PromotionLabelShippingLabel, and SubTotalLabel property which sets the discount label, order total label, promotion label, shipping label, and sub total label respectively. 

Tax Properties

By using the TaxLabel property you can customize the tax label. Similarily, the TaxMessage property can be manipulated into setting your message describing the tax.

Properties Inherited from the Base CyberStoreBaseControl

Properties specific to the CyberStoreBaseControl can be listed in the following categories:

Override Properties

When the IgnoreControl property is set to true, all processing of a control is skipped, and the control's Visible property is set to false ensuring that it is not rendered in the resulting CyberStore page.

Contextual Properties

Contextual properties define specific details about the current instance of the control based on context. Context can be set by any number of factors including the log in state of the Shopper, the Site being visited, or the properties that have been established for a control.

The AttributesBag property is used internal to control processing and is the collection of attributes, or properties, and their values based on how the control is configured. The attributes in this property are set by processing the SitePages.config file as well as any specific declared property values in any registered sub controls. It allows for the passing down of all properties to a control and any registered sub controls.

The ComConfigUserData and Site_ID properties are read-only values made available to all CyberStore controls to aid in processing and establishing context about the Site and Shopper.

Control Markup

The following is the markup for this control.

Developer's Note:

To create a custom version of the control, copy all of the code below into a file of the same name and place it into your Site's control folder (e.g., ../YourSiteFolder/Control). The CyberStore page engine will then override the default markup with your customized version.

 

<%@ Control Language="C#" AutoEventWireup="true" CodeBehind="CheckOutDisplayOrderTotals.ascx.cs"
    Inherits="Dovetail.Ecommerce.Controls.CheckOutDisplayOrderTotals" %>
<table id="Table4" cellspacing="0" cellpadding="0" width="470" border="0" align="center">
    <tr>
        <td colspan="4" width="300">
        </td>
        <td class="CheckoutSummaryLabel">
            <%# SubTotalLabel %>:
        </td>
        <td align="right">
            <span class="CheckOutSubTotalPrice">
                <%#SubTotal %></span>
        </td>
    </tr>
    <asp:Panel runat="server" ID="DiscountPnl">
        <tr>
            <td width="300" colspan="4">
            </td>
            <td class="CheckoutSummaryLabel">
                <%# DiscountLabel %>:
            </td>
            <td align="right">
                <span class="CheckoutSummaryField">
                    <%# Discount %></span>
            </td>
        </tr>
    </asp:Panel>
    <tr>
        <td colspan="4" width="300">
        </td>
        <td class="CheckoutSummaryLabel">
            <%# TaxLabel %>:
        </td>
        <td align="right">
            <span class="CheckoutSummaryField">
                <%#Tax %></span>
        </td>
    </tr>
    <div class="TaxMessage"><%# TaxMessage %></div>
    <asp:Panel runat="server" ID="GstTaxPnl" Visible="false">
        <div></div>
        <tr>
            <td width="300" colspan="4">
            </td>
            <td class="CheckoutSummaryLabel">
                GST<%# TaxLabel %>:
            </td>
            <td align="right">
                <span class="CheckoutSummaryField">
                    <#GstTaxAmount></span>
            </td>
        </tr>
    </asp:Panel>
    <asp:Panel runat="server" ID="ShippingTotalLabels">
        <tr>
            <td colspan="4" width="300">
            </td>
            <td class="CheckoutSummaryLabel">
                <%# ShippingLabel   %>:
            </td>
            <td align="right">
                <span class="CheckoutSummaryField">
                    <#ShippingCost></span>
            </td>
        </tr>
    </asp:Panel>
    <asp:Panel runat="server" ID="PromotionPnl">
        <tr>
            <td width="300" colspan="4">
            </td>
            <td class="CheckoutSummaryLabel">
                <%#   PromotionLabel %>:
            </td>
            <td align="right">
                <span class="CheckoutSummaryField">
                    <%#GiftCertificateValue %></span>
            </td>
        </tr>
    </asp:Panel>
    <tr>
        <td colspan="4" width="300">
        </td>
        <td class="CheckOutTotalPriceLabel">
            <%# OrderTotalLabel %>:
        </td>
        <td align="right">
            <span class="CheckOutTotalPrice">
                <#OrderTotal></span>
        </td>
    </tr>
</table>
<span id="spnInvoiceDiscount" runat="server"></span>
Inheritance Hierarchy

System.Object
   System.Web.UI.Control
      System.Web.UI.TemplateControl
         System.Web.UI.UserControl
            Dovetail.Ecommerce.ControlBases.CyberStoreBaseControl
               Dovetail.Ecommerce.Controls.CheckOutDisplayOrderTotals

See Also

Reference

CheckOutDisplayOrderTotals Members
Dovetail.Ecommerce.Controls Namespace