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

how to read through javascript the shared bookmarks in repository

Hi,

I am trying to build an extension that will show both shared bookmarks and users own bookmarks in a dropdown list. I have tried using the functions available on Qlikview javascript api

    MyBookmarks = MyDoc.Bookmarks().BookMarks;

    //Set the number of items in the drop down to the number of bookmarks

    MySelect.options.length = MyBookmarks.length;

    //loop through each bookmark

    for (var i = 0; i < MyBookmarks.length; i++) {

        var option = MySelect.options;

        option.text = MyBookmarks.text;

        option.value = MyBookmarks.value;

    }

The problem is that it only reads the document bookmarks or the users bookmarks. It does not read the shared bookmarks that are in repository

I was wondering if someone can help me in fetching the shared bookmarks from the repository akl stephen.redmond

1 Reply
phaneendra_kunc
Partner - Specialist III
Partner - Specialist III

Any one has a solutions for this?