You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
function TotalRow(obj)
{
var gridRow = obj.parentNode.parentNode;
var rowIndex = gridRow.rowIndex;
var grdvw = document.getElementById("<%=grdContact.ClientID %>");
var SubTotal = grdvw.rows[rowIndex].cells[7].childNodes[1].value;
var IVA = grdvw.rows[rowIndex].cells[8].childNodes[1].value;
var Total = parseFloat(SubTotal) + parseFloat(IVA);
grdvw.rows[rowIndex].cells[9].childNodes[1].value = Total.formatMoney(2, '.', ',');
// alert("(" + Total + ")");
}
CONFIG gridViewScroll
Hi how are things
I hope you can help me
The problem I have is when I call a Java Script function in the first row of the grid.
The problem only occurs in the first row of the grid, there is no problem with the other rows
The grid was developed with ItemTemplate with TextBox to capture data
for example I am capturing the data of an invoice in the first row of the grid
If I add the amount of the invoice plus the tax, it does not give me the total
I repeat it is only in the first line the problem
Is there something that can be done
GRIDVIEWE ASP NET
FUNCTION JAVA SCRIPT
The text was updated successfully, but these errors were encountered: