I am needing help with css code. I have a field that is hidden always, but the data is saved. The SQL returned a value of either Active or term. If the field called Status is term, i want the submit button disabled.
Any help would be appreciated.
I am needing help with css code. I have a field that is hidden always, but the data is saved. The SQL returned a value of either Active or term. If the field called Status is term, i want the submit button disabled.
Any help would be appreciated.
I have attached a checkbox which only when selected will display the submit button:
$(document).ready(function() { $('.Submit').hide(); $('.showsubmitcheckbox').click(function () { if($('input[value="I_Agree"]').is(':checked')) { $('.Submit').show(); } else { $('.Submit').hide(); } }); });
This is taken from the useful css javascript in the forms process Library, with other useful stuff.
the Checkbox CSS is : showsubmitcheckbox