Bug #2714
closedView jumping at table select fields
Description
I've been entering archaeological data lately. When putting in archaeological finds (artifacts) the view jumps up to the top of the page whenever I enter an entity in the "Owned by" field. Would it be possible for the view to stay where it is?
Files
Updated by Alexander Watzinger 6 days ago
- Tracker changed from Feature to Bug
- Subject changed from View jumping when entering ownership to View jumping at table select fields
- Category set to UI
- Status changed from New to Closed
- Assignee set to Alexander Watzinger
- Target version set to 9.1.0
- Found in version set to 8.15.0
Thank you Nina for reporting and the nice movie about it :)
It turned out this issue (jumping to top of site) concerned table select files. The reason were HTML a tags with an href="#" attribute.
I removed the href attributes which solved the jumping problem, see commit
But because of than CSS problems (links without href weren't colored like the rest) I had to override the bootstrap reset CSS with adding snippet below to static/css/style.css.
Which likely isn't the most elegant way to deal with it so I added @Olivia Reichl as watcher and documented it in case she has a better solution.
a:not([href]):not([class]), a:not([href]):not([class]):hover {
color: #0d6efd;
cursor: pointer;
}
Anyway, the jumping issue is fixed in develop (and on demo-dev) but it may take a while till updated in THANADOS.