Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dani3lsun/apex-plugin-odfviewer
Oracle APEX Region Plugin - ODF Viewer
https://github.com/dani3lsun/apex-plugin-odfviewer
oracle oracle-apex-plugin orclapex plsql
Last synced: 1 day ago
JSON representation
Oracle APEX Region Plugin - ODF Viewer
- Host: GitHub
- URL: https://github.com/dani3lsun/apex-plugin-odfviewer
- Owner: Dani3lSun
- License: agpl-3.0
- Created: 2015-08-09T19:42:47.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2016-12-17T18:41:26.000Z (about 8 years ago)
- Last Synced: 2024-12-21T23:16:34.826Z (5 days ago)
- Topics: oracle, oracle-apex-plugin, orclapex, plsql
- Language: PLSQL
- Homepage:
- Size: 1.14 MB
- Stars: 3
- Watchers: 4
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Oracle APEX Region Plugin - ODF Viewer
ODF Viewer is a region type plugin that allows you to display ODF files like spreadsheets(.ods) or documents(.odt) with a single sql query.
It is based on JS Framework webodf.js (https://github.com/kogmbh/WebODF).## Changelog
#### Beta - In development## Install
- Import plugin file "region_type_plugin_de_danielh_odfviewer.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
- SQL Query that returns a BLOB value and the filename as text
- Select the BLOB column (Content should be a ODF compatible file, all other kind of files doesn´t work)
- Select the filename column (should contain the whole filename incl. file ending)
- Error Text when filetype is not a ODF file#### Example SQL Query:
```language-sql
SELECT content, (BLOB)
filename (varchar2)
FROM file_table
WHERE id = :P10_FILE_ID
```
## Demo Application
https://apex.oracle.com/pls/apex/f?p=APEXPLUGIN## Preview
![](https://github.com/Dani3lSun/apex-plugin-odfviewer/blob/master/preview.png)
---