<?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: Horizontal scroll with smart table in Technology Q&amp;A</title>
    <link>https://community.sap.com/t5/technology-q-a/horizontal-scroll-with-smart-table/qaa-p/12049597#M4502971</link>
    <description>&lt;P&gt;according to this post from sapui5. There is no popin support for ui.table.&lt;/P&gt;&lt;P&gt;&lt;A href="https://sapui5.hana.ondemand.com/docs/topics/148892ff9aea4a18b912829791e38f3e.html"&gt;https://sapui5.hana.ondemand.com/docs/topics/148892ff9aea4a18b912829791e38f3e.html&lt;/A&gt;&lt;/P&gt;</description>
    <pubDate>Thu, 31 Oct 2019 13:24:17 GMT</pubDate>
    <dc:creator>csimpson</dc:creator>
    <dc:date>2019-10-31T13:24:17Z</dc:date>
    <item>
      <title>Horizontal scroll with smart table</title>
      <link>https://community.sap.com/t5/technology-q-a/horizontal-scroll-with-smart-table/qaq-p/12049593</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;
  &lt;P&gt;I am trying to make a table that needs horizontal scrolling and I am using a smart table and sap.m.table. The problem I am having is everything is not showing on one row (data for each row is about 60 columns) . I need to get everything on one row and you a horizontal scroll bar. Here is my code and I will attach a picture of what the code is doing now that I am trying to change. All the data in the screen shoot is one row of data. Also I need popin that is why I am using table. Any help would be appreciated thank you.&lt;/P&gt;
  &lt;P&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/attachments/1743659-screen-shot-2019-10-30-at-32609-pm.png" /&gt;&lt;/P&gt;
  &lt;PRE&gt;&lt;CODE&gt;&amp;lt;core:View
	xmlns:core="sap.ui.core" 
	xmlns="sap.m" 
	xmlns:smartFilterBar="sap.ui.comp.smartfilterbar" 
	xmlns:smartTable="sap.ui.comp.smarttable" 
	xmlns:html="http://www.w3.org/1999/xhtml" 
	xmlns:smartForm="sap.ui.comp.smartform" 
	xmlns:app="http://schemas.sap.com/sapui5/extension/sap.ui.core.CustomData/1" 
	controllerName="ECSB1.CommLineOvr.controller.Worklist"
	height="100%"&amp;gt;


	&amp;lt;Page xmlns="sap.m" id="pageId" title="{i18n&amp;gt;worklistTitle}" floatingFooter="true" showNavButton="true" navButtonPress="onNavBack"&amp;gt;
		&amp;lt;smartForm:SmartForm id="smartForm"&amp;gt;
		&amp;lt;/smartForm:SmartForm&amp;gt;
		&amp;lt;smartFilterBar:SmartFilterBar id="smartFilterBar" entitySet="CommOverrideView" &amp;gt;
			&amp;lt;smartFilterBar:controlConfiguration&amp;gt;
			&amp;lt;/smartFilterBar:controlConfiguration&amp;gt;
		&amp;lt;/smartFilterBar:SmartFilterBar&amp;gt;
		&amp;lt;smartTable:SmartTable id="SmartTableID" entitySet="CommOverrideView" smartFilterId="smartFilterBar" useExportToExcel="true"
			tableType="ResponsiveTable" beforeExport="onBeforeExport" useVariantManagement="true" useTablePersonalisation="true" header="Line Items" 
			showRowCount="true" demandPopin="true" class="sapUiResponsiveContentPadding" enableAutoBinding="true"&amp;gt; &amp;lt;!--tableType="ResponsiveTable" --&amp;gt;
			&amp;lt;smartTable:customToolbar&amp;gt;
				&amp;lt;OverflowToolbar design="Transparent"&amp;gt;
					&amp;lt;ToolbarSpacer/&amp;gt;
					&amp;lt;Button text="Add" press="action" app:wiring="\{'press':\{'navigation':\{'routeName':'Add'\}\}\}"/&amp;gt;
				&amp;lt;/OverflowToolbar&amp;gt;
			&amp;lt;/smartTable:customToolbar&amp;gt;
			&amp;lt;smartTable:layoutData&amp;gt;
				&amp;lt;FlexItemData growFactor="1" baseSize="0%" /&amp;gt;
			&amp;lt;/smartTable:layoutData&amp;gt;
			&amp;lt;ScrollContainer horizontal="true"&amp;gt;
				&amp;lt;Table id="TableID" growing="true" growingScrollToLoad="true" growingThreshold="20" selectionChange="onPress" &amp;gt;
					&amp;lt;!--mode="SingleSelectMaster"&amp;gt;--&amp;gt;
				&amp;lt;/Table&amp;gt;
			&amp;lt;/ScrollContainer&amp;gt;
			
		&amp;lt;/smartTable:SmartTable&amp;gt;
	&amp;lt;/Page&amp;gt;
