Problem/Motivation
I want to create a custom view or customize one of the provided views that behaves similar to the task console. I can't accomplish this using the active handler because it doesn't work like the task console execute button.
Steps to reproduce
Create a custom task view and try to add an execute button like on the task console using the active handler, e.g.,
<a href="{{ active_handler }}" class="button">Execute</a>
when the button is clicked, the task is displayed in a different mode than the execute button on the task console, e.g., no submit request button on the form for the content type task.
If I manually construct a button with the same parameters as the task console, e.g.,
<a href="{{ handler }}&queueid={{ id }}" class="button">Execute</a>
I get the same behavior as the execute button on the task console.
Proposed resolution
What is the intended difference between the handler and the active_handler? What is the right way to accomplish replicating the execute button on a custom view?