This question is locked. New answers and comments are not allowed.
Hello,
I'm using the new .FooterTemplate available on the grid. Is it possible to set the alignment of the footer? Here's the code I'm using. However, the currency values in the grid are correctly right-aligned, but the footer comes out left-aligned.
Having these footer rows is an excellent addition to the grid, by the way. Thanks!
Chris
I'm using the new .FooterTemplate available on the grid. Is it possible to set the alignment of the footer? Here's the code I'm using. However, the currency values in the grid are correctly right-aligned, but the footer comes out left-aligned.
columns.Bound(x => x.TotalBillable) .FooterTemplate(() => {%> <b style="text-align:right"><%= string.Format("{0:c}", Model.SummaryTotalRevenue)%> </b> <%}) .Format("{0:c}").Title(ViewData["RevenueType"].ToString()).Width(80).HtmlAttributes(new { style = "text-align:right" });Having these footer rows is an excellent addition to the grid, by the way. Thanks!
Chris