Skip to main content
Announcements
Introducing Qlik Answers: A plug-and-play, Generative AI powered RAG solution. READ ALL ABOUT IT!
cancel
Showing results for 
Search instead for 
Did you mean: 
warrenpress
Contributor III
Contributor III

Macro not running in Qlikview 12.8 Web browser

HI, 

I have a button that triggers a macro that exports a chart as a .skv file. The macro runs fine on desktop version and a browser running ie client, but not via the ajax client.

Can someone advise how to get it working via the ajax client. 

Thanks in advance

Warren

Labels (1)
1 Solution

Accepted Solutions
rwunderlich
Partner Ambassador/MVP
Partner Ambassador/MVP

When using the Ajax client, you need to use the ServerSideExport call instead of Export.

-Rob

View solution in original post

3 Replies
Filippo_Nicolussi_P

Hello @warrenpress 

 

On that version the WebView switched to a Edge embedded browser QlikView May 2023  ; not too that not all  API documented in QlikView COM API will work the same way in AjaxZFc on server as on the native QlikView Desktop. 

 

Help users find answers! Don't forget to mark a solution that worked for you! If already marked, give it a thumbs up!
rwunderlich
Partner Ambassador/MVP
Partner Ambassador/MVP

When using the Ajax client, you need to use the ServerSideExport call instead of Export.

-Rob

warrenpress
Contributor III
Contributor III
Author

Thankyou @rwunderlich 

I spend many hours trying to find a work around and all it took was 1 single line of code!

I changed  chart.Export filePath, ";" to chart.ServerSideExportEx filePath, ";",1 as it works perfect is all browsers.