[Vtigercrm-commits] [vtiger-commits] r6965 - /vtigercrm/trunk/modules/Emails/Email.js
vtigercrm-commits at vtiger.fosslabs.com
vtigercrm-commits at vtiger.fosslabs.com
Thu Jun 8 01:04:59 EDT 2006
Author: saraj
Date: Wed Jun 7 23:04:53 2006
New Revision: 6965
Log:
ajax functionality has been modified
Modified:
vtigercrm/trunk/modules/Emails/Email.js
Modified: vtigercrm/trunk/modules/Emails/Email.js
==============================================================================
--- vtigercrm/trunk/modules/Emails/Email.js (original)
+++ vtigercrm/trunk/modules/Emails/Email.js Wed Jun 7 23:04:53 2006
@@ -19,17 +19,17 @@
$("status").style.display="inline";
new Ajax.Request(
'index.php',
- {ldelim}queue: {ldelim}position: 'end', scope: 'command'{rdelim},
+ {queue: {position: 'end', scope: 'command'},
method: 'post',
postBody: "module=Users&action=massdelete&return_module=Emails&folderid="+gFolderid+"&idlist="+id,
- onComplete: function(response) {ldelim}
+ onComplete: function(response) {
$("status").style.display="none";
$('EmailDetails').innerHTML = '<table valign="top" border="0" cellpadding="0" cellspacing="0" width="100%"><tbody><tr><td class="forwardBg"><table border="0" cellpadding="0" cellspacing="0" width="100%"><tbody><tr><td colspan="2"> </td></tr></tbody></table></td></tr><tr><td style="padding-top: 10px;" bgcolor="#ffffff" height="300" valign="top"></td></tr></tbody></table>';
$("subjectsetter").innerHTML='';
$("email_con").innerHTML=response.responseText;
execJS($('email_con'));
- {rdelim}
- {rdelim}
+ }
+ }
);
}
else
@@ -45,17 +45,17 @@
var search_text = document.getElementById('search_text').value;
new Ajax.Request(
'index.php',
- {ldelim}queue: {ldelim}position: 'end', scope: 'command'{rdelim},
+ {queue: {position: 'end', scope: 'command'},
method: 'post',
postBody: "module=Emails&action=EmailsAjax&ajax=true&file=ListView&folderid="+gFolderid+"&search=true&search_field="+search_field+"&search_text="+search_text,
- onComplete: function(response) {ldelim}
+ onComplete: function(response) {
$("status").style.display="none";
$('EmailDetails').innerHTML = '<table valign="top" border="0" cellpadding="0" cellspacing="0" width="100%"><tbody><tr><td class="forwardBg"><table border="0" cellpadding="0" cellspacing="0" width="100%"><tbody><tr><td colspan="2"> </td></tr></tbody></table></td></tr><tr><td style="padding-top: 10px;" bgcolor="#ffffff" height="300" valign="top"></td></tr></tbody></table>';
$("subjectsetter").innerHTML='';
$("email_con").innerHTML=response.responseText;
execJS($('email_con'));
- {rdelim}
- {rdelim}
+ }
+ }
);
}
More information about the vtigercrm-commits
mailing list