cancel
Showing results for 
Search instead for 
Did you mean: 

How to add 'My tasks' dashlet on the site

johncage
Champ in-the-making
Champ in-the-making
Hello all,

I want to find a way how to add "My tasks" dashlet on the site dashboard and also to be available for drag and drop on the site customization page.

Thanks for any help,
John
2 REPLIES 2

johncage
Champ in-the-making
Champ in-the-making
Hello,

actually the solution is to change the content of the file

share/WEB-INF/classes/alfresco/site-webscripts/org/alfresco/components/dashlets/my-tasks.get.desc.xml
so it contains the following content:

<webscript>
   <shortname>My Tasks</shortname>
   <description>Dashlet to list tasks assigned to the current user</description>
   <family>dashlet</family>
   <url>/components/dashlets/my-tasks</url>
</webscript>


The change is in the line

   <family>dashlet</family>

dashlet - means that the dashlet is available on both admin and site dashboards.

-John