Velocity Reviews - Computer Hardware Reviews

Velocity Reviews > Newsgroups > Programming > ASP .Net > Checkbox items under a RadioButton

Reply
Thread Tools

Checkbox items under a RadioButton

 
 
Web learner
Guest
Posts: n/a
 
      04-12-2006
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


 
Reply With Quote
 
 
 
 
Swanand Mokashi
Guest
Posts: n/a
 
      04-12-2006
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" <> wrote in message
news:...
>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
>
>



 
Reply With Quote
 
 
 
 
Web learner
Guest
Posts: n/a
 
      04-13-2006
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


"Swanand Mokashi" <> wrote in message
news:...
> 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" <> wrote in message
> news:...
>>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
>>
>>

>
>



 
Reply With Quote
 
Ignacio Machin \( .NET/ C# MVP \)
Guest
Posts: n/a
 
      04-13-2006
HI,

"Web learner" <> wrote in message
news:%...
> 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


 
Reply With Quote
 
Web learner
Guest
Posts: n/a
 
      04-13-2006
>> 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








"Ignacio Machin ( .NET/ C# MVP )" <ignacio.machin AT dot.state.fl.us> wrote
in message news:O%...
> HI,
>
> "Web learner" <> wrote in message
> news:%...
>> 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
>



 
Reply With Quote
 
praveen.pvs@gmail.com
Guest
Posts: n/a
 
      04-18-2006
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

 
Reply With Quote
 
 
 
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Checkbox items under a RadioButton Web learner ASP .Net Web Controls 5 04-18-2006 01:36 PM
ViewState for Enabled Property on CheckBox/RadioButton Controls Leo J. Hart IV ASP .Net 5 10-10-2004 04:00 AM
Assign ID to a radiobutton inside a checkbox Abhishek Srivastava ASP .Net 2 03-02-2004 06:21 AM
onclick firing twice for CheckBox and RadioButton... alien2_51 ASP .Net 2 11-13-2003 08:03 AM
Re: Checkbox and Radiobutton onfocus events bruce barker ASP .Net 0 07-23-2003 06:19 PM



Advertisments