I have a weird problem with the javascript OnFocus="this.Blur()"; I am trying to step users from entering and editing the data in the textarea, as below. ...
Law, ... The problem is the pressing the [BACKSPACE] key in IE on a non-form field defaults to going to the previous page. Since you're immediately removing ...
Dear Dan, Thanks for the advise. I can't use "disabled" because I still want the users to be able to scrolll thru the textarea. I tried the the readonly...
Law, ... You may be stuck to having to monitor the page for keypresses and if the backspace key is pressed, cancel the event. I never was a fan of them mapping...
Hello, Can someone give some ideas or a scenerio as in how to use bits to control acces to functions (add, edit, delete user) or access certain areas of a...
Hi Jesse, if your security model is using the 'Bit' model, your users will have a number assigned to them when they have successfully logged in. This number is...
Kinda like objForm.comments.validateLengthGT(20,"WOW, you can actually sum up a whole night in less than 5 words!! Try Again!!!"); which will spit out the...
Dan, u r rite. I seriously agree to that. Backspace should only be for deleting text. Microsoft should read this! Anyway thanks I will really like to thank you...
Well I don't !! :-) :-) Seriously, though, I've never had a problem with the dual use of the backspace key - I use it both ways all the time. My main use of...
Drew, ... You can't do it w/your required() field. Currently, the required message is the only message you can't change. A workaround, is to use the ...
It's come to my attention that qForms is starting to get some mention in various publications and books. I've found the following two books that mention qForms...
Cool, Thanks... that Hal Helms writing really helped, I was looking for some info on using bits in a security model for a web site but was not clear on how it...
I would like to know if these routine is available. According to the thread it was going to be incorporated into qForms however the last update I see to the...
Todd, ... No, I haven't released it in the build yet. Here's the code though. One of the reasons I haven't released it yet, is I never got any feedback on the ...
Hi, All of a sudden I began receiving this error on some pages. I must done something, but can't put my finger on it. This error is referring to the...
If (objForm.typeacct.getValue() == "Addon") { objForm.A1.validateAtLeastOne("A1,A2,A3,A4,A5,A6"); } I am not sure what is missing with this statement - get...
Dan, FYI - I'm using the routine and have a suggestion to improve it. I'd like to see the ability to add a field description as an option to pass. Right now if...
Todd, ... As long as the description property is set before the validation routine is actually executed, the correct description should be displayed, ie: ...
Dan, I understand this - what I was hoping for was a single description instead of one for each checkbox. Like I said, it was only a suggestion. Todd ... ...
I like how the text & checkboxes highlight when a field is required however it does not work with the radio buttons or at least I have not been able to find a...
Todd, ... As with all validation methods, there's a last optional argument (which is automatically created when you run the _addValidator() function) that...
Todd, ... This is really browser specific. IE6 (at least under Windows XP) will highlight the background color around a radio or checkbox element. If anyone ...
... Any chance at getting a speakypeek at that? I was going to modify the existing public version of qForms to add something similar, and I'd hate to duplicate...
Thanks - Still learning javascript and your routines - this is exactly what I was looking for. Todd ... (which is ... that allows ... method ... selected one...
I have 4 checkboxes with the same name and only want 1 to be allowed to be checked. Tried this: objForm.payment.validateExp("this.value.length > 1","Only one ...