<?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>question Re: Add new button to Knowledge view in Developer forum</title>
    <link>https://www.servicenow.com/community/developer-forum/add-new-button-to-knowledge-view/m-p/1791551#M448477</link>
    <description>&lt;P&gt;Hi Rushikesh,&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;I wouldn't implement that if it is not urgent to you. I've heard (unconfirmed) that this functionality would be added in the J release.&lt;/P&gt;&lt;BR /&gt;</description>
    <pubDate>Fri, 31 Mar 2017 15:45:15 GMT</pubDate>
    <dc:creator>LaurentChicoine</dc:creator>
    <dc:date>2017-03-31T15:45:15Z</dc:date>
    <item>
      <title>Add new button to Knowledge view</title>
      <link>https://www.servicenow.com/community/developer-forum/add-new-button-to-knowledge-view/m-p/1791537#M448463</link>
      <description>&lt;P&gt;Is it possible to add a new button for example Create HR Case to the knowledge view? The functionality will be similar to Create Incident. Thanks in advance for your help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper"&gt;&lt;img src="https://www.servicenow.com/community/image/serverpage/image-id/46742iB47573AE8ED23205/image-size/large?v=v2&amp;amp;px=999" title="find_real_file.png" alt="find_real_file.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 31 May 2016 23:27:10 GMT</pubDate>
      <guid>https://www.servicenow.com/community/developer-forum/add-new-button-to-knowledge-view/m-p/1791537#M448463</guid>
      <dc:creator>wchaiwimol</dc:creator>
      <dc:date>2016-05-31T23:27:10Z</dc:date>
    </item>
    <item>
      <title>Re: Add new button to Knowledge view</title>
      <link>https://www.servicenow.com/community/developer-forum/add-new-button-to-knowledge-view/m-p/1791538#M448464</link>
      <description>&lt;P&gt;These button are contained inside the "kb_view_common_header_toolbar" UI Macro.&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;These are not UI Action so you will have to modify the jelly script to add your required buttons and make them do what you want.&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 01 Jun 2016 00:47:16 GMT</pubDate>
      <guid>https://www.servicenow.com/community/developer-forum/add-new-button-to-knowledge-view/m-p/1791538#M448464</guid>
      <dc:creator>LaurentChicoine</dc:creator>
      <dc:date>2016-06-01T00:47:16Z</dc:date>
    </item>
    <item>
      <title>Re: Add new button to Knowledge view</title>
      <link>https://www.servicenow.com/community/developer-forum/add-new-button-to-knowledge-view/m-p/1791539#M448465</link>
      <description>&lt;P&gt;Thank Laurent. Have you added any custom button on the knowledge article view? I'd like to see how you did it if you have added it before. Thank you!&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 02 Jun 2016 16:37:27 GMT</pubDate>
      <guid>https://www.servicenow.com/community/developer-forum/add-new-button-to-knowledge-view/m-p/1791539#M448465</guid>
      <dc:creator>wchaiwimol</dc:creator>
      <dc:date>2016-06-02T16:37:27Z</dc:date>
    </item>
    <item>
      <title>Re: Add new button to Knowledge view</title>
      <link>https://www.servicenow.com/community/developer-forum/add-new-button-to-knowledge-view/m-p/1791540#M448466</link>
      <description>&lt;P&gt;We added a Print button so unlike yours, it had only client side implication, it was a simple javascript onclick to open a pop-up with the article without the SNOW frame and passing a parameter that calls window.print(). We replicated the behavior of the printer friendly version button that you find in the user preference menu.&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;Here is what we added following the Edit button&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;&lt;/P&gt;&lt;BR /&gt;&lt;PRE __default_attr="xml" __jive_macro_name="code" class="jive_macro_code jive_text_macro _jivemacro_uid_14648868079352274" data-renderedposition="112.54261016845703_7.997159004211426_1063_309" jivemacro_uid="_14648868079352274" modifiedtitle="true"&gt;&lt;P&gt;&amp;lt;j:if test="${showUpdateAction}"&amp;gt;&lt;/P&gt;&lt;BR /&gt;&lt;P&gt; &amp;nbsp; &amp;lt;button id="editArticle" title="${gs.getMessage('Edit content')}" class="btn btn-default navbar-btn snc-article-header-toolbar-button"&amp;gt;${gs.getMessage("Edit")}&amp;lt;/button&amp;gt;&lt;/P&gt;&lt;BR /&gt;&lt;P&gt; &amp;nbsp; &amp;lt;/j:if&amp;gt;&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;&lt;/P&gt;&lt;BR /&gt;&lt;P&gt; &amp;nbsp; &amp;lt;!-- Custom added to add a print Button when there is the required sysparm --&amp;gt;&lt;/P&gt;&lt;BR /&gt;&lt;P&gt; &amp;nbsp; &amp;lt;g:evaluate var="sysparm_media"&amp;gt;&lt;/P&gt;&lt;BR /&gt;&lt;P&gt; &amp;nbsp; var sysparm_media = RP.getParameterValue("sysparm_media");&lt;/P&gt;&lt;BR /&gt;&lt;P&gt; &amp;nbsp; sysparm_media;&lt;/P&gt;&lt;BR /&gt;&lt;P&gt; &amp;nbsp; &amp;lt;/g:evaluate&amp;gt;&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;&lt;/P&gt;&lt;BR /&gt;&lt;P&gt; &amp;nbsp; &amp;lt;j:if test="${sysparm_media!='print'}"&amp;gt;&lt;/P&gt;&lt;BR /&gt;&lt;P&gt; &amp;nbsp; &amp;lt;button id="printArticle" title="${gs.getMessage('Print Article')}" class="btn navbar-btn btn-primary" style="display:inline-block;" onclick="window.open('/kb_view.do?sys_kb_id=${knowledgeRecord.sys_id}&amp;amp;amp;sysparm_media=print', 'Printer_friendly_format', 'resizable=yes,scrollbars=yes,status=yes,toolbar=no,menubar=yes,location=no')"&amp;gt;${gs.getMessage("Print")}&amp;lt;/button&amp;gt;&lt;/P&gt;&lt;BR /&gt;&lt;P&gt; &amp;nbsp; &amp;lt;/j:if&amp;gt;&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;&lt;/P&gt;&lt;BR /&gt;&lt;P&gt; &amp;nbsp; &amp;lt;!-- Automatically opens the print option of the browser when the sysparm get passed using the previous button --&amp;gt;&lt;/P&gt;&lt;BR /&gt;&lt;P&gt; &amp;nbsp; &amp;lt;j:if test="${sysparm_media=='print'}"&amp;gt;&lt;/P&gt;&lt;BR /&gt;&lt;P&gt; &amp;nbsp; &amp;lt;script&amp;gt;&lt;/P&gt;&lt;BR /&gt;&lt;P&gt; &amp;nbsp; window.print();&lt;/P&gt;&lt;BR /&gt;&lt;P&gt; &amp;nbsp; &amp;lt;/script&amp;gt;&lt;/P&gt;&lt;BR /&gt;&lt;P&gt; &amp;nbsp; &amp;lt;/j:if&amp;gt;&lt;/P&gt;&lt;BR /&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;However you are saying that you want to do a similar button the the createIncident button which looks like:&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;&amp;lt;button id="createIncident" title="${gs.getMessage('Create Incident')}" class="btn btn-default navbar-btn snc-article-header-toolbar-button"&amp;gt;${gs.getMessage("Create Incident")}&amp;lt;/button&amp;gt;&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;I'm not aware of what handle the click of this button, but you could probably mimic the create incident with a href="your_table.do?sys_id=-1&amp;amp;sysparm_query=field_x=value_you_want_in_that_field"&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;If you want to share your requirement, I could try to help you with a better example.&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 02 Jun 2016 17:07:46 GMT</pubDate>
      <guid>https://www.servicenow.com/community/developer-forum/add-new-button-to-knowledge-view/m-p/1791540#M448466</guid>
      <dc:creator>LaurentChicoine</dc:creator>
      <dc:date>2016-06-02T17:07:46Z</dc:date>
    </item>
    <item>
      <title>Re: Add new button to Knowledge view</title>
      <link>https://www.servicenow.com/community/developer-forum/add-new-button-to-knowledge-view/m-p/1791541#M448467</link>
      <description>&lt;P&gt;Thank you very much for sharing that. Our requirement was to add a new button called "Create HR Case" that would open a new HR case form and pre-populate the information similar to the "Create Incident" button does. I'm not familiar with Jelly so it's been a challenge for me. I'm trying to find the function that handle the click of incident so I can replicate it but no luck.&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 02 Jun 2016 17:20:26 GMT</pubDate>
      <guid>https://www.servicenow.com/community/developer-forum/add-new-button-to-knowledge-view/m-p/1791541#M448467</guid>
      <dc:creator>wchaiwimol</dc:creator>
      <dc:date>2016-06-02T17:20:26Z</dc:date>
    </item>
    <item>
      <title>Re: Add new button to Knowledge view</title>
      <link>https://www.servicenow.com/community/developer-forum/add-new-button-to-knowledge-view/m-p/1791542#M448468</link>
      <description>&lt;P&gt;Doing some Developper console exploring, I found that the script that handles the createIncident button reside in the UI Script "KBViewArticle"&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;So you have: $j('#createIncident').click(this.incidentBtnHandler.bind(this));which handles the click of the button&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;Then the incidentBtnHandler function uses $j('#createIncidentLinkLocation').val(); to set the location&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;The #createIncidentLinkLocation refers to an hidden input field which is contained inside "kb_view_hidden_fields" UI Macro.&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;This createIncidentLinkLocation is based on the System property (sys_properties.list in SNOW navigator). This link looks a lot like what I suggested which is: "incident.do?sys_id=-1&amp;amp;sysparm_query=active=true^comments=(Created after Knowledge search: $[HTML:knowledgeRecord.short_description])&amp;amp;sysparm_stack=knowledge_home_launcher.do"&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;The important part in the link is the "$[HTML:knowledgeRecord.short_description]" part. Inside "kb_..." UI Macro you have access to knowledgeRecord jelly object which contains all your knowledge fields which you may want to use for your predefined values.You usually can use it in first phase ${knowledgeRecord.field} or in second phase $[knowledgeRecord.field]&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;So if you want to create your button the same way the create incident is done you would need to customize:&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;&lt;/P&gt;&lt;BR /&gt;&lt;UL&gt;&lt;LI&gt;3 UI Macro (kb_view_common_header_toolbar &amp;amp; kb_view_hidden_fields &amp;amp; kb_view_common in which the variable showCreateIncident is initialized based on the fact that the knowledge is in a popup or not)&lt;/LI&gt;&lt;LI&gt;1 UI Script (KBViewArticle)&lt;/LI&gt;&lt;LI&gt;Insert a new system property&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;This has the pro of respecting the actual design but have the con of making a lot of modifications that can be harder to maintain than simply putting a onclick on your button.&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;Depending on your level of expertise in ServiceNow and with Jelly, I think I gave you enough info to do it yourself, but if you need more help, just ask.&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 02 Jun 2016 22:44:35 GMT</pubDate>
      <guid>https://www.servicenow.com/community/developer-forum/add-new-button-to-knowledge-view/m-p/1791542#M448468</guid>
      <dc:creator>LaurentChicoine</dc:creator>
      <dc:date>2016-06-02T22:44:35Z</dc:date>
    </item>
    <item>
      <title>Re: Add new button to Knowledge view</title>
      <link>https://www.servicenow.com/community/developer-forum/add-new-button-to-knowledge-view/m-p/1791543#M448469</link>
      <description>&lt;P&gt;Hi Laurent,&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;Thank you very much for your response. I'll take a stab at it. Your explanation was very helpful. If I get stuck, I'll probably need your help.&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;Michael&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 03 Jun 2016 16:09:43 GMT</pubDate>
      <guid>https://www.servicenow.com/community/developer-forum/add-new-button-to-knowledge-view/m-p/1791543#M448469</guid>
      <dc:creator>wchaiwimol</dc:creator>
      <dc:date>2016-06-03T16:09:43Z</dc:date>
    </item>
    <item>
      <title>Re: Add new button to Knowledge view</title>
      <link>https://www.servicenow.com/community/developer-forum/add-new-button-to-knowledge-view/m-p/1791544#M448470</link>
      <description>&lt;P&gt;&lt;SPAN style="color: #666666; font-family: arial, sans-serif;"&gt;Hi Laurent,&lt;/SPAN&gt;&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;&lt;SPAN style="color: #666666; font-family: arial, sans-serif;"&gt;Thanks for the post. I tried adding Print button to the KB article via your method of modifying UI macro. Though I see the Print button on KB Article and also it opens up Printer friendly view of the KB article but it doesn't open the Print window and seems it's not executing window.print() piece of the code. Can you please suggest on it ? &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;&lt;SPAN style="color: #666666; font-family: arial, sans-serif;"&gt;Thanks&lt;/SPAN&gt;&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;&lt;SPAN style="color: #666666; font-family: arial, sans-serif;"&gt;Bhupinder&lt;/SPAN&gt;&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 11 Jan 2017 21:18:18 GMT</pubDate>
      <guid>https://www.servicenow.com/community/developer-forum/add-new-button-to-knowledge-view/m-p/1791544#M448470</guid>
      <dc:creator>Bhupinder1</dc:creator>
      <dc:date>2017-01-11T21:18:18Z</dc:date>
    </item>
    <item>
      <title>Re: Add new button to Knowledge view</title>
      <link>https://www.servicenow.com/community/developer-forum/add-new-button-to-knowledge-view/m-p/1791545#M448471</link>
      <description>&lt;P&gt;Hi Bhupinder,&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;Is the Print button still available in your printer friendly view?&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;Also could you make sure that the opened window contains "&amp;amp;sysparm_media=print" inside the URL?&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;If the print button is not displayed, then could you make sure the &amp;lt;script&amp;gt; tag is being executed by adding this line to the first line of the script block:&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;alert("this script is running");&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;So you can see if the script is called at call&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 11 Jan 2017 21:58:46 GMT</pubDate>
      <guid>https://www.servicenow.com/community/developer-forum/add-new-button-to-knowledge-view/m-p/1791545#M448471</guid>
      <dc:creator>LaurentChicoine</dc:creator>
      <dc:date>2017-01-11T21:58:46Z</dc:date>
    </item>
    <item>
      <title>Re: Add new button to Knowledge view</title>
      <link>https://www.servicenow.com/community/developer-forum/add-new-button-to-knowledge-view/m-p/1791546#M448472</link>
      <description>&lt;P&gt;Yes, the Print button is added to the KB article as below-&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper"&gt;&lt;img src="https://www.servicenow.com/community/image/serverpage/image-id/46727i4A900D0ABC57855E/image-size/large?v=v2&amp;amp;px=999" title="find_real_file.png" alt="find_real_file.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;When I hit the print button it opens the KB Article in new window with &lt;SPAN style="color: #666666; font-family: arial, sans-serif;"&gt; "&amp;amp;sysparm_media=print"&lt;/SPAN&gt; parameter as below-&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper"&gt;&lt;img src="https://www.servicenow.com/community/image/serverpage/image-id/46728i3B674408B0AC89C3/image-size/large?v=v2&amp;amp;px=999" title="find_real_file.png" alt="find_real_file.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;But after this it does not automatically opens the print button. &amp;nbsp; I added the alert in script tag but no message was displayed.&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 11 Jan 2017 22:34:25 GMT</pubDate>
      <guid>https://www.servicenow.com/community/developer-forum/add-new-button-to-knowledge-view/m-p/1791546#M448472</guid>
      <dc:creator>Bhupinder1</dc:creator>
      <dc:date>2017-01-11T22:34:25Z</dc:date>
    </item>
    <item>
      <title>Re: Add new button to Knowledge view</title>
      <link>https://www.servicenow.com/community/developer-forum/add-new-button-to-knowledge-view/m-p/1791547#M448473</link>
      <description>&lt;P&gt;I just looked into our code and found out that we had to change it following our upgrade from Fuji to Helsinki.&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;What we have done is to put the custom print button of "kb_view_common_header_toolbar" inside the new &amp;lt;j2:if test=...&amp;gt; that is there OOTB and to add the script inside a custom &amp;lt;j2:if test=...&amp;gt; at the end of the script. I've ommited the main part of the code to reduce the length of the code posted, but I could put it as a whole if you need it.&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;Here is what it looks like:&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;&lt;/P&gt;&lt;BR /&gt;&lt;PRE __default_attr="xml" __jive_macro_name="code" class="jive_macro_code jive_text_macro _jivemacro_uid_14841838830552170" data-renderedposition="176_8_954_480" jivemacro_uid="_14841838830552170"&gt;&lt;P&gt;&amp;lt;?xml version="1.0" encoding="utf-8" ?&amp;gt;&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;&amp;lt;j:jelly trim="false" xmlns:j="jelly:core" xmlns:g="glide" xmlns:j2="null" xmlns:g2="null"&amp;gt;&lt;/P&gt;&lt;BR /&gt;&lt;P&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;!--A Heisenberg page header as specified in our style guide--&amp;gt;&lt;/P&gt;&lt;BR /&gt;&lt;P&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;g:evaluate var="jvar_is_kb_languages_new_ui" jelly='true'&amp;gt;&lt;/P&gt;&lt;BR /&gt;&lt;P&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; var isActive = GlidePluginManager.isActive('com.glideapp.knowledge.i18n2');&lt;/P&gt;&lt;BR /&gt;&lt;P&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; isActive;&lt;/P&gt;&lt;BR /&gt;&lt;P&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/g:evaluate&amp;gt;&lt;/P&gt;&lt;BR /&gt;&lt;P&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;j2:if test="$[sysparm_media != 'print']"&amp;gt;&lt;/P&gt;&lt;BR /&gt;&lt;P&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;div class="navbar navbar-default snc-article-header-toolbar" role="navigation"&amp;gt;&lt;/P&gt;&lt;BR /&gt;&lt;P&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; ...&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;&lt;/P&gt;&lt;BR /&gt;&lt;P&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;j:if test="${showUpdateAction}"&amp;gt;&lt;/P&gt;&lt;BR /&gt;&lt;P&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;button id="editArticle" title="${gs.getMessage('Edit content')}" class="btn btn-default navbar-btn snc-article-header-toolbar-button"&amp;gt;${gs.getMessage("Edit")}&amp;lt;/button&amp;gt;&lt;/P&gt;&lt;BR /&gt;&lt;P&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/j:if&amp;gt;&lt;/P&gt;&lt;BR /&gt;&lt;P&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;!-- Custom added to add a print Button when there is the required sysparm --&amp;gt;&lt;/P&gt;&lt;BR /&gt;&lt;P&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;button id="printArticle" title="${gs.getMessage('Print Article')}" class="btn navbar-btn btn-primary" style="display:inline-block;" onclick="window.open('/kb_view.do?sys_kb_id=${knowledgeRecord.sys_id}&amp;amp;amp;sysparm_media=print', 'Printer_friendly_format', 'resizable=yes,scrollbars=yes,status=yes,toolbar=no,menubar=yes,location=no')"&amp;gt;${gs.getMessage("Print")}&amp;lt;/button&amp;gt;&lt;/P&gt;&lt;BR /&gt;&lt;P&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/div&amp;gt;&lt;/P&gt;&lt;BR /&gt;&lt;P&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/j:if&amp;gt;&lt;/P&gt;&lt;BR /&gt;&lt;P&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/div&amp;gt;&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;&lt;/P&gt;&lt;BR /&gt;&lt;P&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; ...&lt;/P&gt;&lt;BR /&gt;&lt;P&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/j2:if&amp;gt;&lt;/P&gt;&lt;BR /&gt;&lt;P&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/P&gt;&lt;BR /&gt;&lt;P&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;!-- Automatically opens the print option of the browser when the sysparm get passed using the previous button --&amp;gt;&lt;/P&gt;&lt;BR /&gt;&lt;P&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;j2:if test="$[sysparm_media == 'print']"&amp;gt;&lt;/P&gt;&lt;BR /&gt;&lt;P&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;script&amp;gt;&lt;/P&gt;&lt;BR /&gt;&lt;P&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; window.print();&lt;/P&gt;&lt;BR /&gt;&lt;P&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/script&amp;gt;&lt;/P&gt;&lt;BR /&gt;&lt;P&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/j2:if&amp;gt;&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;&amp;lt;/j:jelly&amp;gt;&lt;/P&gt;&lt;BR /&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 12 Jan 2017 01:20:20 GMT</pubDate>
      <guid>https://www.servicenow.com/community/developer-forum/add-new-button-to-knowledge-view/m-p/1791547#M448473</guid>
      <dc:creator>LaurentChicoine</dc:creator>
      <dc:date>2017-01-12T01:20:20Z</dc:date>
    </item>
    <item>
      <title>Re: Add new button to Knowledge view</title>
      <link>https://www.servicenow.com/community/developer-forum/add-new-button-to-knowledge-view/m-p/1791548#M448474</link>
      <description>&lt;P&gt;Hello Laurent,&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;It did the trick and it's working. Thanks a lot for help !!&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;Now, I would try that on ServicePortal&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;Bhupinder&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 12 Jan 2017 16:28:11 GMT</pubDate>
      <guid>https://www.servicenow.com/community/developer-forum/add-new-button-to-knowledge-view/m-p/1791548#M448474</guid>
      <dc:creator>Bhupinder1</dc:creator>
      <dc:date>2017-01-12T16:28:11Z</dc:date>
    </item>
    <item>
      <title>Re: Add new button to Knowledge view</title>
      <link>https://www.servicenow.com/community/developer-forum/add-new-button-to-knowledge-view/m-p/1791549#M448475</link>
      <description>&lt;P&gt;&lt;SPAN style="color: #666666; font-family: arial, sans-serif;"&gt;Hello All,&lt;/SPAN&gt;&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;&lt;SPAN style="color: #666666; font-family: arial, sans-serif;"&gt;Is it Possible to create a button on &lt;STRONG&gt;Knowledge Management V3 Homepage&lt;/STRONG&gt;, as we have 3 buttons OOB "Import Articles" , "Create an Articel" or "Post a Question"?&lt;/SPAN&gt;&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;&lt;SPAN style="color: #666666; font-family: arial, sans-serif;"&gt;If yes, how complex is the effort.?&lt;/SPAN&gt;&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;&lt;SPAN style="color: #666666; font-family: arial, sans-serif;"&gt;&lt;span class="lia-inline-image-display-wrapper"&gt;&lt;img src="https://www.servicenow.com/community/image/serverpage/image-id/46731i650B3DE8B4420CFF/image-size/large?v=v2&amp;amp;px=999" title="find_real_file.png" alt="find_real_file.png" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Mon, 13 Mar 2017 18:15:28 GMT</pubDate>
      <guid>https://www.servicenow.com/community/developer-forum/add-new-button-to-knowledge-view/m-p/1791549#M448475</guid>
      <dc:creator>drasamsetti</dc:creator>
      <dc:date>2017-03-13T18:15:28Z</dc:date>
    </item>
    <item>
      <title>Re: Add new button to Knowledge view</title>
      <link>https://www.servicenow.com/community/developer-forum/add-new-button-to-knowledge-view/m-p/1791550#M448476</link>
      <description>&lt;P&gt;Hi &lt;A title="laurentchicoine" __default_attr="42532" __jive_macro_name="user" class="jive-link-profile-small jive_macro jive_macro_user" data-id="42532" data-objecttype="3" data-orig-content="laurentchicoine" data-renderedposition="10_25_115_16" data-type="person" href="https://www.servicenow.com/community?id=community_user_profile&amp;amp;user=d69e8ae9dbd41fc09c9ffb651f9619dd"&gt;laurentchicoine&lt;/A&gt;, I want to add a "Subscribe" button there. When clicked, a record should be entered in a custom table which will store knowledge article &amp;amp; Subscribers linking. And if anybody has subscribed already, he should see "Unsubscribe" button, when clicked record should be deleted from that table. Is it possible to do this all in just "kb_view_common_header_toolbar" macro? If yes, how?&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 31 Mar 2017 15:17:32 GMT</pubDate>
      <guid>https://www.servicenow.com/community/developer-forum/add-new-button-to-knowledge-view/m-p/1791550#M448476</guid>
      <dc:creator>Rushikesh Mandh</dc:creator>
      <dc:date>2017-03-31T15:17:32Z</dc:date>
    </item>
    <item>
      <title>Re: Add new button to Knowledge view</title>
      <link>https://www.servicenow.com/community/developer-forum/add-new-button-to-knowledge-view/m-p/1791551#M448477</link>
      <description>&lt;P&gt;Hi Rushikesh,&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;I wouldn't implement that if it is not urgent to you. I've heard (unconfirmed) that this functionality would be added in the J release.&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 31 Mar 2017 15:45:15 GMT</pubDate>
      <guid>https://www.servicenow.com/community/developer-forum/add-new-button-to-knowledge-view/m-p/1791551#M448477</guid>
      <dc:creator>LaurentChicoine</dc:creator>
      <dc:date>2017-03-31T15:45:15Z</dc:date>
    </item>
    <item>
      <title>Re: Add new button to Knowledge view</title>
      <link>https://www.servicenow.com/community/developer-forum/add-new-button-to-knowledge-view/m-p/1791552#M448478</link>
      <description>&lt;P&gt;Thanks &lt;A title="laurentchicoine" __default_attr="42532" __jive_macro_name="user" class="jive-link-profile-small jive_macro jive_macro_user" data-id="42532" data-objecttype="3" data-orig-content="laurentchicoine" data-renderedposition="10_59_115_16" data-type="person" href="https://www.servicenow.com/community?id=community_user_profile&amp;amp;user=d69e8ae9dbd41fc09c9ffb651f9619dd"&gt;laurentchicoine&lt;/A&gt;. We have confirmed this from ServiceNow.&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Tue, 04 Apr 2017 07:17:08 GMT</pubDate>
      <guid>https://www.servicenow.com/community/developer-forum/add-new-button-to-knowledge-view/m-p/1791552#M448478</guid>
      <dc:creator>Rushikesh Mandh</dc:creator>
      <dc:date>2017-04-04T07:17:08Z</dc:date>
    </item>
    <item>
      <title>Re: Add new button to Knowledge view</title>
      <link>https://www.servicenow.com/community/developer-forum/add-new-button-to-knowledge-view/m-p/1791553#M448479</link>
      <description>&lt;P&gt;Hi Laurent!&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;Im really in a need to get this button in to our environment, especially in to our 1st level supporters knowledge base.&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;What do you mean by the "J release" ? Is that code name for Istanbul or what? &lt;SPAN __jive_emoticon_name="happy" __jive_macro_name="emoticon" class="jive_emote jive_macro" data-renderedposition="50_511_16_16" src="https://www.servicenow.com/8.0.4.21bdc7e/images/emoticons/happy.png"&gt;&lt;/SPAN&gt; &lt;/P&gt;&lt;BR /&gt;&lt;P&gt;&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;Thanks for reply!&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;br. Anna &lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 05 May 2017 09:22:40 GMT</pubDate>
      <guid>https://www.servicenow.com/community/developer-forum/add-new-button-to-knowledge-view/m-p/1791553#M448479</guid>
      <dc:creator>Anna-Kaisa</dc:creator>
      <dc:date>2017-05-05T09:22:40Z</dc:date>
    </item>
    <item>
      <title>Re: Add new button to Knowledge view</title>
      <link>https://www.servicenow.com/community/developer-forum/add-new-button-to-knowledge-view/m-p/1791554#M448480</link>
      <description>&lt;P&gt;J release is the Jakarta release that is following Istanbul.&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;It will be announced at Knowledge17 which is next week.&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;So unless this is really urgent to you, I would recommend to wait for your upgrade to that version.&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 05 May 2017 13:04:07 GMT</pubDate>
      <guid>https://www.servicenow.com/community/developer-forum/add-new-button-to-knowledge-view/m-p/1791554#M448480</guid>
      <dc:creator>LaurentChicoine</dc:creator>
      <dc:date>2017-05-05T13:04:07Z</dc:date>
    </item>
    <item>
      <title>Re: Add new button to Knowledge view</title>
      <link>https://www.servicenow.com/community/developer-forum/add-new-button-to-knowledge-view/m-p/1791555#M448481</link>
      <description>&lt;P&gt;Yeah of course it is Jakarta..how stupid of me.&lt;BR /&gt;It is just that according to our dev team we are gonna update to Istanbul approx in Sep 2017, so i assume we will be waiting for the J for at least over a year from now &lt;SPAN __jive_emoticon_name="sad" __jive_macro_name="emoticon" class="jive_emote jive_macro" data-renderedposition="50_38_16_16" src="https://www.servicenow.com/8.0.4.21bdc7e/images/emoticons/sad.png"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Mon, 08 May 2017 05:01:37 GMT</pubDate>
      <guid>https://www.servicenow.com/community/developer-forum/add-new-button-to-knowledge-view/m-p/1791555#M448481</guid>
      <dc:creator>Anna-Kaisa</dc:creator>
      <dc:date>2017-05-08T05:01:37Z</dc:date>
    </item>
    <item>
      <title>Re: Add new button to Knowledge view</title>
      <link>https://www.servicenow.com/community/developer-forum/add-new-button-to-knowledge-view/m-p/1791556#M448482</link>
      <description>&lt;P style="font-family: arial, sans-serif; color: #666666;"&gt;Hi Laurent,&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;&lt;/P&gt;&lt;BR /&gt;&lt;P style="font-family: arial, sans-serif; color: #666666;"&gt;Can you help me out regarding this below Question. Thanks in Advance!&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;&lt;/P&gt;&lt;BR /&gt;&lt;P style="font-family: arial, sans-serif; color: #666666;"&gt;&lt;A title="" _jive_internal="true" data-containerid="2010" data-containertype="14" data-objectid="273301" data-objecttype="1" href="https://www.servicenow.com/community?id=community_question&amp;amp;sys_id=dc288b6ddb1cdbc01dcaf3231f9619d4" style="font-weight: inherit; font-style: inherit; font-family: inherit; color: #3778c7;"&gt;https://community.servicenow.com/thread/273301&lt;/A&gt;&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;&lt;/P&gt;&lt;BR /&gt;&lt;P style="font-family: arial, sans-serif; color: #666666;"&gt;Thanks,&lt;/P&gt;&lt;BR /&gt;&lt;P style="font-family: arial, sans-serif; color: #666666;"&gt;Arindam&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Mon, 10 Jul 2017 20:09:40 GMT</pubDate>
      <guid>https://www.servicenow.com/community/developer-forum/add-new-button-to-knowledge-view/m-p/1791556#M448482</guid>
      <dc:creator>Arindam Ghosh</dc:creator>
      <dc:date>2017-07-10T20:09:40Z</dc:date>
    </item>
  </channel>
</rss>

