hello, I have a select box called objForm.Users with several items in it. I want to be able to reorder the elements in it . I should be able to select one or...
eoghan
eoghan@...
Apr 4, 2003 11:14 am
1863
... The fields.js extension library already includes moveUp() and moveDown() methods. You can use these a basis for creating moveTop() and moveBottom() ...
Here's a nice short article on correctly utilizing CSS to layout your forms. This would be a correct XHTML implementation--and as you can see, it drastically...
FYI - Although it adds a little more code, you can get the <label> tags to trigger elements by changing the following line: <label><input type="radio"...
While the XHTML doesn't specify (and it's not necessary for XHTML compatibility) the space is necessary for NS4 to correct render the document--so you're...
Hi guys, I need some help please for the following scenario. I have a form which is created on the fly with identical field names. And I need to make sure that...
Wirri, ... I would not recommend using the same fieldname for separate data collections--keep the fieldnames unique for each collection. It's too easy for data...
Hi after getting a lighting fast response yesterday from Dan, thanks a bunch mate, :-) I need to ask again for some assistance. I populate two related select...
... I'm unclear as to what the value of the "OpDays" variable is supposed to be equal to. Is it supposed to be equal to the value of all of the items in the ...
... docs for ... w/exactly ... more. Thanks for your help Dan. Let me try to explain this better. I've got the following fields in the Database ITourID, TTour,...
Wirri, Ok, I understand you know. It's actually not that hard and you're pretty close to what you want to do. Here's what you need to do: 1) Create another...
Hi Dan, Somehow I've hit the ground and I'm sure it's something trivial. I've put an alert box after var OpDays to find out what's happening. and I get "Object...
Wirri, The "stcTOperatingDays.I1" (I2, I3) keys don't need to be structures (i.e. new Object())--just make them key/value pairs. You don't need to use a ...
Thanking you kindly Sir. I didn't see the forest before the trees! This worked perfectly. ...and just in case no-one has mentioned it before. Your API rocks!!!...
I am leaving for Dallas Tuesday Morning threw the Grey Hound... and will be there on the 17th but need time to get internet connection/settled before I can...
Hi guys, can anyone help me "...once again". I have a set of idividually named checkboxes. If checked the corresponding text field needs to be required. I had...
Wirri, The required() method does not globally reset the status of all the fields' "required" property. That means you'll manually need to toggle the value ...
hi is it possible using qforms to get the currently selected text from a select box? thanks...
eoghan
eoghan@...
Apr 16, 2003 12:20 pm
1886
hi, is there way of doing this: x = document.forms[0].s1; x.options[x.selectedIndex].text; <!--- this is what u need using qforms. something like: ...
eoghan
eoghan@...
Apr 16, 2003 3:55 pm
1887
... There's not a built-in method (but you could write one.) Using the API: objForm.s1.obj.options[objForm.s1.obj.selectedIndex].text; Here's a custom method...
I am using the obj.required method and I am not getting results I desire. I am using it with a whole bunch of fields that I want info entered. Such as...
Roger, The required() method simply loops through the list of field names and sets the "required" property to "true". This means it won't overwrite previous ...
hello, Is there any regular expression testing functions in QForms? e.g.: var pattern = new RegExp(regEx, "i"); pattern.test(stringToTest); thanks....
eoghan
eoghan@...
Apr 22, 2003 4:22 pm
1891
Just what's native to the JavaScript spec available to the browser. NS3 doesn't support RegExp--which is why qForms doesn't use any RegExp support by default. ...