https://github.com/dani3lsun/apex-plugin-timeline
Oracle APEX Region Plugin - Timeline
https://github.com/dani3lsun/apex-plugin-timeline
oracle oracle-apex-plugin orclapex plsql
Last synced: 10 months ago
JSON representation
Oracle APEX Region Plugin - Timeline
- Host: GitHub
- URL: https://github.com/dani3lsun/apex-plugin-timeline
- Owner: Dani3lSun
- License: other
- Created: 2015-08-08T14:18:26.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2016-12-17T18:34:55.000Z (over 9 years ago)
- Last Synced: 2025-07-21T16:48:17.811Z (11 months ago)
- Topics: oracle, oracle-apex-plugin, orclapex, plsql
- Language: JavaScript
- Homepage:
- Size: 1010 KB
- Stars: 6
- Watchers: 3
- Forks: 4
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Oracle APEX Region Plugin - Timeline
Timeline is a region type plugin that allows you to draft very nice looking timelines with a single sql query.
It is based on JS Framework timeline.js (https://github.com/NUKnightLab/TimelineJS).
You can embed various sorts of media via URLs, for example:
- simple Images
- Videos
- Music
- Youtube
- Flickr
- Twitter
- Google Maps
- and many more, read more on timeline.js homepage.
## Changelog
#### 1.1 - fixed broken timeline when optional columns from sql source were null / fixed broken timeline when headline or description contains special character returns / fixed display of apex substitution strings in sql source and plugin attributes / enhancement: added possibility to display timeline slider only instead of timeline + media content
#### 1.0 - Initial Release
## Install
- Import plugin file "region_type_plugin_de_danielh_timeline.sql" from source directory into your application
- (Optional) Deploy the CSS/JS files from "server" directory on your webserver and change the "File Prefix" to webservers folder.
## Plugin Settings
The plugin settings are highly customizable and you can change:
- Headline of master page
- Description of master page
- Media URL of master page
- Choose between 17 fonts
- Choose between 60 languages, just enter the language code
- set the default width(pixel and percent) and height(only pixel)
- All the rest comes out of your sql query.
#### Example SQL Query:
```language-sql
SELECT start_date (date),
end_date (date),
headline (varchar2),
description (varchar2 - nullable),
media_url (varchar2 - nullable)
FROM timeline
```
## Demo Application
https://apex.oracle.com/pls/apex/f?p=APEXPLUGIN
## Preview

---
At the moment only whole days are supported. Support for hours is planned for future releases.