Initial option appearing in drop down menu

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

  1. #1

    Default Initial option appearing in drop down menu

    I am working on an application. If I click on a button I am transfered to a
    new page that displays a drop down message. When I navigate to this page I
    wish to display one particular option and not the other options. Normally this
    would not be too complicated. The complication is this - I have several ways
    of navigating to this page. It is only when I navigate to this page using the
    approach outlined above that I only want to display one option. If I navigate
    to this option from other areas of the site I want all options to appear in the
    drop down menu. I am wondering if someone can suggest a mechanism for doing
    this. Regards Toby

    toby007 Guest

  2. Similar Questions and Discussions

    1. Change option in second drop down box based on selectionof first drop down box
      Change option in second drop down box based on selection of first drop down box. Hi, I am trying to figure out how to make a selection in 1...
    2. illustrator CS drop shadow - blur not appearing as option
      Hi, when I try to use filter or effect drop shadow on objects or any thing in illustrator CS, the blur option is grayed out and not usuable. Even if...
    3. How do I build Drop Down menu using Menu magic with Database result
      Hi Every One. I resently purched Menu Magic Dropdown System. I would like to list my database content like news( few sentense with link ), Authers...
    4. Object drop downs not appearing
      I have an existing ASP file in a virtual directory. When I type server. or request. in this text file using Microsoft Script Editor I get a...
    5. dynamically populate drop down menu option value problem
      hi I was wondering if anyone can help me out on this.... I have dynamcally populated a drop down menu with data from an access database using...
  3. #2

    Default Re: Initial option appearing in drop down menu

    What about wrapping this particular button in a form and give the button
    a name buttonName, then on the receiving page:

    <cfif IsDefined("Form.buttonName")>
    one set of options
    <cfelse>
    the other set of options
    </cfif>

    Doug
    doug777 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