<?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: Feedback Configuration in HRSD forum</title>
    <link>https://www.servicenow.com/community/hrsd-forum/feedback-configuration/m-p/3282897#M41690</link>
    <description>&lt;LI-CODE lang="markup"&gt;HTML Template
1
&amp;lt;div ng-if="c.data.isValidFeedback &amp;amp;&amp;amp; !c.data.surveyRedirectWidget" class="feedback-container"&amp;gt;
2
   &amp;lt;div aria-live="polite" aria-atomic="true" class="feedback-modal-toggle sr-only"&amp;gt;
3
      &amp;lt;!-- initially blank --&amp;gt; 
4
   &amp;lt;/div&amp;gt;
5
   &amp;lt;div class="feedback-input-container" ng-if="!c.data.isSurveyComplete"&amp;gt;
6
      &amp;lt;div class="feedback-button-container" role="radiogroup"&amp;gt;
7
         &amp;lt;button ng-repeat="question in c.data.questionsList"
8
            role="radio"
9
            type="radio"
10
            aria-checked ="{{c.isSelected(question)}}"
11
            ng-keydown="c.keydownEventHandler($event, $index,question)"
12
            tabindex="{{c.selectedQuestion==''&amp;amp;&amp;amp; $index==0?0:c.isSelected(question)?0:-1}}"
13
            class="btn btn-lg btn-feedback btn-feedback-{{question.sentiment}} {{c.isSelected(question)?'btn-primary':'btn-default'}}"
14
            ng-click="c.setSelectedQuestion($event, question.label, question.sentiment, question.value)"
15
            &amp;gt;
16
         &amp;lt;i class="fa btn-feedback-icon" ng-class="question.icon" aria-hidden="true"&amp;gt;&amp;lt;/i&amp;gt;
17
         &amp;lt;span class="btn-feedback-description {{c.isSelected(question)?'btn-selected':''}}"&amp;gt;{{question.label}}&amp;lt;/span&amp;gt;
18
         &amp;lt;/button&amp;gt;
19
      &amp;lt;/div&amp;gt;
20
      &amp;lt;div class="comment-container" ng-if="c.current &amp;amp;&amp;amp; !c.data.isSurveyComplete &amp;amp;&amp;amp; c.data.isCommentAllowed"&amp;gt;
21
         &amp;lt;label class="comment-title" for="comment-box"&amp;gt;{{data.commentLabel}}&amp;lt;/label&amp;gt;
22
         &amp;lt;textarea class="comment-box textarea"
23
            ng-class="field.data.length &amp;gt; data.feedback_max_length ? 'text-border' : 'editor-pristine'" 
24
            id="comment-box"
25
            rows="4" 
26
            maxlength="{{c.data.feedback_max_length}}" 
27
            data-type="textarea" 
28
            role="textbox" 
29
            autocomplete="off"
30
            ng-model="field.data" 
31
            ng-init="field.data=field.value" 
32
            ng-trim="false"
33
            placeholder="${Enter optional comment}"&amp;gt;&amp;lt;/textarea&amp;gt;
34
         &amp;lt;div class="char-limit-container"&amp;gt;
35
            &amp;lt;span class="characters" 
36
               ng-if="field.data.length &amp;lt;= c.data.feedback_max_length &amp;amp;&amp;amp; field.data.length &amp;gt; 0"
37
               data-ng-bind-template="{{c.data.feedback_max_length - (!field.data ? 0 : field.data.length)}} {{c.data.charactersLeft}}"&amp;gt;
38
            &amp;lt;/span&amp;gt;
39
            &amp;lt;span class="warning-message" 
40
               ng-if="field.data.length &amp;gt; c.data.feedback_max_length"
41
               data-ng-bind-template="{{(!field.data ? 0 : field.data.length) - c.data.feedback_max_length}} {{c.data.charactersOver}}"&amp;gt;
42
            &amp;lt;/span&amp;gt;
43
         &amp;lt;/div&amp;gt;
44
      &amp;lt;/div&amp;gt;
45
      &amp;lt;div class="anonymous-container"&amp;gt;
