[Vtigercrm-commits] [vtiger-commits] r7472 - /vtigercrm/trunk/include/js/general.js
vtigercrm-commits at vtiger.fosslabs.com
vtigercrm-commits at vtiger.fosslabs.com
Fri Jun 23 09:29:58 EDT 2006
Author: saraj
Date: Fri Jun 23 07:29:54 2006
New Revision: 7472
Log:
SelectAll js function has been moved to general.js
Modified:
vtigercrm/trunk/include/js/general.js
Modified: vtigercrm/trunk/include/js/general.js
==============================================================================
--- vtigercrm/trunk/include/js/general.js (original)
+++ vtigercrm/trunk/include/js/general.js Fri Jun 23 07:29:54 2006
@@ -1630,3 +1630,58 @@
openPopUp('xComposeEmail',this,url,'createemailWin',820,652,'menubar=no,toolbar=no,location=no,status=no,resizable=no');
}
+//Function added for Mass select in Popup - Philip
+function SelectAll(mod)
+{
+
+ 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="+mod+"&idlist="+idstring;
+ self.close();
+ }
+ else
+ {
+ return false;
+ }
+}
+
More information about the vtigercrm-commits
mailing list