Author: sevein
Date: Sun Nov  7 04:09:13 2010
New Revision: 8793

Log:
In multiDelete, if user removes a row, it shouldn't be sent to server, so 
remove() should be called instead of hide(). Refs issue 1330.

Modified:
   trunk/js/multiDelete.js

Modified: trunk/js/multiDelete.js
==============================================================================
--- trunk/js/multiDelete.js     Sun Nov  7 03:43:15 2010        (r8792)
+++ trunk/js/multiDelete.js     Sun Nov  7 04:09:13 2010        (r8793)
@@ -34,7 +34,7 @@
 
                     $('div:visible', $parentRows).hide('normal', function ()
                       {
-                        $parentRows.hide();
+                        $parentRows.remove();
                       });
                   });
               })

-- 
You received this message because you are subscribed to the Google Groups 
"Qubit Toolkit Commits" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/qubit-commits?hl=en.

Reply via email to