repeating table with a twist

Ask a Question related to Dreamweaver AppDev, Design and Development.

  1. #1

    Default repeating table with a twist

    is there any sort of table in dreamweaver that repeats itself, but inserts a
    different column of a table for each row? or would i have to do this manually?
    the scenario is: i am creating a website which allows users to add tracks to an
    album, i already have a form which contains information such as album image and
    text, along with a submit button, i am now trying to insert the tracks for each
    album, each one representing a different column in the database.using the same
    submit button.

    the thing is i dont want to manually add each record to the form, as each
    album will have a different amount of tracks, leaving the remaining fields
    empty and the submit button right at the bottom of the page.. which the users
    might not be able to see.

    any advice would be great....

    bethan81 Guest

  2. Similar Questions and Discussions

    1. Formatting text in a repeating table in my template
      I am using a repeating table in my template for my home page. The table will be used to add text based hyperlinks to news articles. By default,...
    2. Shopping cart with a twist
      It's not your normal shopping cart; we don't sell tangible goods, we sell data so most of the existing shopping carts out there really won't work...
    3. CFDocument and repeating table headers
      I'm trying to output a multi-page report (essentially a large table) across multiple pages in PDF format. I know that the <cfdocumentitem> tag...
    4. Wither twist tool in cs?
      Is it my imagination, or has someone absconded with the twist tool in illustrator cs?
    5. Where's the twist tool in illustrator CS
      There used to be a convenient "Twist" tool located in the same group as the Rotate tool in Illustrator 10 which seems to be missing in CS. The Warp...
  3. #2

    Default Re: repeating table with a twist

    I think the best way to do it is going to be to have a fixed possible number of
    tracks in the form and in the database (say 30). You could have a layer(s) that
    allows the user to add more than say 15 tracks. You could then have a button
    that says 'add more tracks' which would then use the DW show hide layer
    behavior to put tracks 15-30 over 1-15 on the page. The submit button would
    then submit the enitre track list and the submit button wouldn't be below the
    page. You can also put a submit at the top and at the bottom of the page.
    code like: html head body form layer 1 - tracks 1-15 layer 2 - tracks
    16-30 add tracks button (call show/hide layer) submit button

    stevenlmas 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