Hi,
I have a macros table:
<macros:Table
id="table"
header="{i18n>title}"
metaPath="..."
core:require="{ handler: '...' }">
<macros:actions>
<macrosTable:ActionGroup
key="bulkUpdateGroup"
text="{i18n>bulkUpdateActions}"
placement="Before"
anchor="StandardAction::Create">
<macrosTable:Action
key="key1"
text="{i18n>key1}"
press="handler.onKey1Press"/>
<macrosTable:Action
key="key2"
text="{i18n>key2}"
press="handler.onKey2Press"/>
</macrosTable:ActionGroup>
</macros:actions>
<macros:columns>
...
</macros:columns>
</macros:Table>
with xmlns:macros="sap.fe.macros" and xmlns:macrosTable="sap.fe.macros.table".
In VSCode, the UI5 Language Assistant raises the following error regarding the ActionGroup:
The "ActionGroup" class is under the "actions" aggregation and must match the "Action" type.
This seems wrong as the documentation defines the ActionGroup type as possible alt type for actions.
Hi,
I have a macros table:
with
xmlns:macros="sap.fe.macros"andxmlns:macrosTable="sap.fe.macros.table".In VSCode, the UI5 Language Assistant raises the following error regarding the ActionGroup:
The "ActionGroup" class is under the "actions" aggregation and must match the "Action" type.This seems wrong as the documentation defines the ActionGroup type as possible alt type for actions.