How can I hide the title bar of a radnotification window?
I've tried this way:
<telerik:RadNotification RenderMode="Lightweight" ID="RadNotification1" runat="server" EnableRoundedCorners="true" AutoCloseDelay="3500" Position="TopRight" OffsetX="-20" OffsetY="20" Opacity="95" ShowTitleMenu="false"  EnableShadow="true" Width="300" Height="100" VisibleTitlebar="false" ShowCloseButton="false"></telerik:RadNotification>
But all my settings are ignored. Title is still visible. Close button either.
I show it on postback:
RadNotification1.Text = "Il nuovo cliente รจ stato inserito.";RadNotification1.ContentIcon = "info";RadNotification1.Show();