46
         &amp;lt;div&amp;gt;
47
            &amp;lt;label&amp;gt;
48
            &amp;lt;input type="checkbox" 
49
               ng-if="!c.data.isAnonymous" 
50
               aria-label ="{{c.data.anonymousText}}"
51
               class="user_preference"&amp;gt;
52
            &amp;lt;span class="boolean-control anonymous-label anonymous-text" 
53
               ng-if="!c.data.isAnonymous"
54
               for="user_preference" 
55
               aria-hidden="true"&amp;gt;{{c.data.anonymousText}}&amp;lt;/span&amp;gt;
56
            &amp;lt;span class="anonymous-label anonymous-text" 
57
               ng-if="c.data.isAnonymous"&amp;gt;{{c.data.anonymousText}}&amp;lt;/span&amp;gt;
58
            &amp;lt;/label&amp;gt; 
59
         &amp;lt;/div&amp;gt;
60
         &amp;lt;div&amp;gt;
61
            &amp;lt;a class ="privacy-title privacy-text" ng-show = "c.data.hasPrivacyPolicy" href="{{c.data.privacyPolicyHref}}"  aria-label="${Privacy policy}" target="_blank"&amp;gt;${ Privacy policy}&amp;lt;/a&amp;gt;
62
         &amp;lt;/div&amp;gt;
63
      &amp;lt;/div&amp;gt;
64
   &amp;lt;/div&amp;gt;
65
   &amp;lt;div class="feedback-actions" ng-if="!c.data.isSurveyComplete"&amp;gt;
66
      &amp;lt;button class="btn btn-primary btn-submit {{!c.enableSubmitButton? 'disabled':''}}" 
67
         ng-click="c.submit()" 
68
         ng-disabled="!c.enableSubmitButton"
69
         aria-label="${Submit}"&amp;gt;${Submit}
70
      &amp;lt;/button&amp;gt;
71
   &amp;lt;/div&amp;gt;
72
   &amp;lt;div class="feedback-success-container" ng-if="c.data.isSurveyComplete"&amp;gt;
73
      &amp;lt;div class="feedback-complete"&amp;gt;
74
         &amp;lt;fa name="{{c.data.successIcon}}" class="fa-3x submit-message-icon"&amp;gt;&amp;lt;/fa&amp;gt;
75
         &amp;lt;h3 class="feedback-success-text" aria-label="{{c.data.successText}}"&amp;gt;{{c.data.successText}}&amp;lt;/h3&amp;gt;
76
         &amp;lt;div class="feedback-success-description" aria-label="{{c.data.successDescription}}"&amp;gt;
77
            &amp;lt;span&amp;gt;{{c.data.successDescription}}&amp;lt;/span&amp;gt;
78
         &amp;lt;/div&amp;gt;
79
      &amp;lt;/div&amp;gt;
80
   &amp;lt;/div&amp;gt;
81
&amp;lt;/div&amp;gt;
82
​
83
&amp;lt;div ng-if="c.data.surveyRedirectWidget"&amp;gt;
84
  &amp;lt;sp-widget widget="data.surveyRedirectWidget"&amp;gt;&amp;lt;/sp-widget&amp;gt;
85
&amp;lt;/div&amp;gt;
86
​
87
&amp;lt;div ng-if="!c.data.isValidFeedback" class="feedback-container"&amp;gt;
88
  &amp;lt;div class="invalid-feedback-msg"&amp;gt;
89
    {{ c.data.invalidDefinitionMessage }}
90
  &amp;lt;/div&amp;gt;
