mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-07-31 17:38:48 +00:00
[ADF-3141] ProcessList Enanchement (#3454)
* * Process list enhancements * * Updated doc for the recent changes * * After rebase * * Require changes done * after rebase
This commit is contained in:
committed by
Eugenio Romano
parent
50e5e7a36a
commit
052a5ab049
@@ -15,6 +15,8 @@
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
import { ObjectDataColumn } from '@alfresco/adf-core';
|
||||
|
||||
export let fakeProcessInstance = {
|
||||
size: 2, total: 2, start: 0,
|
||||
data: [
|
||||
@@ -87,3 +89,31 @@ export let fakeProcessInstancesWithNoName = {
|
||||
}
|
||||
]
|
||||
};
|
||||
|
||||
export let fakeProcessCutomSchema =
|
||||
[
|
||||
new ObjectDataColumn({
|
||||
'key': 'fakeName',
|
||||
'type': 'text',
|
||||
'title': 'ADF_PROCESS_LIST.PROPERTIES.FAKE',
|
||||
'sortable': true
|
||||
}),
|
||||
new ObjectDataColumn({
|
||||
'key': 'fakeProcessName',
|
||||
'type': 'text',
|
||||
'title': 'ADF_PROCESS_LIST.PROPERTIES.PROCESS_FAKE',
|
||||
'sortable': true
|
||||
})
|
||||
];
|
||||
|
||||
export let fakeProcessColumnSchema = {
|
||||
'default': [
|
||||
{
|
||||
'key': 'name',
|
||||
'type': 'text',
|
||||
'title': 'ADF_PROCESS_LIST.PROPERTIES.NAME',
|
||||
'sortable': true
|
||||
}
|
||||
]
|
||||
, fakeProcessCutomSchema
|
||||
};
|
||||
|
Reference in New Issue
Block a user