Skip to content

Commit

Permalink
Merge pull request #35 from rikiginqo/master
Browse files Browse the repository at this point in the history
Merged Updates v.1.9 to Main Branch after testing extension in Qlik SaaS and Qlik On-Prem
  • Loading branch information
maxwellginqo authored Jan 9, 2023
2 parents d7f5a95 + ada56ee commit 9732111
Show file tree
Hide file tree
Showing 6 changed files with 328 additions and 534 deletions.
832 changes: 312 additions & 520 deletions GINQO_MasterItemManager.js

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions GINQO_MasterItemManager.qext
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
{
"name": " GINQO Master Item Manager - June 2022",
"description": "v.1.8 Service to manage master items from within an application.",
"name": " GINQO Master Item Manager - December 2022",
"description": "v.1.9 Service to manage master items from within an application.",
"icon": "extension",
"type": "visualization",
"version": "1.8",
"version": "1.9",
"preview": "ginqologo.png",
"author": "GINQO Consulting Ltd."
}
12 changes: 7 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ Using our template file, Master Items can be saved in excel for load and creatio
![](demo.gif)

# Prerequisites
Qlik Sense Enterprise >= February 2022
Qlik Cloud >= February 2022
Qlik Sense Desktop >= November 2021
- Qlik Sense Enterprise >= November 2022
- Qlik Cloud >= November 2022
- Qlik Sense Desktop >= November 2022

# Installation
1. Download this extension on a zip file using the 'Clone or Download' button (or select from an individual release)
Expand Down Expand Up @@ -83,8 +83,8 @@ Editing Measures:


# Authors
Maxwell Marchand - Product Lead and Founder
Riki Suharda - Developer
- Maxwell Marchand - Product Lead and Founder
- Riki Suharda - Developer

# Change Log
- 2019-12-17: Combined update and create functionality into syncronize option
Expand All @@ -97,6 +97,8 @@ Riki Suharda - Developer
- 2022-06-01: QlikCloud is now supported (Tested version: Februrary 2022)
- 2022-06-01: Some enhancements in layout and embedded images
- 2022-09-06: Fixes for media image links (.tff and .woff) display incorrect on Qlik Sense Enterprise
- 2022-12-21: Major updates on js code for handling missing columns in config file
- 2022-12-21: Fixed the master item preview that was not displaying correctly due to a missing config column

# Known Issues and Limitations
- Complex drilldown dimension expression is not supported.
Expand Down
4 changes: 2 additions & 2 deletions mainModal.ng.html
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,8 @@

<div class="footer-social-icons">
<div>
<p style="font-size:10px;">Version info: June 2022, Build 1.8</p>
<p style="font-size:10px;">Designed for: Qlik Sense On-Premise & Cloud > February 2022</p>
<p style="font-size:10px;">Version info: December 2022, Build 1.9</p>
<p style="font-size:10px;">Designed for: Qlik Sense On-Premise & Cloud > November 2022</p>
</div>
<ul class="social-icons">
<li><a href="https://www.ginqo.com" target="_blank" title="https://www.ginqo.com" class="social-icon"> <i class="fa fa-globe"></i></a></li>
Expand Down
6 changes: 3 additions & 3 deletions measModalConfirm.ng.html
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@ <h1 style="font-size:10px">**The following measures will be affected by the Meas
<li class="lui-list__header">
<span class="lui-list__text">Measure Name</span>
</li>
<li ng-repeat="row in measurevalues.qHyperCube.qDataPages[0].qMatrix" class="lui-list__item" >
<span style="font-weight:300;" id="123" class="lui-list__text popover" ng-click="OpenPopover($index, row)">
<li ng-repeat="row in measureTable.qHyperCube.qDataPages[0].qMatrix" class="lui-list__item" >
<span style="font-weight:300;" id="123" class="lui-list__text popover" ng-click="openPopover($index, row)">
<div style="font-size:12px; color:#595959">{{row[0].qText}}</div>
<div style="font-size:9px; color:#A6A6A6">{{row[2].qText}}</div>
<div style="font-size:11px; color:#A6A6A6">{{row[1].qText}}</div>

</span>
</li>
Expand Down
2 changes: 1 addition & 1 deletion measModalConfirmPopover.ng.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<lui-popover-header>
<lui-popover-title>Measure Profile</lui-popover-title>
</lui-popover-header>
<lui-popover-body style="font-size:9px;">
<lui-popover-body style="font-size:11px;">

<div style="margin-top: 15px">
<b>Measure Name:</b><br />
Expand Down

0 comments on commit 9732111

Please sign in to comment.