ColdFusion.Window.create set bodystyle attribute

2009-11-12 Thread Joshua Rowe
How do I set the bodystyle attribute for the ColdFusion.Window.create() function? I tried creating a JavaScript object like so, but it didn't work: var windowConfig = new Object(); windowConfig.bodystyle = "background-color: white;"; ColdFusion.Window.create(name, title, url, windowConfig); I

Re: ColdFusion.Window.create set bodystyle attribute

2009-11-12 Thread Azadi Saryev
this code worked fine for me - a cfwindow with blindingly blue background popped up: doWindow = function() { var wConfig = new Object(); wConfig.bodystyle = "background-color: blue"; //changed it to 'blue' wConfig.center = true; //center the window on page ColdFusion.Window.crea

RE: ColdFusion.Window.create set bodystyle attribute

2009-11-13 Thread Joshua Rowe
aryev [mailto:az...@sabai-dee.com] Sent: Thursday, November 12, 2009 7:16 PM To: cf-talk Subject: Re: ColdFusion.Window.create set bodystyle attribute this code worked fine for me - a cfwindow with blindingly blue background popped up: doWindow = function() { var wConfig = new O

Re: ColdFusion.Window.create set bodystyle attribute

2009-12-08 Thread Bruno Nunes
Same for me. No matter what i do the style is always ugly gray. did you find a solution for this? thanks Bruno >Hmmm.. The background color is gray by default on my machine for whatever >reason. Also, for some reason, the headerstyle attribute works, but the >bodystyle attribute does not. I