Hi,You can do the following:You have to use a normal button!!Please copy the following code in the click-event of the normal button!You have only adapt if the name of your DropDwonList is not the same ( in line 1 and line 4)!!If the user don't use the DD the buttons don't works. The button works if ...
I'm not sure if I understand you right.Here is a script that check if you leave the field which entry the user makes.If the entry is a "G" the field will be filled with color.You have to use this script in the change-event of the script editor. This allows to entry only G or R or Y or 0.if(xfa.event...
Why you use the action builder?What would you like to create?You cold use the following - the subform is visible if the textfield is empty - not empty the subform is hidden:if(PathToTextfield.NameTextobject.rawValue == null){ PathToSubform.NameSubform.presence = "visible";}else{PathToSubform.Name...
This works fine:if (this.rawValue < 4.5 || this.rawValue > 7 ){ if (this.rawValue != null){ app.alert("Values is outside the allowable range"); this.rawValue = null; xfa.host.setFocus("this"); }}Or with the syntax of Kyle:if ...
Hi,you have t copy this script in the calculate event of your target field, use Javascript.this.rawValue = Math.min(num_1.rawValue, num_2.rawValue);Hope it will helps you,Mandy
The name if you don't understand is only a name for the variable and is an combination from english and german.Subject is the english word for BetreffMessage is the english word for Nachricht.You could use this://fill in e-mailvar Mailto = Formular1.s1.email.rawValue;//var Mailto = "test@test.de";//...
Hi,the LCD is case sensitiv.Other is not the sam as other.You have to write Other.mandatory = "error";Other.mandatory = "disabled";NOTother.mandatory = "error";The change-event is right.Helpful?Mandy
The solution is very simple.You have to use this script in the calculate-event of your target field (nomally in the table footer). You have to use Formcalc.If you create instances of the row your code have to be:If the name of your row is another you have to adpt htis.If the name of your amount fiel...