Bug 871803
| Summary: | Extended DataTable Scrollbar Disappears When Resizing Columns | ||
|---|---|---|---|
| Product: | [Retired] JBoss Enterprise WFK Platform 2 | Reporter: | Karel Piwko <kpiwko> |
| Component: | RichFaces | Assignee: | Brian Leathem <bleathem> |
| Status: | CLOSED CURRENTRELEASE | QA Contact: | Pavol Pitonak <ppitonak> |
| Severity: | medium | Docs Contact: | |
| Priority: | medium | ||
| Version: | 2.1.0 | CC: | kpiwko, mnovotny |
| Target Milestone: | CR1 | ||
| Target Release: | 2.1.0 | ||
| Hardware: | Unspecified | ||
| OS: | Unspecified | ||
| Whiteboard: | |||
| Fixed In Version: | Doc Type: | Bug Fix | |
| Doc Text: | Story Points: | --- | |
| Clone Of: | Environment: | ||
| Last Closed: | 2012-11-30 15:34:57 UTC | Type: | Bug |
| Regression: | --- | Mount Type: | --- |
| Documentation: | --- | CRM: | |
| Verified Versions: | Category: | --- | |
| oVirt Team: | --- | RHEL 7.3 requirements from Atomic Host: | |
| Cloudforms Team: | --- | Target Upstream Version: | |
| Embargoed: | |||
Brian Leathem <bleathem> made a comment on jira RF-12470 Possibly a duplicate of RF-12236 which was fixed in 4.3.0.M2 Brian Leathem <bleathem> made a comment on jira RF-12470 This issue indeed is a duplicate of RF-12236, and was resolved with this commit: https://github.com/richfaces/components/commit/144281e11eb9cb81e2da7ca114b4d5ba246afe94 Brian Leathem <bleathem> updated the status of jira RF-12470 to Resolved Brian Leathem <bleathem> updated the status of jira RF-12470 to Reopened Brian Leathem <bleathem> made a comment on jira RF-12470 re-opening to change status Brian Leathem <bleathem> updated the status of jira RF-12470 to Resolved fix is in product branch too http://git.app.eng.bos.redhat.com/?p=richfaces/components.git;a=commitdiff;h=77ecd7376c273c5e3beda77f8bdd8f35198d71dc Distributed as a part of WFK 2.1.0.GA release. |
Description of problem: Having issue with extended data table horizontal scroll bar disappearing when resizing columns. When researching the issue further in the extendedDataTable.js, I found that the scrollable element style display property was being set to NONE instead of BLOCK when a column was resized. My work around was to call the updateLayout function and set the scrollable element style display property to block. This has seemed to work thus far. document.onmouseup = function(e) { #{rich:component('EDT_NAME')}.updateLayout(); #{rich:component('EDT_NAME')}.scrollElement.style.display = "block"; }