Here is a suggestion. Can you include the navigation bar in the documentation at the top of the page also, instead of just at the bottom? OR Could you take and...
I'm currently looking in to a software packages to help make maintaining/writing the help documentation better. I'm aware the documentation could be much, much...
I am working on something for you now. As soon as I get it done. In about an hour, I will post it here. That is if you don't object. ... top of ... page ... ...
Why not use the upload file at groups.yahoo.com. That way users who don't have need for the download won't have to receive it. Either that or send it directly...
you need to get the value first... f2.setValue(getValue(f1)) maybe?? ... From: Troy Murray [mailto:troymurray@...] Sent: Tuesday, March 04, 2003 10:40 AM...
As per always, send complete code to the list. with that said f2.setValue(f1.getValue()); ============================================================ From:...
Nope, that didn't seem to do it either. What I need to do is this, if the user selects a value from the drop-down box, and another field is blank then the...
Troy, First, I'm assuming that "f2" and "f1" are qForm "Field" objects. In which case, the correct syntax would be: f2.setValue(f1.getValue()); When creating...
Troy, This should work: function setSameIfBlank(f1, f2) { alert(f1.lastValue); if (f1.lastValue == f2.getValue()) { f2.setValue(f1.getValue()); } if...
Dan, Thanks for both responses. That first response was over my head, but I'm trying to read it and understand it. The second response, with the code, works...
Dan, Nope, that didn't do it either, calling the function twice. It's very strange because it works the first time but not after that. If I setup three alert...
example.html (attached) will work. Won't get into the gory details. ============================================================ From: "Troy Murray"...
Hi, I'm having loads of problems doing what should be a really straightforward validation check: making sure a checkbox is checked (this is a form where people...
Gyrus, You're actually making it more difficult then it is. When thinking about validation w/qForms, don't think so much about the way JS handles the DOM ...
I took that approach to try to simplify things for people w/no JS background. I wanted to try to have the API function the way you might expect to see the...
Hello, This strange problem occurs for all fields when I try to make the field required. The problem is this : If you enter a string which consists only of the...
Yeah, sorry about the original bug. I was going back and forth between a number of different syntaxes trying to fix some Mac RegEx problems, and when I...
I have a form where fields A and B are required if field C is not equal to a particular value, and they are ignored (the server discards any value in those...
Lari, The validation methods should only run if A & B are required and contain a value. The dependency rule should be declaring the fields as optional when the...
I'm not sure I understand how to use the onSetValue() method properly. The qForms documentation states, "Use this function to define a custom function to run...
I am trying to use the qForm WDDX javascript functionality to 'export' my multi-layer form variables to php via a hidden variable. The hidden variabele is...
Rene, Unfortunately I've had no experience w/the PHP WDDX implementation. It's possible that it is my JS-to-WDDX conversion. The wddx.js file that's included...