Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
atulsaxena1981
Contributor
Contributor

Not able to get data in this.Data.Rows in QlikView 11 through Extension object script

Hello QlikView Team,

I am making one qlikview 11 extension object and in script I am not able to get data in this.Data.Rows which is coming empty.

 

I am attaching my code. Please help in getting the dimension data and let me know what I am doing wrong.

 

Thanks,

Atul Saxena

6 Replies
atulsaxena1981
Contributor
Contributor
Author

Gentle reminder.

 

Any help is highly appreciable!

 

Thanks,

Atul

Arthur_Fong
Partner - Specialist III
Partner - Specialist III

In which js file this.Data.Rows located at?

atulsaxena1981
Contributor
Contributor
Author

Hello Arthur,

 

I am trying to get this.Data.Rows in script.js of extension object.

 

In my initial attachment code to get this.Data.Rows was not there so I am attaching updated code in script.js where I am getting this value.

 

Thanks,

Atul

Arthur_Fong
Partner - Specialist III
Partner - Specialist III

Can you try without [0]?

if (this.Data.Rows)
{
for (var i = 0; i < this.Data.Rows.length; i++) {
var row = this.Data.Rows;
console.log(row);
}

atulsaxena1981
Contributor
Contributor
Author

Hello Arthur,

 

Thanks for the reply.

 

Actually my initial query is how to get dimensional data in this.Data.Rows.

 

Actually my requirement is to get dimensional data showing in QlikView in extension object's script.js.

 

1. Is there any API which can be used in script.js which can retrieved dimensional data or any other way?

2. I have tried the solution mentioned at link (https://community.qlik.com/t5/QlikView-Extensions/Passing-data-from-qv-to-extension/m-p/491532) with no luck.

 

Please help.

 

Thanks,

Atul Saxena

atulsaxena1981
Contributor
Contributor
Author

Hello Arthur/Others,

 

Gentle reminder. I am still waiting for response.

 

Please help me in completing my extension object.

Thanks,

Atul