-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest7.json
58 lines (58 loc) · 1.25 KB
/
manifest7.json
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
{
"_version": "1.14.0",
"sap.app": {
"id": "card.explorer.data.list.card",
"type": "card",
"title": "Sample for Client-Side Pagination in Cards",
"subTitle": "Sample for Client-Side Pagination in Cards",
"applicationVersion": {
"version": "1.0.0"
},
"shortTitle": "A short title for this Card",
"info": "Additional information about this Card",
"description": "A long description for this Card",
"tags": {
"keywords": [
"Data",
"Pagination",
"Card",
"Sample"
]
}
},
"sap.card": {
"type": "List",
"data": {
"request": {
"url": "https://services.odata.org/V4/Northwind/Northwind.svc/Products",
"parameters": {
"$format": "json",
"$top": 20
}
},
"path": "/value"
},
"header": {
"title": "Products",
"subTitle": "In Stock Information",
"icon": {
"src": "sap-icon://product"
},
"status": {
"text": "{= format.text(${i18n>CARD.COUNT_X_OF_Y}, [${paginator>/skip} + ${parameters>/visibleItems}, ${/value}.length]) }"
}
},
"content": {
"item": {
"title": "{ProductName}",
"description": "{UnitsInStock} units in stock",
"highlight": "{= ${Discontinued} ? 'Error' : 'Success'}"
}
},
"footer": {
"paginator": {
"pageSize": 5
}
}
}
}