Skip to main content
February 21, 2014
Question

coldfusion.window.create background-color

  • February 21, 2014
  • 2 replies
  • 604 views

How do I over-ride the gray screen color in a cfwindow that is created by coldfusion.window.create?

The following JS does not work for IE11 on Windows 8.1:

 

var

wConfig = new Object(); 

wConfig.bodystyle = "background-color: blue"; //changed it to 'blue'

wConfig.center = true; //center the window on page

ColdFusion.Window.create('mywin', 'test window', 'theUrl.com', wConfig);

The above launches the window fine, but keep the same gray color. The wConfig.center=true works, but not the bodystyle. I have also tried 'bodyStyle' as I hear CF10 is case-senstive(?) for URLs, given this is AJAX.

    This topic has been closed for replies.

    2 replies

    Carl Von Stetten
    Legend
    February 21, 2014

    Have you tried using your browser's developer tools to examine the CSS properties of the background being drawn by ColdFusion.Window?  If you can find the CSS property that contains the grey background color, maybe you can override it in a <style> block in the head of your page.

    -Carl V.

    February 21, 2014

    Excellent idea. Will try, thank you!