Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Sense Workbench/Mashup issue - Duplicate Mashup stop to render objects

Hello,

I'm facing the following issue with Sense v1.0 Mashup: If I duplicate an existing project (e.g.: project1), the copied file (e.g.: project1_copy) stop to render charts and do not allow to add any from the qvf file.

Steps to reproduce:

- Create a new mashup project starting with template "basic mashup template with absolute position"

- Go to Edit Mode and "link" the mashup to an app (e.g.: Executive Dashboard)

- Add Some charts by drag and drop from left pane

- Save all and View the results in a new browser window

------ till then everything works as expected

- Go back to Workbench and duplicate the Mashup (eg: project1_copy)

- Try to view it --> blank page

- Try to edit adding new charts --> can't add/display the new chart

Files seam to me well copied/configured (see attachment to be unzipped into C:\Users\[User name]\Documents\Qlik\Sense\Extensions).

Any suggestions?

Many Thanks.

Marco

1 Solution

Accepted Solutions
ErikWetterberg

Hi Marco,

It seems like the reference to the js file has not been updated, might be because of the underscore.

If you check in Project1_copy.html. The line:

<script src="project1.js"></script>

Should be:

<script src="project1_copy.js"></script>

I'll investigate why this fails when copying.

Erik

View solution in original post

2 Replies
ErikWetterberg

Hi Marco,

It seems like the reference to the js file has not been updated, might be because of the underscore.

If you check in Project1_copy.html. The line:

<script src="project1.js"></script>

Should be:

<script src="project1_copy.js"></script>

I'll investigate why this fails when copying.

Erik

Not applicable
Author

Thanks Erik,

changing the reference as you suggested worked!!