Exit
  • Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
  • 한국 커뮤니티
0

CFwindow open but without content

Community Beginner ,
Nov 19, 2009 Nov 19, 2009

Hello everyone,

I have an issue with cfwindow, it usually work perfect, I'm trying to open the content of Help.cfm in a cfwindow. but when I test it it open the window but without content. just a blank window. ( I imported the cfwindow extension )

Here is my code :

calling page

<a href="#" onclick="openhelp()">Help</a></td>

the script

             function openhelp()
        {
  
    ColdFusion.Window.create('help', 'help', 'help.cfm?Window='+dt,  {x:100,y:100,height:700,width:880,modal:true ,initshow:true, closable:true, refreshOnShow:true
             })
        }

TOPICS
Getting started
521
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Explorer ,
Nov 19, 2009 Nov 19, 2009
LATEST

Hi!

Add before your code this line:

<cfajaximport tags="cfwindow">

And all be OK

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Resources