BPM, Workflow, and Case

BPM, Workflow, and Case

Come for answers. Stay for best practices. All we’re missing is you.

 View Only
  • 1.  How to wrap text in Table UI toolkit in IBM BPM 20.0.0.1

    Posted Wed May 05, 2021 04:14 AM

    I have a table contains List of Task including 4 columns: ID, Task Subject, PIC and Division. I want to wrap text in Task Subject columns to reduce the width of columns (because width of Columns depends on length of character).

    I have used the following instructions:

    Set Column Configuration with Render as Simple HTML and in CSS tag for Task Subject Columns I config it by using css (overflow:hidden; word-wrap: break-word;), just like the attached image description.

    But it doesn't work. Can you give me a solution for this problem?

    Thks!



    #BusinessAutomationWorkflow(BAW)
    #Support
    #SupportMigration


  • 2.  RE: How to wrap text in Table UI toolkit in IBM BPM 20.0.0.1

    Posted Wed May 05, 2021 04:20 AM

    Please click the link below to follow the attached image description:

    https://drive.google.com/drive/folders/1ktTei-svk2rJo7z_DflolGwgcSV4b3O2



    #BusinessAutomationWorkflow(BAW)
    #Support
    #SupportMigration


  • 3.  RE: How to wrap text in Table UI toolkit in IBM BPM 20.0.0.1

    Posted Fri August 20, 2021 08:41 PM

    Late response, but the CSS I use in the inline CSS is:

    .SPARKTable:not(.ts-condensed) .table>thead>tr>th,

    .SPARKTable:not(.ts-condensed) .table>tbody>tr>td {

    text-align: left;

    word-break: break-word;

    }



    #BusinessAutomationWorkflow(BAW)
    #Support
    #SupportMigration