I know, I know... It's been a while. Where's v2 at? Good question. In the meantime, here's build 140. Basically bug fixes and a new property (that's been asked...
I am having difficulty getting qForms to work with my use of the Rico/Prototype engine. I have a div that gets dynamically populated with content returned via...
sorry I dodn't have time to clean this up more... <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">...
I thought this message had originally been posted on the message board, but when I searched I couldn't find it. I was pretty sure I had already answered this...
Hi all, I have inherited a site that uses frames and I want to integrate qForms to help with the validation. I have the following scenario, <frameset...
OK, I seem to be getting somewhere, Using the following code; <script language=javascript> objForm = new top.top.qForm('frmExample',null,'top.middle'); ...
Well I thought that I was getting somewhere but obviously not. Using the code below creates a javascript error on page load in IE. In firefox I get no...
Reggie, A long, long time ago in a galaxy far, far... Oh wait. Wrong story. Anyway, a long time ago I put some code that should allow you to do what you what....
Hey, Has anyone here used Selenium for testing their qforms-enabled web app? I am struggling with steps that confirm that qforms required me to answer certain...
Hi, I've got a bunch of pages in a webapp that are template-generated. Each has 2 to 4 sets of radio buttons, each with values from 1 to 5. There is also a...
Howard, As per the docs, you'll also need to call the enforceDependency() rule on any fields you're creating a dependency to when you originally initialize ...
I'd like to see if the user has entered a valid URL format (i.e., http://www.yahoo.com). How would I do this? I have a Regex expression to use, but I'm not...
While I appreciate the nicely worded "RTFM", enforceDependency was only part of the answer. I could not get the code to work consistently with multiple...
Also I noticed that when I use builtin functions for validating my text input fields the background of them turnes red when an error occurs but this doesn't...
Howard, ... As long as your coding your validation methods per the docs, qForms should automatically handle changing the background color for you. However,...
... Creating custom validation methods is pretty easy. First, read the information here: http://www.pengoworks.com/qforms/docs/validation.htm#Creating The...
Right but as I said, I was interested in changing the color of the text input areas. After digging through the qforms source and the list archives I was able...
Is there an easy way I can add in a confirm box? Ultimately, I'd like it to run through the qform validation. If no errors are found, then show the confirm box...
... If you use the qFormAPI.errorColor property, it should change the color for all validation errors. Sorry I misunderstood your question. It sounded like you...
Gary, Use a function: function confirmSave(){ if( objForm.validate() ){ var bResult = confirm("Do you wish to continue?"); if( bResult ) objForm.submit(); } } ...
Sorry if this is a repeat, but I don't think my original message got through to the YahooGroup... I was the other user from the cited exchange. I sent an...
Dan, Thanks, that worked. The only thing that's odd is that it submits on both the Cancel and OK button. Do I have to add in some code to keep it from...