TheFilmGod Posted July 28, 2007 Share Posted July 28, 2007 I want to create a form that uses a first set of radio buttons. Depending on the selection more form inputs would be displayed corresponding to the selection... >>> O First Radio Selection If selected input field shown. Otherwise its grayed out. O Second Readio Selection If selected, input field shown. Otherwise this section is grayed out. Quote Link to comment https://forums.phpfreaks.com/topic/62204-solved-forms-in-forms/ Share on other sites More sharing options...
calabiyau Posted July 28, 2007 Share Posted July 28, 2007 I dunno about the greyed out part...but you could have the input fields hidden initially on page load then use javascript to detect when the radio buttons are selected, with an onclick event. the javascript function could then change the input field to visible. http://www.js-x.com/page/javascripts__example.html?run=605 Just an example of the javascript to detect the onclick events. if you know a little javascript or do some searching on hiding and displaying elements you can modify it to display your input fields on click. Quote Link to comment https://forums.phpfreaks.com/topic/62204-solved-forms-in-forms/#findComment-309632 Share on other sites More sharing options...
TheFilmGod Posted July 28, 2007 Author Share Posted July 28, 2007 Grayed out meaning disabled. Its a common html attribute for form. Intially created by Microsoft IE. All major browsers now support it. Quote Link to comment https://forums.phpfreaks.com/topic/62204-solved-forms-in-forms/#findComment-309647 Share on other sites More sharing options...
calabiyau Posted July 28, 2007 Share Posted July 28, 2007 LOL..you think you know everything about html...I never came across that before...learned something new... I came across this link that might be helpful http://www.codetoad.com/javascript/enable_disable_form_element.asp EDIT: just to be clear, I wasn't saying that YOU think you know everything about html,,meant myself Quote Link to comment https://forums.phpfreaks.com/topic/62204-solved-forms-in-forms/#findComment-309651 Share on other sites More sharing options...
RichardRotterdam Posted July 28, 2007 Share Posted July 28, 2007 sounds more like a javascript problem then just HTML to me Quote Link to comment https://forums.phpfreaks.com/topic/62204-solved-forms-in-forms/#findComment-309686 Share on other sites More sharing options...
TheFilmGod Posted July 29, 2007 Author Share Posted July 29, 2007 I got it to work. within the input tags: onlick: "javascript: document.form1.textfield1.disabled=false;" Something like that. Well it works for me. Thanks for the help anyway! Quote Link to comment https://forums.phpfreaks.com/topic/62204-solved-forms-in-forms/#findComment-309878 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.