91
&amp;lt;/div&amp;gt;&lt;/LI-CODE&gt;</description>
    <pubDate>Fri, 06 Jun 2025 06:14:46 GMT</pubDate>
    <dc:creator>Divya98</dc:creator>
    <dc:date>2025-06-06T06:14:46Z</dc:date>
    <item>
      <title>Feedback Configuration</title>
      <link>https://www.servicenow.com/community/hrsd-forum/feedback-configuration/m-p/3282107#M41661</link>
      <description>&lt;P&gt;I want to rename the below text from Provide feedback from esc portal. Can you please suggest me how to do this.&amp;nbsp;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Provide Feedback.png" style="width: 732px;"&gt;&lt;img src="https://www.servicenow.com/community/image/serverpage/image-id/446946i719F452EB44CF85C/image-size/large?v=v2&amp;amp;px=999" role="button" title="Provide Feedback.png" alt="Provide Feedback.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 05 Jun 2025 11:22:47 GMT</pubDate>
      <guid>https://www.servicenow.com/community/hrsd-forum/feedback-configuration/m-p/3282107#M41661</guid>
      <dc:creator>Divya98</dc:creator>
      <dc:date>2025-06-05T11:22:47Z</dc:date>
    </item>
    <item>
      <title>Re: Feedback Configuration</title>
      <link>https://www.servicenow.com/community/hrsd-forum/feedback-configuration/m-p/3282133#M41662</link>
      <description>&lt;P&gt;&lt;a href="https://www.servicenow.com/community/user/viewprofilepage/user-id/260240"&gt;@Divya98&lt;/a&gt;&amp;nbsp; This seems to be a survey generated upon closing a request or a ticket resolved. Can you please check the 'asmt_metric_type' table for this survey definition, where you can change it&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 05 Jun 2025 11:59:44 GMT</pubDate>
      <guid>https://www.servicenow.com/community/hrsd-forum/feedback-configuration/m-p/3282133#M41662</guid>
      <dc:creator>Azhar T</dc:creator>
      <dc:date>2025-06-05T11:59:44Z</dc:date>
    </item>
    <item>
      <title>Re: Feedback Configuration</title>
      <link>https://www.servicenow.com/community/hrsd-forum/feedback-configuration/m-p/3282196#M41664</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://www.servicenow.com/community/user/viewprofilepage/user-id/260240"&gt;@Divya98&lt;/a&gt;&amp;nbsp;/&amp;nbsp;&lt;a href="https://www.servicenow.com/community/user/viewprofilepage/user-id/820634"&gt;@Azhar T&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;You will need to go to&amp;nbsp;sys_ui_message Table and look for Provide Feedback :&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="SANDEEPDUTTA_1-1749126683664.png" style="width: 400px;"&gt;&lt;img src="https://www.servicenow.com/community/image/serverpage/image-id/446979i50F443267124002E/image-size/medium/is-moderation-mode/true?v=v2&amp;amp;px=400" role="button" title="SANDEEPDUTTA_1-1749126683664.png" alt="SANDEEPDUTTA_1-1749126683664.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;and change the text from there :&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="SANDEEPDUTTA_0-1749126634405.png" style="width: 400px;"&gt;&lt;img src="https://www.servicenow.com/community/image/serverpage/image-id/446978iBBF09A246E9F1E42/image-size/medium/is-moderation-mode/true?v=v2&amp;amp;px=400" role="button" title="SANDEEPDUTTA_0-1749126634405.png" alt="SANDEEPDUTTA_0-1749126634405.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 05 Jun 2025 12:31:29 GMT</pubDate>
      <guid>https://www.servicenow.com/community/hrsd-forum/feedback-configuration/m-p/3282196#M41664</guid>
      <dc:creator>sandeepdutt</dc:creator>
      <dc:date>2025-06-05T12:31:29Z</dc:date>
    </item>
    <item>
      <title>Re: Feedback Configuration</title>
      <link>https://www.servicenow.com/community/hrsd-forum/feedback-configuration/m-p/3282231#M41665</link>
      <description>&lt;P&gt;&lt;a href="https://www.servicenow.com/community/user/viewprofilepage/user-id/260240"&gt;@Divya98&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;what all you want to change?&lt;/P&gt;
