Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Create a simple form to collect this information. Name the form Allowances. Here is an example.  We will map the data in these fields, along with some others, to the W - 4 pdf later in this tutorial.

...

Here is a rule to populate the Today's Date control when the form loads. Use the Rule Validator to troubleshoot any issues.

Code Block
if (form.load && TodaySDate.value.length === 0) 
  {  {  
TodaySDate.value = DateUtilfrevvo.todaycurrentDate(form); 
} 

 Be sure to save your form by clicking on the Finishbutton in the designer.

...