<?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>Radio Field Image</title><link>https://community.appian.com/discussions/f/general/34816/radio-field-image</link><description>Hi Everyone, 
 Can anyone please help me, Is it possible to display image in radio button as shown in screenshot below:</description><dc:language>en-US</dc:language><generator>Telligent Community 12</generator><item><title>RE: Radio Field Image</title><link>https://community.appian.com/thread/134451?ContentTypeID=1</link><pubDate>Mon, 29 Apr 2024 17:20:45 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:068b0316-7295-462b-a0c9-6a4df1851c1a</guid><dc:creator>Mike Schmitt</dc:creator><description>&lt;p&gt;This works but if you&amp;#39;re going to go with the Rich Text Display Field approach (which I am also a fan of), I would &lt;em&gt;&lt;strong&gt;actively discourage&lt;/strong&gt;&lt;/em&gt; you to also use hardcoded Unicode values for icons, as instead you can just use the Rich Text Icon library (which is much better supported by Appian in general), including the ability to conditionally resize them and use whatever colors you desire.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Radio Field Image</title><link>https://community.appian.com/thread/134430?ContentTypeID=1</link><pubDate>Mon, 29 Apr 2024 12:30:30 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:4ebc2075-1b07-4879-a779-fe9bdd83234e</guid><dc:creator>Shubham Aware</dc:creator><description>&lt;p&gt;&lt;a href="https://www.compart.com/en/unicode/U+2705#:~:text=Unicode%20Character%20%E2%80%9C%E2%9C%85%E2%80%9D%20(U%2B2705)"&gt;https://www.compart.com/en/unicode/U+2705#:~:text=Unicode%20Character%20%E2%80%9C%E2%9C%85%E2%80%9D%20(U%2B2705)&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="https://www.compart.com/en/unicode/U+274C"&gt;https://www.compart.com/en/unicode/U+274C&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;I shared link for Unicode&amp;#39;s which I used.&lt;br /&gt;&lt;br /&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Radio Field Image</title><link>https://community.appian.com/thread/134429?ContentTypeID=1</link><pubDate>Mon, 29 Apr 2024 12:15:25 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:36ea59be-4a66-4160-a224-c18bc58686fc</guid><dc:creator>Rahul009</dc:creator><description>&lt;p&gt;Thank you &amp;nbsp;, could you please share me the link for unicode values.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Radio Field Image</title><link>https://community.appian.com/thread/134423?ContentTypeID=1</link><pubDate>Mon, 29 Apr 2024 10:58:04 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:50c99a2a-b9af-4e12-8d6e-52ea7a95be85</guid><dc:creator>Harsh Kumar Agarwal</dc:creator><description>&lt;p&gt;Try using the following code, you may replace/configure the images as per your requirements.&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="text"&gt;a!localVariables(
  local!choice,
  a!richTextDisplayField(
    value: {
      a!richTextIcon(
        size: &amp;quot;EXTRA_LARGE&amp;quot;,
        icon: &amp;quot;grin-alt-o&amp;quot;,
        link: a!dynamicLink(saveInto: { a!save(local!choice, true()) }),
        linkStyle: &amp;quot;STANDALONE&amp;quot;
      ),
      a!richTextItem(text: &amp;quot;   &amp;quot;),
      a!richTextIcon(
        size: &amp;quot;EXTRA_LARGE&amp;quot;,
        icon: &amp;quot;meh-o&amp;quot;,
        link: a!dynamicLink(
          saveInto: { a!save(local!choice, false()) }
        ),
        linkStyle: &amp;quot;STANDALONE&amp;quot;
      )
    }
  )
)&lt;/pre&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Radio Field Image</title><link>https://community.appian.com/thread/134421?ContentTypeID=1</link><pubDate>Mon, 29 Apr 2024 10:31:08 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:c701965f-426d-41b8-8cae-303d52ca7b4f</guid><dc:creator>Shubham Aware</dc:creator><description>&lt;p&gt;Hello &lt;a href="/members/shubhamy3376"&gt;Rahul009&lt;/a&gt;&amp;nbsp;,&lt;br /&gt;&lt;br /&gt;Radio button does not allow this modification but you can try below code as per your requirement.&lt;br /&gt;&lt;br /&gt;&lt;pre class="ui-code" data-mode="text"&gt;a!localVariables(
  local!selection,
  a!richTextDisplayField(
    value: {
      a!richTextItem(
        text: if(
          toboolean(local!selection) = true(),
          &amp;quot;✅&amp;quot; &amp;amp; &amp;quot;Yes&amp;quot;,
          &amp;quot;&amp;#128280;&amp;quot; &amp;amp; &amp;quot;Yes&amp;quot;
        ),
        link: a!dynamicLink(
          saveInto: a!save(local!selection, true())
        )
      ),
      &amp;quot;, &amp;quot;,
      a!richTextItem(
        text: if(
          toboolean(local!selection) = false(),
          &amp;quot;❌&amp;quot; &amp;amp; &amp;quot;No&amp;quot;,
          &amp;quot;&amp;#128280;&amp;quot; &amp;amp; &amp;quot;No&amp;quot;
        ),
        link: a!dynamicLink(
          saveInto: a!save(local!selection, false())
        )
      ),
      
    }
  )
)&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;Let me know if that works for you.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Radio Field Image</title><link>https://community.appian.com/thread/134420?ContentTypeID=1</link><pubDate>Mon, 29 Apr 2024 10:20:35 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:c2cdb3ce-6195-40c9-8b05-de6a31719b2f</guid><dc:creator>Shubham Aware</dc:creator><description>&lt;p&gt;My question here is why you are using radioButton field for this requirement? You can use richtextDisplayField and put show when condition to achieve this using dynamicLink.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Radio Field Image</title><link>https://community.appian.com/thread/134419?ContentTypeID=1</link><pubDate>Mon, 29 Apr 2024 10:04:27 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:b10fecc3-a219-4815-9506-df4e89af74db</guid><dc:creator>Rahul009</dc:creator><description>&lt;p&gt;Hi &amp;nbsp;, I need to display icon along with label. When tick icon is there then circle should not be displayed and vice versa.&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;img style="max-height:240px;max-width:320px;" src="/resized-image/__size/640x480/__key/communityserver-discussions-components-files/11/pastedimage1714384952291v1.png" alt=" " /&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Radio Field Image</title><link>https://community.appian.com/thread/134411?ContentTypeID=1</link><pubDate>Mon, 29 Apr 2024 09:13:37 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:63985906-0016-4970-95e9-e3f60e6bbec1</guid><dc:creator>Stefan Helzle</dc:creator><description>&lt;p&gt;The built in radio buttons and check boxes do not support that. With the exception of Unicode character visuals.&lt;/p&gt;
&lt;p&gt;But, you can easily build your own component that uses any images you want.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Radio Field Image</title><link>https://community.appian.com/thread/134405?ContentTypeID=1</link><pubDate>Mon, 29 Apr 2024 08:38:07 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:95c4fde7-5ed6-4621-b202-92f28521c987</guid><dc:creator>Shubham Aware</dc:creator><description>&lt;p&gt;Hello &lt;a href="/members/shubhamy3376"&gt;Rahul009&lt;/a&gt;&amp;nbsp;&lt;br /&gt;&lt;br /&gt;No, direct image display in Appian radio buttons isn&amp;#39;t possible.&lt;br /&gt;Bu you can try this and let me know if that works for you.&lt;br /&gt;I am using unicode to display radioButton label instead of image.&lt;br /&gt;&lt;br /&gt;&lt;pre class="ui-code" data-mode="text"&gt;{
  a!radioButtonField(
    choiceLabels: {&amp;quot;✅&amp;quot;, &amp;quot;❌&amp;quot;},
    choiceValues: {1, 2},
    labelPosition: &amp;quot;ABOVE&amp;quot;,
    choiceLayout: &amp;quot;COMPACT&amp;quot;,
  )
}&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;&lt;img style="max-height:240px;max-width:320px;" alt=" " src="/resized-image/__size/640x480/__key/communityserver-discussions-components-files/11/3757.Capture.PNG" /&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Radio Field Image</title><link>https://community.appian.com/thread/134404?ContentTypeID=1</link><pubDate>Mon, 29 Apr 2024 08:31:48 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:63164fa6-b999-4018-8364-b11417cdc629</guid><dc:creator>Karumuru Abhishek</dc:creator><description>&lt;p&gt;hi &lt;a href="/members/shubhamy3376"&gt;Rahul009&lt;/a&gt;&amp;nbsp; you may need to download some external images and show them using a!richtextImage()&amp;nbsp;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>