&lt;P&gt;You can change the title from here, see if it works&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="AnkurBawiskar_0-1749127916332.png" style="width: 400px;"&gt;&lt;img src="https://www.servicenow.com/community/image/serverpage/image-id/446988i190E0B9598755D71/image-size/medium?v=v2&amp;amp;px=400" role="button" title="AnkurBawiskar_0-1749127916332.png" alt="AnkurBawiskar_0-1749127916332.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I recently shared solution for something similar and you can check that and enhance your cloned widget if required&lt;/P&gt;
&lt;P&gt;&lt;A href="https://www.servicenow.com/community/developer-forum/how-to-amend-the-feedback-widget-on-the-portal/td-p/3246842" target="_blank" rel="noopener"&gt;How to amend the Feedback widget on the portal&lt;/A&gt;&amp;nbsp;&lt;/P&gt;
&lt;P style="box-sizing: border-box; margin: 0px; color: #1d1d1d; font-family: Lato, Gilroy, sans-serif; font-size: 14px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; background-color: #ffffff; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;"&gt;this link should help you&lt;/P&gt;
&lt;P style="box-sizing: border-box; margin: 0px; color: #1d1d1d; font-family: Lato, Gilroy, sans-serif; font-size: 14px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; background-color: #ffffff; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;"&gt;&lt;A style="box-sizing: border-box; text-decoration: underline; background-color: transparent; color: #007393; font-size: inherit;" href="https://www.servicenow.com/community/employee-center-articles/integrated-experience-and-service-feedback-employee-center-pro/ta-p/2877669" target="_blank" rel="noopener"&gt;Integrated Experience and Service Feedback (Employee Center Pro)&lt;/A&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If my response helped please mark it correct and close the thread so that it benefits future readers.&lt;/P&gt;</description>
      <pubDate>Thu, 05 Jun 2025 12:53:26 GMT</pubDate>
      <guid>https://www.servicenow.com/community/hrsd-forum/feedback-configuration/m-p/3282231#M41665</guid>
      <dc:creator>Ankur Bawiskar</dc:creator>
      <dc:date>2025-06-05T12:53:26Z</dc:date>
    </item>
    <item>
      <title>Re: Feedback Configuration</title>
      <link>https://www.servicenow.com/community/hrsd-forum/feedback-configuration/m-p/3282786#M41679</link>
      <description>&lt;P&gt;&lt;a href="https://www.servicenow.com/community/user/viewprofilepage/user-id/260240"&gt;@Divya98&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Hope you are doing good.&lt;/P&gt;
