I was watching the Demo... boy, what a teaser demo. (And that was even without the wonderful pump the missing voice would have added to the demo.) PLEASE TELL...
John, ... A good way to stay on top of qForms, is via my blog: http://blog.pengoworks.com/blogger/index.cfm?action=blog&cat=65536 (That is link that will show...
OK... now I just have to figure out how to do SVN! Those of us like me who keep creating technology make life easier while making one more thing to learn. (I...
Dan, I have one more question regarding the javascript in the N-Selects Related code. I would like to be able to control the width of the select boxes. Right...
Hi Dan - Thanks, but this didnt seem to fix it in Safari. I do have some additional information now though. I found that it really seems to not like the...
Hi Dan - Thanks, but this didnt seem to fix it in Safari. I do have some additional information now though. I found that it really seems to not like the...
Hi everyone, I'm sure this question has been asked before but I'm noob so please forgive me. As far as I can make out, QForms supports credit card validation...
The last digit on a credit card is generally a checksum digit used as a first pass at validation. The MOD 10 algorithm checks that the checksum is correct,...
Matthew Walker
matthew@...
Sep 7, 2005 10:25 pm
3285
Hi there, Thanks for the explanation. I'm only using the test for validation, the payment gateway is handling the rest. Does Switch/Maestro conform to the...
Check this out: http://www.precisonline.com/ccvalidate.html Looking at the source code, it seems that the MOD 10 algorithm isn't applied to Maestro -- so...
Matthew Walker
matthew@...
Sep 7, 2005 10:49 pm
3287
Thanks, that's brilliant. Just what I was after. Pete (aka lad4bear) ... On...
I have the need to display an organizational hierarchy through multiple select boxes. Within this need I also need to allow for someone to select more than one...
Aaron, Just do: function selectRegion(){ var value = objForm.RegionID.getValue().split(","); // Clear out RegionID objForm.SubRegionID.obj.length = 0; //...
Thanks, I need to figure out if this is truely the route I want to take. Might be better to just setup some containers for any area, geomarket, location, etc...
Dan, Feel like I am having a "southpark moment" If I am grabbing the values of the second box before wiping it, seems like I could repopulate just those ...
Aaron, All you need to do is: var Areavalue = objForm.AreaID.getValue(); ... a bunch of stuff ... objForm.AreaID.setValue(Areavalue); No need to split it into...
Where are the current 2.0 libraries. With the old versions you had builds, and I don't see the builds for the version 2 enhancements you have been working on....
... The current build is on http://qforms.tigris.org/. I'm using SVN as version control, so that will allow you to go back to certain builds. There has been no...
OK I had two problems trying to do this... First I had to go back from version 2 library because things have changed... can you tell me how to do this in the...
Just a reminder there's a no spam tolerance on this board. If I see the spam and it's obviously spam, the author is immediately banned and removed and I delete...
OK... I asked a question and there was a spam response. Not sure what that was aobut, but my guess is that distracted the community from validating this issue...
I am trying to add a custom validation to my validation.js that limits the number of items selected in a select box. I have a working .js function, and am...