TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
C# Corner
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
How to Get All the Calendar Events in Alfresco
Muralidharan Deenathayalan
Sep 30, 2019
6.7
k
0
0
facebook
twitter
linkedIn
Reddit
WhatsApp
Email
Bookmark
In this blog I will describe about how to get all the calendar events in Alfresco.
How to Get All the Calendar Events in Alfresco
var results = search.selectNodes(
"workspace://SpacesStore"
,
"descendant::*[hasAspect('ia:docFoldered')]"
);
logger.log(
"Total rows "
+ results.length);
for
(var i =
0
; i < results.length; i++) {
var node = results[i];
var nodename = node.name;
logger.log(nodename);
}
Hope this helps someone.
How to Get All the Calendar Events in Alfresco
Next Recommended Reading
Configure Alfresco User Quota and Usage