Genpact Cora Knowledge Center

Support

Create a Flowtime Page Without the Top Menu and Side Menu

Overview

You can customize any Flowtime page so that the header and side bar do not display on the page. You can customize any Flowtime page, for example, My Tasks, Notifications, Processes I started, and so on.

It is helpful to remove the top menu and side menu 

Procedure

For the Flowtime page that you want to remove the top menu and side menu for, add MasterPageFile="~/Layouts/Masters/Empty.master".

Example

In this example, we modify the My Tasks page so that only the grid displays for the end user.

<%@ Page Title="My Tasks" ResourceTitle="MyTasks" MasterPageFile="~/Layouts/Masters/Empty.Master" MenuId="Portal" SubMenuId="MyTasks" SelectedMenuItemId="MyTasks" SelectedSubMenuItemId="MyTasks" Language="C#" AutoEventWireup="true" CodeBehind="MyTasks.aspx.cs" Inherits="PNMsoft.Sequence.Runtime.Web.UI.Pages.MyTasks, PNMsoft.Sequence.Runtime.Web.UI, Version=8.0.0.0, Culture=neutral, PublicKeyToken=0a1a1b90c1c5dca1" %>
<%@ Register TagPrefix="sq" TagName="UserMessagesGridControl"
Src="~/_controltemplates/Flowtime/UserMessagesGridControl.ascx" %>
<asp:Content ID="Content" ContentPlaceHolderID="Content" runat="server">
<div class="sqpt-container">
<div class="sqpt-grid-control">
<sq:UserMessagesGridControl ID="UserMessagesGridControl" PageSize="20" DisplayVariables="true" ConfigName="Portal"
runat="server" MessageInstanceViewItemType="TaskOnly" />
</div>
</div>
</asp:Content>

Flowtime Displays

Default Flowtime display

Custom Flowtime display