We use cookies to give you the best experience on our website. If you continue to browse, then you agree to our privacy policy and cookie policy. Image for the cookie policy date
Unfortunately, activation email could not send to your email. Please try again.
Syncfusion Feedback

Trusted by the world’s leading companies

Syncfusion Trusted Companies

Overview

The ASP.NET MVC Ribbon control provides a structured and easy-to-use user interface for users to access different features and functions using a series of tabs, improving user experience and efficiency.

ASP.NET MVC Ribbon control


Tabs and groups

Provides a structured way to organize and group related functions, improving user experience by enabling quick access to specific features within categorized sections. Each group contains a launcher button that reveals additional functions, allowing users to explore and utilize more tools efficiently.

ASP.NET MVC Ribbon tabs and groups


Simplified layout

The ASP.NET MVC Ribbon offers a simplified mode that organizes items and groups into a single row for improved usability and reduced clutter. End users can quickly navigate to other commonly used items in the overflow menu and switch to normal mode using built-in toggle button.

ASP.NET MVC Ribbon simplified layout


Built-in Ribbon items

Several built-in support items, such as buttons, checkboxes, dropdown buttons, split buttons, combo boxes, and more can be customized and used to execute specific actions. Three size modes: large, medium, and small, are supported.

ASP.NET MVC Ribbon button item

Button items

Use different sized buttons to showcase content and icons in a visually appealing and interactive manner.

ASP.NET MVC Ribbon checkbox item

Checkbox items

Enables users to toggle between checked and unchecked states, caption the checkbox and position the label either before or after the checkbox.

ASP.NET MVC Ribbon dropdown button item

The dropdown button item functions like a regular button, but includes a dropdown menu that displays menu items.

ASP.NET MVC Ribbon split button item

Split button items

The split button item combines the functionality of a button with a dropdown menu, allowing users to perform a default action and access additional options.

ASP.NET MVC Ribbon combobox item

Combobox items

The combobox item combines a drop-down list with an editable textbox, enabling users to select from predefined pop-up list options.

ASP.NET MVC Ribbon colorpicker item

Colorpicker item

The color picker ribbon item enables users to select colors from a palette or define custom colors.


ASP.NET MVC Ribbon gallery

In addition to the existing built-in items, gallery items allow users to perform specific actions by displaying a collection of related items, including icons, content, or images.


Custom ribbon items

The ASP.NET MVC Ribbon supports templates to customize the ribbon items with any non-built-in items or HTML content.

ASP.NET MVC Ribbon custom item


ASP.NET MVC Ribbon contextual tab

Contextual tabs

The contextual tab allows users to display ribbon tabs on demand based on their needs. Similar to the normal ribbon tabs, it supports adding all built-in and custom ribbon items to execute specific actions.


Help pane

The help pane template, positioned at the right side of the Ribbon, enables users to access help content typically for actions such as managing document permissions, sharing functions, and more.

ASP.NET MVC Ribbon help pane


ASP.NET MVC Ribbon keytips

KeyTips

KeyTips enable users to quickly access the tabs or ribbon items using defined unique key tips (up to 3 characters). To display, press Alt + Windows/Command keys, and close or traverse back by pressing the Esc key.


Tooltips

The ASP.NET MVC Ribbon control supports tooltips to display information when hovering over items, offering users additional details, enhancing user experience.

ASP.NET MVC Ribbon tooltips


File menu

Supports a built-in menu that allows you to add file-related actions easily.

ASP.NET MVC Ribbon file menu


Backstage view

In addition to the traditional file menu, the backstage view displays information such as application settings, user information, etc. The backstage options are displayed on the left, while the content of each option is shown on the right.

ASP.NET MVC Ribbon backstage


Auto resize

The Ribbon efficiently manages space by expanding or collapsing groups, with larger groups collapsing first during resizing. Users can customize the order of groups according to their needs for a personalized Ribbon.

ASP.NET MVC Ribbon auto resize


Built-in themes

