... Sorry for the long delay, I've been focused on other projects. I tried your new build, but it doesn't seem to work any different than before. Opera is...
Can anyone eyeball what I am doing wrong on this page: http://www.heinzconnect.com/hzc.cfm I am attempting to do a four related select...with guidance from ...
Well, I think it's got to do with your variable type that you are passing in. Your first example is passing in a single string as one argument. The second...
From your latest example, it looks as though you want to use a series of integers separated by commas, but there is no fixed number of integers in the string....
Eric, ... I noticed some erroneous carriage returns in your JS that will cause errors. There seem to be unwanted carriage returns between the "// create a ...
I have killed all the carriage returns.....but still getting hosed up...I will cut down the amount of data being returned if you could take another ...
Doh. Had a ) in a line and not (). Talk about needle in a haystack. Thanks anyway; GREAT API!!!! Regards, Eric J. Hoffman Technology Tamer DataStream...
Seth, ... It works on my build here. Are you sure your version of the _f_setValue() function looks like this (or at least the checkbox check?): } else if(...
anyone have any thoughts on this??? I still have not figured it out. :-( Mike ... From: Michael T. Tangorre To: qformsapi@yahoogroups.com Sent: Thursday, July...
I have a unique req. Here is the description: I have one source select box with 20 options to transfer selected ones to 2 target select boxes simultaneously....
I'm new to qForms and I can't get this radio button dependency to work. For a simple test I brought it down to this. I require name and e-mail (and validate...
Mike, ... You're problem is that the getValue() method is going to return a string. To correct this, either do: if(objForm.isMerge.getValue() == "1"){ - or - ...
Matt, ... I'm assuming this is happening when you don't change the default value. This is because in order to get dependencies to run on the default values,...
Here is some code from a four selects related...what I need to do is determine if the prices struct is blank...how do I check for that in Qforms? What we are...
Eric, ... Eric, this really isn't a qForms related issue, it's pure JavaScript. The most efficient way I know to detect whether a structure is empty would be...
how would i make any 3 fields required, not all? // make these fields required :: only need any 3 to be required //objForm.required("MFG, DEVICE_DES, TAG_NO,...
I'm new to qforms and I have a question on creating fields required and dependencies. I have a form where the user MUST answer questions 1-3. If they answer ...
objForm.optional("MFG, DEVICE_DES, TAG_NO, DEVICE_ID, LOCATION"); how an i make 3 field required, but could be any of the 5 fields? there are no real...
Paul, ... You'll need to create a custom validation method for this, or run a custom function on the form's onsubmit event. I recently posted a validation...
thanks Dan.. works well on requiring 1 field. but i messed with all the 0's & 1's in your example & coouldnt get it to work for 3... did get it to do some...
i have messed with every 0 & 1 and am still not able to get 3 to work // [start] validation routine function _f_isAtLeastOne(_f){ var sFields = this.name +...
ok.. getting closer.. but am still confused so if i want any 3 of the 5 fields.. some thing like this?? oForm.apple.validateAtLeastOne("banana,watermelon"); ...
Hello everyone, I am trying to do thew following and woudl like some opinions on the best way to do it... I have two multi select boxes (containers) called:...
I need some advise, I've got to solve the following scenario and I can't get my head around it. I guess one could call it 3 select related with a twist :-) and...
This is what I have so far... if anyone knows of a way to make this easier or more straight forward (if that is possible), I am open for improvements. function...
ok got it to work by adding a ton of fields. so now it throws an error if 3 out of 5 fieelds are not selected. would like to consolodate the error messes, so...