Currently, I am in the process of creating a widget using a timeline JS template. The main challenge lies in receiving events in JSON format, which is essential for the functionality of the widget. At this stage, my focus is on being able to fetch events from a local file. While I have succeeded in retrieving events with dates included, I am encountering difficulties when it comes to adding and displaying the time. Despite trying various suggestions available, none of them seem to be effective in resolving the issue. Is there anyone who can provide assistance?
Below is an excerpt from my JSON test file:
"events":
[{
"start": "2013-03-18", //need to add time here
"end": "2014-03-18",
"title": "test a",
"color": "green",
"description": "this is a test",
"image": "",
"link": ""
},
...
]}