1
0
-1

I'm building a process that kicks off multiple async subflows, each of which has steps where the process stops and waits for some event to occur.  As a result, the process can have multiple assignments/activities pending at a time. When I view the record in a Datalist, it's hard to distinguish one activity from the other since there isn't a separator.  Is there a way to get a separator (i.e. a pipe | ) added between each one?

 

In this example, there are 3 pending activities.  1) Extract Blood, 2) Wait for Tumor, 3) Awaiting Specimen Processing

Thanks

    CommentAdd your comment...

    1 answer

    1.  
      2
      1
      0

      Hi, yes hopefully this is fixed in the next release. Currently I have used some custom CSS like below in my userview to add a border

      td.column_inboxAction a
          padding-left: 5px;
          padding-right: 5px;
          border-left: solid 1px black;
      }
      td.column_inboxAction a:first-child
          border-left: none;
      }
      1. Seth Klock

        That's perfect, thanks.

      CommentAdd your comment...