Hello, I tried using createDependencyTo() which works based on if a field is null or not. I have 2 radio buttons and certain fields are required depending on...
OK, I got it to work...kinf of. I have the following just as a basic example: <script> function CCName(){ // check to make sure the current value is greater...
Hi Mike, I have read through the docs. I understand that I can just say: objForm.myfield.required="true"; My issue is this: I have 2 radio buttons for payment...
Mike, I found this snippet and finally got it to work: function _customValidation(){ if( obj.field_A.getValue() == "" && obj.field_B.getValue() == "" ){ ...
When using qForms the backgroundColor of various fields turns Yellow, at first I figured this was for required fields but in the current form I am working on,...
Are you sure it is qForms? Do you maybe have something like the google toolbar installed and its form remembering functions turned on? That is one such tool...
Yes this isn't corcening to qforms. ... -- Xavi (http://xavicl.blogspot.com)...
Xavi
xavi.xavi@...
Feb 15, 2005 4:47 pm
3098
The get fields() function puts all the fields and their values into a structure, If I have a form the has 40 fields on it and I only want fields 20 through 40...
Dear Techie Job Seekers, We would like to invite you to join our newly created group by visiting http://finance.groups.yahoo.com/group/hitechjobs/ Here you can...
objForm.'00N30000000dpa0'.description = "Quote Required"; throws an error. How can I fix this to use numeric fields? I am integrating this with a 3rd party...
I'm trying to make sure a credit card's expiration is valid, i.e. in the future. How do I do this within a qForms validated form. I have two dropdown fields...
John, I would create 2 new date objects. Create one using the the values from the drop downs and another one using the month and year from the current date. ...
I note a poll in 2003 supported a change but nothing in the forum since. Is there anything since then to allow disabled fields validation to be skipped? If...
I would like to validate the size of an image to a particular size before submitting a form. I already have javascript code that will do this, however I am...
... What you need to do is create function that you attach to the qforms onValidate method. Check the docs if you need more info but the basic implementation...
Any other gmailers here, like the abilty to select a range of checkboxes by holding down the shift key. Any one know how to do that with javascript? ... Dan...
This was also posted in the WDF-DOM group, same exact posting, They answered your question there, even though it is extremely off topic, so why post it here? ...
I'm passing a value into a qForm field (County) which I want the user to see as a filled in text field, but not be able to edit. The following construction...
Bill Cody
wjcody@...
Apr 7, 2005 2:13 am
3118
Store the value in a hidden field, either populate the disabled field with the value of the hidden field or just populate both with the same data. Fred T....
... field with the ... Thanks much, Fred, although I'm a little disappointed. Was hoping not to have to create yet more variables to track. The form is ...