Ask a Question related to Coldfusion Flash Integration, Design and Development.
-
Melarky_op #1
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
-
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... -
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... -
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... -
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... -
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... -
The ScareCrow #2
Re: bind to a checkbox
On the summary page
<cfformitem type="text" bind="{(checkBox1.selected) ? checkBox1.label : ''}">
This is untested
Ken
The ScareCrow Guest
-
Melarky_op #3
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
-
The ScareCrow #4
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



Reply With Quote

