I coded a popup in ColdFusion 11 and want to popup content from a .cfm file in my localhost.
<cfajaximport tags="cfwindow">
<cfform name="test">
<cfinput type="button" name="x" value="S"
onClick="ColdFusion.Window.create('Window1', 'Member Listing -- Webpage Dialog','http://localhost/My_stuff/hello1.cfm',{x:100,y:100,height:300,width:300,modal:false,closable:true,draggable:true,resizable:true,center:true,initshow:true,
minheight:200,minwidth:200 })">
</cfform>
But it doesn't show any content inside the popup when I run the code. I read about popup from the ColdFusion.Window.create documenation.
Help me if I am missing something.