Home All Groups Group Topic Archive Search About

Checkbox items under a RadioButton

Author
12 Apr 2006 8:08 PM
Web learner
I have to have three RadioButtons and then under one of this RadioButton, I
need to put two checkboxes. Something like following:

O Temperature
    [] Air
    [] Water
O Radiaton
O Wind Velocity

The child CheckBoxes (Air and Water in above example) should become
"activated" only when the parent RadioButton (Temperature in above example)
is selected. I am just confused how to get this done.

Any example in this regard will be gratefully appreciated.

web_learner

Author
12 Apr 2006 9:06 PM
Swanand Mokashi
you can have the page postback by setting AutoPostBack="true" and
OnSelectedIndexChanged="rdo_SelectedIndexChanged"

in the server side function rdo_SelectedIndexChanged check the current value
of the radiobutton and then set the Enabled property of the checkbox to true
or false

HTH

--
Swanand Mokashi
Microsoft Certified Solution Developer (.NET) - Early Achiever
Microsoft Certified Application Developer (.NET)

http://www.dotnetgenerics.com/
DotNetGenerics.com -- anything and everything about Microsoft .NET
technology ...

http://www.swanandmokashi.com/
http://www.swanandmokashi.com/HomePage/WebServices/
Home of the Stock Quotes, Quote of the day and Horoscope web services


Show quoteHide quote
"Web learner" <begin***@learning.edu> wrote in message
news:uevhkzmXGHA.1348@TK2MSFTNGP05.phx.gbl...
>I have to have three RadioButtons and then under one of this RadioButton, I
>need to put two checkboxes. Something like following:
>
> O Temperature
>    [] Air
>    [] Water
> O Radiaton
> O Wind Velocity
>
> The child CheckBoxes (Air and Water in above example) should become
> "activated" only when the parent RadioButton (Temperature in above
> example) is selected. I am just confused how to get this done.
>
> Any example in this regard will be gratefully appreciated.
>
> web_learner
>
>
Author
13 Apr 2006 1:38 AM
Web learner
Aha ! I got the idea now. I tried and it works fine.
I run into another design problem. The "entire form" is posted back, which I
do not want.

How can I have only these two controls posted back? Any idea or any URLs for
me to read?

web_learner


Show quoteHide quote
"Swanand Mokashi" <swanandNOSPAM@swanandmokashi.com> wrote in message
news:eu5dzTnXGHA.1228@TK2MSFTNGP02.phx.gbl...
> you can have the page postback by setting AutoPostBack="true" and
> OnSelectedIndexChanged="rdo_SelectedIndexChanged"
>
> in the server side function rdo_SelectedIndexChanged check the current
> value of the radiobutton and then set the Enabled property of the checkbox
> to true or false
>
> HTH
>
> --
> Swanand Mokashi
> Microsoft Certified Solution Developer (.NET) - Early Achiever
> Microsoft Certified Application Developer (.NET)
>
> http://www.dotnetgenerics.com/
> DotNetGenerics.com -- anything and everything about Microsoft .NET
> technology ...
>
> http://www.swanandmokashi.com/
> http://www.swanandmokashi.com/HomePage/WebServices/
> Home of the Stock Quotes, Quote of the day and Horoscope web services
>
>
> "Web learner" <begin***@learning.edu> wrote in message
> news:uevhkzmXGHA.1348@TK2MSFTNGP05.phx.gbl...
>>I have to have three RadioButtons and then under one of this RadioButton,
>>I need to put two checkboxes. Something like following:
>>
>> O Temperature
>>    [] Air
>>    [] Water
>> O Radiaton
>> O Wind Velocity
>>
>> The child CheckBoxes (Air and Water in above example) should become
>> "activated" only when the parent RadioButton (Temperature in above
>> example) is selected. I am just confused how to get this done.
>>
>> Any example in this regard will be gratefully appreciated.
>>
>> web_learner
>>
>>
>
>
Author
13 Apr 2006 12:48 PM
Ignacio Machin ( .NET/ C# MVP )
HI,

"Web learner" <begin***@learning.edu> wrote in message
news:%233xjPspXGHA.4144@TK2MSFTNGP04.phx.gbl...
> Aha ! I got the idea now. I tried and it works fine.
> I run into another design problem. The "entire form" is posted back, which
> I do not want.

Yes, that's the standard way, you could use ATLAS to have Ajax
functionality.

> How can I have only these two controls posted back? Any idea or any URLs
> for me to read?


You could do some manipulations in the client page using javascript , IMO it
will solve  your problem fine. Add a client side handled for the checked of
the radiobutton and inside it disable/enable the checkboxes.



--
Ignacio Machin,
ignacio.machin AT dot.state.fl.us
Florida Department Of Transportation
Author
13 Apr 2006 5:32 PM
Web learner
>> How can I have only these two controls posted back? Any idea or any URLs
>> for me to read?
>
>
> You could do some manipulations in the client page using javascript , IMO
> it will solve  your problem fine. Add a client side handled for the
> checked of the radiobutton and inside it disable/enable the checkboxes.
>

Any example, tutorial on the web ?
or even page of a book that I should refer for such tasks?

Thanks,

web_learner








Show quoteHide quote
"Ignacio Machin ( .NET/ C# MVP )" <ignacio.machin AT dot.state.fl.us> wrote
in message news:O%23nODivXGHA.1204@TK2MSFTNGP04.phx.gbl...
> HI,
>
> "Web learner" <begin***@learning.edu> wrote in message
> news:%233xjPspXGHA.4144@TK2MSFTNGP04.phx.gbl...
>> Aha ! I got the idea now. I tried and it works fine.
>> I run into another design problem. The "entire form" is posted back,
>> which I do not want.
>
> Yes, that's the standard way, you could use ATLAS to have Ajax
> functionality.
>
>> How can I have only these two controls posted back? Any idea or any URLs
>> for me to read?
>
>
> You could do some manipulations in the client page using javascript , IMO
> it will solve  your problem fine. Add a client side handled for the
> checked of the radiobutton and inside it disable/enable the checkboxes.
>
>
>
> --
> Ignacio Machin,
> ignacio.machin AT dot.state.fl.us
> Florida Department Of Transportation
>
Author
18 Apr 2006 1:36 PM
praveen.pvs
Hi,
You can do this easily with Java Script. You need to add attribute eg:
rdBtn1.attributes.add("onclick", "changeStatus()")

Then in that changeStatus function, capture all the check boxes under
that category and enable/disable them.
We can pick all the check boxes by using some common naming convention
or by using table1.getElementById('xx.').all.tags("INPUT") where table1
is the table which contains all the check boxes under that radio
button.

OK..
-praveen