<?xml version="1.0" encoding="UTF-8"?>
<feed xmlns="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <title>Default Display Templates(Table, Title Lists, Abstracts) on  Liferay 7.2 CE</title>
  <link rel="self" href="https://liferay.dev/c/message_boards/find_thread?p_l_id=119785294&amp;threadId=117524582" />
  <subtitle>Default Display Templates(Table, Title Lists, Abstracts) on  Liferay 7.2 CE</subtitle>
  <id>https://liferay.dev/c/message_boards/find_thread?p_l_id=119785294&amp;threadId=117524582</id>
  <updated>2026-04-05T10:55:12Z</updated>
  <dc:date>2026-04-05T10:55:12Z</dc:date>
  <entry>
    <title>RE: Default Display Templates(Table, Title Lists, Abstracts) on  Liferay 7.</title>
    <link rel="alternate" href="https://liferay.dev/c/message_boards/find_message?p_l_id=119785294&amp;messageId=117574013" />
    <author>
      <name>Andrew Jardine</name>
    </author>
    <id>https://liferay.dev/c/message_boards/find_message?p_l_id=119785294&amp;messageId=117574013</id>
    <updated>2019-10-25T21:55:53Z</updated>
    <published>2019-10-25T21:55:53Z</published>
    <summary type="html">Fair enough. But then ... WHY AREN&amp;#39;T THEY ADTs ALREADY?! &lt;img alt="emoticon" src="@theme_images_path@/emoticons/happy.gif" &gt; &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;I have taken &amp;#34;the alternate&amp;#34; approach a few times in the past though when I had to build something ALMOST the same with just a few tweaks. Some of those JSPs would be difficult-to-complicated to turn into ADTs -- and you might not have access to some of the classes you need maybe? Like the AssetPublisherDisplayContext? </summary>
    <dc:creator>Andrew Jardine</dc:creator>
    <dc:date>2019-10-25T21:55:53Z</dc:date>
  </entry>
  <entry>
    <title>RE: Default Display Templates(Table, Title Lists, Abstracts) on  Liferay 7.</title>
    <link rel="alternate" href="https://liferay.dev/c/message_boards/find_message?p_l_id=119785294&amp;messageId=117575473" />
    <author>
      <name>Olaf Kock</name>
    </author>
    <id>https://liferay.dev/c/message_boards/find_message?p_l_id=119785294&amp;messageId=117575473</id>
    <updated>2019-10-25T19:16:42Z</updated>
    <published>2019-10-25T19:16:42Z</published>
    <summary type="html">&lt;div class="quote-title"&gt;Andrew Jardine:&lt;/div&gt;&lt;blockquote&gt;&lt;br /&gt;... so looks like you can control this list from the Control Panel &amp;gt; Configuration &amp;gt; System Settings &amp;gt; Assets &amp;gt; Asset Publisher (widget scope).  I guess this means you can add your own with aJSP hook and then configure the name of the file in the config settings. Very cool.&lt;br /&gt;&lt;/blockquote&gt;Yeah - but why would you go through the trouble doing so, when you could just create a new FTL template?&lt;br /&gt;My guess would be that this special handling will disappear sooner or later, for a uniform handling of the display styles. And then you&amp;#39;d have to edit FTL again, plus you&amp;#39;d have to migrate the stuff that took longer to implement in the first place. And you&amp;#39;d have to maintain it on every minor update already.</summary>
    <dc:creator>Olaf Kock</dc:creator>
    <dc:date>2019-10-25T19:16:42Z</dc:date>
  </entry>
  <entry>
    <title>RE: Default Display Templates(Table, Title Lists, Abstracts) on  Liferay 7.</title>
    <link rel="alternate" href="https://liferay.dev/c/message_boards/find_message?p_l_id=119785294&amp;messageId=117573685" />
    <author>
      <name>Andrew Jardine</name>
    </author>
    <id>https://liferay.dev/c/message_boards/find_message?p_l_id=119785294&amp;messageId=117573685</id>
    <updated>2019-10-25T19:03:36Z</updated>
    <published>2019-10-25T19:03:36Z</published>
    <summary type="html">&lt;html&gt;&lt;head&gt;&lt;/head&gt;&lt;body&gt;Yep -- there they are. Mysteriously named --&lt;br&gt;&lt;br&gt;&lt;ol style="list-style: decimal outside;" start="1"&gt;&lt;li&gt;view_asset_entries_table.jsp&lt;/li&gt;&lt;li&gt;view_asset_entries_title_list.jsp&lt;/li&gt;&lt;li&gt;view_asset_entries_list.jsp&amp;nbsp;&lt;/li&gt;&lt;li&gt;etc.&lt;/li&gt;&lt;/ol&gt;&lt;br&gt;Digging through the source, in the /configuration/ subdirectory you will find the display_settings.jsp. Here you will find this:&lt;br&gt;&lt;br&gt;&lt;pre&gt;&lt;code&gt;&amp;lt;div class="display-template"&amp;gt;
   &amp;lt;liferay-ddm:template-selector className="&amp;lt;%= AssetEntry.class.getName() %&amp;gt;" defaultDisplayStyle="&amp;lt;%= assetPublisherDisplayContext.getDefaultDisplayStyle() %&amp;gt;" displayStyle="&amp;lt;%= assetPublisherDisplayContext.getDisplayStyle() %&amp;gt;" displayStyleGroupId="&amp;lt;%= assetPublisherDisplayContext.getDisplayStyleGroupId() %&amp;gt;" displayStyles="&amp;lt;%= Arrays.asList(assetPublisherDisplayContext.getDisplayStyles()) %&amp;gt;" label="display-template" refreshURL="&amp;lt;%= configurationRenderURL.toString() %&amp;gt;" /&amp;gt;
