- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Qliksense Bookmark Creation in Mashup Page
Hi all,
I have written below code to create a bookmark in Published Qliksens Application, but some time Bookmark saved in publised Application and some time not please let me know what wrong i am doing , because its is published App we can not do DoSave() of the Qliksense Dcoument.
var MyApp_bookmark = qlik.openApp(globalaccess_app_id,config);
MyApp_bookmark.bookmark.create('MyBookmark' , 'Mybookmark Desc', ' '); // i am not providing SheetID because it is on mashup page.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi,
I believe you can copy the app in your workspace and do the necessary modification.
Next, publish the app and add map your published App in the Mashup path.
It should help you to resolve your problem.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi @jitu2110 ,
var title = $( "#TitleInputbox" ).val(), desc = $( "#DecsInputbox" ).val();
app.bookmark.create( title, desc );
you dont need to use doSave()
You can add it on some click function to add the bookmark
I am attaching a refrence Doc it might help in future