Version: 23.10
Source
The source property allows a Space to explicity call transaction data from the Job API. This means that the listing table rows will show Applications, with the related child Transactions shown underneath.
When source
is set to job
, the parent application rows are not clickable. Instead, it's necessary to expand the approprate row to show the child transactions, and click on (select) one of those to view the details.
Properties
Property | Description |
---|---|
source | Sets the source for the current space Possible values: job Default: null |
Example
src/configs/custom/process.ts
import { ConfigCurrentSpace } from '@transact-open-ux/workspaces/dist/types';
export const processConfig = ({ date, currentUser }: any): ConfigCurrentSpace => ({
label: 'Process',
icon: 'BallotOutlined',
source: 'job',
permissions: {
type: 'role',
value: ['Processing Staff', 'Work Spaces Staff'],
},
hideTasks: {
'Funding Form': ['Funding', 'reviewtemplateform'],
'Origination Form': ['OriginationForm'],
},
pageSize: 10,
loadQuery: true,
...
});
export default processConfig;
Attributes
To review the list of supported attributes, see API Reference.