Click here to Skip to main content
15,907,687 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi, I've a gridview with template fields label and checkbox. label contains amount. whenever i'm checking the checkbox, the corresponding label values should be added and should get the result in a label which is outside the gridview by using javascript. Is it possible? If anybody knows, kindly help with an example.
Posted

1 solution

Checkout sample on jsFiddle http://jsfiddle.net/TdSCX/[^]

You need to add event handler for checkboxes of GridView using jQuery as below

C#
$(function(){
    $('table#GridView1 tr td input[type="checkbox"]').click(function(){
        var finalTotal = parseFloat($('#finalLabel').html());
        var labelValue = parseFloat($(this).siblings('label').html());

        if($(this).prop('checked')){
            finalTotal += labelValue;
        }
        else {
            finalTotal -= labelValue;
        }
        $('#finalLabel').html(finalTotal);
    });
});


Replace ID GridView1 with ID of your GridView
 
Share this answer
 
Comments
Ruggers 23-Apr-13 1:16am    
can you plz give me a simple javascript for that?
vijay__p 23-Apr-13 1:32am    
JavaScript is possible but what's wrong with this code?
Ruggers 23-Apr-13 23:21pm    
I'm sorry.. Thank you dear..

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