DocumentResultList

This commit is contained in:
2023-04-25 11:51:45 +02:00
parent 88791832ec
commit a3f4beae25
6 changed files with 774 additions and 78 deletions

View File

@@ -184,6 +184,11 @@ Public Class frmDocumentResultList
If OperationMode = OperationMode.ZooFlow Then
RibbonPageGroupFilesystem.Visible = False
End If
If OperationMode = OperationMode.ZooFlow Then
RibbonPageGroupWorkflow.Visible = True
RibbonPageGroupCheckInOut.Visible = True
RibbonPageGroupAttribute.Visible = True
End If
cmbGridFontSize.Items.Clear()
cmbGridFontSize.Items.AddRange(FontSizeDeltaList)
@@ -210,7 +215,7 @@ Public Class frmDocumentResultList
If OperationMode = OperationMode.ZooFlow Or OperationMode = OperationMode.WithAppServer Then
CtrlObjectPropertyDialog.Initialize(LogConfig, Me, Client, Environment)
CtrlObjectPropertyDialog.Hide()
SwitchMainContainerHorizontal.Visibility = BarItemVisibility.Never
SwitchDetailContainerHorizontal.Visibility = BarItemVisibility.Never
End If
@@ -1078,7 +1083,7 @@ Public Class frmDocumentResultList
End Sub
Private Sub CtrlObjectPropertyDialog_Leave(sender As Object, e As EventArgs) Handles CtrlObjectPropertyDialog.Leave
RibbonPageGroupAttribute.Enabled = True
RibbonPageGroupAttribute.Enabled = False
End Sub
Private Sub GridView1_RowStyle(sender As Object, e As RowStyleEventArgs) Handles GridView1.RowStyle
@@ -1140,5 +1145,7 @@ Public Class frmDocumentResultList
End Function
End Class
Private Sub MenuItemStartAdhocWorkflow_ItemClick(sender As Object, e As ItemClickEventArgs) Handles MenuItemStartAdhocWorkflow.ItemClick
End Sub
End Class