Hi,
I have this code for example:
function(myvalue) {
$(“NotificationContent”).html(myvalue);
$(“NotificationAlert”).jqxNotification(‘open’);
}
After changing my notification control to use ‘appendContainer’. When the above function is called multiple times very quickly it duplicates the notifications rather than using the new myvalue for example.
I am calling the above function in an ajax call (which uses foreach) to loop through all the notifications.
If I remove the appendContainer it works fine, does the appendContainer do something else which could cause this?