-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathextension.config.js
More file actions
87 lines (87 loc) · 2.75 KB
/
extension.config.js
File metadata and controls
87 lines (87 loc) · 2.75 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
var dataExtensions = [];
var cloudDataExtensions = [];
var itemExtensions = [{
name: 'barcode',
className: 'EJBarcode',
imageClass: 'customitem-barcode',
displayName: '1D Barcode',
category: 'Barcodes',
toolTip: {
requirements: 'Add a report item to the designer area.',
description: 'Display the barcode lines as report item.',
title: 'Barcode'
}
},
{
name: 'matrixbarcode',
className: 'EJQRBarcode',
imageClass: 'customitem-qrbarcode',
displayName: '2D Barcode',
category: 'Barcodes',
toolTip: {
requirements: 'Add a report item to the designer area.',
description: 'Display the barcode lines as report item.',
title: '2D Barcode'
}
},
{
name: 'ESignature',
className: 'EJSignature',
imageClass: 'customitem-signature',
displayName: 'Electronic',
category: 'Signatures',
toolTip: {
requirements: 'Add a report item to the designer area.',
description: 'This report item is used to add a graphic signature.',
title: 'Electronic'
}
},
{
name: 'PDFSignature',
className: 'EJPDFSignature',
imageClass: 'customitem-pdfsignature',
displayName: 'PDF',
category: 'Signatures',
toolTip: {
requirements: 'Add a report item to the designer area.',
description: 'This report item is used to add a digital PDF signature.',
title: 'PDF'
}
},
{
name: 'Shape',
className: 'EJShape',
imageClass: 'customitem-shape',
displayName: 'Shape',
category: 'Shapes',
toolTip: {
requirements: 'Add a report item to the designer area',
description: 'Display the different types of shapes as report item',
title: 'Shapes'
}
},
{
name: 'pdfdocument',
className: 'EJPdfDocument',
imageClass: 'customitem-pdfdocument',
displayName: 'PDF',
category: 'Documents',
toolTip: {
requirements: 'Add a report item to the designer area.',
description: 'Display the pdf document content in the report',
title: 'PDF'
},
allowHeaderFooter: false
},
{
name: 'htmldocument',
className: 'EJHtmlDocument',
imageClass: 'customitem-htmldocument',
displayName: 'Html',
category: 'Documents',
toolTip: {
requirements: 'Add a report item to the designer area.',
description: 'This report item used to process the html markup text and url',
title: 'Html'
}
}];