In the Radio Button properties, under Field tab, there is a size property. You can increase this property to increase the size of the fill in part of Radio Button.It should work both in Static and Dynamic forms.ThanksSrini
You can use the following display pattern to remove the leading zeros. num{zzzzzzzzz}Place the following code in the change event of the NumericField to restrict the input upto 9 digits with JavaScript as language. if(xfa.event.newText.length >9)xfa.event.change = "";Place the...
Give a proper name for each Footer Row.. (For ex: FotterRow1, FooterRow2)..Then your code will work without much complications.Sum(FooterRow1.TotalA1 + FooterRow2.TotalA2)ThanksSrini
In the TextField properties, set the "Field Format" to Rich Text.And in the preview, press CTRL+E to enable the floating formatting menu. You can see hyperlink as one of the option.ThanksSrini
The only issue I can think of is referencing the proper path.Check the path of the field in the Heirarchy or in the Script Editor.(or) Paste a screen shot of the heirarchy of the form to get a better understanding.Try just "Sum(TotalA1 + TotalA2)" and see what happens..ThanksSrini
You can try the following..1) Keep the same name for all the amount fields in each column. (for example, first amount column field name is "Amount1" and second column field name is "Amount2").2) Then write the code in the Calculate event of the Total field. (Use FormCalc) Total1.rawValue = Sum(T...