Search the web
Sign In
New User? Sign Up
qformsapi · qForms API: qForums
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Real people. Real stories. See how Yahoo! Groups impacts members worldwide.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 3327 - 3356 of 3977   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
3327
Hey Guys, I am completely at a loss here. I'm trying to set up an image based submit button. Works fine in Safari/Opera/Firefox/IE but fails under Mozilla...
httpworkshop
Offline Send Email
Nov 4, 2005
2:16 am
3328
Rob, ... What behavior do you get in Mozilla v1.7.3? Does it give you JS errors? Does this work? <a href="javascript:void(0);" onclick="submitForm();"...
Dan G. Switzer, II
dswitzer2
Online Now Send Email
Nov 4, 2005
3:33 am
3329
Peter, Just call the setValue() on the fields with no value to reset the selections. -Dan...
Dan G. Switzer, II
dswitzer2
Online Now Send Email
Nov 4, 2005
3:38 am
3330
Hi Dan, The submit fails with the link and throws an error Error: this.obj.onsubmit is not a function Source File:...
Robert Obreczarek
httpworkshop
Offline Send Email
Nov 4, 2005
6:07 pm
3331
Try adding: var txtinput = document.createElement("input"); txtinput.type = "text"; txtinput.id = "txtinput" txtinput.name = txtinput.id; for( var j=0; j <...
zcf
zcfx
Online Now Send Email
Nov 5, 2005
2:04 am
3332
I'd like to give users the choice of curing the form errors or saving the data they've completed as a draft. I added this: qFormAPI.allowSubmitOnError="true";...
Johnson, Ted
qwesttcjohn2
Offline Send Email
Nov 5, 2005
2:04 am
3333
Is there any way to take out the __viewstate fields from asp.net page when do the obj.serialize()?, I tried serialize("__viestate") would not recoganize it. ...
debbiezhang2003
Offline Send Email
Nov 9, 2005
4:13 am
3334
I am having issue with qForms. In IE the error is "could not get the display property. Invalid argument." In Firefox it does works and giving me the required...
ShyBoy
asimmanzur
Offline Send Email
Nov 9, 2005
5:06 pm
3335
actually three lines I have added in there. var id = this.obj.name + "1"; document.getElementById(id).style.visibility = "visible"; ...
ShyBoy
asimmanzur
Offline Send Email
Nov 9, 2005
6:58 pm
3336
Is there any way I can turn off the alert message when error occurs, and handle it by myself?...
debbiezhang2003
Offline Send Email
Nov 9, 2005
9:49 pm
3337
This isn't really a qForms problem, but a problem accessing your DOM object. I'd isolate your code out into a separate function and set up a trigger so you can...
Dan G. Switzer, II
dswitzer2
Online Now Send Email
Nov 10, 2005
2:46 pm
3338
... You can override the default methods and write your own custom handlers. This is better implemented in the v2 code that over at qforms.tigris.org. -Dan...
Dan G. Switzer, II
dswitzer2
Online Now Send Email
Nov 10, 2005
2:46 pm
3339
Does anyone know how to make this work? Thank you! Steve...
stevenlanza
Offline Send Email
Nov 10, 2005
2:52 pm
3340
any simple examples? Do I have to override every functions? I would like my message to be display in a label, not alert. IsValide kind of true false returns...
debbie zhang
debbiezhang2003
Offline Send Email
Nov 10, 2005
3:26 pm
3341
on my html form // make these fields required objForm.required("org_name, org_type, year, states_right, org_type"); where org_type is a drop down menu, which...
ShyBoy
asimmanzur
Offline Send Email
Nov 10, 2005
4:25 pm
3342
I can not remember if this works or not but did you try changing it from value="0" to value="" ... -- Aaron Rouse http://www.happyhacker.com/...
Aaron Rouse
aaron_rouse
Offline Send Email
Nov 10, 2005
4:35 pm
3343
Thanks Aaron, that work Thanks, ... it from ... org_type"); ... which...
ShyBoy
asimmanzur
Offline Send Email
Nov 10, 2005
4:40 pm
3344
ok I was working on displaying the in-line error msg, and have a <tr id="year1" style=" visibility:hidden; display:none "> under each form field, so I can...
ShyBoy
asimmanzur
Offline Send Email
Nov 10, 2005
4:48 pm
3345
... The only way to get it to throw the required message is to change the value from 0 to an empty string. However, if you want to keep it 0, you could always...
Dan G. Switzer, II
dswitzer2
Online Now Send Email
Nov 10, 2005
5:59 pm
3346
I'm not sure how much help this will be, but here's how I'm working on this feature for qForms v2: ...
Dan G. Switzer, II
dswitzer2
Online Now Send Email
Nov 10, 2005
6:03 pm
3347
Hey Dan, Thats what I was looking the 2nd example you you mentioned. How can I acheive that? thanks ... working on this ... [mailto:qformsapi@yahoogroups.com]...
ShyBoy
asimmanzur
Offline Send Email
Nov 10, 2005
6:17 pm
3348
You're going to have to override the default methods with your own hooks. The goal in v2 is to have a library that does this for you--you'll just need to use...
Dan G. Switzer, II
dswitzer2
Online Now Send Email
Nov 10, 2005
6:25 pm
3349
Can you help me to setup this code. I mean just give me a tutorial for one field in one form. I really need to implement this thing. Thanks your help once...
ShyBoy
asimmanzur
Offline Send Email
Nov 10, 2005
7:00 pm
3350
Hi, In one section of my code, I have the following: logForm.CondOutletTemp.validateExp("this.value < logForm.CondInletTemp.value","The Condenser Outlet Temp....
tmcneer
Offline Send Email
Nov 11, 2005
3:19 pm
3351
I will be out of the office on Friday, November 11. If you need immediate assistance, please contact Tim Bell or Josh Overgaard in Personal Computing....
Kevin Redar
kredar1
Offline Send Email
Nov 11, 2005
3:20 pm
3352
Dan, Saw your example on this page http://www.pengoworks.com/qforms/v2/demo/demo_dhtml_errorBox.htm Like the direction that you're heading. There was a similar...
Scott Goette
segoette
Offline Send Email
Nov 11, 2005
4:43 pm
3353
Scott, You can do it--but you have to hack around it. Take a look at this page: http://www.pengoworks.com/qforms/ext/atLeastOne.htm There's a custom...
Dan G. Switzer, II
dswitzer2
Online Now Send Email
Nov 17, 2005
3:47 pm
3354
Ted, You could add run a function in the form's onsubmit event that would check the qForm object's _queue.errors array (i.e. if( objForm._queue.errors.length >...
Dan G. Switzer, II
dswitzer2
Online Now Send Email
Nov 17, 2005
3:55 pm
3355
Debbie, In you example code you spelled __viewstate wrong. Make sure you're using the correct spelling. -Dan...
Dan G. Switzer, II
dswitzer2
Online Now Send Email
Nov 17, 2005
3:58 pm
3356
Steve, There's no such built-in validation method called "validateValidChars()"--you'd have to create a validation function to do that. I think this will work,...
Dan G. Switzer, II
dswitzer2
Online Now Send Email
Nov 17, 2005
4:02 pm
Messages 3327 - 3356 of 3977   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help