Ask a Question related to Coldfusion Flash Integration, Design and Development.

  1. #1

    Default bind to a checkbox

    I have a tabbed flash form. the final tab is a summary page of the previous
    two tabbed pages. The second page lists 10 check boxes. If the checkbox is
    selected, I want to include the label for that checkbox on my summary page. I
    can bind all the other text fields, just need help with the checkbox field
    binding.

    Thank you.:beer;

    Melarky_op Guest

  2. Similar Questions and Discussions

    1. Bind Attribute in CheckBox -->Help
      Hello Everyone, I attented a great presentation yesterday by Macromedia Canada. I need a little help regarding the BIND attribute. I am doing...
    2. Bind a textfield with a checkbox
      Hi all, is it possible to bind a textfield with a checkbox. What I am trying to do is, if the checkbox is selected todays date will display in the...
    3. Howto bind CheckBox to the datagrid/ Then update the database field when the checkbox is clicked.
      I am trying to update the database field when the checkbox is clicked. I am trying to modified the following solution but.. got stuck on the...
    4. How to bind checkbox to one of the values of a datagrid
      Hello All, I hope someone can enlighten me, all of the examples and posts Ihave read and sifted through doesn't pertain to what i wouldlike to do...
    5. how to bind data to checkbox in datagrid
      hi i have a datagrid and one colume is a bool if i use a normal asp:BoundColumn is shows as true or false and i want it to show as a checkbox but...
  3. #2

    Default Re: bind to a checkbox

    On the summary page

    <cfformitem type="text" bind="{(checkBox1.selected) ? checkBox1.label : ''}">

    This is untested

    Ken
    The ScareCrow Guest

  4. #3

    Default Re: bind to a checkbox

    Ken, Thank you very much for this. I put a double quote after the colon,
    but realized it was 2 single quotes. It works great!

    <cfformitem type="text" bind="{(checkBox1.selected) ? checkBox1.label : ' ' }">

    Could you recommend a book I can get for looking this stuff up?

    Thanks again for your help.



    Melarky_op Guest

  5. #4

    Default Re: bind to a checkbox

    I don't think there is a specific book at present.

    The code used in the bind attribute and the code you can use in the
    cfsavecontent tag is flash action script. So any book on that would do.

    Here is a link with some great examples and other links
    [url]http://www.asfusion.com/blog/index.cfm[/url]

    Ken

    The ScareCrow 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