Our Blog

If you ever tried to bind a checkbox in a flash form, your experience may have been something like this:

  • Tried using the bind attribute: bind="{ myField.selected}" and didn't see anything happening to the checkbox.
  • Tried using the bind syntax in the checked attribute: checked="{myField.selected}" or similar, only to get a ColdFusion error message: “Attribute validation error for tag CFINPUT. The value of the attribute CHECKED is invalid…”
  • Finally gave up and added the action to the onchange attribute of the field you wanted to bind to:
    onchange="myCheckbox.selected= myField.selected"

While the last step works, it may mean that all other fields use the binding expect for the checkbox (you will run into other problems with radio buttons :( )

It just so happens that flash form checkboxes do not work as html checkboxes. In html we can have several checkboxes with the same name and the action page will get a list of the checked values. In flash forms, we can’t do that. If we do so, we will get the following compilation error: “id ‘nameOfCheckbox’ was already defined on line [some number]”. That means we need to have a different name for every checkbox. In the action page we get true/false depending whether the checkbox was selected or not, not the checkbox value, which is completely ignored.

Going back to the binding, we can use the “value” attribute instead and bind it to other controls. The simplest example, where the second checkbox is bound to the first one:

<cfinput type="checkbox" name="checkbox1">
<cfinput type="checkbox" name="checkbox2" value="{checkbox1.selected}" label="Second">

Note: checkbox must have a label (it won’t compile otherwise) because if there is no label, it takes the value attribute and because the value with the binding evaluates to Boolean, it won’t be accepted as a label, which should be a string.

The value should be a Boolean expression, something that is already true/false, like checkbox1.selected or something that evaluates to true/false, like myField.text == 'monkey'
That is the reason why if we want to bind to a column in a cfgrid, even if is it a Boolean column, we must write: {myGrid.selectedItem.checked=='true'}

View live example
Download source

Last note: there is a small bug if the grid is editable, but you get the idea.

Laura

Laura

39 Comments

  1. Brian Rinaldi
    Thanks for the solution. I had just dealt with this in trying to make a modified version of the app you walk-through in your CFDJ article. I had done the onchange solution when I could not locate a better one. I posted my experiences in building my first flash form app here: http://www.remotesynthesis.com/blog/index.cfm?mode=entry&amp;entry=3998D019-D610-4595-041C850641AA5018
  2. Tony Bianco

    Tony Bianco

    how do you grab the value not the text of a cfselect in a flash form? When I reference it via #FORM.SelectName# it grabs the text that is displayed and not the actual value of &lt;option value=&quot;theValue&quot;&gt;The Text Shown&lt;/option&gt;
  3. Kurtis D. Leatham
    Any advice for this example??? I have a query that selects a list of people that I am using to create my select grid. Then I have another query that creates a list of check boxes (items a person is associated to all yes or no type of things). Finally I have a third query that returns all of the items that each person is associated to. How would I update my checkboxes when I select a person from my select grid???
  4. Sid Wood

    Sid Wood

    I have a cfgrid containing a list of products. One of the grid columns is a list of category IDs that the product belongs to. On the product form, I have a dynamic list of checkboxes, one for each category. I need to bind the grid column of category IDs to the dynamic list of checkboxes. How can I do this? Any assistance would be very much appreciated.
  5. Sid,
    What do you mean by a dynamic list of checkboxes, is that a repeater?
  6. Sid Wood

    Sid Wood

    Yeper, its a repeater. I've got a solution in place now but I'm not too happy with it. I've basically looped through the categories adding a column for each one in the products result set then loop through each line setting it to false. When a product belongs to a category I set the query cell to true then I bind the checkbox to the column. It uses sooo many loops though that it makes me sick.. and as I add more and more categories I recon the load time wil become unreasonable.
  7. Steve Sequenzia

    Steve Sequenzia

    Help..

    I am trying to bind based on radio buttons and it is not working. Here is part of my code:


    &lt;cfform name=&quot;form1&quot; format=&quot;flash&quot;&gt;

    &lt;cfinput name=&quot;assign&quot; type=&quot;radio&quot; value=&quot;1&quot; label=&quot;Assign to Tech&quot;&gt;
    &lt;cfinput name=&quot;assign&quot; type=&quot;radio&quot; value=&quot;2&quot; label=&quot;Assign to Queue&quot;&gt;

    &lt;cfinput type=&quot;text&quot; name=&quot;tech&quot; label=&quot;Assign to tech&quot; width=&quot;150&quot; visible=&quot;{assign.selectedData}&quot;&gt;
    &lt;cfinput type=&quot;text&quot; name=&quot;queue&quot; label=&quot;Assign to queue&quot; width=&quot;150&quot; visible=&quot;{assign.selectedData}&quot;&gt;

    &lt;/cfform&gt;


    As you can see, I am trying to make input boxes visible based on which radio button is selected. I would like for the boxes not to be visible unless the appropriate radio button is selected, but I am not sure how to do it.

    Any help on this would be greatly appreciated.

    Thanks
  8. Connie Decinko
    Kurtis, did you ever get a resolution to your issue? Mine is very similar. I modified the address book demo here and need to add some check boxes of questions associated with each person. I had to jump through hoops to get a summary list from the db of which they had checked. Seems like a hack, especially due to an MXML bug, but it works. Now, I can get the list of questions to display, but I have to figure out how to check the appropriate boxes.
  9. Nolan Dubeau

    Nolan Dubeau

    I am working on a similar example which &quot;binds&quot; a checkbox to the boolean value of a cfgrid. When the grid data loads the checkbox binding works correctly. However if I refresh the data of the grid via Flash Remoting, the binding breaks on the checkbox. I can send an example if you like. Any ideas? Thanks very much.
  10. Laura
    Nolan,
    Try doing the following:
    {myGrid.selectedItem.checked.toString()=='true'}

    (remember that checked is simply the name of the column)
    The problem is that when the data comes from remoting is a true boolean, but when the data loads normally, it is a string if I remember correctly.
  11. Prem
    I know that this post is pretty old but ever tried using actionscript functions like
       &lt;cfformitem type=&quot;script&quot;&gt;
          function changeNewRepairPanel():Void {
             if (newrepair.selectedData == &quot;N&quot;) {
                newpanel.visible = true;
                newpanel.width = 250;
             } else {
                newpanel.visible = false;
                newpanel.width = -1;
             }
             if (newrepair.selectedData == &quot;R&quot;) {
                repairpanel.visible = true;
                repairpanel.width = 250;
             } else {
                repairpanel.visible = false;
                repairpanel.width = -1;
             }
          }
       &lt;/cfformitem&gt;
  12. Prem
    I forgot to add my question. I want a checkbox checked or unchecked based on the results of query
    I have found a slightly lengthy workaround. I was wondering if anyone found an easy way.
  13. Juha
    I'm trying to create a flash form with 3 radio buttons, let's call them 1, 2 &amp; 3, if number 1 or 2 is selected and submit clicked, this would open the results into new window but if number 3 is selected results open in same windows. Any ideas how to do this?
  14. Thomary

    Thomary

    &lt;cfinput type=&quot;checkbox&quot; label=&quot;Is Checked?&quot; name=&quot;selectedChbx&quot; value=&quot;{contactList.selectedItem.checked=='true'}&quot; /&gt;
    This works fine for me. Now if the checkbox is true in the database this checkbox is checked. Now if I uncheck it how do I get the database to show false? or vise versa? I thought I could do a &lt;cfif isdefined(&quot;form.selectedChbx&quot;)&gt; OR
    &lt;cfif isdefined(&quot;form.selectedChbx&quot;)&gt; is true&gt;
    set databasename = &quot;true&quot;,
    It seems the value =='true' always makes the isdefined equal to true.
    Please any help would be greatly appreciated.
  15. Jedale

    Jedale

    I am trying to modify some code that I found at http://www.asfusion.com/blog/examples/cfdj/ with no luck. It seems like previous posts are inquiring about a similar problem.

    I am trying to insert radio buttons at the bottom of the form that will make different panels visible or invisible depending on which radio button is selected. I have a working version with checkboxes which disables others based on if it was checked or not. I would like to have my users select radio buttons because then you wouldn't have to uncheck a box to check another. It would be alot smoother with radio buttons! Is this possible with a radio button and the use of actionscript? I am having no luck with them.

    The code that I have been using to work this problem is below...

    Thank you in advance!

    Jeff


    &lt;cfform action=&quot;#cgi.script_name#&quot; method=&quot;post&quot; name=&quot;addressBook&quot; format=&quot;flash&quot; width=&quot;100%&quot; height=&quot;100%&quot;&gt;

    &lt;cfformgroup type=&quot;vbox&quot; style=&quot;verticalGap:2&quot; width=&quot;700&quot;&gt;
    &lt;cfformgroup type=&quot;panel&quot; label=&quot;Preview&quot;&gt;
    &lt;/cfformgroup&gt;

    &lt;!--- visible and height bounded to editShow checkbox ---&gt;
    &lt;cfformgroup type=&quot;panel&quot; visible=&quot;{edit[2] != true}&quot; height=&quot;{edit[2] != true ? 200 : 0}&quot;
    label=&quot;Edit Personal Information&quot;&gt;

    &lt;/cfformgroup&gt;

    &lt;!--- visible and height bounded to editEmergency Contacts checkbox ---&gt;
    &lt;cfformgroup type=&quot;panel&quot; visible=&quot;{edit[3] != true}&quot; height=&quot;{edit[3] != true ? 200 : 0}&quot;
    label=&quot;Edit Personal Information&quot;&gt;

    &lt;/cfformgroup&gt;

    &lt;cfformgroup type=&quot;panel&quot; height=&quot;23&quot;&gt;
    &lt;cfformgroup type=&quot;horizontal&quot;&gt;
    &lt;!--- edit checkbox's are initially unchecked ---&gt;
    &lt;cfinput type=&quot;radio&quot; name=&quot;edit&quot; value=&quot;none&quot; label=&quot;Preview&quot;/&gt;
    &lt;cfinput type=&quot;radio&quot; name=&quot;edit&quot; value=&quot;editShow&quot; label=&quot;Show Edit Window&quot;/&gt;
    &lt;cfinput type=&quot;radio&quot; name=&quot;edit&quot; value=&quot;editContact&quot; label=&quot;Show Contacts Window&quot;/&gt;

    &lt;/cfformgroup&gt;
    &lt;/cfformgroup&gt;
    &lt;/cfformgroup&gt;
    &lt;/cfformgroup&gt;
    &lt;/cfform&gt;
  16. Rodrigo
    Having problems with this radio button bindings...

    &lt;cfform name=&quot;Frm_docs&quot;
          format=&quot;flash&quot;
          preloader=&quot;true&quot;&gt;
       &lt;cfformgroup type=&quot;panel&quot;
          width=&quot;100%&quot;
          label=&quot;My Stuff&quot;&gt;
             &lt;cfinput type=&quot;hidden&quot; name=&quot;hdn_coord_id&quot; value=&quot;14&quot;&gt;
             &lt;cfinput type=&quot;radio&quot; name=&quot;rd_action&quot; value=&quot;true&quot; label=&quot;Accept&quot; checked=&quot;yes&quot;&gt;
             &lt;cfinput type=&quot;radio&quot; name=&quot;rd_action&quot; value=&quot;false&quot; label=&quot;Reject&quot;&gt;
          &lt;/cfformgroup&gt;
          &lt;cfformgroup type=&quot;hbox&quot;&gt;
             &lt;cftextarea name=&quot;txt_docInfo&quot;
                enabled=&quot;{rd_action.selectedData}&quot;
                cols=&quot;20&quot;
                rows=&quot;5&quot;
                label=&quot;Type some info here!&quot;&gt;This must be disabled when checking on &quot;Reject&quot;!&lt;/cftextarea&gt;
             &lt;cfinput type=&quot;text&quot; bind=&quot;{rd_action.selectedData}&quot; name=&quot;test_radio&quot; enabled=&quot;false&quot; label=&quot;Radio group value test&quot;&gt;
    &lt;cfinput type=&quot;submit&quot;
    name=&quot;btn_update&quot;
    value=&quot;Save Changes&quot;&gt;
    &lt;/cfformgroup&gt;
    &lt;/cfform&gt;

    NE IDEAS?
  17. Rodrigo
    Hehe..!! fixed.! ;)

    Thnx ne way!

    &lt;cfform name=&quot;Frm_docs&quot;
          format=&quot;flash&quot;
          preloader=&quot;true&quot;&gt;
       &lt;cfformitem type=&quot;script&quot;&gt;
          function changeStats()
          {
             if(rd_action.selectedData == &quot;true&quot;){
                txt_docInfo.enabled = true;
             }
             else
             {
                txt_docInfo.enabled = false;
             }
          }
       &lt;/cfformitem&gt;
       &lt;cfformgroup type=&quot;panel&quot;
          width=&quot;100%&quot;
          label=&quot;My Stuff&quot;&gt;
             &lt;cfinput type=&quot;hidden&quot; name=&quot;hdn_coord_id&quot; value=&quot;14&quot;&gt;
             &lt;cfinput type=&quot;radio&quot; name=&quot;rd_action&quot; value=&quot;true&quot; label=&quot;Accept&quot; checked=&quot;yes&quot; onclick=&quot;changeStats()&quot;&gt;
             &lt;cfinput type=&quot;radio&quot; name=&quot;rd_action&quot; value=&quot;false&quot; label=&quot;Reject&quot; onclick=&quot;changeStats()&quot;&gt;
          &lt;/cfformgroup&gt;
          &lt;cfformgroup type=&quot;hbox&quot;&gt;
             &lt;cftextarea name=&quot;txt_docInfo&quot;
                cols=&quot;20&quot;
                rows=&quot;5&quot;
                label=&quot;Type some info here!&quot;&gt;This must be disabled when checking on &quot;Reject&quot;!&lt;/cftextarea&gt;
             &lt;cfinput type=&quot;submit&quot;
                name=&quot;btn_update&quot;
                value=&quot;Save Changes&quot;&gt;
        &lt;/cfformgroup&gt;
    &lt;/cfform&gt;
  18. Ray
    How do you bind radio buttons from a cfgrid? My form works fine for text and select types, but I can't figure out how to do it with radio buttons. I have a form that when the user selects a row from the grid, then the form below is populated with the data from the grid. I have two radio buttons, yes and no(No is checked by default) and I would like for the corresponding button to be checked depending on the selected record from the grid. Any help is appreciated. Thanks!!
    <cfsavecontent variable="gridChange">
    <!--- function that gets called when grid selection changes, used to bind other controls to grid values --->
    for(var i=0; i < ProjType.length; i++){
                   ProjType.selectedIndex = i
                   if(ProjType.selectedItem.data == project_grid.dataProvider[project_grid.selectedIndex]['ProjType']){
                break;
                   }
                }
    for(var i=0; i < ProjMgr.length; i++){
                   ProjMgr.selectedIndex = i
                   if(ProjMgr.selectedItem.data == project_grid.dataProvider[project_grid.selectedIndex]['ProjMgr']){
                break;
                   }
                }

    </cfsavecontent>
    <cfgrid name="project_grid" query="allProjects" selectmode="row" colheaders="yes" rowheaders="no" width="600" height="150" format="Flash"
                onChange="#gridChange#">

    <cfgridcolumn name="ProjID" header="ID">
    <cfgridcolumn name="ProjName" header="Name">
    <cfgridcolumn name="ProjType" header="Type">
       <cfgridcolumn name="lname" header="Last Name">
       <cfgridcolumn name="fname" header="First Name">
       <cfgridcolumn name="SetupDate" header="Setup Date" mask="mm/dd/yyyy">
       <cfgridcolumn name="Subsys" header="Subsystem">
    </cfgrid>
    <cfformgroup type="horizontal" label="Subsystem:">
       <cfinput type="radio" name="Subsys" value="True"
              label="Yes"
              onChange="#changeRowStatus#">

       
       <cfinput type="radio" name="Subsys" value="False" checked="yes"
              label="No"
              onChange="#changeRowStatus#">

       </cfformgroup>
    </cfform>
  19. Laura
    Ray,
    Radio buttons are a different beast. See the Real Estate article where we explain how to bind controls to a grid: http://www.adobe.com/devnet/coldfusion/articles/flashforms_pt2_03.html
  20. Chaz
    Hi to all

    How can I display a radio button in a datagrid cell?

    I know how to do a check box.

    Thanks
  21. Laura
    Chaz,
    Short answer is you can't.
    Long answer is you can use hacks we don't endorse.
  22. Ray
    Laura,

    Thank you for the response, I have decided to ditch the radio buttons and use the checkbox instead. I do have another question though.

    Is it possible to display a selectbox inside a cfgrid??
    If so, can it be populated via a query?

    Thanks!!
  23. Laura
    Ray,
    My response to the select box is the same as my previous response to Chaz about radio buttons.
  24. Jeff
    I was wondering if anybody has found a more elegent solution to Sid Wood's question that was posted on this page at #4 on August 21, 2005 at 2:12 AM and a follow up #6 post on August 22, 2005 at 2:12 AM? I am trying to do the same thing that Sid was, but I don't want to use multiple loops because it would slow the page down when new categories are inserted. Hopefully there is a better solution.
    Thanks for your time!
    Jeff

    here is some code that I am using to get me started: (It only binds the first Program to the repeater.)
    <cfformgroup type="tile" height="120" id="tiles" style="verticalGap:5; margin-left:90; margin-right:30;">
             <cfformgroup type="repeater" query="GetNonEELVPrograms" required="yes">
                <cfinput type="checkbox" name="NonEELVProgramID" label="{GetNonEELVPrograms.currentItem.Program}" width="120"tooltip="Check box to select the {GetNonEELVPrograms.currentItem.Program} program." value="{contactList1.selectedItem.Program == GetNonEELVPrograms.currentItem.Program? true:false}">
             </cfformgroup>
          </cfformgroup>


    <cfgrid name="contactList1" query="MyEOW" rowheaders="false" height="360" colheaderalign="center" colheaderfontsize="12" colheaderbold="yes" onchange="for (var i:Number = 0; i<PrimaryAuthorID.length; i++) {if (PrimaryAuthorID.getItemAt([i]).data == contactList1.selectedItem.AuthorID) PrimaryAuthorID.selectedIndex = i}">
          
             <cfgridcolumn name="EOWRID" display="no">
             <cfgridcolumn name="Title" header="Title" width="150">
             <cfgridcolumn name="Input" header="Details">
             <cfgridcolumn name="Date" header="Date" mask="mm/dd/yyyy" width="90">
             
          </cfgrid>
  25. Gary Gorman

    Gary Gorman

    I am able (using the code shown here) to reflect the state of a check box in a cfgrid in an cfinput type checkbox on the form. However, if I change the state of the cfinput (check or uncheck) the change is not reflected on the grid. The same happens with the sample code used here to illustrate binding a checkbox to a grid. Anyone have an idea of how to pass the value of the checkbox back to the grid?
  26. Kelly
    My bindings are working quite right and I am not sure why. I have an alert setup (debug purposes to tell me the field value) and it is coming up as false, but the checkbox is checked...any ideas..

    <cfinput type="checkbox" name="hidePeer" label="Hide from Peer" value="{(goalGrid.selectedItem!=undefined)?goalGrid.selectedItem.GOAL_HIDE_ON_PEER_FLAG:false}" />
  27. Jeff
    Kelly try this code it should return a true or false string

    {goalGrid.selectedItem.GOAL_HIDE_ON_PEER_FLAG != undefined}
  28. Rey
    hello,

    how can I show radio buttons cheked based on a yes or no value when the user selects a record from a grid?

    <cfinput type="radio" name="cater_reminderB" label="yes" value="Yes" checked="yes" />
    <cfinput type="radio" name="cater_reminderB" label="no" value="No" checked="no" />

    I tried doing onChange="{data.selectedData}" this does not work. I don't get it I can bind a text box just fine but not a radiobutton macromedia or Adobe should have perfected this before releasing this flashform stuff.
  29. Mr. T
    Hi,

    I'm hoping this is the right place to post this. I'm trying to bind a set of fields based off a checkbox. I know it's going to be something simple but I cannot get my head around it.

    The code is:
    <cfform name="new_vendor_request" format="flash" width="600" height="600" skin="halosilver">
    <cfformgroup type="panel" label="New Vendor Request" style="background-color:##CCCCCC; headerHeight: 0;">
    <cfformgroup type="tabnavigator" id="tabs">
    <cfformgroup type="page" label="Step 1">
    <cfformgroup type="hbox">
    <cfformgroup type="panel" label="Vendor Pay Details" style="headerHeight: 13;">
    <cfformgroup type="vbox">
    <cfinput type="checkbox" name="purchasingSite" label="Purchasing Site" value="yes">
    <cfinput type="hidden" name="paySite" value="true">
    <cfinput type="text" name="payAddy1" width="300" label="Address Line 1:" required="yes" message="(Pay Details) Please enter the address.">
    <cfinput type="text" name="payAddy2" width="300" label="Address Line 2:">
    <cfinput type="text" name="payAddy3" width="300" label="Address Line 3:">
    <cfinput type="text" name="payAddy4" width="300" label="Address Line 4:">
    <cfinput type="text" name="payCity" width="300" label="City:" required="yes" message="(Pay Details) Please enter the city.">
    <cfinput type="text" name="payState" width="300" label="State:" required="yes" message="(Pay Details) Please enter the state.">
    <cfinput type="text" name="payPostcode" width="300" label="Postcode:" required="yes" message="(Pay Details) Please enter the postcode.">
    <cfinput type="text" name="payCountry" width="300" label="Country:" required="yes" message="(Pay Details) Please enter the country.">
    <cfinput type="checkbox" name="copyToPayAddress" label="Is the above the same for Purchasing Address?">
    </cfformgroup>
    <cfinput type="button" width="100" name="cnt_step4" label="next" value="Next" onClick="tabs.selectedIndex=tabs.selectedIndex+1" align="right">
    </cfformgroup>
    </cfformgroup>
    </cfformgroup>
    <cfformgroup type="page" label="Step 2">
    <cfformgroup type="hbox">
    <cfformgroup type="panel" label="Vendor Purchasing Details" style="headerHeight: 13;">
    <cfformgroup type="vbox">
    <cfinput type="text" name="purchAddy1" width="300" label="Address Line 1:" required="yes" message="(Purchasing Details) Please enter the address.">
    <cfinput type="text" name="purchAddy2" width="300" label="Address Line 2:">
    <cfinput type="text" name="purchAddy3" width="300" label="Address Line 3:">
    <cfinput type="text" name="purchAddy4" width="300" label="Address Line 4:">
    <cfinput type="text" name="purchCity" width="300" label="City:" required="yes" message="(Purchasing Details) Please enter the city.">
    <cfinput type="text" name="purchState" width="300" label="State:" required="yes" message="(Purchasing Details) Please enter the state.">
    <cfinput type="text" name="purchPostcode" width="300" label="Postcode:" required="yes" message="(Purchasing Details) Please enter the postcode.">
    <cfinput type="text" name="purchCountry" width="300" label="Country:" required="yes" message="(Purchasing Details) Please enter the country.">
    </cfformgroup>
    </cfformgroup>
    </cfformgroup>
    <cfformgroup type="hbox">
    <cfinput type="button" width="100" name="cnt_step5" label="next" value="Next" onClick="tabs.selectedIndex=tabs.selectedIndex+1" align="right">
    </cfformgroup>
    </cfformgroup>
    </cfformgroup>
    </cfformgroup>
    </cfform>


    What I want is to be able to click the purchasing address checkbox on step one and then on step 2 have all these fields bound to the step 1 fields.

    Any help would be greatly appreciated! :)
  30. Andy H.

    Andy H.

    Is there a way to have the 'selectedChbx' checkbox outside the 'contactList' cfgrid update the 'checked' cfgridcolumn within the grid? The example only seems to work one way.

    Any help would be greatly appreciated.

    Thanks,

    Andy H.
  31. thomary

    thomary

    I hope someone still reviews this blog :-)
    I'm using flash forms

    I have a problem. I should be using a radio button but because they won't clear onchange of a grid, I decided to use checkboxes.

    I have the checkboxes binding to the grid. everything works fine. They bind and clear as they should.
    But I need to make sure a user does not select both. Is there any way to do an onclick="#ClearBox1#"

    <cfsavecontent variable="clearBox1">
    if (thisbox=="yes") {
    box1.selectedData = "no";
    }
    </cfsavecontent>

    I have tried a lot of different ways but nothing seems to clear the checkbox onclick. I've tried .checked and functions but nothing worked. I know it can be done. I found this asfusion page which clears all checkboxes. http://www.asfusion.com/blog/entry/checkboxes-in-a-cfgrid
    BUT I can't get the right syntax for my needs.

    I have two checkboxes. When one is checked, I want the other to clear.

    Any help would be appreciated.
    Thanks.
  32. Jeff
    Tom~
    Here is the code for disabling checkboxes....

    <cfinput type="text" name="checkbind" visible="no" width="0">
    <cfinput type="checkbox" name="editShow" checked="false" label="Show Edit Window" disabled="{((editContacts.selected == true) || (editpwd.selected == true))}" value="{checkbind.text=='Profile'}"/>
    <cfinput type="checkbox" name="editContacts" checked="false" label="Show Contacts Window" disabled="{((editShow.selected == true) || (editpwd.selected == true))}" value="{checkbind.text=='EmContact'}"/>
    <cfinput type="checkbox" name="editpwd" checked="false" label="Show Password Window" disabled="{((editContacts.selected == true) || (editShow.selected == true))}" value="{checkbind.text=='Password'}"/>

    Depending on what is in the text field the checkboxes should populate accordingly. You can take a look at my thread about this at: http://www.adobe.com/cfusion/webforums/forum/messageview.cfm?catid=22&threadid=1126188
  33. Ryan
    Hello

    I have about 10 checkboxes that I would like to show as checked or unchecked in a form. The cfgrid does not need to show the checkboxes. So I have 3 columns in my cfgrid (firstName,lastName,company) these all bind just fine to cfinput type="text". There are 10 bit/boolean columns in the same database table that I need binded to my form. When I selected a record the forms update fine with the following code.

    <cfinput type="text" name="firstname" label="First"
        bind="{membersGrid.dataProvider[membersGrid.selectedIndex]['FirstName']}"
        onChange="membersGrid.dataProvider.editField(membersGrid.selectedIndex, 'FIRSTNAME', firstname.text);">


    But when trying to do something similar for a cfinput type of checkbox I get no where.

    Any assistance would be greatly appreciated.

    Thanks,

    Ryan
  34. Thomary

    Thomary

    Ryan,
    The checkbox bind goes in the value.
    <cfinput type="checkbox" name="fieldname" label="Field Name" value="{gridname.selectedItem.ColumnName=='yes'}">
    Check to make sure of capitalization.
  35. Ryan
    Thanks Thomary, but it still does not work for me. Below is an abbreviation of some of the code i'm using for the grid and form.

    <cfquery name="qryMembersList" datasource="#request.ds#">
       SELECT    MemberID,
          FirstName, LastName, GardenCenter
       FROM   *********
       ORDER BY Company
    </cfquery>

    <cfgrid name="membersGrid" format="FLASH" query="qryMembersList">

    <cfgridcolumn name="firstName" header="First Name" display="Yes">
       <cfgridcolumn name="lastName" header="Last Name" display="Yes">
    <!--- note that this does not need to display, just so I can see the value of the current row for true/false while debugging --->
    <cfgridcolumn name="gardenCenter" display="Yes">
    </cfgrid>

    <cfformgroup type="horizontal" label="Name">
        <cfinput type="text" name="firstname" label="First"
        bind="{membersGrid.dataProvider[membersGrid.selectedIndex]['FirstName']}"
        onChange="membersGrid.dataProvider.editField(membersGrid.selectedIndex, 'FIRSTNAME', firstname.text);">

       
        <cfinput type="text" name="lastname" label="Last"
        bind="{membersGrid.dataProvider[membersGrid.selectedIndex]['LastName']}"
        onChange="membersGrid.dataProvider.editField(membersGrid.selectedIndex, 'LASTNAME', lastname.text);">

        </cfformgroup>

    <!--- according to input from Thomary this should work --->

    <cfinput type="checkbox" name="txtgardenCenter" label="Field Name" value="{membersGrid.selectedItem.GardenCenter=='yes'}">
          

    <cfgridcolumn name="gardenCenter" display="Yes">


    Any other thoughts? Thanks again.
  36. Thomary

    Thomary

    If your database holds "Yes" for GardenCenter, then change the =='yes' to =='Yes'. If you use True or true use =='True' (or 'true').
    Also, make sure your of database capitalization. You show both gardenCenter and GardenCenter. Which is it in your database.

    HTH
  37. YogeshM

    YogeshM

    Hi,

    I have a flash form with a repeater object as follows:

    <cfformgroup type="repeater" query="qData">
       <cfformgroup type="vertical">
       
       <cfformgroup type="horizontal" width="300">
          <cfformitem bind="{qData.currentItem.name}" type="text" width="90"></cfformitem>
          <cfinput type="checkbox" name="myCheckBox_ch" checked="no" bind="{qData.currentItem.id}">
       </cfformgroup>
       
       </cfformgroup>
    </cfformgroup>

    Then I have a button to submit the form which calls a method called validate()
    <cfinput type="button" name="btnSubmit" value="Proceed >>" onClick="validate();">


    <cfformitem type="script">
       public function validate():Void{
       //How can I retrieve the value of the ID that has been checked in this method validate??
       
       }
    </cfformitem>

    I know I can retrieve which checkbox has been checked using the following:

    for(var i:Number; i < myCheckBox_ch.length; i++){

       if( myCheckBox_ch.getItemAt(i).selected == true ) {
       
          //HERE I NEED TO OBTAIN THE VALUE OF THE ID THAT CORRESPONDS TO THE CHECKBOX THAT HAS BEEN TICKED
          // HOW CAN I RETRIEVE THAT?
          // OR IS THERE ANOTHER WAY OF DOING THIS?
       
       }//end if

    }//end for


    Thanks and regards,
    Yogesh Mahadnac
  38. Paul Ihrig

    Paul Ihrig

    is there a way to count the check boxes have been checked?
    <cfinput type="checkbox" name="ul3R_SS" height="18" />
    <cfinput type="checkbox" name="ul4_SS" height="18" />
    <cfinput type="checkbox" name="ul3r4x_SS" height="18" />
    <cfinput type="checkbox" name="q4_0_SS" height="18" />
    <cfinput type="text" name="StainlessSteel_total" width="50" height="18" bind="{ul3R_SS.selected}++{ul4_SS.selected}++{ul3r4x_SS.selected}++{q4_0_SS.selected}++"
    />
  39. oMaT
    Hello,

    I'm trying to bind several check boxes to a list of roles that are returned by the query. Each role used to be a specific column returned (Ex: accessToDo = 1, accessCalendar = 1, etc) but now its simply a comma delimited list of roles (Ex: todo,calendar,etc) and I'd like the check boxes to activate if the proper value is found in the list. I saw you performed a toString() above in a bind example so I'm curious if something like this would work (this specifically doesn't):

    <cfinput type="checkbox" name="roles0" label="Calendar" value="{userList.selectedItem.roles.listContains()=='calendar'}">

    TIA,
    oMaT