Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/bediniupi/analyticsdatahtml
Bookmarklet to add custom HTML data format In Alma Analytics Columns properties
https://github.com/bediniupi/analyticsdatahtml
alma analytics bookmarklet oas obiee
Last synced: 24 days ago
JSON representation
Bookmarklet to add custom HTML data format In Alma Analytics Columns properties
- Host: GitHub
- URL: https://github.com/bediniupi/analyticsdatahtml
- Owner: bediniupi
- License: mit
- Created: 2020-11-06T08:53:09.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2021-01-14T10:35:27.000Z (almost 4 years ago)
- Last Synced: 2024-10-21T05:32:31.288Z (2 months ago)
- Topics: alma, analytics, bookmarklet, oas, obiee
- Language: JavaScript
- Homepage:
- Size: 32.2 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# AnalyticsDataHTML
Bookmarklet to add custom HTML data format In Alma Analytics Columns properties## Installation
Go to this url and follow the instructions: [AnalyticsDataHTML](https://bediniupi.github.io/AnalyticsDataHTML/bookmarklet.html)## How to use
To add and apply an html format data view simply open the Column properties, go to Data format tab and click first on the bookmarklet, then to ok button.## Some usage example
In Alma Analytics you only have two choices to override the default data format: if you want, for example, to highlight a part of text a simple way could be adding `` tag to it, but if you try the tags will be displayed literally.
### Example to highlight the word "library" in bibliografic title:
In "Bibliographic Details"."Title" column formula change it as:
`replace("Bibliographic Details"."Title", 'library', 'library')`
### Apply a color: use tag <span> to avoid line break:
`replace("Bibliographic Details"."Title", 'library', 'library')`
### Avoid string between <> disappearing
The html format couse every string between <> treated as xml/html tags: replace every occurrence of the column name with this formula:
`replace("Bibliographic Details"."Title","<", "<")`
#### Nested formula (bold library and no tag strings disappearing):
`replace(replace("Bibliographic Details"."Title","<", "<"), 'library', 'library')`