Hi Experts,
I am trying to make one table in SAPUI5 for mobile apps. My screen will look like below:
After pressing button it will display table. I am writng XML view code. Table code is like that:
<Tableid="myTable" items="{/ProductSet}">
<columns>
<Column>
<Labeltext="Product ID"></Label>
</Column>
<Column>
<Labeltext="Product Name"></Label>
</Column>
</columns>
<items>
<ColumnListItem>
<cells>
<Texttext="{ProductID}"></Text>
<Texttext="{Name}"></Text>
</cells>
</ColumnListItem>
</items>
</Table>
But it is showing below error.
Uncaught Error: failed to load 'sap.m.Table' from resources/sap/m/Table.js: 404 - Resource could not be found!
Kindly give solution.
Any possible solution would be accepted gratefully.
Regards,
Arindam Samanta