This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

How do I disable the "State Change" popup on workflow transition ?

Hey guys,

I want to hide the popup on state transition
so I came across the built in commands : BuiltinCommand_ChangeState and BuiltinCommand_ChangeStateAdmin

but I still see the popup.

Can someone please help me with that. Here's my code :


// Hides "Change state of workflow"
shellFrame.Commands.SetCommandState(
BuiltinCommand_ChangeState, CommandLocation_All, CommandState_Hidden );
// Hides "Change state of workflow" for administrator
shellFrame.Commands.SetCommandState(
BuiltinCommand_ChangeStateAdmin, CommandLocation_All, CommandState_Hidden );





Parents
  • If you want to disable this popup altogether in all workflows and for all users, please see this thread for the setting: community.m-files.com/index.php

    If some users would like to see the popup but others wouldn't, you can alternatively set this registry setting on individual client computers:

    Registry Key: HKEY_CURRENT_USER\Software\Motive\M-Files\\Client\MFShell\
    Value name: ShowChangeStateUI
    Value type: REG_DWORD (DWORD 32-bit Value)
    Value data: 0 = disabled, 1 = enabled

    These settings work with M-Files version 20.1.8669.3 and later.
Reply
  • If you want to disable this popup altogether in all workflows and for all users, please see this thread for the setting: community.m-files.com/index.php

    If some users would like to see the popup but others wouldn't, you can alternatively set this registry setting on individual client computers:

    Registry Key: HKEY_CURRENT_USER\Software\Motive\M-Files\\Client\MFShell\
    Value name: ShowChangeStateUI
    Value type: REG_DWORD (DWORD 32-bit Value)
    Value data: 0 = disabled, 1 = enabled

    These settings work with M-Files version 20.1.8669.3 and later.
Children