The ASP.NET MVC Ribbon supports these built-in themes: Tailwind CSS, Bootstrap 5, Bootstrap 4, Bootstrap, Material, Fabric, Fluent, and high contrast. Users can customize one of these built-in themes or create new themes to achieve their desired look and feel by simply overriding SASS variables or using the Theme Studio application.


Accessibility

  • Fully supports WAI-ARIA accessibility practices to work with screen readers and assistive devices.
  • Follows WAI-ARIA best practices for implementing keyboard interaction.
  • Follows WCAG 2.0 standards in design of the UI visual elements such as foreground color, background color, line spacing, text, and images.
  • Supports right-to-left (RTL) text direction for users working with RTL languages like Hebrew, Arabic, or Persian.

ASP.NET MVC Ribbon code example

Easily get started with the ASP.NET MVC Ribbon using a few simple lines of C# code example as demonstrated below. Also, explore our ASP.NET MVC Ribbon example that shows you how to render and configure the ASP.NET MVC Ribbon.

@using Syncfusion.EJ2
@using Syncfusion.EJ2.Navigations
@using Syncfusion.EJ2.Ribbon

@{
    List<MenuItem> pasteOptions = new List<MenuItem>() { new MenuItem { Text = "Keep Source Format" }, new MenuItem { Text = "Merge format" }, new MenuItem { Text = "Keep text only" } };
    List<MenuItem> tableOptions = new List<MenuItem>() { new MenuItem { Text = "Insert Table" }, new MenuItem { Text = "This device" }, new MenuItem { Text = "Convert Table" }, new MenuItem { Text = "Excel SpreadSheet" } };

    List<MenuItem> menuItems = new List<MenuItem>() {
        new MenuItem { Text = "New", IconCss = "e-icons e-file-new", Id="new" },
        new MenuItem { Text = "Open", IconCss = "e-icons e-folder-open", Id="Open" },
        new MenuItem { Text = "Save as", IconCss = "e-icons e-save", Id="save" }
    };
    FileMenuSettings FileMenuSettings = new FileMenuSettings() { Visible = true, MenuItems = menuItems };
}

<div id="control-section">
    @Html.EJS().Ribbon("ribbon").FileMenu(FileMenuSettings).Tabs(tab =>
    {
        tab.Header("Home").Groups(group =>
        {
            group.Header("Clipboard").Orientation(ItemOrientation.Column).Collections(collection =>
            {
                collection.Id("paste-collection").Items(items =>
                {
                    items.Type(RibbonItemType.SplitButton).Id("pastebtn").AllowedSizes(RibbonItemSize.Large).SplitButtonSettings(splitButton =>
                    {
                        splitButton.IconCss("e-icons e-paste").Items(pasteOptions).Content("Paste");
                    }).Add();
                }).Add();
                collection.Items(items =>
                {
                    items.Type(RibbonItemType.Button).ButtonSettings(button =>
                    {
                        button.IconCss("e-icons e-cut").Content("Cut");
                    }).Add();
                    items.Type(RibbonItemType.Button).ButtonSettings(button =>
                    {
                        button.IconCss("e-icons e-copy").Content("Copy");
                    }).Add();
                }).Add();
            }).Add();
        }).Add();
        tab.Header("Insert").Groups(group =>
        {
            group.Header("Tables").Collections(collection =>
            {
                collection.Items(items =>
                {
                    items.Type(RibbonItemType.DropDown).DropDownSettings(dropDown =>
                    {
                        dropDown.IconCss("e-icons e-table").Content("Table").Items(tableOptions);
                    }).Add();
                }).Add();
            }).Add();
        }).Add();
    }).Render()
</div>

85+ ASP.NET MVC UI CONTROLS

Our Customers Love Us

Having an excellent set of tools and a great support team, Syncfusion reduces customers’ development time.
Here are some of their experiences.

Rated by users across the globe

Transform your applications today by downloading our free evaluation version Download Free Trial

Awards

Greatness—it’s one thing to say you have it, but it means more when others recognize it. Syncfusion is proud to hold the following industry awards.

Up arrow icon
Live Chat Icon For mobile