<?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>topic Re: Remove resizability from Preview Property View in Alfresco Archive</title>
    <link>https://connect.hyland.com/t5/alfresco-archive/remove-resizability-from-preview-property-view/m-p/306026#M259156</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi Deko,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks for the tip.&amp;nbsp; Unfortunately, even if I delete the entire arrangeTreeViewHeight function in common.js, the page still seems to load with the resizable properties view with items hidden away.&amp;nbsp; There just doesn't seem to be any getting away from it &lt;img id="smileysad" class="emoticon emoticon-smileysad" src="https://connect.hyland.com/i/smilies/16x16_smiley-sad.png" alt="Smiley Sad" title="Smiley Sad" /&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I've managed to create a rather dirty function that removes all the resizing stuff and shows the properties view in all its glory:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="language-none line-numbers"&gt;&lt;CODE&gt;&lt;BR /&gt;function removePropertiesViewHandle()&lt;BR /&gt;{&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;propertiesPanel = document.getElementById('OwRecordPreviewPropertyView').parentNode;&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;propertiesPanel.style.height = 'initial';&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;blankPanel = propertiesPanel.parentNode.parentNode.nextSibling;&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;blankPanel.style.display = 'none';&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;resizeHandle = blankPanel.nextSibling.nextSibling;&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;resizeHandle.style.display = 'none';&lt;BR /&gt;}&lt;BR /&gt;&lt;SPAN class="line-numbers-rows"&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;However I can't seem to find where best to place this call so that it will actually get called at the correct time, any ideas?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Andy&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;P.S. This forum text area seems to have an extraordinarily small font, I have to use my browser dev tools to increase the text size so that I can read what I'm typing &lt;span class="lia-unicode-emoji" title=":confused_face:"&gt;😕&lt;/span&gt;&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 02 Jun 2014 15:03:41 GMT</pubDate>
    <dc:creator>apbarratt</dc:creator>
    <dc:date>2014-06-02T15:03:41Z</dc:date>
    <item>
      <title>Remove resizability from Preview Property View</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/remove-resizability-from-preview-property-view/m-p/306024#M259154</link>
      <description>Hi guys,When loading up a folder to show the documents inside, I have details about our folder on the left hand side (with custom properties that we have designed for our use case).These appear in the Preview Property View (#OwRecordPreviewPropertyView).Underneath this is nothing, however the proper</description>
      <pubDate>Mon, 02 Jun 2014 10:40:00 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/remove-resizability-from-preview-property-view/m-p/306024#M259154</guid>
      <dc:creator>apbarratt</dc:creator>
      <dc:date>2014-06-02T10:40:00Z</dc:date>
    </item>
    <item>
      <title>Re: Remove resizability from Preview Property View</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/remove-resizability-from-preview-property-view/m-p/306025#M259155</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi apbarratt,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Unfortunatley the height of the preview properties view is not hardcoded and cannot be changed easily by changing a CSS value.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;In fact, the height of the view is caluclated via javascript depending on the height of the complete browser window, so if you resize your browser window´s height you will see also the preview property view being resized. Please see function arrangeTreeViewHeight(contentHeight, navigationElementId, isAjaxResponse, useDynamicSplit, collapsibileWidgetHeight, availableHeight) in common.js under webapps/workdesk/js to have an understanding how the height is calculated here. Maybe you want to remove the calculation here and set the height to 100% via CSS then.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Best regards,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Deko&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Jun 2014 12:22:46 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/remove-resizability-from-preview-property-view/m-p/306025#M259155</guid>
      <dc:creator>deko</dc:creator>
      <dc:date>2014-06-02T12:22:46Z</dc:date>
    </item>
    <item>
      <title>Re: Remove resizability from Preview Property View</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/remove-resizability-from-preview-property-view/m-p/306026#M259156</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi Deko,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks for the tip.&amp;nbsp; Unfortunately, even if I delete the entire arrangeTreeViewHeight function in common.js, the page still seems to load with the resizable properties view with items hidden away.&amp;nbsp; There just doesn't seem to be any getting away from it &lt;img id="smileysad" class="emoticon emoticon-smileysad" src="https://connect.hyland.com/i/smilies/16x16_smiley-sad.png" alt="Smiley Sad" title="Smiley Sad" /&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I've managed to create a rather dirty function that removes all the resizing stuff and shows the properties view in all its glory:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="language-none line-numbers"&gt;&lt;CODE&gt;&lt;BR /&gt;function removePropertiesViewHandle()&lt;BR /&gt;{&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;propertiesPanel = document.getElementById('OwRecordPreviewPropertyView').parentNode;&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;propertiesPanel.style.height = 'initial';&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;blankPanel = propertiesPanel.parentNode.parentNode.nextSibling;&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;blankPanel.style.display = 'none';&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;resizeHandle = blankPanel.nextSibling.nextSibling;&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;resizeHandle.style.display = 'none';&lt;BR /&gt;}&lt;BR /&gt;&lt;SPAN class="line-numbers-rows"&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;However I can't seem to find where best to place this call so that it will actually get called at the correct time, any ideas?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Andy&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;P.S. This forum text area seems to have an extraordinarily small font, I have to use my browser dev tools to increase the text size so that I can read what I'm typing &lt;span class="lia-unicode-emoji" title=":confused_face:"&gt;😕&lt;/span&gt;&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Jun 2014 15:03:41 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/remove-resizability-from-preview-property-view/m-p/306026#M259156</guid>
      <dc:creator>apbarratt</dc:creator>
      <dc:date>2014-06-02T15:03:41Z</dc:date>
    </item>
    <item>
      <title>Re: Remove resizability from Preview Property View</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/remove-resizability-from-preview-property-view/m-p/306027#M259157</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi apbarratt,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I would place your function content at the end of the arrangeTreeViewHeight() function in common.js under webapps/workdesk/js. This function is called in the arrangeRecordHeight function in the same file.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;The general javascript call then happens in the onRencer method of the OwRecordSubLayout.java class.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Best regards,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Deko&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Jun 2014 09:34:26 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/remove-resizability-from-preview-property-view/m-p/306027#M259157</guid>
      <dc:creator>deko</dc:creator>
      <dc:date>2014-06-04T09:34:26Z</dc:date>
    </item>
  </channel>
</rss>

