[Vtigercrm-commits] [vtiger-commits] r7765 - /vtigercrm/trunk/modules/Users/Users.js
vtigercrm-commits at vtiger.fosslabs.com
vtigercrm-commits at vtiger.fosslabs.com
Tue Jul 4 07:08:32 EDT 2006
Author: saraj
Date: Tue Jul 4 05:08:29 2006
New Revision: 7765
Log:
SelectAll js function has been removed as it is defined in general.js
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 Jul 4 05:08:29 2006
@@ -16,58 +16,3 @@
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 at least 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 at least 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