Ask a Question related to Macromedia ColdFusion, Design and Development.

  1. #1

    Default cfgrid links

    I am able to generate a full grid of data, but I am unable to make any of the
    data cells into clickable links or buttons. I have a similar html grid, where
    all the data under the header is an href pointing to another script with
    additional info. I placed the href='' option in both the cfgrid, and
    cfgridcolumn tags but the grid does not have any executeable buttons. Any
    help would be great, a chunk of the code is available below <cfform
    format='flash' width='900' height='#Hvalue2#'> <cfgrid height='#Hvalue#'
    name='grid' selectmode='single' highlighthref='yes'> <cfgridcolumn
    header='Priority' name='PRTY' headeralign='center' dataalign='center' >
    <cfgridcolumn name='Rollup' > <cfgridcolumn name='a24Hours' header='24
    Hours' headeralign='center' dataalign='center' select='yes' display='yes'
    href='aging.cfm'> <cfgridcolumn name='a48Hours' header='48 Hours'
    headeralign='center' dataalign='center'> <cfgridcolumn name='a72Hours'
    header='72 Hours' headeralign='center' dataalign='center'> <cfgridcolumn
    name='a5Days' header='5 Days' headeralign='center' dataalign='center'>
    <cfgridcolumn name='a10Days' header='10 Days' headeralign='center'
    dataalign='center'> <cfgridcolumn name='a14Days' header='14 Days'
    headeralign='center' dataalign='center'> <cfgridcolumn name='a30Days'
    header='30 Days' headeralign='center' dataalign='center'> <cfgridcolumn
    name='a60Days' header='60 Days' headeralign='center' dataalign='center'>
    <cfgridcolumn name='a90Days' header='90 Days' headeralign='center'
    dataalign='center'> <cfgridcolumn name='a120Days' header='120 Days'
    headeralign='center' dataalign='center'> <cfgridcolumn name='a180Days'
    header='180+ Days' headeralign='center' dataalign='center'> <cfgridcolumn
    name='Total' headeralign='center' dataalign='center'> <cfgridrow
    data='#firstRow#'> </cfgrid> </cfform>

    t0ad 99 Guest

  2. Similar Questions and Discussions

    1. Adding previous and next links in the cfgrid
      I have been reading through a few of these topics, and have not found an answer to this question. Is there built in functionality within MX7 that...
    2. Resetting "Visited" links to "links" color when new browser opens
      HELP! This should be simple, but I can't find info: In using CSS for font color for text hyperlinks, I have mine set so that the "links" are a...
    3. When we move Image Links and HTML links
      On our Local Site (hard drive), our web projects is almost complete and we have already uploaded and sync the internet site (remote site). I have...
    4. ?Hard links, Soft links, & Aliases--Explain
      Hi All, Could some knowledgeable UNIX type please explain the differences between hard links, soft links, and traditional Mac aliases. Responses...
  3. #2

    Default Re: cfgrid links

    Here is a similiar thread.

    [url]http://www.macromedia.com/cfusion/webforums/forum/messageview.cfm?catid=7&threadid=961300[/url]

    eastinq 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