Some how the site is getting blocked..Can you share the file using below steps so I can have a look at it. 1. Go to URL http://Acrobat.com2. Create an account if you don't have one. 3. Then login to the website. 4. In top left corner you will see a button called Upload. 5. Click on browse and select...
I could not open the document..You can not upload a document to the forum but you can share by following the steps below.Steps to share a document..1. Go to URL http://Acrobat.com2. Create an account if you don't have one. 3. Then login to the website. 4. In top left corner you will see a button cal...
Open the form in Designer and then choose File menu-> Form Properties and then select the PDF Security tab.You will have an option to ptotect the PDF with a password for editing/ printing.ThanksSrini
Did you try placing the second line of code in the same DocReady event?my_form.Page3.Address.COUNTRY.access = "readOnly"xfa.resolveNode("my_form.Page1.Address.COUNTRY.ui.#textEdit.border.fi ll.color").value = "192,192,192";ThanksSrini
As Jono Moore mentioned you can control the display using the patterns.Display Pattern: text{999-999-9999}Edit Pattern: text{9999999999}|text{999.999.9999}|text{999-999-9999}But when you want to store the data to DB, the text field will store only the numbers without the formatting. So when you want...
The regular expression is the key here. /\b([a-z])/g -> will check for all the first character in each word and then pass it to the internal function.If more than one word is available, then it will call the function that many times.ThanksSrini
Place the below code in the exit event with JavaScript to convert the text to proper case.this.rawValue = this.rawValue.replace(/\b([a-z])/g, function (_, initial) {return initial.toUpperCase();});ThanksSrini
You can blank the field by placing the following statement inside the if condition..$.rawValue = "";I had placed the messagebox to find out what is the format of the date that is send when you choose the date from the control. You donot need this. So you can delete it.$host.messageBox($.rawValue)Tha...