|
code
newsgroups
|
|||||||||||||||||||||||
|
|||||||||||||||||||||||
Checkbox items under a RadioButtonI 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 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 -- Show quoteHide quoteSwanand 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 > > 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 >> >> > > HI,
"Web learner" <begin***@learning.edu> wrote in message Yes, that's the standard way, you could use ATLAS to have Ajax 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. functionality. > How can I have only these two controls posted back? Any idea or any URLs You could do some manipulations in the client page using javascript , IMO it > for me to read? 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 >> How can I have only these two controls posted back? Any idea or any URLs Any example, tutorial on the web ?>> 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. > 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 > 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
Server Control to manipulate GridView
Access data in ObjectDataSource no FormView for create/insert page Datagrid custom paging always loads page 1 Validation inside composite controls for ASP .NET 2.0 Datagrid cancel command does not work when adding new record custom button/link in detailsview commandfield section How to set default values for fields in detailsview style question Webcontrol Alignment problem |
|||||||||||||||||||||||