Bug 427115 - Report header to be static while scrolling
Summary: Report header to be static while scrolling
Status: REPORTED
Alias: None
Product: kmymoney
Classification: Applications
Component: reports (show other bugs)
Version: 5.0.6
Platform: Microsoft Windows Microsoft Windows
: NOR wishlist
Target Milestone: ---
Assignee: KMyMoney Devel Mailing List
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2020-09-29 12:47 UTC by Suresh PB
Modified: 2024-01-17 15:56 UTC (History)
1 user (show)

See Also:
Latest Commit:
Version Fixed In:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Suresh PB 2020-09-29 12:47:40 UTC
SUMMARY
The report header especially the column heading scroll, hence unable to recollect the column header.  User experience is deeply unusable.

STEPS TO REPRODUCE
1. Goto any report
2. When you have more than screen full of data, scroll down
3. column heading is no longer displayed (scrolled up and hidden)

OBSERVED RESULT
The report column heading are not visible when the content is scrolled

EXPECTED RESULT
Report column header to be static when scroll, so that user can easily identify the column.

SOFTWARE/OS VERSIONS
Windows: 
macOS: 
Linux/KDE Plasma: 
(available in About System)
KDE Plasma Version: 
KDE Frameworks Version: 
Qt Version: 

ADDITIONAL INFORMATION
Comment 1 Thomas Baumgart 2020-09-29 13:31:36 UTC
This is a known issue. Since reports are shown by an HTML renderer this is not as easy to implement as it seems. If anyone has a way howto do it with HTML/CSS: patches are welcome.
Comment 2 Suresh PB 2020-09-29 14:41:26 UTC
Quick browse of the web, this kind of css may help

#fixed-div {
    position: fixed;
    width: 30%;
    margin-top:290px;
    padding-top:20px;
    padding-bottom: 20px; /* must be same height as the footer */
    background-color: rgba(255, 255, 255, 0.60);
    min-height: 100%;
}
Comment 3 Suresh PB 2020-09-29 14:44:10 UTC
HTML part can be like:

<div id="fixed-div">
  <tr> 
   <td></td>
  </tr>
</div>

I am not an expert, but believe this can give pointers.
Comment 4 surcouf 2024-01-17 15:56:41 UTC
i would also appreciate this wishlist bug to be implemented some day.