This is a migrated thread and some comments may be shown as answers.

Hide contextmenu icon using standard skin

2 Answers 26 Views
Notification
This is a migrated thread and some comments may be shown as answers.
EanX
Top achievements
Rank 1
EanX asked on 09 May 2014, 10:02 AM
How hide notification context menu icon ?

<telerik:RadNotification ID="RadNotification1" Skin="Glow"    VisibleOnPageLoad="false" Animation="Fade" AutoCloseDelay="10000" runat="server" ContentScrolling="None" Height="260px" Position="Center" RenderMode="Auto"  TitleIcon="none"  ContentIcon="none" ShowTitleMenu="True" Title="DataBase NaN values report" TitleMenuToolTip="" Width="320px" EnableRoundedCorners="True" EnableShadow="True">
</telerik:RadNotification>

2 Answers, 1 is accepted

Sort by
0
Marin Bratanov
Telerik team
answered on 09 May 2014, 10:20 AM

Hi,

You need to set the ShowTitleMenu property to false. You may also want to set the VIsible property of the menu itself to false to prevent it from adding stylesheets, scripts and markup to the page. Here is a simple example:

<telerik:RadNotification ID="RadNotification1" runat="server" ShowTitleMenu="false">
    <NotificationMenu Visible="false"></NotificationMenu>
</telerik:RadNotification>



Regards,

Marin Bratanov
Telerik
 

Check out the Telerik Platform - the only platform that combines a rich set of UI tools with powerful cloud services to develop web, hybrid and native mobile apps.

 
0
EanX
Top achievements
Rank 1
answered on 13 May 2014, 07:08 AM
Thanks Marin!
Tags
Notification
Asked by
EanX
Top achievements
Rank 1
Answers by
Marin Bratanov
Telerik team
EanX
Top achievements
Rank 1
Share this question
or