<?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: Change max items in my documents dashlet in Alfresco Forum</title>
    <link>https://connect.hyland.com/t5/alfresco-forum/change-max-items-in-my-documents-dashlet/m-p/38795#M16316</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;done!!! I have changed too "&lt;SPAN style="color: #727174; background-color: #ffffff;"&gt;?max=50" for "&lt;SPAN&gt;?max=6" in&amp;nbsp;my-documents-min.js.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #727174; background-color: #ffffff;"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #727174; background-color: #ffffff;"&gt;&lt;SPAN&gt;thanks Krutik&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 01 Dec 2017 11:03:51 GMT</pubDate>
    <dc:creator>pintureti</dc:creator>
    <dc:date>2017-12-01T11:03:51Z</dc:date>
    <item>
      <title>Change max items in my documents dashlet</title>
      <link>https://connect.hyland.com/t5/alfresco-forum/change-max-items-in-my-documents-dashlet/m-p/38789#M16310</link>
      <description>Good morning,Alfresco 5.I have changed directly the code of&amp;nbsp;/tomcat/webapps/share/WEB-INF/classes/alfresco/site-webscripts/org/alfresco/components/dashlets/my-documents.get.config.xml to change the max items from 50 to 6, to show only 6 results.&amp;lt;config&amp;gt; &amp;lt;max-items&amp;gt;6&amp;lt;/max-items&amp;gt; &amp;lt;</description>
      <pubDate>Fri, 01 Dec 2017 07:22:06 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-forum/change-max-items-in-my-documents-dashlet/m-p/38789#M16310</guid>
      <dc:creator>pintureti</dc:creator>
      <dc:date>2017-12-01T07:22:06Z</dc:date>
    </item>
    <item>
      <title>Re: Change max items in my documents dashlet</title>
      <link>https://connect.hyland.com/t5/alfresco-forum/change-max-items-in-my-documents-dashlet/m-p/38790#M16311</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;After making changes you need to refresh share side webscript/restart the server.You can use below url to refresh webscript.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="link-titled" href="http://localhost:8081/share/service/index" title="http://localhost:8081/share/service/index" rel="nofollow noopener noreferrer"&gt;http://localhost:8081/share/service/index&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Have you done this?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 01 Dec 2017 07:55:15 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-forum/change-max-items-in-my-documents-dashlet/m-p/38790#M16311</guid>
      <dc:creator>krutik_jayswal</dc:creator>
      <dc:date>2017-12-01T07:55:15Z</dc:date>
    </item>
    <item>
      <title>Re: Change max items in my documents dashlet</title>
      <link>https://connect.hyland.com/t5/alfresco-forum/change-max-items-in-my-documents-dashlet/m-p/38791#M16312</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks, yes but still do the same.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 01 Dec 2017 08:15:56 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-forum/change-max-items-in-my-documents-dashlet/m-p/38791#M16312</guid>
      <dc:creator>pintureti</dc:creator>
      <dc:date>2017-12-01T08:15:56Z</dc:date>
    </item>
    <item>
      <title>Re: Change max items in my documents dashlet</title>
      <link>https://connect.hyland.com/t5/alfresco-forum/change-max-items-in-my-documents-dashlet/m-p/38792#M16313</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Good finding.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You need to make changes inside&amp;nbsp; below file&lt;/P&gt;&lt;P&gt;share-war\components\dashlets\my-documents.js&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Update below method.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;getWebscriptUrl: function SimpleDocList_getWebscriptUrl()&lt;BR /&gt; {&lt;BR /&gt;&amp;nbsp; return Alfresco.constants.PROXY_URI + "slingshot/doclib/doclist/documents/node/alfresco/company/home?max=50";&lt;BR /&gt; },&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;getWebscriptUrl: function SimpleDocList_getWebscriptUrl()&lt;BR /&gt; {&lt;BR /&gt;&amp;nbsp; return Alfresco.constants.PROXY_URI + "slingshot/doclib/doclist/documents/node/alfresco/company/home?max=6";&lt;BR /&gt; },&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It is bug in alfresco , URL parameter max should be taken from config script but its not so you need to update in above file.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 01 Dec 2017 08:29:22 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-forum/change-max-items-in-my-documents-dashlet/m-p/38792#M16313</guid>
      <dc:creator>krutik_jayswal</dc:creator>
      <dc:date>2017-12-01T08:29:22Z</dc:date>
    </item>
    <item>
      <title>Re: Change max items in my documents dashlet</title>
      <link>https://connect.hyland.com/t5/alfresco-forum/change-max-items-in-my-documents-dashlet/m-p/38793#M16314</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="color: #727174; background-color: #ffffff;"&gt;Sorry, do the same. I'm testing with existing users.&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 01 Dec 2017 10:55:13 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-forum/change-max-items-in-my-documents-dashlet/m-p/38793#M16314</guid>
      <dc:creator>pintureti</dc:creator>
      <dc:date>2017-12-01T10:55:13Z</dc:date>
    </item>
    <item>
      <title>Re: Change max items in my documents dashlet</title>
      <link>https://connect.hyland.com/t5/alfresco-forum/change-max-items-in-my-documents-dashlet/m-p/38794#M16315</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;did not get your point&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 01 Dec 2017 10:56:15 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-forum/change-max-items-in-my-documents-dashlet/m-p/38794#M16315</guid>
      <dc:creator>krutik_jayswal</dc:creator>
      <dc:date>2017-12-01T10:56:15Z</dc:date>
    </item>
    <item>
      <title>Re: Change max items in my documents dashlet</title>
      <link>https://connect.hyland.com/t5/alfresco-forum/change-max-items-in-my-documents-dashlet/m-p/38795#M16316</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;done!!! I have changed too "&lt;SPAN style="color: #727174; background-color: #ffffff;"&gt;?max=50" for "&lt;SPAN&gt;?max=6" in&amp;nbsp;my-documents-min.js.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #727174; background-color: #ffffff;"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #727174; background-color: #ffffff;"&gt;&lt;SPAN&gt;thanks Krutik&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 01 Dec 2017 11:03:51 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-forum/change-max-items-in-my-documents-dashlet/m-p/38795#M16316</guid>
      <dc:creator>pintureti</dc:creator>
      <dc:date>2017-12-01T11:03:51Z</dc:date>
    </item>
    <item>
      <title>Re: Change max items in my documents dashlet</title>
      <link>https://connect.hyland.com/t5/alfresco-forum/change-max-items-in-my-documents-dashlet/m-p/38796#M16317</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ideally it should not have been changed in *-min.js , it should be in&amp;nbsp;&lt;SPAN style="color: #727174; background-color: #ffffff;"&gt;my-documents.js and then compressed.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Dec 2017 14:33:29 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-forum/change-max-items-in-my-documents-dashlet/m-p/38796#M16317</guid>
      <dc:creator>krutik_jayswal</dc:creator>
      <dc:date>2017-12-05T14:33:29Z</dc:date>
    </item>
  </channel>
</rss>

