MVC: Replace the File Menu with a Backstage View Menu
Replace the Web.TextControl File menu with a full-page backstage view using JavaScript and CSS. The tutorial disables the default FILE ribbon handler, renders a vertical navigation panel with document options, and loads MVC partial views dynamically for each backstage menu section.

Microsoft Word provides a very smart way to manage documents and related data such as metadata and personal information in a separate view: The backstage view. The ribbon bar contains commands for working in a document and the backstage view provides options and commands to do to a document.
From a UX (user experience) point of view, the backstage view is very interesting. The user can focus on a specific task such as saving the document. A usual dialog box doesn't hide the document and doesn't provide as much space that is available in the backstage view.
In this project, a sample backstage view is implemented and opened when the user clicks on the ribbon FILE menu.
The following Javascript disables the original file menu in order to attach the backstage view on clicking the FILE menu:
TXTextControl.addEventListener("ribbonTabsLoaded", function (e) {
// remove the original file menu
$("#fileMenu").remove();
// open the new menu when the FILE menu is clicked
$("#tabFile").on("click", function () {
animateBackstage(0);
});
animateBackstage(1);
});
The backstage view itself consists of simple DIV elements and an unordered list for the vertical menu:
<div id="backstage" class="backstage">
<div class="menu">
<a onclick="animateBackstage(1)" href="#"><img src="~/img/back.png" /></a>
<ul id="menu">
<li><a id="View1" onclick="switchBackstageView('View1')" href="#">View 1</a></li>
<li><a id="View2" onclick="switchBackstageView('View2')" href="#">View 2</a></li>
<li><a id="View3" onclick="switchBackstageView('View3')" href="#">View 3</a></li>
<li><a id="View4" onclick="switchBackstageView('View4')" href="#">View 3</a></li>
</ul>
</div>
<div id="title" class="title"></div>
<div id="stage" class="stage"></div>
</div>
When a menu link is clicked, the function switchBackstageView is loading an MVC partial view dynamically:
function switchBackstageView(view) {
$('#menu li a').each(function () {
$(this).removeClass("active");
});
// add the title
$("#title").html("<h1>" + view + "</h1>");
$("#" + view).addClass("active");
// load the partial view dynamically
$("#stage").load("/home/getview", { viewName: view });
}
This blog entry will be part of a series that shows how to add several tasks to a backstage view such as loading, saving and printing documents. Stay tuned!
Download the sample from GitHub and test it on your own.
![]()
Download and Fork This Sample on GitHub
We proudly host our sample code on github.com/TextControl.
Please fork and contribute.
Requirements for this sample
- Visual Studio 2012 or better
- TX Text Control .NET Server (trial sufficient)
ASP.NET
Integrate document processing into your applications to create documents such as PDFs and MS Word documents, including client-side document editing, viewing, and electronic signatures.
- Angular
- Blazor
- React
- JavaScript
- ASP.NET MVC, ASP.NET Core, and WebForms
Related Posts
MVC: Loading Files from the Backstage Menu
An MVC partial backstage view lists available files from a directory using a simple document model. When a user clicks a file, JavaScript sends an AJAX request to an HttpPost controller method…
MVC: Replace the Ribbon Table Menu with a Quick Insert Table Drop-down
Replace the default Web.TextControl ribbon table button with a grid-based quick insert dropdown using JavaScript. The tutorial renders a visual row-and-column picker, sends the selected dimensions…
MVC: Arrange a Docked Web.TextControl with a Custom Bar at the Top
Position a docked Web.TextControl below a custom toolbar bar in an MVC view by using CSS and JavaScript to offset the editor. The tutorial wraps the control in a DIV, sets absolute positioning…
MVC: Autosave and Restore Documents to and from the Local Browser Storage
Web.TextControl documents are autosaved to browser localStorage at five-second intervals using the JavaScript saveDocument method. On page reload, the ribbonTabsLoaded event checks for stored…
MVC: Loading and Saving Documents Through Controller HttpPost Methods
Web.TextControl X13 for ASP.NET MVC provides document load and save operations through controller HttpPost methods. The JavaScript API serializes documents as Base64, posts them via jQuery AJAX to…
