Laissez ouvert les documents après validation d'une étape
Dans le workflowControler.aspx.cs
Rajouter dans le keepWindowOpen :
if (ii != null &&
ii.NavigateRootParent != null &&
ii.NavigateRootParent.ExecutorProperties.ContainsKey("keepWindowOpen") &&
ii.NavigateRootParent.ExecutorProperties["keepWindowOpen"].ToString() == "true")
bKeepWindowOpen = true;
Sur la transition, ajouter :
instance.NavigateRootParent.ExecutorProperties["keepWindowOpen"] = "true";