2023 Jun 01 2:22 PM
Hi All,
I was trying to access OData V4 service. Problem is accessing the expand level.
It's not working for $expand. Below is the code sample.
manifest.json
"models": { "": { "dataSource": "default", "preload": true, "settings": { "autoExpandSelect": true, "earlyRequests": true, "operationMode": "Server", "synchronizationMode": "None", "groupId" : "$direct", "httpHeaders": { "X-CSRF-Token":"Fetch" } } } } "models": { "": { "dataSource": "default", "preload": true, "settings": { "autoExpandSelect": true, "earlyRequests": true, "operationMode": "Server", "synchronizationMode": "None", "groupId" : "$direct", "httpHeaders": { "X-CSRF-Token":"Fetch" } } } }
When i am use expanded entity "Actions" it stops working.
<List items="{ path: '/Notifications', templateShareable: true }" > <items> <CustomListItem> <content> <VBox> <Label text="{Text}" /> <Text text="{SensitiveText}" /> <List items="{path: 'Actions', templateShareable: true }" > <items> <StandardListItem title="{ActionText}" /> </items> </List> </VBox> </content> </CustomListItem> </items> </List>Payload
Response
Any help here.