House of Fusion
Search over 2,500 ColdFusion resources here
  
Home of the ColdFusion Community

Search cf-talk

July 04, 2009

<<   <   Today   >   >>
Su Mo Tu We Th Fr Sa
       1 2 3 4
5 6 7 8 9 10 11
12 13 14 15 16 17 18
19 20 21 22 23 24 25
26 27 28 29 30 31   

Home / Groups / ColdFusion Talk (CF-Talk)

Display image inside a cfwindow

Author:
Don L
10/09/2008 09:44 AM

> post your code. > > Azadi Saryev > Sabai-dee.com > http://www.sabai-dee.com/ The following simple code would work, however, code for my app won't, sorry it's a bit too complex and long to post.  Could you think of a way what might have prevented an image tag to fail?  Thanks. -- top level cf template <cfajaximport tags="cfwindow,cflayout-tab"> <html xmlns="http://www.w3.org/1999/xhtml">; <head> <title>Show image</title> </head> <body>   <cfwindow name="showImage"           title="image"           source="showImage.cfm"           closable="false"           initShow="true"           width="900"           height="566"           x=40           y=20         headerStyle="background-color:##BDD3FF;color:##FFFFFF"/>     </body> </html> -- secondary cf template <html> <head> <title>Untitled</title> </head> <body> test to show image <cflayout type="tab"> <cflayoutarea name="showmeImage" title="show me image"> <img src="/images/pyramid.bmp"> </cflayoutarea> </cflayout> </body> </html>


Mailing Lists