tracker issue : CF-4003807

select a category, or use search below
(searches all categories and all time range)
Title:

ColdFusion.Window.Create missing scrollbars

| View in Tracker

Status/Resolution/Reason: Closed/Fixed/

Reporter/Name(from Bugbase): Scott Money / Scott Money (Scott Money)

Created: 06/09/2015

Components: AJAX, UI Components

Versions: 11.0

Failure Type: Incorrect w/Workaround

Found In Build/Fixed In Build: CF11_Final /

Priority/Frequency: Normal / Few users will encounter

Locale/System: English / Win 2012 Server x64

Vote Count: 0

Listed in the version 2016.0.0.297996 Issues Fixed doc
Verification notes: verified_fixed on July 23, 2017 using build 2016.0.01.298513
Problem Description: ColdFusion.Window.Create missing scrollbars

Steps to Reproduce: Create any test page and use an image tag to call ColdFusion.Window.Create Onclick and include any large page that would normally produce scrollbars horizontally or vertically and they are missing. It appears that the overflow attribute is inactive as I have tried overflow: scroll and it still doesn't work.

I used the following:
<cfajaximport tags="cfwindow">
<img  border="1" src="/Utilities/Images/Icons/folders.ico" onclick="ColdFusion.Window.create('Window123','Sample Window','http://www.blueprintcss.org/tests/parts/sample.html',
        {x:100,y:100,height:500,width:500,modal:false,closable:true,
        draggable:true,resizable:true,center:true,initshow:true,refreshOnShow:false,
        minheight:200,minwidth:50})"/>

Actual Result:

No vertical scrollbars.

Expected Result:

Vertical scrollbars

Any Workarounds:

----------------------------- Additional Watson Details -----------------------------

Watson Bug ID:	4003807

External Customer Info:
External Company:  
External Customer Name: Scott
External Customer Email:  
External Test Config: My Hardware and Environment details:



Server Details  

Server Product  ColdFusion  

Version  11,0,0,289974  

Tomcat Version  7.0.52.0  

Edition  Enterprise    

Operating System  Windows Server 2012    

OS Version  6.2    

Adobe Driver Version  5.1.1 (Build 0001)    

JVM Details  

Java Version  1.7.0_55

Attachments:

  1. June 09, 2015 00:00:00: 1_RE__CF_11_ColdFusion.Window.pdf

Comments:

I have been working with Rahul at CFInstall on this issue.
Comment by External U.
7239 | June 09, 2015 07:52:40 AM GMT
This is probably due to the underlying changes in the JS framework that powers it. We had this issue and used the following CSS to allow modals with content larger than the set height to scroll. .x-panel-body > div { overflow: auto; }
Comment by External U.
7240 | June 15, 2015 04:09:11 AM GMT
Scott, As a workaround you can try using Chris's suggestion. The following test code worked for me. <html> <head> <style> div.x-panel-body { overflow: auto; } </style> </head> <body> <cfajaximport tags="cfwindow"> <cfform> <cfinput type="button" name="x" value="Create Window" onclick="ColdFusion.Window.create('Window123','Sample Window','http://localhost:8080/cfusion/CFIDE/administrator', { x:100,y:100, height:200,width:500, modal:false, closable:true, draggable:true, resizable:true, center:true, initshow:true, refreshOnShow:false, minheight:200,minwidth:50 })"/> </cfform> </body> </html>
Comment by Piyush K.
7241 | June 17, 2015 05:00:26 AM GMT
That worked great. Thanks a million for the support! I actually put this in the following file and it fixed the issue. E:\ColdFusion11\cfusion\wwwroot\CFIDE\scripts\ajax\resources\ext\css\ext-all.css
Comment by External U.
7242 | June 28, 2015 03:08:40 AM GMT
Verified this is fixed in CF2016 Update 1 (build 2016.0.01.298513). Thanks!, -Aaron
Comment by Aaron N.
7243 | July 23, 2017 04:01:45 AM GMT