Hi,
I am trying to hide the notification when a user clicks anywhere on it - when the title bar is off.
I can use JQuery and have tried :
Setting OnClientClicked="test"
Next tried
Next tried OnClientShown=OnClientShown
Then tried Class = "NotificationTest"
But none of this is working. Please help.
Thanks
I am trying to hide the notification when a user clicks anywhere on it - when the title bar is off.
I can use JQuery and have tried :
Setting OnClientClicked="test"
function test() { alert("hahaha"); }Next tried
$('#' + "<%=radNotification.ClientID%>").click(function () { alert("ho ho ho"); });Next tried OnClientShown=OnClientShown
function OnClientShown(sender, args) { $(sender).click(function () { alert("ho ho ho"); }); }Then tried Class = "NotificationTest"
$('.NotificationTest').click(function () { alert("ho ho ho"); }); and even$('.RadNotification .RadNotification_Default .SLANotification .rnNoTitleBar').click(function () { alert("ho ho ho"); });But none of this is working. Please help.
Thanks