&lt;P&gt;Did my reply answer your question?&lt;/P&gt;
&lt;P&gt;If my response helped please mark it correct and close the thread so that it benefits future readers.&lt;/P&gt;</description>
      <pubDate>Fri, 06 Jun 2025 03:26:24 GMT</pubDate>
      <guid>https://www.servicenow.com/community/hrsd-forum/feedback-configuration/m-p/3282786#M41679</guid>
      <dc:creator>Ankur Bawiskar</dc:creator>
      <dc:date>2025-06-06T03:26:24Z</dc:date>
    </item>
    <item>
      <title>Re: Feedback Configuration</title>
      <link>https://www.servicenow.com/community/hrsd-forum/feedback-configuration/m-p/3282839#M41682</link>
      <description>&lt;P&gt;Hi Azhar,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;I checked in &lt;SPAN&gt;'asmt_metric_type' table there i found the choices but if rename it is not changing in ESC portal.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Please check the attached screenshot.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Regards,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Divya&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="survey.png" style="width: 999px;"&gt;&lt;img src="https://www.servicenow.com/community/image/serverpage/image-id/447162i3FF9AA9432A8AD14/image-size/large?v=v2&amp;amp;px=999" role="button" title="survey.png" alt="survey.png" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 06 Jun 2025 04:48:54 GMT</pubDate>
      <guid>https://www.servicenow.com/community/hrsd-forum/feedback-configuration/m-p/3282839#M41682</guid>
      <dc:creator>Divya98</dc:creator>
      <dc:date>2025-06-06T04:48:54Z</dc:date>
    </item>
    <item>
      <title>Re: Feedback Configuration</title>
      <link>https://www.servicenow.com/community/hrsd-forum/feedback-configuration/m-p/3282840#M41683</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://www.servicenow.com/community/user/viewprofilepage/user-id/1616"&gt;@Sandeep&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I see "sys_ui_message" table is for language translations.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Divya&lt;/P&gt;</description>
      <pubDate>Fri, 06 Jun 2025 04:52:38 GMT</pubDate>
      <guid>https://www.servicenow.com/community/hrsd-forum/feedback-configuration/m-p/3282840#M41683</guid>
      <dc:creator>Divya98</dc:creator>
      <dc:date>2025-06-06T04:52:38Z</dc:date>
    </item>
    <item>
      <title>Re: Feedback Configuration</title>
      <link>https://www.servicenow.com/community/hrsd-forum/feedback-configuration/m-p/3282854#M41684</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://www.servicenow.com/community/user/viewprofilepage/user-id/265966"&gt;@Ankur Bawiskar&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I want to rename the choices i found the widget "Experience Feedback Mobile" when i preview the below image is showing so i want to rename that choices which lines of code needs to change please let me know. And also let me know how these widgets are added in ESC portal if i see from page designer this widget is not added for OOB ESC portal.&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Experience Feedback Mobile widget.png" style="width: 999px;"&gt;&lt;img src="https://www.servicenow.com/community/image/serverpage/image-id/447165i703FF195D6DC4F09/image-size/large?v=v2&amp;amp;px=999" role="button" title="Experience Feedback Mobile widget.png" alt="Experience Feedback Mobile widget.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Divya&lt;/P&gt;</description>
      <pubDate>Fri, 06 Jun 2025 05:15:28 GMT</pubDate>
      <guid>https://www.servicenow.com/community/hrsd-forum/feedback-configuration/m-p/3282854#M41684</guid>
      <dc:creator>Divya98</dc:creator>
      <dc:date>2025-06-06T05:15:28Z</dc:date>
    </item>
    <item>
      <title>Re: Feedback Configuration</title>
      <link>https://www.servicenow.com/community/hrsd-forum/feedback-configuration/m-p/3282875#M41687</link>
      <description>&lt;P&gt;&lt;a href="https://www.servicenow.com/community/user/viewprofilepage/user-id/260240"&gt;@Divya98&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Seems you closed the thread by marking a response as correct.&lt;/P&gt;
&lt;P&gt;If your question is unanswered please don't mark response as correct as it might confuse members.&lt;/P&gt;</description>
      <pubDate>Fri, 06 Jun 2025 05:32:03 GMT</pubDate>
      <guid>https://www.servicenow.com/community/hrsd-forum/feedback-configuration/m-p/3282875#M41687</guid>
      <dc:creator>Ankur Bawiskar</dc:creator>
      <dc:date>2025-06-06T05:32:03Z</dc:date>
    </item>
    <item>
      <title>Re: Feedback Configuration</title>
      <link>https://www.servicenow.com/community/hrsd-forum/feedback-configuration/m-p/3282878#M41688</link>
      <description>&lt;P&gt;&lt;a href="https://www.servicenow.com/community/user/viewprofilepage/user-id/260240"&gt;@Divya98&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Sorry but I don't have that widget in my instance so can't check&lt;/P&gt;
&lt;P&gt;you will have to check the widget HTML and client script&lt;/P&gt;</description>
      <pubDate>Fri, 06 Jun 2025 05:33:49 GMT</pubDate>
      <guid>https://www.servicenow.com/community/hrsd-forum/feedback-configuration/m-p/3282878#M41688</guid>
      <dc:creator>Ankur Bawiskar</dc:creator>
      <dc:date>2025-06-06T05:33:49Z</dc:date>
    </item>
    <item>
      <title>Re: Feedback Configuration</title>
      <link>https://www.servicenow.com/community/hrsd-forum/feedback-configuration/m-p/3282894#M41689</link>
      <description>&lt;P&gt;&lt;a href="https://www.servicenow.com/community/user/viewprofilepage/user-id/260240"&gt;@Divya98&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;can you share the complete widget code here&lt;/P&gt;</description>
      <pubDate>Fri, 06 Jun 2025 06:05:45 GMT</pubDate>
      <guid>https://www.servicenow.com/community/hrsd-forum/feedback-configuration/m-p/3282894#M41689</guid>
      <dc:creator>Ankur Bawiskar</dc:creator>
      <dc:date>2025-06-06T06:05:45Z</dc:date>
    </item>
    <item>
      <title>Re: Feedback Configuration</title>
      <link>https://www.servicenow.com/community/hrsd-forum/feedback-configuration/m-p/3282897#M41690</link>
      <description>&lt;LI-CODE lang="markup"&gt;HTML Template
