Customize Left Menu Grid
- Last UpdatedJun 10, 2024
- 1 minute read
The Left Menu Grid basically lists the name of the workflow which has been triggered.
To customize the Left Menu Grid of the Work item Control, follow the steps given below:
-
Open WorkItemControl.ascx page from the BPMUITemplates\Default\Workitemlist\UserControls folder.
-
You can find the Style Sheet in the [AVEVA Work Tasks Installed Path]\AVEVA\Work Tasks\Web\BPMUITemplates\Default\Common\StyleSheet\Global.css
-
Search for the Web Grid, where id="grdLeftMenu". [This is the Grid Left Menu ID].
To change background Color
-
You can change the background image of the Grid Left Menu by making changes in the FrameStyle tag of the Grid Left Menu.
-
Make the following changes in the attribute BackgroundImage of the FrameStyle tag by changing the existing image:
<FrameStyle BorderWidth="0px" BorderStyle="Solid" BackgroundImage="<%$ ReplaceTemplateExpn:default/WorkItemList/Images/title-bgNew.png%>" ></FrameStyle>
To change the selected row style
-
You can change the selected rowstyle of the Grid Left Menu by making change in the SelectedRowStyle tag of the Grid Left Menu.
<SelectedRowStyle CssClass="GridSelectedRowStyle">
-
Search for GridSelectedRowStyle in Global.css file and then make the following changes:
.GridSelectedRowStyle {
border-width:1px;
font-family:"Segoe UI", "Trebuchet MS";
font-size:8pt;
border-style:solid;
background-color:Red;
border-color:#ACA899;
color:#363636;
}