Ordered list in cfoutput?

Ask a Question related to Coldfusion - Getting Started, Design and Development.

  1. #1

    Default Ordered list in cfoutput?

    I'm trying to create an ordered list that will display a list of profiles
    numerically. I've tried placing the OL both outside the cfoutput statement as
    well as inside, and I still cannot get it to work. Any ideas? Below is a
    snippet of the code:

    <table border="0" cellpadding="0" cellspacing="0">
    <OL>
    <cfoutput query="getprofiles">
    <tr>
    <td> <a onclick="var agree=confirm('Are you sure you want to delete
    '+'#getprofiles.name#'+' ?');if (agree)return true ;else return false ;"
    href="#currentpage#?delete=0&c_id=#getprofiles.c_i d#"><font size="2"
    color="blue" face="Verdana, Arial, Helvetica, sans-serif">|Delete|</font></a>
    <a href="updatecustprofiles.cfm?c_id=#getprofiles.c_i d#"><font size="2"
    color="blue" face="Verdana, Arial, Helvetica,
    sans-serif"><u><strong>#getprofiles.name#</strong> - <cfif getprofiles.pin neq
    "">PIN:#getprofiles.pin#<cfelse><font
    color="red">Undefined</font></cfif></u></font></a></td>
    </tr>
    </cfoutput>
    </OL>
    </table>

    SquiSh1717 Guest

  2. Similar Questions and Discussions

    1. Convert Shared Object properties into ordered array
      I need to put the shared object data (that contains the client names) into an ordered array. The following is NOT useful: for (var i in...
    2. Make ordered list
      Hello, I have several list items for which I'd like to make an ordered list using Roman Large numbers (I,II,III,)... Each time I press the ordered...
    3. Randomly Ordered Recordset
      Hello everyone, I'm using MX04, Access, VB Script. I need to select 10 unique records and randomly order them. I've done quite a bit of...
    4. How to sort 2 arrays and keep indices ordered?
      Hi all, Is there an easy way to sort 2 arrays and keep the relating indices together. for instance I have an array of times, and an array of...
    5. selecting ordered groups out of a table
      Rainer Gauweiler wrote: with recent_orders as ( select customer, invoice-nr, date, row_number() over (partition by customer, order by date...
  3. #2

    Default Re: Ordered list in cfoutput?

    You're missing your '<li>' tags, if that's the problem.
    BSterner Guest

  4. #3

    Default Re: Ordered list in cfoutput?

    I think you want to do it like this:

    <table border="0" cellpadding="0" cellspacing="0">
    <tr>
    <td>
    <ol>
    <cfoutput query="getprofiles">
    <li><a onclick="var agree=confirm('Are you sure you want to delete '+'#getprofiles.name#'+' ?');if (agree)return true
    ;else return false ;" href="#currentpage#?delete=0&c_id=#getprofiles.c_i d#"> <font size="2" color="blue" face="Verdana, Arial,
    Helvetica, sans-serif">|Delete|</font></a> <a href="updatecustprofiles.cfm?c_id=#getprofiles.c_i d#"><font size="2" color="blue"
    face="Verdana, Arial, Helvetica, sans-serif"><u><strong>#getprofiles.name#</strong> -
    <cfif getprofiles.pin neq "">
    PIN: #getprofiles.pin#
    <cfelse>
    <font color="red">Undefined</font>
    </cfif>
    </u></font></a> </li>
    </cfoutput>
    </ol>
    </td>
    </tr>
    </table>


    --
    Ken Ford
    PVII Support Team
    [url]http://www.projectseven.com[/url]
    Team Macromedia Volunteer - Dreamweaver
    Certified Dreamweaver MX 2004 Developer



    "SquiSh1717" <webforumsuser@macromedia.com> wrote in message news:dan0do$inu$1@forums.macromedia.com...
    : I'm trying to create an ordered list that will display a list of profiles
    : numerically. I've tried placing the OL both outside the cfoutput statement as
    : well as inside, and I still cannot get it to work. Any ideas? Below is a
    : snippet of the code:
    :
    : <table border="0" cellpadding="0" cellspacing="0">
    : <OL>
    : <cfoutput query="getprofiles">
    : <tr>
    : <td> <a onclick="var agree=confirm('Are you sure you want to delete
    : '+'#getprofiles.name#'+' ?');if (agree)return true ;else return false ;"
    : href="#currentpage#?delete=0&c_id=#getprofiles.c_i d#"><font size="2"
    : color="blue" face="Verdana, Arial, Helvetica, sans-serif">|Delete|</font></a>
    : <a href="updatecustprofiles.cfm?c_id=#getprofiles.c_i d#"><font size="2"
    : color="blue" face="Verdana, Arial, Helvetica,
    : sans-serif"><u><strong>#getprofiles.name#</strong> - <cfif getprofiles.pin neq
    : "">PIN:#getprofiles.pin#<cfelse><font
    : color="red">Undefined</font></cfif></u></font></a></td>
    : </tr>
    : </cfoutput>
    : </OL>
    : </table>
    :


    Ken Ford - *TMM* & PVII Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

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 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139