Hi All,
I have a grid with a Grouped column. I want to display a COUNT of the groups in the footer.
Specifically i have a grid of invoices and i group them by customer. I want to show the number of unique customers in the footer.
I have a grid with a Grouped column. I want to display a COUNT of the groups in the footer.
Specifically i have a grid of invoices and i group them by customer. I want to show the number of unique customers in the footer.
<
telerik:GridBoundColumn DataField="fullName" Aggregate="Count" FooterText="Total Invoiced Members:" HeaderText="Name" SortExpression="fullName"
UniqueName="fullName">
</telerik:GridBoundColumn>
This seems to show a count of the invoices in the footer rather then a count of the "members". How can i get a count of the members?? Do i need to change the context of the query? thanks!