Abstract: In this article, we will see how to add values of multiple ASP.NET Checkboxes using jQuery
In this article, we will see how to add values of multiple ASP.NET Checkboxes using jQuery. This example could be useful in scenarios where users are asked to select services they would like to avail and each service has a rate displayed – like in a webhosting service. Using jQuery, the total service cost should be automatically calculated, as the services are selected.
Note: If you are using jQuery with ASP.NET Controls, check out my EBook called 51 Recipes with jQuery and ASP.NET Controls.
Create an ASP.NET Website. Add the following markup
The layout should look similar to the following:
Now add a reference to the latest jQuery script file and write the following code:
Let us see what we just did:
When a checkbox is clicked, a variable ‘checked’ keeps track of the checked checkboxes.
We then iterate the ‘checked’ collection using $().each() and add the text of the checkbox to a variable ‘total’.
Observe how we are accessing the value of a checkbox using $(this).next().text());
This is because the checkbox gets rendered like this:
To access the value, which is inside the label, we use next() which finds the very next sibling of each checkbox, which in our case is the label control. The parseFloat( ) parses strings into numbers.
The result is displayed in a paragraph (tot) using the toFixed() method, which rounds the result to the specified number of decimal places, in our case 2.
$('#tot').text("Your Total Amount Is: " + total.toFixed(2));
The output is shown here:
See a Live Demo. This demo has been tested in the following browsers: IE 7, IE 8, Firefox 3, Chrome 2, Safari 4.
The entire source code of this article can be downloaded over here
No comments:
Post a Comment