<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic using js, how to fetch shared bookmark created by another user in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/using-js-how-to-fetch-shared-bookmark-created-by-another-user/m-p/873288#M1233631</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am trying to create an extension to load all the bookmarks into a listbox and apply them. I want the shared bookmarks created by other users to also load into a listbox/dropdown box. For this purpose, I have started studying the documentation. I just came across the below function in the documentation. I was wondering if this will also access the shared bookmarks created by other users or will only access the bookmarks for the current user? If this only access the user specific bookmarks and not the shared bookmarks by other users, can someone please tell me how can I load those other users shared bookmarks also&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_macro_code jive_text_macro _jivemacro_uid_14296119817555975" jivemacro_uid="_14296119817555975"&gt;
&lt;P&gt;Example:&lt;/P&gt;
&lt;P&gt;var myBookmarkRenderer = {};&lt;/P&gt;
&lt;P&gt;var MyDoc;&lt;/P&gt;
&lt;P&gt;var MyBookmarks;&lt;/P&gt;
&lt;P&gt;var MySelect;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;myBookmarkRenderer.Paint = function () {&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp; &lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; MyBookmarks = MyDoc.Bookmarks().BookMarks;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; //Set the number of items in the drop down to the number of bookmarks&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; MySelect.options.length = MyBookmarks.length;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; //loop through each bookmark&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; for (var i = 0; i &amp;lt; MyBookmarks.length; i++) {&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; var option = MySelect.options&lt;I&gt;;&lt;/I&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; option.text = MyBookmarks&lt;I&gt;.text;&lt;/I&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; option.value = MyBookmarks&lt;I&gt;.value;&lt;/I&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;/P&gt;
&lt;P&gt;}&lt;/P&gt;

&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I will really appreciate your help&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Arif&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 26 Jan 2026 16:26:21 GMT</pubDate>
    <dc:creator />
    <dc:date>2026-01-26T16:26:21Z</dc:date>
    <item>
      <title>using js, how to fetch shared bookmark created by another user</title>
      <link>https://community.qlik.com/t5/QlikView/using-js-how-to-fetch-shared-bookmark-created-by-another-user/m-p/873288#M1233631</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am trying to create an extension to load all the bookmarks into a listbox and apply them. I want the shared bookmarks created by other users to also load into a listbox/dropdown box. For this purpose, I have started studying the documentation. I just came across the below function in the documentation. I was wondering if this will also access the shared bookmarks created by other users or will only access the bookmarks for the current user? If this only access the user specific bookmarks and not the shared bookmarks by other users, can someone please tell me how can I load those other users shared bookmarks also&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_macro_code jive_text_macro _jivemacro_uid_14296119817555975" jivemacro_uid="_14296119817555975"&gt;
&lt;P&gt;Example:&lt;/P&gt;
&lt;P&gt;var myBookmarkRenderer = {};&lt;/P&gt;
&lt;P&gt;var MyDoc;&lt;/P&gt;
&lt;P&gt;var MyBookmarks;&lt;/P&gt;
&lt;P&gt;var MySelect;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;myBookmarkRenderer.Paint = function () {&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp; &lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; MyBookmarks = MyDoc.Bookmarks().BookMarks;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; //Set the number of items in the drop down to the number of bookmarks&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; MySelect.options.length = MyBookmarks.length;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; //loop through each bookmark&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; for (var i = 0; i &amp;lt; MyBookmarks.length; i++) {&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; var option = MySelect.options&lt;I&gt;;&lt;/I&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; option.text = MyBookmarks&lt;I&gt;.text;&lt;/I&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; option.value = MyBookmarks&lt;I&gt;.value;&lt;/I&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;/P&gt;
&lt;P&gt;}&lt;/P&gt;

&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I will really appreciate your help&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Arif&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Jan 2026 16:26:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/using-js-how-to-fetch-shared-bookmark-created-by-another-user/m-p/873288#M1233631</guid>
      <dc:creator />
      <dc:date>2026-01-26T16:26:21Z</dc:date>
    </item>
    <item>
      <title>Re: using js, how to fetch shared bookmark created by another user</title>
      <link>https://community.qlik.com/t5/QlikView/using-js-how-to-fetch-shared-bookmark-created-by-another-user/m-p/873289#M1233633</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Were you able to find a solution? i have same exact scenario. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 Jul 2016 03:38:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/using-js-how-to-fetch-shared-bookmark-created-by-another-user/m-p/873289#M1233633</guid>
      <dc:creator>phaneendra_kunc</dc:creator>
      <dc:date>2016-07-15T03:38:54Z</dc:date>
    </item>
  </channel>
</rss>

