Hello,I am new to JavaScript, could you pls. consolidate the below 2 IF statements into only 1 summary IF statement (I mean, put the red IF statement into blue IF statement)my_form:Page1:SunForm1:Middle_Name_text_field ::: Change JavaScriptI wrote the below code in the CHANGE event of a text field o...
Hello,I am new to JavaScript, could you pls. consolidate the below 2 IF statements into only 1 summary IF statement (I mean, put the red IF statement into blue IF statement)my_form:Page1:SunForm1:Middle_Name_text_field ::: Change JavaScriptI wrote the below code in the CHANGE event of a text field o...
I want to have a field at my first page of pdf document which automatically shows how many pages are there in document. Is that possible, if yes, how? i know i can have number of pages in header, but I need special field inside body of my first (general) page of pdf documenttnx in advance
The following script is folder level script:var mySaveAs = app.trustedFunction(function(doc) { app.beginPriv(); var myPath = /C/Users/Dream_peak/Desktop/test.xml; doc.saveAs(myPath); app.endPriv();});under button:event.target.mySaveAs(event.target);Noth...
I have very little programming knowledge. I was wondering if I had two calculations that would be compared with each other. When the second total becomes equal to the first calculation, is it possible to have an image open? (Such as flowers that say "Congratulations!") This is a stand alone form...
A year or two ago I needed a solution that would shrink the font size of text down to fit the length of the text box on a form if too much text was entered. I found many posts in these forums explaining that all you have to do is set the font size of the field to 0. I tried it out at the time and it...
HelloI have a AMOUNT field on my_form. Because of good compatibility/data transfer i have defined it as a DECIMAL FIELD 12,3.Data transfer is btwn my_form and back end system SAP / Oracle. Fine.But, user want to have the below requirement:Say, for example, user entered 10000 dollars, once user EXITs...
HelloI have a AMOUNT field on my_form. Because of good compatibility/data transfer i have defined it as a DECIMAL FIELD 12,3.Data transfer is btwn my_form and back end system SAP / Oracle. Fine.But, user want to have the below requirement:Say, for example, user entered 10000 dollars, once user EXITs...
HelloI have field (say, its name is field_1) in my_form and i am coloring yellow by using below code of initialization event:this.ui.oneOfChild.border.fill.color.value = "255,255,191"; (Actually, just for differentiating / tracing back purpose here am assigning this yellow color to this field, you...