...
Code Block |
---|
if (form.load && EmployeeName.value === '') { EmployeeName.value = _data.getParameter('subject.first.name') + ' ' + _data.getParameter('subject.last.name'); EmployeeEmail.value = _data.getParameter ('subject.email'); Reviewer.value = _data.getParameter("subject.reports.to"); } |
Expense Report Section (to be filled in by Employee)
Create a section called Expense Report as shown above. Employees will fill in this section to calculate their expenses. Use the Table control to make your grid. You will find information about adding, removing and moving columns in a table here,
...