&amp;lt;/core:View&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 30 Oct 2019 19:28:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/horizontal-scroll-with-smart-table/qaq-p/12049593</guid>
      <dc:creator>csimpson</dc:creator>
      <dc:date>2019-10-30T19:28:47Z</dc:date>
    </item>
    <item>
      <title>Re: Horizontal scroll with smart table</title>
      <link>https://community.sap.com/t5/technology-q-a/horizontal-scroll-with-smart-table/qaa-p/12049594#M4502968</link>
      <description>&lt;P&gt;you have to go with ui.table to have scrollbar&lt;/P&gt;&lt;P&gt;m.table won't give you that.&lt;/P&gt;</description>
      <pubDate>Wed, 30 Oct 2019 20:13:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/horizontal-scroll-with-smart-table/qaa-p/12049594#M4502968</guid>
      <dc:creator>junwu</dc:creator>
      <dc:date>2019-10-30T20:13:10Z</dc:date>
    </item>
    <item>
      <title>Re: Horizontal scroll with smart table</title>
      <link>https://community.sap.com/t5/technology-q-a/horizontal-scroll-with-smart-table/qaa-p/12049595#M4502969</link>
      <description>&lt;P&gt;If I go with ui.table don't I lose popin support?&lt;/P&gt;</description>
      <pubDate>Wed, 30 Oct 2019 20:48:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/horizontal-scroll-with-smart-table/qaa-p/12049595#M4502969</guid>
      <dc:creator>csimpson</dc:creator>
      <dc:date>2019-10-30T20:48:06Z</dc:date>
    </item>
    <item>
      <title>Re: Horizontal scroll with smart table</title>
      <link>https://community.sap.com/t5/technology-q-a/horizontal-scroll-with-smart-table/qaa-p/12049596#M4502970</link>
      <description>&lt;P&gt;sap gives you popin to avoid scrollbar.......&lt;/P&gt;&lt;P&gt;what are you think???&lt;/P&gt;</description>
      <pubDate>Thu, 31 Oct 2019 00:09:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/horizontal-scroll-with-smart-table/qaa-p/12049596#M4502970</guid>
      <dc:creator>junwu</dc:creator>
      <dc:date>2019-10-31T00:09:26Z</dc:date>
    </item>
    <item>
      <title>Re: Horizontal scroll with smart table</title>
      <link>https://community.sap.com/t5/technology-q-a/horizontal-scroll-with-smart-table/qaa-p/12049597#M4502971</link>
      <description>&lt;P&gt;according to this post from sapui5. There is no popin support for ui.table.&lt;/P&gt;&lt;P&gt;&lt;A href="https://sapui5.hana.ondemand.com/docs/topics/148892ff9aea4a18b912829791e38f3e.html"&gt;https://sapui5.hana.ondemand.com/docs/topics/148892ff9aea4a18b912829791e38f3e.html&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 31 Oct 2019 13:24:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/horizontal-scroll-with-smart-table/qaa-p/12049597#M4502971</guid>
      <dc:creator>csimpson</dc:creator>
      <dc:date>2019-10-31T13:24:17Z</dc:date>
    </item>
    <item>
      <title>Re: Horizontal scroll with smart table</title>
      <link>https://community.sap.com/t5/technology-q-a/horizontal-scroll-with-smart-table/qaa-p/12049598#M4502972</link>
      <description>&lt;P&gt;I was saying m.table gives you popin to avoid scrollbar......&lt;/P&gt;</description>
      <pubDate>Thu, 31 Oct 2019 16:09:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/horizontal-scroll-with-smart-table/qaa-p/12049598#M4502972</guid>
      <dc:creator>junwu</dc:creator>
      <dc:date>2019-10-31T16:09:24Z</dc:date>
    </item>
    <item>
      <title>Re: Horizontal scroll with smart table</title>
      <link>https://community.sap.com/t5/technology-q-a/horizontal-scroll-with-smart-table/qaa-p/12049599#M4502973</link>
      <description>&lt;P&gt;oh okay I see what your saying. Is there anyway to have both? I have been sreaching but can not find anything so I am guessing probably not?&lt;/P&gt;</description>
      <pubDate>Thu, 31 Oct 2019 16:11:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/horizontal-scroll-with-smart-table/qaa-p/12049599#M4502973</guid>
      <dc:creator>csimpson</dc:creator>
      <dc:date>2019-10-31T16:11:00Z</dc:date>
    </item>
    <item>
      <title>Re: Horizontal scroll with smart table</title>
      <link>https://community.sap.com/t5/technology-q-a/horizontal-scroll-with-smart-table/qaa-p/12049600#M4502974</link>
      <description>&lt;P&gt;Question: I got custom fields in my table, I scroll - but just the standard fields are scrolling but not the custom ones?&lt;/P&gt;</description>
      <pubDate>Wed, 01 Dec 2021 07:26:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/horizontal-scroll-with-smart-table/qaa-p/12049600#M4502974</guid>
      <dc:creator>haemma83</dc:creator>
      <dc:date>2021-12-01T07:26:22Z</dc:date>
    </item>
    <item>
      <title>Re: Horizontal scroll with smart table</title>
      <link>https://community.sap.com/t5/technology-q-a/horizontal-scroll-with-smart-table/qaa-p/12049601#M4502975</link>
      <description>&lt;P&gt;Hi Andreas, nice to meet you here &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;&lt;P&gt;I am wondering to have scrollbar available in smarttable but when i add custom fields it seems to disapear!&lt;/P&gt;</description>
      <pubDate>Wed, 01 Dec 2021 09:52:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/horizontal-scroll-with-smart-table/qaa-p/12049601#M4502975</guid>
      <dc:creator>manfred_fettinger3</dc:creator>
      <dc:date>2021-12-01T09:52:16Z</dc:date>
    </item>
  </channel>
</rss>

