Populating "checkboxes" - need help...

Ask a Question related to Coldfusion - Advanced Techniques, Design and Development.

  1. #1

    Default Populating "checkboxes" - need help...

    I have the following task:
    I display a CF form with several checkboxes (they control which columns to
    extract from a database).
    Initially I can display them as checked or non-checked.
    How to add two more checkboxes to "check" or "uncheck" them immediately on the
    screen when a user clicks ?
    I have a CF solution, but it requires an additional form (to transfer to).
    Anybody could suggest an elegant solution ?
    Will appreciate a lot !
    Gary.

    GaryNY Guest

  2. Similar Questions and Discussions

    1. Proj cannot run on LCDS 2.6 ES due to "Unable to resolveresource bundle "datamanagement" for locale "en_US"
      hi, all, We have developped an application on Flex Build 3 (run successfully), but failed when we try to deploy it on Tomcat with LCDS 2.5 ES...
    2. CheckBoxes in DataGrids-- the "checked" attribute not correct after posting page?
      Hi everyone, I'm using a DataGrid with TemplateColumns. My DataGrid is located in a cell of an asp:Table. I did this so it's positioned...
    3. CFINPUT type="radio" w/ "value" requires "label"
      On a Flash form, when you specify type='radio' and value='whatever', the value of the 'value' attribute will be displayed as a label if no 'label'...
    4. dr("field").toString returns "400.0000" instead of "400"
      I have just installed VS.NET 2003 on my computer. I have a project that I have been developing on VS.NET 2002. I haven't upgraded this project to...
    5. "Start" "Program" "Menu" list is empty
      For what ever reason my list of installed programs in my "Start" "Programs" menu is empty. Anyone know how to restore the list. Thanks for your...
  3. #2

    Default Re: Populating "checkboxes" - need help...

    [url]http://search3.webfeat.org/seflinds.html[/url]
    I hope this help

    jorgepino Guest

  4. #3

    Default Re: Populating "checkboxes" - need help...

    Sorry, did not understand - this is relatively big JavaScript page.
    I thought there is a CF solution with a small JS function (well may be).
    May be there is one ?
    GaryNY Guest

  5. #4

    Default Re: Populating "checkboxes" - need help...

    > I have the following task:
    > I display a CF form with several checkboxes (they control which columns
    to
    > extract from a database).
    > Initially I can display them as checked or non-checked.
    > How to add two more checkboxes to "check" or "uncheck" them immediately
    on the
    > screen when a user clicks ?
    I'm not sure if I understand correctly, but you want to simulate a click on
    2 additional checkboxes when the user checks a specific one ?

    See if this helps:

    <input type="checkbox" name="initial_checkbox"
    onclick="if(this.checked){this.form.additional1.ch ecked=true;this.form.addit
    ional2.checked=true;}">

    --
    <mack />


    Neculai Macarie Guest

  6. #5

    Default Re: Populating "checkboxes" - need help...

    This has nothing to do with ColdFusion. You can use JavaScript to check or
    uncheck a group of checkboxes. The code example below will loop through a set
    of checkboxes and either check or uncheck all of them.

    -Paul



    <SCRIPT LANGUAGE="JavaScript">

    function CheckAll(ca) {
    for (var i = 0; i < document.myform.mybox.length; i++) {
    if (ca.checked)
    {document.myform.mybox[i].checked = true;}
    else
    {document.myform.mybox[i].checked = false;}
    }
    }

    </SCRIPT>

    <FORM NAME="myform">
    <INPUT TYPE="checkbox" NAME="checkall" onClick="CheckAll(this)">Check all

    <INPUT TYPE="checkbox" NAME="mybox" VALUE="A">Box A
    <INPUT TYPE="checkbox" NAME="mybox" VALUE="B">Box B
    <INPUT TYPE="checkbox" NAME="mybox" VALUE="C">Box C

    dempster 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