<?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 Making Multiple-Choice Variable Choices Hyperlinks in ITSM forum</title>
    <link>https://www.servicenow.com/community/itsm-forum/making-multiple-choice-variable-choices-hyperlinks/m-p/3026609#M526814</link>
    <description>&lt;P&gt;Hi experts, I need your help. I created a multiple-choice variable with three choices, and I want to make those choices hyperlinks. How can I achieve this?&lt;/P&gt;</description>
    <pubDate>Sat, 24 Aug 2024 03:50:31 GMT</pubDate>
    <dc:creator>mrreddy534</dc:creator>
    <dc:date>2024-08-24T03:50:31Z</dc:date>
    <item>
      <title>Making Multiple-Choice Variable Choices Hyperlinks</title>
      <link>https://www.servicenow.com/community/itsm-forum/making-multiple-choice-variable-choices-hyperlinks/m-p/3026609#M526814</link>
      <description>&lt;P&gt;Hi experts, I need your help. I created a multiple-choice variable with three choices, and I want to make those choices hyperlinks. How can I achieve this?&lt;/P&gt;</description>
      <pubDate>Sat, 24 Aug 2024 03:50:31 GMT</pubDate>
      <guid>https://www.servicenow.com/community/itsm-forum/making-multiple-choice-variable-choices-hyperlinks/m-p/3026609#M526814</guid>
      <dc:creator>mrreddy534</dc:creator>
      <dc:date>2024-08-24T03:50:31Z</dc:date>
    </item>
    <item>
      <title>Re: Making Multiple-Choice Variable Choices Hyperlinks</title>
      <link>https://www.servicenow.com/community/itsm-forum/making-multiple-choice-variable-choices-hyperlinks/m-p/3026657#M526816</link>
      <description>&lt;P&gt;What action do you want to achieve?&lt;BR /&gt;If all you want to do is click on a selection list and navigate to a link, I think you can implement this using client script.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="HIROSHISATOH_0-1724483020989.png"&gt;&lt;img src="https://www.servicenow.com/community/image/serverpage/image-id/381371i683FB9EF96E2A2EC/image-size/medium?v=v2&amp;amp;px=400" alt="HIROSHISATOH_0-1724483020989.png" title="HIROSHISATOH_0-1724483020989.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="HIROSHISATOH_1-1724483080057.png"&gt;&lt;img src="https://www.servicenow.com/community/image/serverpage/image-id/381372i640EA6DD55C3CA12/image-size/medium?v=v2&amp;amp;px=400" alt="HIROSHISATOH_1-1724483080057.png" title="HIROSHISATOH_1-1724483080057.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="HIROSHISATOH_2-1724483096780.png"&gt;&lt;img src="https://www.servicenow.com/community/image/serverpage/image-id/381373i2893B365FDB20791/image-size/medium?v=v2&amp;amp;px=400" alt="HIROSHISATOH_2-1724483096780.png" title="HIROSHISATOH_2-1724483096780.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="HIROSHISATOH_3-1724483200361.png"&gt;&lt;img src="https://www.servicenow.com/community/image/serverpage/image-id/381374i2E16D5930B2CF71C/image-size/medium?v=v2&amp;amp;px=400" alt="HIROSHISATOH_3-1724483200361.png" title="HIROSHISATOH_3-1724483200361.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;STRONG&gt;Client Script&lt;/STRONG&gt;&lt;SPAN&gt;:&lt;/SPAN&gt;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;function onChange(control, oldValue, newValue, isLoading) {
    if (isLoading || newValue === '') {
        return;
    }
	
    var url = g_form.getValue('u_choices_hyperlinks');
	if (url) {
		alert("Will be directed"); 
		top.window.open(url,'_blank');
    }
}&lt;/LI-CODE&gt;&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 24 Aug 2024 07:09:03 GMT</pubDate>
      <guid>https://www.servicenow.com/community/itsm-forum/making-multiple-choice-variable-choices-hyperlinks/m-p/3026657#M526816</guid>
      <dc:creator>HIROSHI SATOH</dc:creator>
      <dc:date>2024-08-24T07:09:03Z</dc:date>
    </item>
    <item>
      <title>Re: Making Multiple-Choice Variable Choices Hyperlinks</title>
      <link>https://www.servicenow.com/community/itsm-forum/making-multiple-choice-variable-choices-hyperlinks/m-p/3026663#M526819</link>
      <description>&lt;P&gt;Hi mate, thanks for your assistance. The client wants a multiple-choice variable with three choices, and they want to provide information about those choices by making each choice a hyperlink. The redirecting link would be the same for all. They don't want to use help text for this. My idea was to place a link beside the question, like '(choices info),' but I'm struggling with the logic to implement that.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I also tried creating a rich text variable with three checkbox-type variables underneath to mimic the multiple-choice functionality. I added the link to the rich text variable, but there's an issue with the appearance. There's a noticeable gap between the rich text variable and the checkbox variables, making it look like two separate sections rather than a cohesive multiple-choice question. And I want this in catalog item.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Could you please give me some ideas on how to approach this?&lt;/P&gt;</description>
      <pubDate>Sat, 24 Aug 2024 08:04:27 GMT</pubDate>
      <guid>https://www.servicenow.com/community/itsm-forum/making-multiple-choice-variable-choices-hyperlinks/m-p/3026663#M526819</guid>
      <dc:creator>mrreddy534</dc:creator>
      <dc:date>2024-08-24T08:04:27Z</dc:date>
    </item>
    <item>
      <title>Re: Making Multiple-Choice Variable Choices Hyperlinks</title>
      <link>https://www.servicenow.com/community/itsm-forum/making-multiple-choice-variable-choices-hyperlinks/m-p/3026786#M526831</link>
      <description>&lt;P&gt;I'm not sure what you want to achieve.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;If you want to display a hyperlink in the service catalog, I think you should set the question's "Question type" to "Text" and create the hyperlink using HTML.&lt;/P&gt;</description>
      <pubDate>Sat, 24 Aug 2024 16:10:54 GMT</pubDate>
      <guid>https://www.servicenow.com/community/itsm-forum/making-multiple-choice-variable-choices-hyperlinks/m-p/3026786#M526831</guid>
      <dc:creator>HIROSHI SATOH</dc:creator>
      <dc:date>2024-08-24T16:10:54Z</dc:date>
    </item>
    <item>
      <title>Re: Making Multiple-Choice Variable Choices Hyperlinks</title>
      <link>https://www.servicenow.com/community/itsm-forum/making-multiple-choice-variable-choices-hyperlinks/m-p/3026789#M526832</link>
      <description>&lt;P&gt;There is multiple choice variable and under that 3 choices are there, Before user selecting the choice, I want to give info about those choices without using help text, this is my requirement.&lt;/P&gt;&lt;P&gt;If we put link in the question itself it is fine or if we make choices as hyperlinks it is also fine.&lt;/P&gt;</description>
      <pubDate>Sat, 24 Aug 2024 16:25:58 GMT</pubDate>
      <guid>https://www.servicenow.com/community/itsm-forum/making-multiple-choice-variable-choices-hyperlinks/m-p/3026789#M526832</guid>
      <dc:creator>mrreddy534</dc:creator>
      <dc:date>2024-08-24T16:25:58Z</dc:date>
    </item>
    <item>
      <title>Re: Making Multiple-Choice Variable Choices Hyperlinks</title>
      <link>https://www.servicenow.com/community/itsm-forum/making-multiple-choice-variable-choices-hyperlinks/m-p/3026815#M526835</link>
      <description>&lt;UL&gt;&lt;LI&gt;&lt;P&gt;&lt;STRONG&gt;Create or Edit a Catalog Item&lt;/STRONG&gt;:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Go to Service Catalog &amp;gt; Catalog Definition &amp;gt; Maintain Items, and select the catalog item where you want to add the hyperlink.&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;&lt;STRONG&gt;Open the Questions Tab&lt;/STRONG&gt;:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Click on the "Questions" tab, then either add a new question or edit an existing one.&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;&lt;STRONG&gt;Add the Hyperlink&lt;/STRONG&gt;:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Set the "Question Type" to "Text" and use HTML to create the hyperlink. For example, you can enter:&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;&amp;lt;a href="https://example.com" target="_blank"&amp;gt;Click here&amp;lt;/a&amp;gt;&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;In the&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;href&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;attribute, input the URL, and&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;target="_blank"&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;ensures that the link opens in a new tab.&lt;/P&gt;&lt;UL class="lia-list-style-type-disc"&gt;&lt;LI&gt;&lt;STRONG&gt;Save the Changes&lt;/STRONG&gt;:&lt;UL&gt;&lt;LI&gt;Save your settings and publish the catalog item. This will display the hyperlink when users view the catalog item.&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;SPAN&gt;This will allow users to see and click on the hyperlink within the Service Catalog.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 24 Aug 2024 18:26:21 GMT</pubDate>
      <guid>https://www.servicenow.com/community/itsm-forum/making-multiple-choice-variable-choices-hyperlinks/m-p/3026815#M526835</guid>
      <dc:creator>HIROSHI SATOH</dc:creator>
      <dc:date>2024-08-24T18:26:21Z</dc:date>
    </item>
    <item>
      <title>Re: Making Multiple-Choice Variable Choices Hyperlinks</title>
      <link>https://www.servicenow.com/community/itsm-forum/making-multiple-choice-variable-choices-hyperlinks/m-p/3026866#M526839</link>
      <description>&lt;P&gt;There is no text variable; I noticed this in the Vancouver and Washington versions. I tried the same script in single-line text, multi-line text, and wide single-line text variables, but it shows raw HTML instead of converting it into a hyperlink.&lt;/P&gt;</description>
      <pubDate>Sun, 25 Aug 2024 03:27:21 GMT</pubDate>
      <guid>https://www.servicenow.com/community/itsm-forum/making-multiple-choice-variable-choices-hyperlinks/m-p/3026866#M526839</guid>
      <dc:creator>mrreddy534</dc:creator>
      <dc:date>2024-08-25T03:27:21Z</dc:date>
    </item>
    <item>
      <title>Re: Making Multiple-Choice Variable Choices Hyperlinks</title>
      <link>https://www.servicenow.com/community/itsm-forum/making-multiple-choice-variable-choices-hyperlinks/m-p/3026876#M526840</link>
      <description>&lt;P&gt;How about putting a hyperlink in the description?&lt;BR /&gt;Or maybe a rich text label would do.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="HIROSHISATOH_1-1724563565302.png"&gt;&lt;img src="https://www.servicenow.com/community/image/serverpage/image-id/381426iD8B782130E7412FA/image-size/medium?v=v2&amp;amp;px=400" alt="HIROSHISATOH_1-1724563565302.png" title="HIROSHISATOH_1-1724563565302.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 25 Aug 2024 05:26:25 GMT</pubDate>
      <guid>https://www.servicenow.com/community/itsm-forum/making-multiple-choice-variable-choices-hyperlinks/m-p/3026876#M526840</guid>
      <dc:creator>HIROSHI SATOH</dc:creator>
      <dc:date>2024-08-25T05:26:25Z</dc:date>
    </item>
    <item>
      <title>Re: Making Multiple-Choice Variable Choices Hyperlinks</title>
      <link>https://www.servicenow.com/community/itsm-forum/making-multiple-choice-variable-choices-hyperlinks/m-p/3026880#M526841</link>
      <description>&lt;P&gt;I want to add a link directly in the variable question, like this:&lt;/P&gt;&lt;P&gt;'Choose option (See Choice Info),' where 'See Choice Info' is a hyperlink. Please suggest the best method to achieve this.&lt;/P&gt;</description>
      <pubDate>Sun, 25 Aug 2024 05:36:17 GMT</pubDate>
      <guid>https://www.servicenow.com/community/itsm-forum/making-multiple-choice-variable-choices-hyperlinks/m-p/3026880#M526841</guid>
      <dc:creator>mrreddy534</dc:creator>
      <dc:date>2024-08-25T05:36:17Z</dc:date>
    </item>
    <item>
      <title>Re: Making Multiple-Choice Variable Choices Hyperlinks</title>
      <link>https://www.servicenow.com/community/itsm-forum/making-multiple-choice-variable-choices-hyperlinks/m-p/3026883#M526842</link>
      <description>&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Screenshot 2024-08-25 111602.png"&gt;&lt;img src="https://www.servicenow.com/community/image/serverpage/image-id/381427i80BE3F8C2B8CEE72/image-size/medium?v=v2&amp;amp;px=400" alt="Screenshot 2024-08-25 111602.png" title="Screenshot 2024-08-25 111602.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;I created two options. The first one uses a rich text label and checkbox variables, where adding a hyperlink is easy. However, the gap between the two variables is larger, so it doesn't look like a multiple-choice variable.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The second option is a multiple-choice variable, but I'm unable to insert a hyperlink within that variable.&lt;/P&gt;</description>
      <pubDate>Sun, 25 Aug 2024 05:52:13 GMT</pubDate>
      <guid>https://www.servicenow.com/community/itsm-forum/making-multiple-choice-variable-choices-hyperlinks/m-p/3026883#M526842</guid>
      <dc:creator>mrreddy534</dc:creator>
      <dc:date>2024-08-25T05:52:13Z</dc:date>
    </item>
  </channel>
</rss>

