Checkbox To Enable/disable Form
Feb 25, 2004
I have a checkbox at the top of the page, and then I have a form full of text fields etc, called 'frmEnquiry'.
I would like the form to be disabled (or the text fields, elements etc) when the checkbox is not enabled, and when ticked i would like it to be enabled.
Is there a function or way round this?
View 1 Replies
ADVERTISEMENT
Dec 6, 2010
I have multiple forms on my website. Some of them have a checkbox which is checked by default, whereas others are unchecked by default. I'm trying to figure out how I would detect whether or not the checkbox is checked, and if it is checked, disable certain fields (not necessarily all fields), and then toggle it back and forth as I check or uncheck the box..I found this code:
Code:
<script language="javascript">
<!--
[code]....
View 4 Replies
View Related
Jan 18, 2006
I need to be able to uncheck and disable a checkbox based on the option selected in a Select list.
This is what I tried.
==============
<script type="text/javascript">
function GetOptVal(OptVal)
var OptVal;
{
if(OptVal="XX") document.form1.chkbox1.disabled = false;
}
else
{
document.form1.chkbox1.checked = false;
document.form1.chkbox1.disabled = true;
}
</script>
<form name="form1">
<select name="Opt1"
onchange=GetOptVal(document.form1.Opt1[document.form1.Opt1.selectedIndex].value)>
<option value=" ">Select One</option>
<option value="XX">XX</option>
<option value="YY">YY</option>
<option value="ZZ">ZZ</option>
</select>
<input type="checkbox" name="chkbox1" />
</form>
View 2 Replies
View Related
Jul 1, 2010
I have a table there are checkbox in all rows, then I have a button in disabled.
I hope the button will be enabled if one of checkbox is checked, button should be disabled if no any checkbox is checked, what can I do?
View 1 Replies
View Related
Jan 30, 2011
Firebug returns an error saying msg.elements is undefined. I'm trying to make a function that will enabled a delete button if any of the check boxes in a list are checked.
Code:
function selectone () {
var msg = document.getElementsByName('pm');
var i = 0;
for(i; i < msg.elements.length; i++)
[Code]....
View 2 Replies
View Related
Dec 23, 2010
I have a gridview with a checkbox (CheckBoxActiveClient) in the first column and a textbox (Copies) in the 5th column. I want that row's textbox (Copies ) to be disabled if the checkbox is unchecked in that row.
I wrote a javascript function for this but it doesn't work.
Code:
<script type="text/javascript">
function EnableTextBox()
[code]....
View 8 Replies
View Related
Nov 24, 2010
I have form with
Name
Age
Payment Mode (Combo box include payment mode 1, payment mode 2, payment mode 3)
When I select a payment mode-01 enableling 5 combo boxes. If select payment mode 2 disabling that combo boxes. How do I do this thing.
View 3 Replies
View Related
Jan 19, 2010
What I want to do is: disable the submit button while not all form fields are filled out and eneble it when the form fields are filled out. Disabling works, the enabling doesn't, at least not 'automaticly'. All of the code is in the $(document).ready(function(){}
I have this code:
checkAll();
function checkAll()
{
[Code]....
View 6 Replies
View Related
May 30, 2011
Is there any way to enable a form element(s) based on the selection in a <select> drop-down? I'm trying to enable/disable a group of checkboxes depending on which option is chosen in the <select> above it.I know how to enable/disable something when a box is checked (or text is entered into it) but I have no clue how to handle the <select> option.
View 2 Replies
View Related
Jun 14, 2009
This is my form, When user click the <b>YES and checked the check </b>box then only I want to enable the Prepay by Card button. For this situation, what is the jquery snippet. I have tried somthing like:
$("#SubmitCard").attr("disabled", "disabled");
But the thing is, I want to put the and Condition match. For this situation, I don't know how to write the jquery snippet
<table style="border: 0px solid rgb(0, 0, 0);
width: 485px; height: 45px;"><tbody>
<tr style="width: 20px; height: 5px;">
<td width="78">Pay by Card </td>
<td width="78"><b><span style="cursor: pointer;" id="yes">Yes</span></b></td>
<td style="cursor: pointer;" width="315"><span id="no" style="cursor: pointer;">No</span></td>
</tr> .....
View 5 Replies
View Related
Jul 6, 2006
I've got the following code being used to make a checkbox selected and readonly when a radio button value is selected:
document.myForm.valueName.checked = true;
document.myForm.valueName.disabled = true;
However when submitting the form values in email, the value of the checkbox won't submit with the checkbox value being disabled (if I comment out that second line, it works). Of course, I don't want the value able to be unselected.
Any suggestions? Can I make it readonly instead?
View 1 Replies
View Related
May 19, 2009
I have a message system that I want to prevent double posting. So when a user sends a message i would like to disable the button. But its done using AJAX and will load without much time. But enough to cause double clicking. So now the button needs to be enabled once Text is put in the Form Field.
View 2 Replies
View Related
Jan 29, 2011
I have a form with pairs of checkboxes. When one is checked then I want to enable the other checkbox for that pair, and disable when unchecked. I can get this to work when I have a separate function for each pair, but not if I try to use one function and pass the id of the element.[code]
View 2 Replies
View Related
Feb 26, 2011
i've been looking online for a while for a code that would disable 3 text fields.[code] Was unable to find one. was only able to get it to do one of fields. What i'm try to do is have a checkbox to enable and disable a row and produce a value in the totalcalls box.
View 6 Replies
View Related
Jul 23, 2005
I have exactly one external, alternate stylesheet that I want to enable or disable by form controls, on one page only (not saved across pages).
I used:
<link rel="alternate stylesheet" id="style-compact" etc...>
<input name="view" type="radio"
onclick="document.getElementById('style-compact').disabled=false">
<input name="view" type="radio" checked="yes"
onclick="document.getElementById('style-compact').disabled=true">
Is this the best way to do it? I want to reference the alt-stylesheet by
name (or similar), not index.
It works in my Camino & Safari. In IE-Mac, I can enable the stylesheet,
but not (subsequently) disable it again -- parts of the page just
disappear.
View 1 Replies
View Related
Jul 20, 2005
I've this code:
function checkdate(FormSubmit){
alert(document.getElementById('Mois').value);
if(eval(document.getElementById('Mois'))>0 &&
eval(document.getElementById('Annee'))>0){
document.forms['FormSubmit'].getElementByID('SELECTCONSTRUCTOR').disabled
= false; //can't reach the control here
}
else
{
document.forms['FormSubmit'].getElementByID('SELECTCONSTRUCTOR').disabled
= true; //can't reach the control here
}
}
....
<form name="FormSubmit" method="post" action="">
....
<select name="Mois" onChange=checkdate(this.form);>
....
<select name="Annee" onChange=checkdate(this.form);>
....
<select name="SELECTCONSTRUCTOR" disabled>
Now, what I would like, is to enable the SELECTCONSTRUCTOR if month and year
are selected (I mean different to 0).
I can't enable or disable. In fact I can't reach the control in the
checkdate function...
How can I enable/disable SELECTCONSTRUCTOR when my 2 fields are selected?
View 3 Replies
View Related
Jun 26, 2009
this site,I had a problem with my code. I had two radio buttons when i click the first radio button i want to appear one login form(username,password&submit button) and some fields like texbox, radio buttons.here the login form is only in enable state remaining fields must be in disable state. When i click on second radio button then i want to disappear the login form and the remaining fields must be in enable state.here is my code
<html>
<head>
<script language='javascript'>
[code]....
View 2 Replies
View Related
Oct 19, 2007
I have a check box that is active, but everything below it is disabled. I wrote a script to enable it but the error report keeps saying that my function has no properties. Why is this?
function disable_enable(){
if (document.all || document.getElementById){
if (document.printWhere.qtyPrinter.Quality.qtyOffice.Submit.disabled==true)
document.printWhere.qtyPrinter.Quality.qtyOffice.Submit.disabled=false
else
document.printWhere.qtyPrinter.Quality.qtyOffice.Submit.disabled=true
}
}
View 13 Replies
View Related
Oct 20, 2005
<form name="inputForm">
<body>
<table>
<tr>
<td><input name="inputType" type="radio" value=""></td>
<td>Account Num</td>
<td><input name="txtAccNum" type="text"></td>
</tr>
<tr>
<td><input name="inputType" type="radio" value=""></td>
<td>Service Num</td>
<td><input name="txtSrvNum" type="text"></td>
</tr>
</table>
</form>
i want to disable all the textfield..when user check the radio button(let say the above one), the above textfield (txtAccNum) will be enable..im new to javascript.
View 2 Replies
View Related
Jan 14, 2010
In the following code I just want to disable the textbox if “other Amount is selected”, radio element 7.I have been working at this too long cause I can’t see the problem.
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html>
[code]....
View 8 Replies
View Related
Dec 3, 2010
I have div with Textbox, label and hyperlink it it. I want to disable /enable the elements in it. I am using this code.
$('#Content_2 :input').attr('disabled', true);
#Content_2 - is a div
But this leaves the hyerperlink and label enabled. How can modify this ?
View 2 Replies
View Related
Jan 24, 2011
I was trying to but failed to do. I have two radio of gender and two input box father name and husband name if sex selected male then fathers name will be enabled and husband name will be disabled and if female selected then fathers name will be disabled and husband name will be enabled.
<input type="radio" name="sex" value="male" /> Male
<input type="radio" name="sex" value="female" /> Female </div>
Father's Name<input type="text" name="fname" />
Husband's Name<input type="text" name="hname" />
View 2 Replies
View Related
Feb 2, 2011
I am trying to do like if country none selected city will be disabled and if usselectedthen city will be enabled.triedby this code but unable to enable city onsection.
View 8 Replies
View Related
Apr 22, 2011
I have an ASP page that has a master page. I have a drop down list and 2 text boxes.The change function is being executed and I get the text value of the selected list items, but the enable and disable are not working.[code]
View 1 Replies
View Related
Apr 10, 2010
I need to be able to disable a link upon clicking an agreement. Here is what I currently have, I am trying to make a custom button for jcryption.[code]...
View 2 Replies
View Related
Sep 9, 2011
I have 2 text boxes I want to control with a select.
I can code this problem myself, but was wondering if there is some better way to do it...
There are 4 values for the select, "", S, R, and B.
When "" is selected I want both boxes to be disabled, When S or R are selected the Stext or Rtext will be enabled respectively When B is selected both will be selected...
So I have the function to handle this in my own custom UI namespace.. Here is the function:
SRB: function() {
if ($("#SRB).val() == "B") {
// enable both boxes
} else if ($("#SRB").val() == "S") {
[Code]....
etc.. i guess you get the picture. Basically the question is, is there a way to do this without statically setting if conditions for each select box condition?
View 1 Replies
View Related