Hope the following JS code helps you..........var checkDate = isCurrOrPastDate(this.rawValue)if (checkDate == true) { //xfa.host.messageBox("This date is valid current or past date."); }else { xfa.host.messageBox("Date can not be a future date"); xfa.host.setFocus(this.somExpression); //set focus ba...
Let me try to explain it one more time.........Here is how I will do it.1. Add a text area and type in "Thank You For Your Recent Donation of $"2. Right after $ I will do right click on mouse and select "Floating field" from the popup menu then it will look like "Thank You For Your Recent Donation o...
You answered your question your self. Check for "floating field" under help. You can do it with out text box. When you all floating field it in a running text by default you see {TextField} to rename or to do some scripting you highlight it and then select the field in Hierarchy window.
If you have original template designed in LiveCcle open it in LC again and choose 'Save As' then make sure to select 'Include Fonts' before saving, however doing so may increase the size of the file depending on verity of fonts used at design time.
In your case all you need to use is just if conditions.... because only one of them will be true any time and no need to use else.var FLU1 = /(^[A-G])/ var FLU2 = /(^[H-O]|P[a-e])/ var FLU3 = /(^P[f-z]|[Q-Z])/ if (FLU1.test(xfa.resolveNode("form1.dbObjects.clientLastName").rawValue)== true); { this....
One prominent way to handle this is separate Header and detail rows in to two subforms (Sub1, Sub2) and then use "Overflow Leader" under Pagination Tab in Object pallet (for Sub2) to set the header to print on top of every page break.
Check the 'Layout' tab and look for Height property for all the subforms in the tree. Having 'Expand to fit' and 'Auto-fit' checked under Height property will make the things better for you.
I have done some thing similar to this using 'index' property of dynamic subform. I your case you may have to use subform (child) in a subform (parent). And when displaying the number trap the value of index respect to the current position and then concat them then display. For example code should l...