Implements InlineCreate LPL syntax

By default, creating a new record for a business class from a list opens a separate create form. You can improve usability for simple data entry by adding implements InlineCreate syntax in your configured or user-defined lists. When a list includes inline create, the Create action allows user to create a record directly within the list. Create adds a blank row in the list where the user can complete record entry. If a list implements inline create, the only way to enter records is within the list.

If entries are simple most of the time, but occasionally users need to enter more data for a record than the list shows, you can also include allow form create syntax so the list allows records to be created both inline and with a form.

Example: allow users to update records directly from the list or on a form

Cars is a list that allows users to update records within the list or on a form. When the user clicks the Action menu or the New icon, they are presented two options: Add Row or Create. Add Row adds a blank row to the list. Create opens the Cars form.

Cars is a List
    title is "EmployeeCarChoices"
    implements InlineCreate
        allow form create
    DisplayFields
        Manufacturer
        Model
        Year