diff --git a/GUIs.Common/DocumentResultList/Params.vb b/GUIs.Common/DocumentResultList/Params.vb index 88626acc..4790a565 100644 --- a/GUIs.Common/DocumentResultList/Params.vb +++ b/GUIs.Common/DocumentResultList/Params.vb @@ -11,6 +11,7 @@ Namespace DocumentResultList Public ColumnNames As New ColumnNames Public OperationModeOverride As OperationMode = OperationMode.None Public ProfileGuid As Integer + Public ShowBackNavigation As Boolean = True End Class Public Class DocumentResult diff --git a/GUIs.Common/frmDocumentResultList.vb b/GUIs.Common/frmDocumentResultList.vb index 6aaf892a..57170603 100644 --- a/GUIs.Common/frmDocumentResultList.vb +++ b/GUIs.Common/frmDocumentResultList.vb @@ -205,6 +205,9 @@ Public Class frmDocumentResultList panelContainerStatus.Visibility = Docking.DockVisibility.Hidden End If + ' Hide the complete Navigation Ribbon Group if desired + RibbonPageGroup_Navigation.Visible = Params.ShowBackNavigation + UpdateTotalResults() LoadGridDataAndLayout()