How to create Custom dashlet- Table wise listing(it should display Person name with their uploaded documents details)

cancel
Showing results for 
Search instead for 
Did you mean: 
leela
Active Member II

How to create Custom dashlet- Table wise listing(it should display Person name with their uploaded documents details)

Hello Every one,

     

              I am new alfresco, i want to Create Custom Dashlet,: It should be displayed in table wise format in which person name and number of uploaded documents should display. Kindly help to solve this issue.

                                              Thanks in advance

Regards

Leela N

2 Replies
sanjaybandhniya
Intermediate

Re: How to create Custom dashlet- Table wise listing(it should display Person name with their uploaded documents details)

Create following file in "tomcat/shared/classes/alfresco/web-extension/site-webscripts/org/alfresco/components/dashlets".


helloworlddashlet.get.desc.xml


<webscript>
<shortname>Dashlet</shortname>
<description>Dashlet that show a message</description>
<family>dashlet</family>
<url>/components/dashlets/sampledashlet</url>
</webscript>


helloworlddashlet.get.html.ftl


div class="dashlet">
<div class="title">Dashlet example</div>
<div class="body">Hello world</div>
</div>


helloworlddashlet.get.js
Write logic to get data.


Restart Server and your dashlet will be available in Add Dashlet seaction under Customized Dashboard

This link will help you to create custom dashlet.

Surf Dashlets | Alfresco Documentation 

Share Custom Dashlets 

Thanks,

Contcentric

krutik_jayswal
Senior Member II

Re: How to create Custom dashlet- Table wise listing(it should display Person name with their uploaded documents details)

Refer below link for details.

Share Dashlet Using YUI | Krutik Jayswal