Skip to content

Commit

Permalink
Version 1.2.0 for APEX 18.1 and JET 4.2
Browse files Browse the repository at this point in the history
  • Loading branch information
APEXGru committed Jul 3, 2018
1 parent 5a9554c commit 65ce59e
Show file tree
Hide file tree
Showing 7 changed files with 67 additions and 73 deletions.
Binary file added .DS_Store
Binary file not shown.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ Region Plugin to show one or more Status Meter Gauges based on a SQL statement.

## Changelog

#### 1.2.0 - Fix for APEX 18.1 / JET 4.2
#### 1.1.0 - Added a "Tooltip" column
#### 1.0.0 - Initial Release

Expand Down
4 changes: 2 additions & 2 deletions apexplugin.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name" : "JET StatusMeterGauge",
"version" : "1.1.0",
"version" : "1.2.0",
"description" : "Region Plugin to show one or more Status Meter Gauges based on a SQL statement.",
"keywords" : ["JET","chart"],
"homepage" : "https://github.com/APEXGru/JET-StatusMeterGauge",
Expand All @@ -22,7 +22,7 @@
"oracle" : {
"versions" : ["11.2.0.1", "12.1.0.1", "12.2.0.1"],
"apex" : {
"versions" : ["5.1.0","5.1.1","5.1.2","5.1.3"],
"versions" : ["5.1.0","5.1.1","5.1.2","5.1.3","18.1.0"],
"plugin" : {
"internalName" : "COM.APEXCONSULTING.APEX.JET.GAUGE",
"type" : "region",
Expand Down
131 changes: 63 additions & 68 deletions region_type_plugin_com_apexconsulting_apex_jet_gauge.sql

Large diffs are not rendered by default.

Binary file added server/.DS_Store
Binary file not shown.
Binary file added server/js/.DS_Store
Binary file not shown.
4 changes: 1 addition & 3 deletions server/js/gaugeChart.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,8 @@
"animationOnDisplay" : "auto",
"animationOnDataChange" : "auto",
"value" : item.value,
"metricLabel" : { "text" : item.metricLabel.text },
"label" : { "text" : item.label.text },
"title" : { "text" : " " },
"color" : item.color,
"class" : "a-JET-statusMeterGauge",
"tooltip" : { "renderer" : function( dataContext){
var tooltip = document.createElement("div");
var tooltipText = document.createElement("span");
Expand Down

0 comments on commit 65ce59e

Please sign in to comment.