| 1234567891011121314151617181920212223242526272829 |
- const { pages } = require('@alancnet/material-framework/app/crud')
- pages({
- camelName: 'staffMember',
- columns: [
- { camelName: 'name', row: 1 },
- { camelName: 'title', row: 2 },
- {
- titleName: 'Staffing Agency',
- camelName: 'staffingAgencyId',
- type: 'autocomplete',
- apiPrefix: '/api/staffing-agencies'
- }
- ],
- layout: [
- {
- section: null,
- rows: [
- [ 'name', 'title' ]
- ]
- },
- {
- section: 'Staffing information',
- rows: [
- [ 'staffingAgencyId' ]
- ]
- }
- ]
- })
|