on 2024 Nov 26 12:34 PM
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
Request clarification before answering.
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>
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
User | Count |
---|---|
31 | |
9 | |
8 | |
6 | |
6 | |
6 | |
6 | |
5 | |
5 | |
4 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.