Hi I created a javascript function to check if the number of modules selected is greater than a given value. So each time a checkbox is called the function is called, and the function goes through all the checkboxes and calculates the total to see if it's greater. But the problem is when the user checks the checkbox and if the total credits is greater than the value, I want to set the checkbox as checked=false. But I don't which checkbox to undo. Is there any undo last click function in javascript?
|
|
|
|
|
|
|
Here's a minimal, but fully functional and jQuery-less solution:
|
||
|
|
|
|
I suggest either testing if the max number of objects has been checked and if true remove the check all in the same method or you set the value to some hidden text box to the id of your last checked check box so that you can reference it again. |
||
|
|
|
|
Using jQuery, you could do something like:
If you've never used jQuery before, this surely is like a pain for your eyes; but as you can see, it's very powerful and your problem can be solved in few lines. I'd recommend you learning it and giving it a try ;) |
||
|
|
|
|
Not really, but you could fake it easily enough by saving the last box clicked. This code may not work verbatim, but you get the idea:
|
||||||||||
|
|
|
I dont think there is, but you can always save a reference to the last checked box, so when you have to un-check it, you have it right there. |
||
|
|
I know this isn't the answer you were looking for, but wouldn't it be a better user experience to disable all unchecked checkboxes when the maximum number of checks has been reached? |
||||||
|
