//Pirasanth
//CRM Notification
function addNotification(message)
{
var notificationHTML = ='';
' + message + '
var notificationsArea = document.getElementById('Notifications');
if (notificationsArea == null) return;
notificationsArea.innerHTML += notificationHTML;
notificationsArea.style.display = 'block';
}
call function
addNotification('Test Notification')
}
Thursday, November 19, 2009
CRM 4.0 Notification
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment