Hello.
I've got a bit of problem. If I declare a column in a grid with a specific DataFormatString, then create an aggregate of it with FooterText, the text does not show up. So this code snippet below
would show the column with currency format but the will not show the right footer text. However, once I remove the DataFormatString setting, the footer text displays. However, I need to have the currency formatting in place. Is there a better way for me to do this, or are we not allowed to do this?
Thanks,
Ernest
I've got a bit of problem. If I declare a column in a grid with a specific DataFormatString, then create an aggregate of it with FooterText, the text does not show up. So this code snippet below
<
telerik:GridBoundColumn
HeaderText
=
"Column1"
SortExpression
=
"Column1"
DataField
=
"Column1"
UniqueName
=
"Column1"
DataType
=
"System.Decimal"
DataFormatString
=
"{0:$###,##0.00}"
Aggregate
=
"Sum"
ItemStyle-Wrap
=
"true"
HeaderStyle-Wrap
=
"false"
FooterText
=
"Total Column1: "
>
<
ItemStyle
HorizontalAlign
=
"Right"
Wrap
=
"True"
/>
<
FooterStyle
HorizontalAlign
=
"Right"
Wrap
=
"True"
/>
</
telerik:GridBoundColumn
>
would show the column with currency format but the will not show the right footer text. However, once I remove the DataFormatString setting, the footer text displays. However, I need to have the currency formatting in place. Is there a better way for me to do this, or are we not allowed to do this?
Thanks,
Ernest