vtigerossez/modules/SMSNotifier/SMSNotifier.js

43 lines
1.4 KiB
JavaScript

/*+**********************************************************************************
* The contents of this file are subject to the vtiger CRM Public License Version 1.0
* ("License"); You may not use this file except in compliance with the License
* The Original Code is: vtiger CRM Open Source
* The Initial Developer of the Original Code is vtiger.
* Portions created by vtiger are Copyright (C) vtiger.
* All Rights Reserved.
************************************************************************************/
if(typeof(SMSNotifier) == 'undefined') {
var SMSNotifier = {
checkstatus : function(record) {
SMSNotifier.loadstatus(record, true);
},
loadstatus : function(record, query) {
var wrapper = $('tblStatusInformation');
if(typeof(query) == 'undefined') query = false;
if(wrapper) {
var url = 'module=SMSNotifier&action=SMSNotifierAjax&ajax=true&file=SMSNotifierStatusWidget&record=' + record;
if(query) {
url += '&mode=query';
}
$('vtbusy_info').show();
new Ajax.Request('index.php', {
queue: {position: 'end', scope: 'command'},
method: 'post',
postBody: url,
onComplete: function(response)
{
wrapper.innerHTML = response.responseText;
$('vtbusy_info').hide();
}
});
}
}
};
}