Thanks for the response but I am not able to get the footer value using the code you provided. I am calling the javascript function from outside of the grid (on click of a button)
Below is my column definition:
<
telerik:GridBoundColumn
Aggregate
=
"Sum"
DataField
=
"BeneficiaryPercentage"
HeaderText
=
"Percentage"
DataFormatString
=
"{0:c2}"
FooterText
=
"Total: "
HeaderStyle-Width
=
"20%"
FooterStyle-HorizontalAlign
=
"Right"
>
</
telerik:GridBoundColumn
>
Here is my js function :
function rgPrimaryBeneficiaryClientValidation(source, args) {
var grid = $find('<%= rgPrimaryBeneficiary.ClientID %>');
}
How do i find the footer for the column above in this function and check the value of the footer?