Bhagavan 11-22-2009 Austin, Texas from Noni Kaufman on Vimeo.
Friday, November 27, 2009
Thursday, November 19, 2009
CRM 4.0 Notification
//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')
}
Monday, November 16, 2009
அம்மா பகவன்
அம்மா பகவான் உரை 15-11-2009
பகவான் அடிக்கடி சொல்லுவது மாற்றங்கள் மட்டும் தான் நிலையானது .. அதற்கு அமைய ஏகத்துவ கட்டமைப்பில் சில மாற்றங்கள். நீங்கள் அவருடைய திருவாயால் கேட்கலாம்... உங்களை நம்பிய மக்களுக்கு சரியான பாதைய காட்ட வேணும் என்னுடைய குருவாக ..................
Friday, November 13, 2009
Tuesday, November 10, 2009
Add Notification Message in CRM 4.0
Add Notification Message in CRM 4.0
//for notification//addNotification = function(message)
function addNotification(message) {
var notificationHTML = '
';
var notificationsArea = document.getElementById('Notifications');
if (notificationsArea == null) return;
notificationsArea.innerHTML += notificationHTML; notificationsArea.style.display = 'block';
}
call addNotification('Test ');
//for notification//addNotification = function(message)
function addNotification(message) {
var notificationHTML = '
' + message + ' |
var notificationsArea = document.getElementById('Notifications');
if (notificationsArea == null) return;
notificationsArea.innerHTML += notificationHTML; notificationsArea.style.display = 'block';
}
call addNotification('Test ');
Subscribe to:
Posts (Atom)