1
&amp;lt;div ng-if="c.data.isValidFeedback &amp;amp;&amp;amp; !c.data.surveyRedirectWidget" class="feedback-container"&amp;gt;
2
   &amp;lt;div aria-live="polite" aria-atomic="true" class="feedback-modal-toggle sr-only"&amp;gt;
3
      &amp;lt;!-- initially blank --&amp;gt; 
4
   &amp;lt;/div&amp;gt;
5
   &amp;lt;div class="feedback-input-container" ng-if="!c.data.isSurveyComplete"&amp;gt;
6
      &amp;lt;div class="feedback-button-container" role="radiogroup"&amp;gt;
7
         &amp;lt;button ng-repeat="question in c.data.questionsList"
8
            role="radio"
9
            type="radio"
10
            aria-checked ="{{c.isSelected(question)}}"
11
            ng-keydown="c.keydownEventHandler($event, $index,question)"
12
            tabindex="{{c.selectedQuestion==''&amp;amp;&amp;amp; $index==0?0:c.isSelected(question)?0:-1}}"
13
            class="btn btn-lg btn-feedback btn-feedback-{{question.sentiment}} {{c.isSelected(question)?'btn-primary':'btn-default'}}"
14
            ng-click="c.setSelectedQuestion($event, question.label, question.sentiment, question.value)"
15
            &amp;gt;
16
         &amp;lt;i class="fa btn-feedback-icon" ng-class="question.icon" aria-hidden="true"&amp;gt;&amp;lt;/i&amp;gt;
17
         &amp;lt;span class="btn-feedback-description {{c.isSelected(question)?'btn-selected':''}}"&amp;gt;{{question.label}}&amp;lt;/span&amp;gt;
18
         &amp;lt;/button&amp;gt;
19
      &amp;lt;/div&amp;gt;
20
      &amp;lt;div class="comment-container" ng-if="c.current &amp;amp;&amp;amp; !c.data.isSurveyComplete &amp;amp;&amp;amp; c.data.isCommentAllowed"&amp;gt;
21
         &amp;lt;label class="comment-title" for="comment-box"&amp;gt;{{data.commentLabel}}&amp;lt;/label&amp;gt;
22
         &amp;lt;textarea class="comment-box textarea"
23
            ng-class="field.data.length &amp;gt; data.feedback_max_length ? 'text-border' : 'editor-pristine'" 
24
            id="comment-box"
25
            rows="4" 
26
            maxlength="{{c.data.feedback_max_length}}" 
27
            data-type="textarea" 
28
            role="textbox" 
29
            autocomplete="off"
30
            ng-model="field.data" 
31
            ng-init="field.data=field.value" 
32
            ng-trim="false"
33
            placeholder="${Enter optional comment}"&amp;gt;&amp;lt;/textarea&amp;gt;
34
         &amp;lt;div class="char-limit-container"&amp;gt;
35
            &amp;lt;span class="characters" 
36
               ng-if="field.data.length &amp;lt;= c.data.feedback_max_length &amp;amp;&amp;amp; field.data.length &amp;gt; 0"
37
               data-ng-bind-template="{{c.data.feedback_max_length - (!field.data ? 0 : field.data.length)}} {{c.data.charactersLeft}}"&amp;gt;
38
            &amp;lt;/span&amp;gt;
39
            &amp;lt;span class="warning-message" 
40
               ng-if="field.data.length &amp;gt; c.data.feedback_max_length"
41
               data-ng-bind-template="{{(!field.data ? 0 : field.data.length) - c.data.feedback_max_length}} {{c.data.charactersOver}}"&amp;gt;
42
            &amp;lt;/span&amp;gt;
43
         &amp;lt;/div&amp;gt;
44
      &amp;lt;/div&amp;gt;
