Can we place repeat region on dynamic list/menu

Ask a Question related to Coldfusion Database Access, Design and Development.

  1. #1

    Default Can we place repeat region on dynamic list/menu

    Hey y'all:

    Having some problems with inserting all fields in a table from SQL db. While
    we manage to call up teh 5 rows from SQL using a list menu on our page, when we
    want to add a repeat region onto the list menu and we refresh the page, it only
    shows us the first row of that list (instead of all 5). Any suggestions?
    Should we use radio buttons instead?
    Thanks in advance.

    Fiogo Guest

  2. Similar Questions and Discussions

    1. repeat region
      Hi.. I use repeat region to view only 10 records at a time, so how can I have another link that when user click on next it will go to another 10 of...
    2. Dynamic List/Menu Drop Down
      I'm creating a form where a user selects their state from a dynamic drop-down list (which is pulled directly from a table in my access database),...
    3. Stumped on Dynamic List/Menu
      I keep posting hoping that someone will have an answer to this stumper: I want to show a product (wooden hanger) with one image, one name, and one...
    4. Multiple Dynamic List Menu Help
      Hello. I'm a programming novice and I'm trying to create a two dynamically populated list and or jump menus. I'd like there to be a parent / child...
    5. php repeat region
      Hey guys, question about PHP, I'm trying to help out a friend but I don't really know anything about php. I'm also pretty amaturish at asp. I...
  3. #2

    Default Re: Can we place repeat region on dynamic list/menu

    Yes, I've never had any problems doing it. I suspect you've just forgotten to
    wrap the size="#query.recordcount#" within a cfoutput tag.

    my code is basically like below. you'll have to add the brackets yourself,
    though.

    select name="thingy" size="cfoutput#query.recordcount#cfoutput"
    cfoutput query="otherthingy"
    option value="#query.id#" #query.name# option
    cfoutput

    jakp Guest

  4. #3

    Default Re: Can we place repeat region on dynamic list/menu

    Hey,
    thanks a lot for your reply, but we realized that our problem is that we are
    trying to insert multiple records in one table from one form on the same page
    and this, from what we have read, cannot be done, unfortunately. thanks again,
    mate and carry on...




    Fiogo 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