Hi,
I know you can enter totals in the footer row
but I need to show the taxes as well as the shipping costs and a Grand total. The taxes need to be dynamic as clients will have to set up their own taxes. Is it possible to put a repeater in the footer of a radgrid. I know it can be done by concatenating a string with <br> tags but there must be a better way.
This is what I want to achieve:
Total: $200.00
P.S.T.: $16.00
G.S.T.: $10.00
Shipping: $21.00
Grand Total: $247.00
I know you can enter totals in the footer row
| Dim boundItem As GridFooterItem = CType(e.Item, GridFooterItem) |
| dim str as String = "200.00" |
| boundItem("SubTotal").Text = str |
This is what I want to achieve:
Total: $200.00
P.S.T.: $16.00
G.S.T.: $10.00
Shipping: $21.00
Grand Total: $247.00