Note: This bug is displayed in read-only format because the product is no longer active in Red Hat Bugzilla.

Bug 871803

Summary: Extended DataTable Scrollbar Disappears When Resizing Columns
Product: [Retired] JBoss Enterprise WFK Platform 2 Reporter: Karel Piwko <kpiwko>
Component: RichFacesAssignee: Brian Leathem <bleathem>
Status: CLOSED CURRENTRELEASE QA Contact: Pavol Pitonak <ppitonak>
Severity: medium Docs Contact:
Priority: medium    
Version: 2.1.0CC: 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:

Description Karel Piwko 2012-10-31 12:42:45 UTC
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";
}

Comment 1 JBoss JIRA Server 2012-10-31 21:06:11 UTC
Brian Leathem <bleathem> made a comment on jira RF-12470

Possibly a duplicate of RF-12236 which was fixed in 4.3.0.M2

Comment 2 JBoss JIRA Server 2012-10-31 22:54:39 UTC
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

Comment 3 JBoss JIRA Server 2012-10-31 22:57:04 UTC
Brian Leathem <bleathem> updated the status of jira RF-12470 to Resolved

Comment 4 JBoss JIRA Server 2012-10-31 22:59:28 UTC
Brian Leathem <bleathem> updated the status of jira RF-12470 to Reopened

Comment 5 JBoss JIRA Server 2012-10-31 22:59:28 UTC
Brian Leathem <bleathem> made a comment on jira RF-12470

re-opening to change status

Comment 6 JBoss JIRA Server 2012-10-31 22:59:57 UTC
Brian Leathem <bleathem> updated the status of jira RF-12470 to Resolved

Comment 9 Karel Piwko 2012-11-30 15:34:57 UTC
Distributed as a part of WFK 2.1.0.GA release.