This is FormCalc on the click event of a check box:if ($.rawValue==1)thenP1.subformelmo.presence="visible"else P1.subformelmo.presence="hidden"endifIn this example the subform on page 1 is hidden until the box is checked.
To control vertical alignment:Go to Window on the menu barCheck off Paragraph in the drop menuclick the paragraph tab on the new pallette that appears.Here you can push text to the top, bottom or center by clicking the appropriate icon
Try this:Add a footer to your page. Add two buttons (ADD & DELETE) to the footer.On the click event of the ADD button (javascript):form1.page1._body.addInstance(1);if (form1.page1._body.count > 1) { form1.page1.footer.deleteBtn.presence = "visible";}else { form1.page1.footer.deleteBtn.presenc...
So your script should look like this:var total = 0;if ( first_approve.rawValue == 1 ) {total1 = first_amount.rawValue;}else {total1 = "0";}This is entered as a "calculate" event into a hidden field named total1.Add 7 more hidden fields and name each total2 thru total8total2 script will be:var tot...