We do not need to store every checked category.
authorGustavo Martin Morcuende <gu.martinm@gmail.com>
Tue, 11 Dec 2012 01:52:16 +0000 (02:52 +0100)
committerGustavo Martin Morcuende <gu.martinm@gmail.com>
Tue, 11 Dec 2012 01:52:16 +0000 (02:52 +0100)
If a parent category is selected we directly know the child ones are as well selected.
So, with this implementation we are wasting space in the database.
I do not have time right now for this improvement.

apps/userfront/modules/category/templates/indexSuccess.php

index bdb4d3a..b86a81c 100644 (file)
@@ -7,6 +7,8 @@
         });
 </script>
 <script type="text/javascript">
+    //TODO: I am wasting space in the data base because if a parent category is checked directly we know the child categories
+    //are as well selected. So, we do not really need to send every checked category, just the parent ones.
     $.fn.CheckCategories = function() {
         var checked = [];
         $('#rounded-corner :checked').each(function() {