Auto increment VALUE attribute extension

Ask a Question related to Macromedia Exchange Dreamweaver Extensions, Design and Development.

  1. #1

    Default Auto increment VALUE attribute extension

    I was wondering if there was such an extension or a built in tool for
    Dreamweaver that searches for all <INPUT> tags of TYPE 'checkbox' and sets a
    unique value for the VALUE attribute.

    Example:

    I have 3 checkboxes as follows:

    <INPUT ID="chkOption1" TYPE="checkbox" VALUE="checkbox" />
    <INPUT ID="chkOption2" TYPE="checkbox" VALUE="checkbox" />
    <INPUT ID="chkOption3" TYPE="checkbox" VALUE="checkbox" />

    and I want the end result to change the VALUE attribute as follows:

    <INPUT ID="chkOption1" TYPE="checkbox" VALUE="1" />
    <INPUT ID="chkOption2" TYPE="checkbox" VALUE="2" />
    <INPUT ID="chkOption3" TYPE="checkbox" VALUE="3" />


    Problem is that I have thousands of those checkboxes instead of 3. So I was
    thinking maybe there is a value incrementing tool available somewhere that
    someone might know of that parses through all checkboxes or input tags.

    I hope that explains it. Thanks in advance guys.

    arzo2000 Guest

  2. Similar Questions and Discussions

    1. Auto Increment increase by 100 at a time?
      Hello, I would like my Auto Increment ID field, to increase by 100 at a time, as opposed to the normal 1. Is this possible? If so, how would I...
    2. MySQL DB auto-increment went crazy? How to reset?
      Hello, I am testing a site in which the order number column it the order header file is an auto-number integer. Today every time I try to place...
    3. How to Handle Primary Key Auto Increment?
      Hello, I'm needing some guidance with primary key generation. Oracle 8i db, I've got a table (PC) that uses unique numbers for the pk. Currently,...
    4. id after auto increment from a form
      Okay I am trying to get the id of the row that this form inputs into the table. The ID auto increments. Is this possible? Help or even code...
    5. Auto Increment a number field
      I have a memo field (History) and a number field (Count). What I require is that when the history field is updated then the count field will...
  3. #2

    Default Re: Auto increment VALUE attribute extension

    I think I know what you are wanting. You want to find and replace all the
    <input> tags or rather checkbox value. Well the only simple way is to go to the
    edit menu in Dreamweaver 8 and go down to: find and replace. Set it up so that
    is covers the entire website not just the page you are working on. You will
    need to put in the find box this code:

    VALUE="checkbox" />

    Then in the replace box:

    VALUE="what ever value" />

    maybe this will help, hope it does!

    Want free Macromedia tutorials on Studio 8?

    [url]http://www.avelx.co.uk[/url]

    Avelx webmaster 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