cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Feature Request: Make table headers sticky in Signavio Process Intelligence

anna_henke
Explorer
259

Hi,

currently the table headers in tables created within SAP Signavio Process Intelligence scroll together with the content. If the table headers would not scroll with the data, but stick as the first row, this would improve the usability and enhance the readability of tables with multiple columns.

Regards, Anna

Accepted Solutions (0)

Answers (1)

Answers (1)

umasaral
Contributor

Hi 

Currently, SAP Signavio Process Intelligence does not support sticky headers in tables. To improve usability, you can submit a feature request to SAP via the Influence portal or your support contact. As a workaround, export the data to Excel or similar tools where you can freeze headers for better readability. Alternatively, embed the table in an HTML page using CSS with `position: sticky` for headers. For immediate support, check the SAP Signavio community for potential custom solutions.

Temporary Workarounds

If embedding the table in an external webpage is an option (e.g., for sharing dashboards):

Use HTML with CSS to achieve sticky headers:

<style>
table {
border-collapse: collapse;
width: 100%;
}
th {
position: sticky;
top: 0;
background-color: #f2f2f2;
z-index: 1;
}
</style>
<table>
<thead>
<tr>
<th>Column 1</th>
<th>Column 2</th>
<th>Column 3</th>
</tr>
</thead>
<tbody>
<tr>
<td>Data 1</td>
<td>Data 2</td>
<td>Data 3</td>
</tr>
<!-- More rows -->
</tbody>
</table>

anna_henke
Explorer
0 Kudos
I was not aware that Signavio is now also available in the Influence Portal - that is great news!
chhanke
Discoverer
0 Kudos
When will this feature be available directly on the dashboard tables?