Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
Broly
Contributor III
Contributor III

How to replace Qlik Sense table with a ag-grid table in a mashup

Hello all,

I am new to this Qlik Sense stuff and not very big on javascript, so I have an issue/challenge that I would like to share with you.

After searching and going though some material about mashups, I get the basic understanding of how and what works.

I got a request that put me in difficult position, so I am turning to this great community 😄

Is it possible to recreate a straight table from QS (with its data of course) with a ag-grid table, so that I get more functionalities from ag-grid in a mashup environment? 

I understand how this works and where it is referenced on html

var app = qlik.openApp('4d6402a6-e321-455d-a03d-3632e1681bb8', config);

app.getObject('QV01','hVcbZe');

but what I need is the data from the QV01 object recreated in ag-grid table, chart, whatever.

Any pointers?

Thanks in advance

Labels (2)
1 Solution

Accepted Solutions
paulcalvet
Partner - Specialist
Partner - Specialist

Hello,

app.getObject('QV01','hVcbZe') bring back the object with the visual part.

If you want to retrieve only data, you can create an hypercube (it's like a table).

https://help.qlik.com/en-US/sense-developer/November2019/Subsystems/Platform/Content/Sense_PlatformO...

https://community.qlik.com/t5/Qlik-Sense-App-Development/Getting-data-from-chart-hypercube/m-p/12813...

View solution in original post

2 Replies
paulcalvet
Partner - Specialist
Partner - Specialist

Hello,

app.getObject('QV01','hVcbZe') bring back the object with the visual part.

If you want to retrieve only data, you can create an hypercube (it's like a table).

https://help.qlik.com/en-US/sense-developer/November2019/Subsystems/Platform/Content/Sense_PlatformO...

https://community.qlik.com/t5/Qlik-Sense-App-Development/Getting-data-from-chart-hypercube/m-p/12813...

Broly
Contributor III
Contributor III
Author

After creation of hypercube, I need to figure out how to integrate that data into ag-grid.

 

Thanks