cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Dynamic Smart table Creation

Former Member
0 Likes
1,716

Hello Experts,

I have a requirement to create dynamic table based on inputs from predecessor view...

sap.m.table is an alternative but i would like to try with Smarttable...

https://stackoverflow.com/questions/21014145/sapui5-sap-m-table-dynamic-creation

Any help with an example?

View Entire Topic
maheshpalavalli
Active Contributor

Hi hari_105

Smarttable will only work with predefined odata entityset(fixed structure) and with annotations.

It will not work with dynamic structure, so better to go with m.table or ui.table.table.

or I am missing something and would you like to provide more information to your requirement for better solution?

-Mahesh

0 Likes

Hi Mahesh,

I have created to Screens for parent and child and i am able to display parent list in parent smart table, but when to display child screen based on parent id navigation i am not able display the data in child smart table

Parent entity set : /ParentEntityset - Data binded directly

Child entity set: /ChildEntity - Data binded with URL - /Child('1')/Details

How to bind child data to smart table.

Thank you.