Select all the cells in the row and set the height property. If you have more rows select all the cells in al lthe rows and set the Height property.ThanksSrini
We have set up a new installation of LiveCycle ES4 with SP1 on weblogic. Everything seems to be working fine but we can't check-in or check out files.Actually, a new file can be created and checked-in to the repository for the first time. If you want to make changes to the exsting files, the CheckOu...
If you have Columns and Rows, why not use a Table instead of Subform..Check the binding setting to "repeat Row for each data item".Add the "Delete Row" button to each row in the last column.Add the "Add Row" button below the Table.Add Text Fields to the columns you want the data to be displayed/ mod...
If the user enters a value in the filed, then you need to set the background color back to white in the exit event of the field.if(Field.rawValue != null && Field.rawValue != "") Field.border.fill.color.value = "255,255,255";ThanksSrini
Try the below. Change the language to Java Script.var strText = TextField1.rawValue.toLowerCase();if(strText.indexOf("yahoo",0)>0) xfa.host.messageBox("Yahoo email addresses can not be used");ThanksSrini
Lisa, The code is supposed to be placed in the calculate event and not on the Exit event. Since this field is readonly the user will never enter anything in the field so Exit event does not make sense. Below is the refined version of the calculate event code.. Change the scripting langua...
I am able to see the changes with that code in the exit event..Initialize and Change events are not the correct events to place this code.Initialize event will fire only once when you are opening the form.Change event will fire for every character you type into the Text field.May be if you can send ...
You need to pass the root subform as an argument to this function. Common.HideSubforms(this.parent.parent); In my screenshot, I was calling this function on the initialize event of the TextField1 inside Subform2.I need to pass the rootnode (Page1) to this function to work.ThanksSrini