<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>Question Re: Dynamic Smart table Creation in Technology Q&amp;A</title>
    <link>https://community.sap.com/t5/technology-q-a/dynamic-smart-table-creation/qaa-p/12173168#M4552272</link>
    <description>&lt;P&gt;Hi, &lt;SPAN class="mention-scrubbed"&gt;hari_105&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;You can use the class &lt;STRONG&gt;sap.ui.comp.smarttable.SmartTable(id?, settings?)&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Something like this:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;const smartTable = new sap.ui.comp.smarttable.SmartTable(&lt;BR /&gt;  ('smartTable-id'),&lt;BR /&gt;  {&lt;BR /&gt;      entitySet: 'yourEntity',&lt;BR /&gt;      width: '100%',&lt;BR /&gt;      enableAutoBinding: true,&lt;BR /&gt;      tableType: 'ResponsiveTable',&lt;BR /&gt;      useExportToExcel: false,&lt;BR /&gt;      showFullScreenButton: true,&lt;BR /&gt;      useTablePersonalisation: false&lt;BR /&gt;  }&lt;BR /&gt;);&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Here is the &lt;A href="https://sapui5.hana.ondemand.com/1.102.6/#/api/sap.ui.comp.smarttable.SmartTable%23annotations/DataFieldWithUrl" target="_blank"&gt;documentation&lt;/A&gt; where you can find all properties, methods, events...&lt;/P&gt;&lt;P&gt;Hope it helped.&lt;/P&gt;</description>
    <pubDate>Wed, 14 Sep 2022 20:20:36 GMT</pubDate>
    <dc:creator>jessicademarchi</dc:creator>
    <dc:date>2022-09-14T20:20:36Z</dc:date>
    <item>
      <title>Dynamic Smart table Creation</title>
      <link>https://community.sap.com/t5/technology-q-a/dynamic-smart-table-creation/qaq-p/12173165</link>
      <description>&lt;P&gt;Hello Experts,&lt;/P&gt;
  &lt;P&gt;I have a requirement to create dynamic table based on inputs from predecessor view...&lt;/P&gt;
  &lt;P&gt;sap.m.table is an alternative but i would like to try with Smarttable...&lt;/P&gt;
  &lt;P&gt;&lt;A href="https://stackoverflow.com/questions/21014145/sapui5-sap-m-table-dynamic-creation"&gt;https://stackoverflow.com/questions/21014145/sapui5-sap-m-table-dynamic-creation&lt;/A&gt;&lt;/P&gt;
  &lt;P&gt;Any help with an example?&lt;/P&gt;</description>
      <pubDate>Sun, 03 May 2020 08:31:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/dynamic-smart-table-creation/qaq-p/12173165</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2020-05-03T08:31:35Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic Smart table Creation</title>
      <link>https://community.sap.com/t5/technology-q-a/dynamic-smart-table-creation/qaa-p/12173166#M4552270</link>
      <description>&lt;P&gt;Hi &lt;SPAN class="mention-scrubbed"&gt;hari_105&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Smarttable will only work with predefined odata entityset(fixed structure) and with annotations.&lt;/P&gt;&lt;P&gt;It will not work with dynamic structure, so better to go with m.table or ui.table.table.&lt;/P&gt;&lt;P&gt;or I am missing something and would you like to provide more information to your requirement for better solution?&lt;/P&gt;&lt;P&gt;-Mahesh&lt;/P&gt;</description>
      <pubDate>Sun, 03 May 2020 09:04:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/dynamic-smart-table-creation/qaa-p/12173166#M4552270</guid>
      <dc:creator>maheshpalavalli</dc:creator>
      <dc:date>2020-05-03T09:04:27Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic Smart table Creation</title>
      <link>https://community.sap.com/t5/technology-q-a/dynamic-smart-table-creation/qaa-p/12173167#M4552271</link>
      <description>&lt;P&gt;Hi Mahesh,&lt;/P&gt;&lt;P&gt;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&lt;/P&gt;&lt;P&gt;Parent entity set : /ParentEntityset - Data binded directly&lt;/P&gt;&lt;P&gt;Child entity set: /ChildEntity - Data binded with URL - /Child('1')/Details&lt;/P&gt;&lt;P&gt;How to bind child data to smart table.&lt;/P&gt;&lt;P&gt;Thank you.&lt;/P&gt;</description>
      <pubDate>Sun, 05 Jul 2020 07:53:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/dynamic-smart-table-creation/qaa-p/12173167#M4552271</guid>
      <dc:creator>former_member641238</dc:creator>
      <dc:date>2020-07-05T07:53:20Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic Smart table Creation</title>
      <link>https://community.sap.com/t5/technology-q-a/dynamic-smart-table-creation/qaa-p/12173168#M4552272</link>
      <description>&lt;P&gt;Hi, &lt;SPAN class="mention-scrubbed"&gt;hari_105&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;You can use the class &lt;STRONG&gt;sap.ui.comp.smarttable.SmartTable(id?, settings?)&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Something like this:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;const smartTable = new sap.ui.comp.smarttable.SmartTable(&lt;BR /&gt;  ('smartTable-id'),&lt;BR /&gt;  {&lt;BR /&gt;      entitySet: 'yourEntity',&lt;BR /&gt;      width: '100%',&lt;BR /&gt;      enableAutoBinding: true,&lt;BR /&gt;      tableType: 'ResponsiveTable',&lt;BR /&gt;      useExportToExcel: false,&lt;BR /&gt;      showFullScreenButton: true,&lt;BR /&gt;      useTablePersonalisation: false&lt;BR /&gt;  }&lt;BR /&gt;);&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Here is the &lt;A href="https://sapui5.hana.ondemand.com/1.102.6/#/api/sap.ui.comp.smarttable.SmartTable%23annotations/DataFieldWithUrl" target="_blank"&gt;documentation&lt;/A&gt; where you can find all properties, methods, events...&lt;/P&gt;&lt;P&gt;Hope it helped.&lt;/P&gt;</description>
      <pubDate>Wed, 14 Sep 2022 20:20:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/dynamic-smart-table-creation/qaa-p/12173168#M4552272</guid>
      <dc:creator>jessicademarchi</dc:creator>
      <dc:date>2022-09-14T20:20:36Z</dc:date>
    </item>
  </channel>
</rss>

