[Vtigercrm-commits] [vtiger-commits] r7303 - /vtigercrm/trunk/modules/Users/Users.js

vtigercrm-commits at vtiger.fosslabs.com vtigercrm-commits at vtiger.fosslabs.com
Tue Jun 20 10:09:20 EDT 2006


Author: saraj
Date: Tue Jun 20 08:09:15 2006
New Revision: 7303

Log:
js function SelectAll has been included

Modified:
    vtigercrm/trunk/modules/Users/Users.js

Modified: vtigercrm/trunk/modules/Users/Users.js
==============================================================================
--- vtigercrm/trunk/modules/Users/Users.js (original)
+++ vtigercrm/trunk/modules/Users/Users.js Tue Jun 20 08:09:15 2006
@@ -16,3 +16,58 @@
 		window.opener.document.EditView.reports_to_id.value = user_id;
 }
 
+//Function added for Mass select in Popup - Philip
+function SelectAll()
+{
+
+        x = document.selectall.selected_id.length;
+        var entity_id = window.opener.document.getElementById('parent_id').value
+        var module = window.opener.document.getElementById('return_module').value
+        document.selectall.action.value='updateRelations'
+        idstring = "";
+
+        if ( x == undefined)
+        {
+
+                if (document.selectall.selected_id.checked)
+                {
+                        document.selectall.idlist.value=document.selectall.selected_id.value;
+                }
+                else
+                {
+                        alert("Please select atleast one entity");
+                        return false;
+                }
+        }
+        else
+        {
+                xx = 0;
+                for(i = 0; i < x ; i++)
+                {
+                        if(document.selectall.selected_id[i].checked)
+                        {
+                                idstring = document.selectall.selected_id[i].value +";"+idstring
+                        xx++
+                        }
+                }
+                if (xx != 0)
+                {
+                        document.selectall.idlist.value=idstring;
+                }
+                else
+                {
+			alert("Please select atleast one entity");
+	                return false;
+                }
+        }
+        if(confirm("Are you sure you want to add the selected "+xx+" records ?"))
+        {
+                opener.document.location.href="index.php?module="+module+"&parentid="+entity_id+"&action=updateRelations&destination_module=Users&idlist="+idstring;
+                self.close();
+        }
+        else
+        {
+        	return false;
+        }
+}
+





More information about the vtigercrm-commits mailing list