<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="https://community.appian.com/cfs-file/__key/system/syndication/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>Bold the text on confirmation message</title><link>https://community.appian.com/discussions/f/user-interface/34445/bold-the-text-on-confirmation-message</link><description>I want to bold text on confirmation message when i click the button.</description><dc:language>en-US</dc:language><generator>Telligent Community 12</generator><item><title>RE: Bold the text on confirmation message</title><link>https://community.appian.com/thread/131761?ContentTypeID=1</link><pubDate>Sat, 23 Mar 2024 14:06:16 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:36d1a519-e0b2-4164-be98-0d52b15a2c86</guid><dc:creator>Stefan Helzle</dc:creator><description>&lt;p&gt;I covered this use case in a blog post.&lt;/p&gt;
&lt;p&gt;&lt;a id="" href="https://appian.rocks/2023/04/17/formatting-labels-in-appian/"&gt;https://appian.rocks/2023/04/17/formatting-labels-in-appian/&lt;/a&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Bold the text on confirmation message</title><link>https://community.appian.com/thread/131758?ContentTypeID=1</link><pubDate>Sat, 23 Mar 2024 11:36:32 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:547febf0-9e28-422d-8ed1-c0bc193e6c88</guid><dc:creator>Rishu Kumar Gupta</dc:creator><description>&lt;p&gt;&lt;a href="/members/amiteshs3330"&gt;amiteshsin&lt;/a&gt;&amp;nbsp;thankyou it&amp;#39;s working fine. Can we apply colors on the text on this code ??&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Bold the text on confirmation message</title><link>https://community.appian.com/thread/131703?ContentTypeID=1</link><pubDate>Fri, 22 Mar 2024 14:04:42 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:3bc0c173-f14f-4c6f-ace1-374363e1e052</guid><dc:creator>amiteshsin</dc:creator><description>&lt;p&gt;Create a rule with text as rule input -&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="text"&gt;a!localVariables(
  local!lRange: 120302 - 97,
  local!uRange: 120276 - 65,
  joinarray(
    char(
      a!forEach(
        items: code(ri!text),
        expression: a!match(
          value: fv!item,
          whenTrue: and(fv!value &amp;gt; 96, fv!value &amp;lt; 123, ),
          then: fv!value + local!lRange,
          whenTrue: and(fv!value &amp;gt; 64, fv!value &amp;lt; 91, ),
          then: fv!value + local!uRange,
          default: fv!value
        )
      )
    ),
    &amp;quot;&amp;quot;
  )
)&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;Now call this from your interface -&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="text"&gt;{
  a!buttonArrayLayout(
    buttons: {
      a!buttonWidget(
        label: &amp;quot;Button&amp;quot;,
        style: &amp;quot;OUTLINE&amp;quot;,
        confirmMessage: rule!MGS_bolding(text: &amp;quot;hello&amp;quot;)
      )
    },
    align: &amp;quot;START&amp;quot;,
    marginBelow: &amp;quot;NONE&amp;quot;
  )
}&lt;/pre&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Bold the text on confirmation message</title><link>https://community.appian.com/thread/131676?ContentTypeID=1</link><pubDate>Fri, 22 Mar 2024 10:29:34 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:8b7ff99f-12bc-4e80-bbf4-354374a88a45</guid><dc:creator>Konduru Chaitanya</dc:creator><description>&lt;p&gt;same code snippet but to add more space between the header and text&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="text"&gt;a!buttonWidget(
  confirmHeader: {
    concat(
      &amp;quot;Appian Is BPM Tool&amp;quot;,
      repeat(2, char(10)),
      &amp;quot;Business Process model&amp;quot;
    )
  }
)&lt;/pre&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Bold the text on confirmation message</title><link>https://community.appian.com/thread/131675?ContentTypeID=1</link><pubDate>Fri, 22 Mar 2024 10:29:04 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:a7a4c592-04a9-487c-ab37-279f2595d3f1</guid><dc:creator>Rishu Kumar Gupta</dc:creator><description>&lt;p&gt;ok&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Bold the text on confirmation message</title><link>https://community.appian.com/thread/131674?ContentTypeID=1</link><pubDate>Fri, 22 Mar 2024 10:25:44 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:f0ce5a92-8665-4258-86f0-2b25760dbefb</guid><dc:creator>venkatrea696188</dc:creator><description>&lt;p&gt;Sorry AFAIK Can&amp;#39;t do that,instead Use ConfirmHeader and Conact() and Line space&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="text"&gt;a!buttonWidget(
  confirmHeader: {concat(&amp;quot;Appian Is BPM Tool&amp;quot;,
  char(10),
  &amp;quot;Business Process model&amp;quot;)}
)&lt;/pre&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Bold the text on confirmation message</title><link>https://community.appian.com/thread/131673?ContentTypeID=1</link><pubDate>Fri, 22 Mar 2024 10:24:08 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:ba6e9b99-8100-426e-95ec-ebe6025824df</guid><dc:creator>Konduru Chaitanya</dc:creator><description>&lt;p&gt;&lt;a href="/members/rishukumarg1965"&gt;Rishu Kumar Gupta&lt;/a&gt;&amp;nbsp;&amp;nbsp;Simple answer is No. You cannot make changes to the format of that text written in confirmation message.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Bold the text on confirmation message</title><link>https://community.appian.com/thread/131671?ContentTypeID=1</link><pubDate>Fri, 22 Mar 2024 10:16:40 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:5e899133-a27a-4343-a455-0fab93c49e09</guid><dc:creator>Rishu Kumar Gupta</dc:creator><description>&lt;p&gt;&amp;nbsp; Submit and open new thing is written under&amp;nbsp;confirmHeader but i want to bold data which is written under&amp;nbsp;confirmMessage&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Bold the text on confirmation message</title><link>https://community.appian.com/thread/131670?ContentTypeID=1</link><pubDate>Fri, 22 Mar 2024 10:13:37 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:ff8ad06e-1359-4c28-8922-67aadd3a6420</guid><dc:creator>venkatrea696188</dc:creator><description>&lt;p&gt;&lt;img style="max-height:240px;max-width:320px;" src="/resized-image/__size/640x480/__key/communityserver-discussions-components-files/13/pastedimage1711102394142v2.png" alt=" " /&gt;&lt;/p&gt;
&lt;p&gt;As far as i know this is also bold...&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Bold the text on confirmation message</title><link>https://community.appian.com/thread/131668?ContentTypeID=1</link><pubDate>Fri, 22 Mar 2024 10:12:14 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:e650d2f3-127d-4ff4-bbc0-f49930c74a9b</guid><dc:creator>Rishu Kumar Gupta</dc:creator><description>&lt;p&gt;&lt;img style="max-height:240px;max-width:320px;" src="/resized-image/__size/640x480/__key/communityserver-discussions-components-files/13/pastedimage1711102329270v1.png" alt=" " /&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>