45
      &amp;lt;div class="anonymous-container"&amp;gt;
46
         &amp;lt;div&amp;gt;
47
            &amp;lt;label&amp;gt;
48
            &amp;lt;input type="checkbox" 
49
               ng-if="!c.data.isAnonymous" 
50
               aria-label ="{{c.data.anonymousText}}"
51
               class="user_preference"&amp;gt;
52
            &amp;lt;span class="boolean-control anonymous-label anonymous-text" 
53
               ng-if="!c.data.isAnonymous"
54
               for="user_preference" 
55
               aria-hidden="true"&amp;gt;{{c.data.anonymousText}}&amp;lt;/span&amp;gt;
56
            &amp;lt;span class="anonymous-label anonymous-text" 
57
               ng-if="c.data.isAnonymous"&amp;gt;{{c.data.anonymousText}}&amp;lt;/span&amp;gt;
58
            &amp;lt;/label&amp;gt; 
59
         &amp;lt;/div&amp;gt;
60
         &amp;lt;div&amp;gt;
61
            &amp;lt;a class ="privacy-title privacy-text" ng-show = "c.data.hasPrivacyPolicy" href="{{c.data.privacyPolicyHref}}"  aria-label="${Privacy policy}" target="_blank"&amp;gt;${ Privacy policy}&amp;lt;/a&amp;gt;
62
         &amp;lt;/div&amp;gt;
63
      &amp;lt;/div&amp;gt;
64
   &amp;lt;/div&amp;gt;
65
   &amp;lt;div class="feedback-actions" ng-if="!c.data.isSurveyComplete"&amp;gt;
66
      &amp;lt;button class="btn btn-primary btn-submit {{!c.enableSubmitButton? 'disabled':''}}" 
67
         ng-click="c.submit()" 
68
         ng-disabled="!c.enableSubmitButton"
69
         aria-label="${Submit}"&amp;gt;${Submit}
70
      &amp;lt;/button&amp;gt;
71
   &amp;lt;/div&amp;gt;
72
   &amp;lt;div class="feedback-success-container" ng-if="c.data.isSurveyComplete"&amp;gt;
73
      &amp;lt;div class="feedback-complete"&amp;gt;
74
         &amp;lt;fa name="{{c.data.successIcon}}" class="fa-3x submit-message-icon"&amp;gt;&amp;lt;/fa&amp;gt;
75
         &amp;lt;h3 class="feedback-success-text" aria-label="{{c.data.successText}}"&amp;gt;{{c.data.successText}}&amp;lt;/h3&amp;gt;
76
         &amp;lt;div class="feedback-success-description" aria-label="{{c.data.successDescription}}"&amp;gt;
77
            &amp;lt;span&amp;gt;{{c.data.successDescription}}&amp;lt;/span&amp;gt;
78
         &amp;lt;/div&amp;gt;
79
      &amp;lt;/div&amp;gt;
80
   &amp;lt;/div&amp;gt;
81
&amp;lt;/div&amp;gt;
82
​
83
&amp;lt;div ng-if="c.data.surveyRedirectWidget"&amp;gt;
84
  &amp;lt;sp-widget widget="data.surveyRedirectWidget"&amp;gt;&amp;lt;/sp-widget&amp;gt;
85
&amp;lt;/div&amp;gt;
86
​
87
&amp;lt;div ng-if="!c.data.isValidFeedback" class="feedback-container"&amp;gt;
88
  &amp;lt;div class="invalid-feedback-msg"&amp;gt;
89
    {{ c.data.invalidDefinitionMessage }}
90
  &amp;lt;/div&amp;gt;
91
&amp;lt;/div&amp;gt;&lt;/LI-CODE&gt;</description>
      <pubDate>Fri, 06 Jun 2025 06:14:46 GMT</pubDate>
      <guid>https://www.servicenow.com/community/hrsd-forum/feedback-configuration/m-p/3282897#M41690</guid>
      <dc:creator>Divya98</dc:creator>
      <dc:date>2025-06-06T06:14:46Z</dc:date>
    </item>
  </channel>
</rss>

