Skip to main content
Known Participant
September 4, 2012
Question

how to do this with coldfusion

  • September 4, 2012
  • 1 reply
  • 947 views

Hi I have a simple question , please help me .

i have a radio button

<input type="radio" name="test_check" value="1"/>

I need to do when user selects radio button then i have to do some save feature like needs to send radiobutton value from URL and do some database saving with out refreshing page.

I dont want to use JQUERY needs to do in coldfusion. We are using coldfusion 9

Will some one help me in this.

or have some example .

Thanks

This topic has been closed for replies.

1 reply

Inspiring
September 4, 2012

You can bind the radio button to a cfc that writes to the database.

cfnewAuthor
Known Participant
September 4, 2012

HI Dan,

Thanks for your reply.

right now we are submitting form to action page and doing updates, but now i want to use same url and send this radio button value to that form action url and save.

<cfdiv bind="url:test.cfm?InputText={tinput1}" ID="theDiv" />

is this works?

Inspiring
September 4, 2012

All the examples I've seen say to bind to a cfc, not a url.