Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
100
Footer not visible when Sorting ColumnSettings are defined
posted

We are manually computing totals and setting them in the footer by setting the column's Footer.Text property, e.g.:

grid.Columns[columnKey].Footer.Text = totalValue;

This works until we enable the SortingBehavior and define one or more SortingColumnSettings in the ColumnSettings collection. If there are any items defined in ColumnSettings, then any footer that we have set manually as shown above is not displayed. Static footer text set in the aspx is displayed.

<ig:Sorting SortingMode="Single">
  <ColumnSettings>
    <ig:SortingColumnSetting ColumnKey="ID" Sortable="False" />
  </ColumnSettings>
</ig:Sorting>

Please advise.

Parents Reply Children