Telerik is a leading vendor of ASP.NET AJAX, ASP.NET MVC, Silverlight, WinForms and WPF controls and components, as well as .NET Reporting, .NET ORM , .NET CMS, Code Analysis, Mocking, Team Productivity and Automated Testing Tools. Building on its expertise in interface development and Microsoft technologies, Telerik helps customers build applications with unparalleled richness, responsiveness and interactivity. Telerik products help thousands of companies to be more productive and deliver reliable applications under budget and on time.
Version Q1 2012 released 04/11/2012
select

RibbonBar / Server-side

The example now demonstrates the events of the Quick Access Toolbar items.
They are the same events of the original RadRibbonBar items.

Event log:

  • RadRibbonBar exposes the following server-side events:

    ApplicationMenuItemClick
    Raised when an application menu item is clicked.
    SelectedTabChange
    Raised when a non-selected tab is clicked.
    SplitButtonClick
    ButtonClick
    Raised when a Button is clicked.
    SpiltButtonClick
    Raised when a SplitButton item is clicked.
    MenuButtonClick
    Raised when a Menu Button is clicked.
    ButtonToggle
    Raised when a ToggleButton is toggled.
    ToggleListToggle
    Raised when a ToggleButton inside a ToggleList is toggled.

Source Code

C# VB.NET
Show code in new window Demo isolation steps
  • <%@ Page Language="C#" AutoEventWireup="true" CodeFile="DefaultCS.aspx.cs" Inherits="DefaultCS" %>

    <%@ Register TagPrefix="qsf" Namespace="Telerik.QuickStart" %>
    <%@ Register TagPrefix="qsf" TagName="Header" Src="~/Common/Header.ascx" %>
    <%@ Register TagPrefix="qsf" TagName="HeadTag" Src="~/Common/HeadTag.ascx" %>
    <%@ Register TagPrefix="qsf" TagName="Footer" Src="~/Common/Footer.ascx" %>
    <%@ Register TagPrefix="telerik" Namespace="Telerik.Web.UI" Assembly="Telerik.Web.UI" %>
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head runat="server">
        <qsf:HeadTag runat="server" ID="Headtag1" />
        <style type="text/css">
            .exampleBody
            {
                width: 854px;
                height: 170px;
                padding: 37px 13px 0 13px;
                background: url('icons/paint_back.png') no-repeat 1px 0;
            }
            
            .qsfDark .exampleBody
            {
                background: url('icons/paint_back_black.png') no-repeat 1px 0;
            }
            
            .qsfDark .qsfConsole
            {
                background: #333;
                border-color: #111;
            }
            
            .qsfDark .qsfConsole span
            {
                color: #CCC;
                border-color: #555;
            }
        </style>
    </head>
    <body class="BODY">
        <form runat="server" id="mainForm" method="post">
        <telerik:RadScriptManager ID="ScriptManager" runat="server" />
        <script type="text/javascript">
            function pageLoad() {
                var eventLog = $telerik.$(".qsfConsole")[0];
                eventLog.scrollTop = eventLog.scrollHeight;
            }
        </script>
        <telerik:RadAjaxManager runat="server">
            <AjaxSettings>
                <telerik:AjaxSetting AjaxControlID="RadRibbonBar1">
                    <UpdatedControls>
                        <telerik:AjaxUpdatedControl ControlID="RadRibbonBar1" />
                        <telerik:AjaxUpdatedControl ControlID="EventLogConsole1" />
                    </UpdatedControls>
                </telerik:AjaxSetting>
            </AjaxSettings>
        </telerik:RadAjaxManager>
        <qsf:Header runat="server" ID="Header1" NavigationLanguage="C#" />
        <qsf:InformationBox ID="InformationBox1" runat="server"
            Title="The example now demonstrates the events of the Quick Access Toolbar items.<br />They are the same events of the original RadRibbonBar items.">
        </qsf:InformationBox>
        <div class="exampleBody">
            <telerik:RadRibbonBar ID="RadRibbonBar1" runat="server"
                EnableQuickAccessToolbar="true"
             OnSelectedTabChange="RadRibbonBar1_SelectedTabChange"
                OnApplicationMenuItemClick="RadRibbonBar1_ApplicationMenuItemClick"
                OnButtonClick="RadRibbonBar1_ButtonClick"
                OnSplitButtonClick="RadRibbonBar1_SplitButtonClick"
                OnMenuItemClick="RadRibbonBar1_MenuItemClick"
                OnLauncherClick="RadRibbonBar1_LauncherClick"
                OnButtonToggle="RadRibbonBar1_ButtonToggle"
                OnToggleListToggle="RadRibbonBar1_ToggleListToggle">
                <ApplicationMenu Text="File">
                    <Items>
                        <telerik:RibbonBarApplicationMenuItem Text="New" ImageUrl="icons/file/New.gif" />
                        <telerik:RibbonBarApplicationMenuItem Text="Open" ImageUrl="icons/file/Open.gif" />
                        <telerik:RibbonBarApplicationMenuItem Text="Save" ImageUrl="icons/file/Save.gif" />
                        <telerik:RibbonBarApplicationMenuItem Text="Save As" ImageUrl="icons/file/SaveAs.gif" />
                        <telerik:RibbonBarApplicationMenuItem Text="Close" ImageUrl="icons/file/Close.gif" />
                    </Items>
                </ApplicationMenu>
                <Tabs>
             <telerik:RibbonBarTab Text="Home">
                 <telerik:RibbonBarGroup Text="Clipboard" EnableLauncher="true">
                     <Items>
                         <telerik:RibbonBarMenu QuickAccess="Active" Size="Large" Text="Paste" ImageUrl="icons/home/Paste.png">
                             <Items>
                                 <telerik:RibbonBarMenuItem Text="Paste" ImageUrl="icons/home/Paste.png" />
                                 <telerik:RibbonBarMenuItem Text="Paste Special..." ImageUrl="icons/home/Paste.png" />
                             </Items>
                         </telerik:RibbonBarMenu>
                         <telerik:RibbonBarButton Size="Medium" Text="Cut" ImageUrl="icons/home/Cut.png" />
                         <telerik:RibbonBarButton Size="Medium" Text="Copy" ImageUrl="icons/home/Copy.png" />
                         <telerik:RibbonBarButton Size="Medium" Text="Format" ImageUrl="icons/home/Format_Painter.png" />
                     </Items>
                 </telerik:RibbonBarGroup>
                 <telerik:RibbonBarGroup Text="Font">
                     <Items>
                         <telerik:RibbonBarToggleButton Size="Small" Text="Bold" ImageUrl="icons/home/font/Bold.png" />
                         <telerik:RibbonBarToggleButton Size="Small" Text="Italic" ImageUrl="icons/home/font/Italic.png" />
                         <telerik:RibbonBarToggleButton Size="Small" Text="Underline" ImageUrl="icons/home/font/Underline.png" />
                         <telerik:RibbonBarToggleButton Size="Small" Text="Strikethrough" ImageUrl="icons/home/font/Strike.png" />
                         <telerik:RibbonBarToggleList>
                             <ToggleButtons>
                                 <telerik:RibbonBarToggleButton Size="Small" Text="Superscript" ImageUrl="icons/home/font/Superscript.png" />
                                 <telerik:RibbonBarToggleButton Size="Small" Text="Subscript" ImageUrl="icons/home/font/Subscript.png" />
                             </ToggleButtons>
                         </telerik:RibbonBarToggleList>
                     </Items>
                 </telerik:RibbonBarGroup>
                 <telerik:RibbonBarGroup Text="Paragraph">
                     <Items>
                         <telerik:RibbonBarButtonStrip>
                             <Buttons>
                                 <telerik:RibbonBarButton Text="Align Left" ImageUrl="icons/home/paragraph/AlignLeft.png" />
                                 <telerik:RibbonBarButton Text="Align Center" ImageUrl="icons/home/paragraph/AlignCenter.png" />
                                 <telerik:RibbonBarButton Text="Align Right" ImageUrl="icons/home/paragraph/AlignRight.png" />
                                 <telerik:RibbonBarButton Text="Justify" ImageUrl="icons/home/paragraph/Justify.png" />
                             </Buttons>
                         </telerik:RibbonBarButtonStrip>
                         <telerik:RibbonBarButtonStrip>
                             <Buttons>
                                 <telerik:RibbonBarButton Size="Small" Text="Unordered List" ImageUrl="icons/home/paragraph/UL.png" />
                                 <telerik:RibbonBarButton Size="Small" Text="Numbered List" ImageUrl="icons/home/paragraph/OL.png" />
                             </Buttons>
                         </telerik:RibbonBarButtonStrip>
                         <telerik:RibbonBarButtonStrip>
                             <Buttons>
                                 <telerik:RibbonBarButton Size="Small" Text="Decrease Indent" ImageUrl="icons/home/paragraph/DecrIndent.png" />
                                 <telerik:RibbonBarButton Size="Small" Text="Increase Indent" ImageUrl="icons/home/paragraph/IncrIndent.png" />
                             </Buttons>
                         </telerik:RibbonBarButtonStrip>
                     </Items>
                 </telerik:RibbonBarGroup>
                 <telerik:RibbonBarGroup Text="Editing" EnableLauncher="true">
                     <Items>
                         <telerik:RibbonBarSplitButton QuickAccess="Active" Size="Medium" Text="Find" ImageUrl="icons/home/Find.png">
                             <Buttons>
                                 <telerik:RibbonBarButton Text="Find..." ImageUrl="icons/home/Find.png" />
                                 <telerik:RibbonBarButton Text="Go to..." ImageUrl="icons/home/Go.png" />
                             </Buttons>
                         </telerik:RibbonBarSplitButton>
                         <telerik:RibbonBarButton Size="Medium" Text="Replace" ImageUrl="icons/home/Replace.png" />
                         <telerik:RibbonBarMenu Size="Medium" Text="Select" ImageUrl="icons/home/Select.png">
                             <Items>
                                 <telerik:RibbonBarMenuItem Text="Select All" ImageUrl="icons/home/Select_All.png" />
                                 <telerik:RibbonBarMenuItem Text="Select Objects" ImageUrl="icons/home/Select.png" />
                             </Items>
                         </telerik:RibbonBarMenu>
                     </Items>
                 </telerik:RibbonBarGroup>
             </telerik:RibbonBarTab>
             <telerik:RibbonBarTab Text="Insert">
                 <telerik:RibbonBarGroup Text="Illustrations">
                     <Items>
                         <telerik:RibbonBarButton Size="Large" Text="Picture" ImageUrl="icons/insert/Picture.png" />
                         <telerik:RibbonBarButton Size="Large" Text="Clip Art" ImageUrl="icons/insert/Clipart.png" />
                         <telerik:RibbonBarMenu Size="Large" Text="Shapes" ImageUrl="icons/insert/Shapes.png" />
                         <telerik:RibbonBarButton Size="Large" Text="SmartArt" ImageUrl="icons/insert/SmartArt.png" />
                         <telerik:RibbonBarButton Size="Large" Text="Chart" ImageUrl="icons/insert/Chart.png" />
                     </Items>
                 </telerik:RibbonBarGroup>
                 <telerik:RibbonBarGroup Text="Links">
                     <Items>
                         <telerik:RibbonBarButton QuickAccess="Active" Size="Large" Text="Hyperlink" ImageUrl="icons/insert/Link.png" />
                         <telerik:RibbonBarButton Size="Large" Text="Bookmark" ImageUrl="icons/insert/Bookmark.png" />
                         <telerik:RibbonBarButton Size="Large" Text="Cross-reference" ImageUrl="icons/insert/Cross_reference.png" />
                     </Items>
                 </telerik:RibbonBarGroup>
             </telerik:RibbonBarTab>
             <telerik:RibbonBarTab Text="View">
                 <telerik:RibbonBarGroup Text="Zoom">
                     <Items>
                         <telerik:RibbonBarToggleList>
                             <ToggleButtons>
                                 <telerik:RibbonBarToggleButton QuickAccess="Active" Size="Large" Text="Zoom" ImageUrl="icons/view/Zoom.png" />
                                 <telerik:RibbonBarToggleButton Size="Large" Text="100%" ImageUrl="icons/view/100.png" />
                             </ToggleButtons>
                         </telerik:RibbonBarToggleList>
                         <telerik:RibbonBarToggleList>
                             <ToggleButtons>
                                 <telerik:RibbonBarToggleButton Size="Medium" Text="One Page" ImageUrl="icons/view/One_Page.png" />
                                 <telerik:RibbonBarToggleButton Size="Medium" Text="Two Pages" ImageUrl="icons/view/Two_Pages.png" />
                                 <telerik:RibbonBarToggleButton Size="Medium" Text="Page Width" ImageUrl="icons/view/Page_Width.png" />
                             </ToggleButtons>
                         </telerik:RibbonBarToggleList>
                     </Items>
                 </telerik:RibbonBarGroup>
                 <telerik:RibbonBarGroup Text="Macros">
                     <Items>
                         <telerik:RibbonBarSplitButton Size="Large" Text="Macros" ImageUrl="icons/view/Macros.png">
                             <Buttons>
                                 <telerik:RibbonBarButton Text="View Macros" ImageUrl="icons/view/Macros.png" />
                                 <telerik:RibbonBarButton Text="Record Macro..." ImageUrl="icons/view/Macros_Record.png" />
                             </Buttons>
                         </telerik:RibbonBarSplitButton>
                     </Items>
                 </telerik:RibbonBarGroup>
             </telerik:RibbonBarTab>
                </Tabs>
            </telerik:RadRibbonBar>
        </div>
        <qsf:EventLogConsole runat="server" ID="EventLogConsole1" Height="300px"/>
        <qsf:Footer runat="server" ID="Footer1" />
        </form>
    </body>
    </html>

Get more than expected!

Take your time to truly experience the power of RadControls for ASP.NET AJAX with a free 60-day trial backed up by Telerik’s unlimited dedicated support.

Download your RadControls for ASP.NET AJAX trial and jumpstart your development with the available Getting Started resources.

If you have any questions, do not hesitate to contact us at sales@telerik.com.

Copyright 2002-2012 © Telerik. All right reserved
Telerik Inc, 201 Jones Rd, Waltham, MA 02451