You might try this:
· Locate the stylesheet:
- You need to modify the stylesheet associated with the application. Typically, this can be found in the applications/maximo/maximouiweb/webmodule/webclient/css directory.
· Edit the CSS:
- Open the stylesheet in a text editor and add the following CSS to create a fixed header for the List tab:
css
Copy code
.fixed-header {
position: sticky;
top: 0;
background-color: #fff; /* Adjust as needed */
z-index: 1000; /* Ensure it stays on top */
}
· Apply the class to the header:
- You need to apply the fixed-header class to the header elements in your List tab. This requires modifying the XML file associated with your application.
- Locate the XML file in the applications/maximo/properties directory.
· Modify the XML:
- Open the XML file and find the table headers in the List tab section. Add the fixed-header class to the header elements. For example:
xml
Copy code
<table>
<thead>
<tr class="fixed-header">
<th>Column 1</th>
<th>Column 2</th>
<!-- Add other columns as needed -->
</tr>
</thead>
<tbody>
<!-- Table rows -->
</tbody>
</table>
· Deploy and test:
- Save your changes and deploy the modified files. Clear the cache and reload the application to see the changes.
------------------------------
Stevie Holloway
Tufts University
------------------------------