&amp;lt;/div&amp;gt;&lt;/code&gt;&lt;/pre&gt;&lt;br&gt;&lt;br&gt;and if we look at the AssetPublisherDisplayContext.getDisplayStyles(), the mystery of how they get into the list is solved.&lt;br&gt;&lt;br&gt;&lt;pre&gt;&lt;code&gt;public String getDisplayStyle() {
   if (_displayStyle != null) {
      return _displayStyle;
   }

   _displayStyle = GetterUtil.getString(
      _portletPreferences.getValue(
         "displayStyle",
         _assetPublisherPortletInstanceConfiguration.
            defaultDisplayStyle()));

   return _displayStyle;
}
&lt;/code&gt;&lt;/pre&gt;&lt;br&gt;&lt;br&gt;... so looks like you can control this list from the Control Panel &amp;gt; Configuration &amp;gt; System Settings &amp;gt; Assets &amp;gt; Asset Publisher (widget scope).&amp;nbsp; I guess this means you can add your own with aJSP hook and then configure the name of the file in the config settings. Very cool. Thanks for the helping hand Olaf! &lt;img alt="emoticon" src="@theme_images_path@/emoticons/happy.gif"&gt;&lt;/body&gt;&lt;/html&gt;</summary>
    <dc:creator>Andrew Jardine</dc:creator>
    <dc:date>2019-10-25T19:03:36Z</dc:date>
  </entry>
  <entry>
    <title>RE: Default Display Templates(Table, Title Lists, Abstracts) on  Liferay 7.</title>
    <link rel="alternate" href="https://liferay.dev/c/message_boards/find_message?p_l_id=119785294&amp;messageId=117575187" />
    <author>
      <name>Olaf Kock</name>
    </author>
    <id>https://liferay.dev/c/message_boards/find_message?p_l_id=119785294&amp;messageId=117575187</id>
    <updated>2019-10-25T18:15:09Z</updated>
    <published>2019-10-25T18:15:09Z</published>
    <summary type="html">&lt;div class="quote-title"&gt;sree p:&lt;/div&gt;&lt;blockquote&gt;&lt;br /&gt;I want to see the FTL code from ADT of Table, Title Lists and Abstracts Display templates, those default I see on Asset Publisher settings, so just want to look up it&amp;#39;s code&lt;/blockquote&gt;&lt;br /&gt;There&amp;#39;s no FTL for exactly the ones that you&amp;#39;d like to see. They&amp;#39;re built-in to Liferay (probably for historical reasons, before Widget Display Templates came up) and you can find their jsps in the source tree in /modules/apps/asset/asset-publisher-web/src/main/resources/META-INF/resources</summary>
    <dc:creator>Olaf Kock</dc:creator>
    <dc:date>2019-10-25T18:15:09Z</dc:date>
  </entry>
  <entry>
    <title>RE: Default Display Templates(Table, Title Lists, Abstracts) on  Liferay 7.</title>
    <link rel="alternate" href="https://liferay.dev/c/message_boards/find_message?p_l_id=119785294&amp;messageId=117570901" />
    <author>
      <name>sree p</name>
    </author>
    <id>https://liferay.dev/c/message_boards/find_message?p_l_id=119785294&amp;messageId=117570901</id>
    <updated>2019-10-25T18:03:35Z</updated>
    <published>2019-10-25T18:03:35Z</published>
    <summary type="html">I want to see the FTL code from ADT of Table, Title Lists and Abstracts Display templates, those default I see on Asset Publisher settings, so just want to look up it&amp;#39;s code</summary>
    <dc:creator>sree p</dc:creator>
    <dc:date>2019-10-25T18:03:35Z</dc:date>
  </entry>
  <entry>
    <title>RE: Default Display Templates(Table, Title Lists, Abstracts) on  Liferay 7.</title>
    <link rel="alternate" href="https://liferay.dev/c/message_boards/find_message?p_l_id=119785294&amp;messageId=117573333" />
    <author>
      <name>Andrew Jardine</name>
    </author>
    <id>https://liferay.dev/c/message_boards/find_message?p_l_id=119785294&amp;messageId=117573333</id>
    <updated>2019-10-25T17:47:27Z</updated>
    <published>2019-10-25T17:47:27Z</published>
    <summary type="html">Hi Sree,&lt;br /&gt;&lt;br /&gt;Sorry, but I&amp;#39;m still no understanding what you are looking for. Templating in Liferay has several contexts. You have Pade Display Templates, Widget (formerly Application) Display Templates, you had WCM Templates, etc. Can you maybe give me the steps to reproduce what you are looking for so that I can get on the same page -- and then possible help?</summary>
    <dc:creator>Andrew Jardine</dc:creator>
    <dc:date>2019-10-25T17:47:27Z</dc:date>
  </entry>
  <entry>
    <title>RE: Default Display Templates(Table, Title Lists, Abstracts) on  Liferay 7.</title>
    <link rel="alternate" href="https://liferay.dev/c/message_boards/find_message?p_l_id=119785294&amp;messageId=117570602" />
    <author>
      <name>sree p</name>
    </author>
    <id>https://liferay.dev/c/message_boards/find_message?p_l_id=119785294&amp;messageId=117570602</id>
    <updated>2019-10-25T17:00:27Z</updated>
    <published>2019-10-25T17:00:27Z</published>
    <summary type="html">no, I am working with Display template</summary>
    <dc:creator>sree p</dc:creator>
    <dc:date>2019-10-25T17:00:27Z</dc:date>
  </entry>
  <entry>
    <title>RE: Default Display Templates(Table, Title Lists, Abstracts) on  Liferay 7.</title>
    <link rel="alternate" href="https://liferay.dev/c/message_boards/find_message?p_l_id=119785294&amp;messageId=117562127" />
    <author>
      <name>Andrew Jardine</name>
    </author>
    <id>https://liferay.dev/c/message_boards/find_message?p_l_id=119785294&amp;messageId=117562127</id>
    <updated>2019-10-24T19:41:37Z</updated>
    <published>2019-10-24T19:41:37Z</published>
    <summary type="html">Are you working with a specific portlet? Maybe you can tell me what it is exactly you are trying to do -- that might make this go a little faster. </summary>
    <dc:creator>Andrew Jardine</dc:creator>
    <dc:date>2019-10-24T19:41:37Z</dc:date>
  </entry>
  <entry>
    <title>RE: Default Display Templates(Table, Title Lists, Abstracts) on  Liferay 7.</title>
    <link rel="alternate" href="https://liferay.dev/c/message_boards/find_message?p_l_id=119785294&amp;messageId=117561841" />
    <author>
      <name>sree p</name>
    </author>
    <id>https://liferay.dev/c/message_boards/find_message?p_l_id=119785294&amp;messageId=117561841</id>
    <updated>2019-10-24T19:25:28Z</updated>
    <published>2019-10-24T19:25:28Z</published>
    <summary type="html">Hi Andrew , I can see the source but could not see the code of FTL for table, Title Lists , Abstracts Display templates</summary>
    <dc:creator>sree p</dc:creator>
    <dc:date>2019-10-24T19:25:28Z</dc:date>
  </entry>
  <entry>
    <title>RE: Default Display Templates(Table, Title Lists, Abstracts) on  Liferay 7.</title>
    <link rel="alternate" href="https://liferay.dev/c/message_boards/find_message?p_l_id=119785294&amp;messageId=117548770" />
    <author>
      <name>Andrew Jardine</name>
    </author>
    <id>https://liferay.dev/c/message_boards/find_message?p_l_id=119785294&amp;messageId=117548770</id>
    <updated>2019-10-23T23:33:46Z</updated>
    <published>2019-10-23T23:33:46Z</published>
    <summary type="html">It&amp;#39;s not in the bundle -- it&amp;#39;s a separate download: &lt;a href="https://sourceforge.net/projects/lportal/files/Liferay%20Portal/7.2.0%20GA1/liferay-ce-portal-src-7.2.0-ga1-20190531153709761.zip/download"&gt;https://sourceforge.net/projects/lportal/files/Liferay%20Portal/7.2.0%20GA1/liferay-ce-portal-src-7.2.0-ga1-20190531153709761.zip/download&lt;/a&gt;</summary>
    <dc:creator>Andrew Jardine</dc:creator>
    <dc:date>2019-10-23T23:33:46Z</dc:date>
  </entry>
  <entry>
    <title>RE: Default Display Templates(Table, Title Lists, Abstracts) on  Liferay 7.</title>
    <link rel="alternate" href="https://liferay.dev/c/message_boards/find_message?p_l_id=119785294&amp;messageId=117549877" />
    <author>
      <name>sree p</name>
    </author>
    <id>https://liferay.dev/c/message_boards/find_message?p_l_id=119785294&amp;messageId=117549877</id>
    <updated>2019-10-23T22:26:23Z</updated>
    <published>2019-10-23T22:26:23Z</published>
    <summary type="html">when I reindex i did not see Table, Title Lists, Abstracts ADTs</summary>
    <dc:creator>sree p</dc:creator>
    <dc:date>2019-10-23T22:26:23Z</dc:date>
  </entry>
  <entry>
    <title>RE: Default Display Templates(Table, Title Lists, Abstracts) on  Liferay 7.</title>
    <link rel="alternate" href="https://liferay.dev/c/message_boards/find_message?p_l_id=119785294&amp;messageId=117549591" />
    <author>
      <name>sree p</name>
    </author>
    <id>https://liferay.dev/c/message_boards/find_message?p_l_id=119785294&amp;messageId=117549591</id>
    <updated>2019-10-23T22:25:48Z</updated>
    <published>2019-10-23T22:25:48Z</published>
    <summary type="html">I did not see the source from 7.2 ce bundle, can you please let me know </summary>
    <dc:creator>sree p</dc:creator>
    <dc:date>2019-10-23T22:25:48Z</dc:date>
  </entry>
  <entry>
    <title>RE: Default Display Templates(Table, Title Lists, Abstracts) on  Liferay 7.</title>
    <link rel="alternate" href="https://liferay.dev/c/message_boards/find_message?p_l_id=119785294&amp;messageId=117547476" />
    <author>
      <name>Andrew Jardine</name>
    </author>
    <id>https://liferay.dev/c/message_boards/find_message?p_l_id=119785294&amp;messageId=117547476</id>
    <updated>2019-10-23T17:18:01Z</updated>
    <published>2019-10-23T17:18:01Z</published>
    <summary type="html">You need to download the archive, unpack it and then go to that path. You can find the src archive for all the current and past versions here -- &lt;a href="https://sourceforge.net/projects/lportal/files/Liferay%20Portal/"&gt;https://sourceforge.net/projects/lportal/files/Liferay%20Portal/&lt;/a&gt; -- just make sure you pick the file with the &amp;#34;src&amp;#34; in the name. You could also go to github and navigate there, or clone the repo, etc. If you are working with DXP then the source for the version you are running is available on the customer portal.</summary>
    <dc:creator>Andrew Jardine</dc:creator>
    <dc:date>2019-10-23T17:18:01Z</dc:date>
  </entry>
  <entry>
    <title>RE: Default Display Templates(Table, Title Lists, Abstracts) on  Liferay 7.</title>
    <link rel="alternate" href="https://liferay.dev/c/message_boards/find_message?p_l_id=119785294&amp;messageId=117544208" />
    <author>
      <name>sree p</name>
    </author>
    <id>https://liferay.dev/c/message_boards/find_message?p_l_id=119785294&amp;messageId=117544208</id>
    <updated>2019-10-23T16:16:45Z</updated>
    <published>2019-10-23T16:16:45Z</published>
    <summary type="html">Hello, Andrew, where can i see that path folder/Portal source  and how  can I get into this location: /liferay-ce-portal-src-7.2.0-ga1/modules/apps/asset/asset-publisher-web/src/main/resources/com/liferay/asset/publisher/web/portlet/template/dependencies/portlet-display-templates.xml?</summary>
    <dc:creator>sree p</dc:creator>
    <dc:date>2019-10-23T16:16:45Z</dc:date>
  </entry>
  <entry>
    <title>RE: Default Display Templates(Table, Title Lists, Abstracts) on  Liferay 7.</title>
    <link rel="alternate" href="https://liferay.dev/c/message_boards/find_message?p_l_id=119785294&amp;messageId=117545408" />
    <author>
      <name>Andrew Jardine</name>
    </author>
    <id>https://liferay.dev/c/message_boards/find_message?p_l_id=119785294&amp;messageId=117545408</id>
    <updated>2019-10-23T15:35:31Z</updated>
    <published>2019-10-23T15:35:31Z</published>
    <summary type="html">Some of the ADT (or Widget) templates that are bundled with the portal are actually bundled with the portlets themselves. When a bundled template is added to the system it is visible for configuration, but you can&amp;#39;t &amp;#34;edit&amp;#34; them. I think what you might be looking for is in the Liferay source code. I am not sure how true this is for 7.2 in honesty, but this was the case for past versions. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;For example, if you wanted to see the templates bundled with the Asset Publisher, in the portal source, you would have a look at the location: /liferay-ce-portal-src-7.2.0-ga1/modules/apps/asset/asset-publisher-web/src/main/resources/com/liferay/asset/publisher/web/portlet/template/dependencies/portlet-display-templates.xml</summary>
    <dc:creator>Andrew Jardine</dc:creator>
    <dc:date>2019-10-23T15:35:31Z</dc:date>
  </entry>
  <entry>
    <title>RE: Default Display Templates(Table, Title Lists, Abstracts) on  Liferay 7.</title>
    <link rel="alternate" href="https://liferay.dev/c/message_boards/find_message?p_l_id=119785294&amp;messageId=117528570" />
    <author>
      <name>Olaf Kock</name>
    </author>
    <id>https://liferay.dev/c/message_boards/find_message?p_l_id=119785294&amp;messageId=117528570</id>
    <updated>2019-10-22T07:22:37Z</updated>
    <published>2019-10-22T07:22:37Z</published>
    <summary type="html">&lt;div class="quote-title"&gt;sree p:&lt;/div&gt;&lt;blockquote&gt;&lt;br /&gt;Hellow, I want to see the code of the Default Display Templates (Table, Title Lists, Abstracts, Full Content ) on Liferay 7.2 CE , can you please let me know where i can see them , I went to Global and click widget templates , there I can see some under Structure.&lt;/blockquote&gt;You&amp;#39;ll probably &lt;a href="https://issues.liferay.com/browse/LPS-96956"&gt;need to reindex&lt;/a&gt;.</summary>
    <dc:creator>Olaf Kock</dc:creator>
    <dc:date>2019-10-22T07:22:37Z</dc:date>
  </entry>
  <entry>
    <title>Default Display Templates(Table, Title Lists, Abstracts) on  Liferay 7.2 CE</title>
    <link rel="alternate" href="https://liferay.dev/c/message_boards/find_message?p_l_id=119785294&amp;messageId=117524581" />
    <author>
      <name>sree p</name>
    </author>
    <id>https://liferay.dev/c/message_boards/find_message?p_l_id=119785294&amp;messageId=117524581</id>
    <updated>2019-10-21T22:51:44Z</updated>
    <published>2019-10-21T22:51:44Z</published>
    <summary type="html">Hellow, I want to see the code of the Default Display Templates (Table, Title Lists, Abstracts, Full Content ) on Liferay 7.2 CE , can you please let me know where i can see them , I went to Global and click widget templates , there I can see some under Structure.</summary>
    <dc:creator>sree p</dc:creator>
    <dc:date>2019-10-21T22:51:44Z</dc:date>
  </entry>
</feed>
