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

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-07-2018 02:25 AM
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
- Labels:
-
Alfresco Content Services
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-07-2018 02:34 AM
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
Thanks,
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-07-2018 02:54 AM
Refer below link for details.
