Added more columns
This commit is contained in:
parent
986e5fcff5
commit
0594cf82cd
@ -36,9 +36,9 @@ export const DocumentJob = {
|
||||
`/dashboard/management/documentjobs/info?documentJobId=${_id}&action=edit`
|
||||
}
|
||||
],
|
||||
columns: ['name', '_id', 'width', 'height', 'createdAt', 'updatedAt'],
|
||||
filters: ['name', '_id', 'width', 'height'],
|
||||
sorters: ['name', 'width', 'height', 'createdAt', 'updatedAt'],
|
||||
columns: ['name', '_id', 'state', 'createdAt', 'updatedAt'],
|
||||
filters: ['name', '_id', 'state'],
|
||||
sorters: ['name', 'state', 'createdAt', 'updatedAt'],
|
||||
properties: [
|
||||
{
|
||||
name: '_id',
|
||||
|
||||
@ -38,13 +38,15 @@ export const DocumentPrinter = {
|
||||
columns: [
|
||||
'name',
|
||||
'_id',
|
||||
'documentSize',
|
||||
'documentSize._id',
|
||||
'createdAt',
|
||||
'state',
|
||||
'host',
|
||||
'host._id',
|
||||
'tags',
|
||||
'connectedAt',
|
||||
'updatedAt'
|
||||
],
|
||||
filters: ['name', '_id'],
|
||||
sorters: ['name', 'documentSize', 'createdAt', 'updatedAt'],
|
||||
sorters: ['name', 'documentSize', 'connectedAt', 'updatedAt'],
|
||||
properties: [
|
||||
{
|
||||
name: '_id',
|
||||
|
||||
@ -35,9 +35,24 @@ export const DocumentSize = {
|
||||
`/dashboard/management/documentsizes/info?documentSizeId=${_id}&action=edit`
|
||||
}
|
||||
],
|
||||
columns: ['name', '_id', 'width', 'height', 'createdAt', 'updatedAt'],
|
||||
filters: ['name', '_id', 'width', 'height'],
|
||||
sorters: ['name', 'width', 'height', 'createdAt', 'updatedAt'],
|
||||
columns: [
|
||||
'name',
|
||||
'_id',
|
||||
'width',
|
||||
'height',
|
||||
'infiniteHeight',
|
||||
'createdAt',
|
||||
'updatedAt'
|
||||
],
|
||||
filters: ['name', '_id', 'width', 'height', 'infiniteHeight'],
|
||||
sorters: [
|
||||
'name',
|
||||
'width',
|
||||
'height',
|
||||
'infiniteHeight',
|
||||
'createdAt',
|
||||
'updatedAt'
|
||||
],
|
||||
properties: [
|
||||
{
|
||||
name: '_id',
|
||||
|
||||
@ -167,7 +167,16 @@ export const Printer = {
|
||||
]
|
||||
}
|
||||
],
|
||||
columns: ['name', '_id', 'state', 'tags', 'connectedAt'],
|
||||
columns: [
|
||||
'name',
|
||||
'_id',
|
||||
'state',
|
||||
'host',
|
||||
'host._id',
|
||||
'tags',
|
||||
'connectedAt',
|
||||
'updatedAt'
|
||||
],
|
||||
filters: ['name', '_id', 'state', 'tags'],
|
||||
sorters: ['name', 'state', 'connectedAt'],
|
||||
group: ['tags'],
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user