Hi,I'm desperately trying to enlarge the border of a textField using JavaScript.I tried:xfa.resolveNode("#subform[0].#field[0]").borderWidth = "0.2in";as well asxfa.resolveNode("#subform[0].#field[0]").ui.textEdit.borderWidth = "0.2in";Nothing happened.Does anyone have an idea, what's wrong?Regards,...
This is part of the code i obtained in order to check validation.//var reg = /^\d+$/; // checks whether input contains ONLY digits var reg = /\d+/; // checks whether input contains digits AND letters However, i found that both options checks only wether input contains letters.What is the function th...
Hello,I'm testing at the moment the manual installation of Form Manager 7.0.1 together with Forms on a Windows 2003 server (JBoss and MS SQL Server 2000). In installation guide (page 64 in the German version, page 59 in the English version) two .jar files (xercesImpl-2.6.2.jar and xalan-2.6.0.jar) a...
We have a form that in one of it's field you can enter phone number.We want a script that checks that the first digit entered is 0.If another digit is being entered a pop up message will appear that the digit entered is not correct.What is the script in order to achieve this ?
I'm looking for a simple script that will check the entered data in a specific field.If i enter numbers in the name/last name field i should get a pop up message that entering numbers in this field are not allowed. (And vice versa regarding numeric fields).What is the script for that ?
hi everybody,i'am getting into this matter (Designer/DB) right now. i am actually following a tutorial picked from die adobe site (http://www.adobe.com/devnet/livecycle/designing_forms.html) named 'Providing interaactive database lookup from forms' (link: http://www.adobe.com/devnet/livecycle/articl...
I need the value of a drop down to make an invisible form visible if its value is under 5, this is the code I am using under the change function:if(this.rawValue == 1){ addtl.presence = "visible";}else{ addtl.presence = "invisible";}if(this.rawValue == 2){ addtl.presence = "visible";}else{ addtl.pre...
This is going to be lengthy, so please be patient. I'm not a database expert or forms designer by trade. I have 3 problems with the same form that I need help with.1) I'm trying to create a template from which I can query our database and create different order forms for different vendors. In doing ...