Hi,
I want to find the column value of gridvie using jquery
my values in column are float values
eg 08:00 and 06:15
iam getting 14 only .i need 14.15
I tried this code
$("tr").each(function () {
if (!$(this).hasClass("Header") && !$(this).hasClass("Footer")) {
var atime = $(this).find(".Atime").text();
totalHr += parseFloat($(this).find(".Atime").text());
}
if ($(this).hasClass("Footer")) {
$(this).empty();
$(this).append("<td colspan='4' align='right'>TOTAL : " + totalHr + "</td>");
}
});
I also tried parseFloat($(this).find(".Atime").val())
but it returns
NaN.
how to solve this
Regards
Baiju