Ask a Question related to Macromedia Dynamic HTML, Design and Development.

  1. #1

    Default Advanced Form

    I want to create a form that will expand and reveal more fields based on a
    check box.
    Example: Addtional Contact Information? "yes" or "no" . If no form remains
    small, if yes form expands to reveal text fields for adding in additional
    contact information.

    Thanks,

    Dave Manley

    dkmanley Guest

  2. Similar Questions and Discussions

    1. Advanced form with database
      Hello I want to make a form with multiple rows with yes and no selection and with som text strings. The filled in information I want to store in a...
    2. advanced flash form
      I posted this in the rich form as well i hope that is ok. Ok I am almost there. I have built a flash form for gift certificate purchasing here...
    3. Advanced Conditional Statement and Disable Form
      Hi I have an advanced conditional statemet which basically shows an image when a recorset value = 0 Is it also possible to disable a form with an...
    4. Advanced Form Functionality?
      I am using classic asp, and I'm trying to develop a somewhat advanced form for a warehouse that I work for. Essentially the form (now referred to...
    5. advanced form validation extension
      I'm using the macromedia advanced form extension that I got of the exchange and I'm having some problems getting the radio button validator to work....
  3. #2

    Default Re: Advanced Form

    You can surround those fields that are to be hidden with a div, e.g.,

    <div>
    <input...>
    </div>

    And use CSS to style that div with display:none.

    Then, apply the Change Property behavior to the checkbox, where it would
    change the div from display:none to display:block, with an event of onFocus.

    Having done that, when the checkbox is selected, the newly revealed fields
    will be seen. This is a one-way street in that once revealed, they will not
    be hidden until the page is refreshed.

    --
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    [url]http://www.dreamweavermx-templates.com[/url] - Template Triage!
    [url]http://www.projectseven.com/go[/url] - DW FAQs, Tutorials & Resources
    [url]http://www.dwfaq.com[/url] - DW FAQs, Tutorials & Resources
    [url]http://www.macromedia.com/support/search/[/url] - Macromedia (MM) Technotes
    ==================


    "dkmanley" <webforumsuser@macromedia.com> wrote in message
    news:ei2kbg$966$1@forums.macromedia.com...
    >I want to create a form that will expand and reveal more fields based on a
    > check box.
    > Example: Addtional Contact Information? "yes" or "no" . If no form remains
    > small, if yes form expands to reveal text fields for adding in additional
    > contact information.
    >
    > Thanks,
    >
    > Dave Manley
    >

    Murray *ACE* 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