Ask a Question related to Coldfusion - Advanced Techniques, Design and Development.
-
jolejni #1
Displaying Images from Left to Right
Good evening folks, I was wondering if there is a way to output a series of
images in a table so that they list out from left to right. Currently I have
an output script which will display the images to the screen, however the list
from top down. If that makes sence? What I need is for the images to output
from left to right. <cfoutput query='Recordset1'
startrow='#StartRow_Recordset1#' maxrows='#MaxRows_Recordset1#'> <tr> <td
width='32%'>#Recordset1.ImageID#</td> <td width='24%'><div align='center'><img
src='#Recordset1.Image_Path#' width='50' height='50'> <input name='checkbox'
type='checkbox' value='#Recordset1.ImageID#'> </div></td> </tr> </cfoutput>
Any ideas or suggestions? Your assistance / help in this matter is greatly
appricated! Many thanks in advance, Jeremy
jolejni Guest
-
Help displaying images
I am trying to display many pictures. I get all the file names in an array, cycle through the array creating image objects, then add them to the... -
Displaying images dynamically
i am trying to display images dynamically on a page based on a user selection from a previous page. i have tried so many ways to achieve this but i... -
displaying images
i am tying to display images dynamically on a product detail page based on a user selection on a page which displays a list of products. i am using... -
Displaying images from a folder
I'm trying to display all the images in a particular folder. I'm using this cfdirectory: <cfset thisPath = "\\daytona\cflr\images\vehicle\" &... -
ASP Displaying Images from within SQL DB
I've been searching and searching for this and there are lots of posts - but very few answers. I have a SQL2000 Database that has jpg images in a... -
Kronin555 #2
Re: Displaying Images from Left to Right
<tr>
<cfoutput query="Recordset1" startrow="#StartRow_Recordset1#"
maxrows="#MaxRows_Recordset1#">
<td width="32%">#Recordset1.ImageID#</td>
<td width="24%"><div align="center"><img src="#Recordset1.Image_Path#"
width="50" height="50">
<input name="checkbox" type="checkbox" value="#Recordset1.ImageID#">
</div></td>
</cfoutput>
</tr>
Kronin555 Guest



Reply With Quote

