Include Periodic Salary Fields

XML Forms Guide

Version
R2024.1.1
Include Periodic Salary Fields

This is an example of how to include periodic salary fields on a custom XML form:

Copy
<ValidationRule Type="PerodicSalaryGreaterThanZero" Event="OnSubmit" />
<!-- Periodic Salary -->
<Label>
    <Style>IVLabel</Style>
    <Caption>lblPeriodicSalary</Caption>
    <MarkAsRequired>false</MarkAsRequired>
    <Row>32</Row>
    <Column>3</Column>
        <AuthorizationKey>HRMS_PAY</AuthorizationKey>
    </Label>
<Field>
    <Style>IVTextBox</Style>
    <Row>33</Row>
    <Column>3</Column>
    <IsRequired>false</IsRequired>
    <BindingProperty>List_EmployeeEmploymentStatus.PeriodicSalary</BindingProperty>
    <AuthorizationKey>HRMS_PAY</AuthorizationKey>
</Field>
<RateSelector>
    <Style>IVTextBoxRight</Style>
    <Row>35</Row>
    <Column>0</Column>
    <IsRequired>true</IsRequired>
    <BindingProperty>List_EmployeeEmploymentStatus.WorkingRateSalary</BindingProperty>
</RateSelector>