Click here to Skip to main content
15,917,731 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
hi all this is my grid footer calculation script this script is working good if the aspx page is independent , when i use the same script with my asp.net master page content page that script is not working

this is my script

C#
function GrossTotal()
         {
            $("[id*=GridView1]input[type=text][id*=txtCalc]").keyup(function(e) {
                var price = $(this).closest('tr').find("input[type=text][id*=txtCalcPrice]").val();
                var quantity = $(e.target).closest('tr').find("input[type=text][id*=txtCalcQuantity]").val();
                var total = parseInt(price) * parseInt(quantity);
                $(e.target).closest('tr').find("[id*=lblGrossTotal]").text(total);
            });
        }


what changes i have to do for apply this script to be work in my master page content page in asp.net
Posted

1 solution

Check your page-elements ids in chrome -- inspect element.
while using jQuery with master page you should apply <%=id.clientId%>
for exp:
HTML
$('#<%=myBtn.ClientID%>').show()
 
Share this answer
 
v2
Comments
sameertm 21-Nov-12 4:19am    
can u change the below script for me to work in my master page content page ?
function GrossTotal()
{
$("[id*=GridView1]input[type=text][id*=txtCalc]").keyup(function(e) {
var price = $(this).closest('tr').find("input[type=text][id*=txtCalcPrice]").val();
var quantity = $(e.target).closest('tr').find("input[type=text][id*=txtCalcQuantity]").val();
var total = parseInt(price) * parseInt(quantity);
$(e.target).closest('tr').find("[id*=lblGrossTotal]").text(total);
});
}

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900