<?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>Using text as italics in a dropdown field</title><link>https://community.appian.com/discussions/f/user-interface/24306/using-text-as-italics-in-a-dropdown-field</link><description>Hi Folks, 
 
 Is there a way to show the value in a dropdown in italics? 
 
 Regards, 
 Ghanashyam</description><dc:language>en-US</dc:language><generator>Telligent Community 12</generator><item><title>RE: Using text as italics in a dropdown field</title><link>https://community.appian.com/thread/108848?ContentTypeID=1</link><pubDate>Sun, 05 Mar 2023 11:57:51 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:917d7d36-18e4-4695-9a89-adf4caeeee33</guid><dc:creator>Stefan Helzle</dc:creator><description>&lt;p&gt;Using unicode characters to simulate font styling is a neat idea! Thanks a lot for sharing.&lt;/p&gt;
&lt;p&gt;BTW, there is no need to beat such a simple problem using a foreach.&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="text"&gt;a!localVariables(
  local!commonvalue: joinarray(
    char(
      {
        10090,
        119914,
        119952,
        119950,
        119950,
        119952,
        119951,
        119949,
        119962,
        32,
        119932,
        119956,
        119942,
        119941,
        32,
        119920,
        119940,
        119952,
        119951,
        10091
      }
    ),
    &amp;quot;&amp;quot;
  ),
  local!choicelabel: {
    &amp;quot;Series 23- GP (Principal)&amp;quot;,
    &amp;quot;Series 26-IP (Principal)&amp;quot;,
    concat(&amp;quot;Series 3 - NFA &amp;quot;, local!commonvalue)
  },
  local!value,
  a!dropdownField(
    label: &amp;quot;Field&amp;quot;,
    choiceLabels: local!choicelabel,
    choiceValues: local!choicelabel,
    placeholder: &amp;quot;--Select--&amp;quot;,
    value: local!value,
    saveInto: local!value
  )
)&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;&lt;img src="/resized-image/__size/320x240/__key/communityserver-discussions-components-files/13/pastedimage1678017512072v1.png" alt=" " /&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Using text as italics in a dropdown field</title><link>https://community.appian.com/thread/108846?ContentTypeID=1</link><pubDate>Sun, 05 Mar 2023 11:38:46 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:c8ce5d3c-9d91-4cef-b81f-4fb15e044cef</guid><dc:creator>Komal Jain</dc:creator><description>&lt;p&gt;Hi Ghanashyam&lt;/p&gt;
&lt;p&gt;Here is the solution&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;img alt=" " src="/resized-image/__size/640x480/__key/communityserver-discussions-components-files/13/pastedimage1678016448226v1.png" /&gt;&lt;/p&gt;
&lt;p&gt;a!localVariables(&lt;br /&gt; local!commonvalue: concat(&lt;br /&gt; a!forEach(&lt;br /&gt; items: {&lt;br /&gt; 10090/*(*/&lt;br /&gt; ,&lt;br /&gt; 119914/*C*/&lt;br /&gt; ,&lt;br /&gt; 119952/*o*/&lt;br /&gt; ,&lt;br /&gt; 119950/*m*/&lt;br /&gt; ,&lt;br /&gt; 119950/*m*/&lt;br /&gt; ,&lt;br /&gt; 119952/*o*/&lt;br /&gt; ,&lt;br /&gt; 119951/*n*/&lt;br /&gt; ,&lt;br /&gt; 119949/*l*/&lt;br /&gt; ,&lt;br /&gt; 119962/*y*/&lt;br /&gt; ,&lt;br /&gt; 32/* */&lt;br /&gt; ,&lt;br /&gt; 119932/*U*/&lt;br /&gt; ,&lt;br /&gt; 119956/*s*/&lt;br /&gt; ,&lt;br /&gt; 119942/*e*/&lt;br /&gt; ,&lt;br /&gt; 119941/*d*/&lt;br /&gt; ,&lt;br /&gt; 32/* */&lt;br /&gt; ,&lt;br /&gt; 119920/*I*/&lt;br /&gt; ,&lt;br /&gt; 119940/*c*/&lt;br /&gt; ,&lt;br /&gt; 119952/*o*/&lt;br /&gt; ,&lt;br /&gt; 119951/*n*/&lt;br /&gt; ,&lt;br /&gt; 10091/*)*/&lt;br /&gt; &lt;br /&gt; },&lt;br /&gt; expression: char(fv!item)&lt;br /&gt; )&lt;br /&gt; ),&lt;br /&gt; local!choicelabel: {&lt;br /&gt; &amp;quot;Series 23- GP (Principal)&amp;quot;,&lt;br /&gt; &amp;quot;Series 26-IP (Principal)&amp;quot;,&lt;br /&gt; concat(&amp;quot;Series 3 - NFA &amp;quot;, local!commonvalue)&lt;br /&gt; },&lt;br /&gt; local!value,&lt;br /&gt; a!dropdownField(&lt;br /&gt; label: &amp;quot;Field&amp;quot;,&lt;br /&gt; choiceLabels: local!choicelabel,&lt;br /&gt; choiceValues: local!choicelabel,&lt;br /&gt; placeholder: &amp;quot;--Select--&amp;quot;,&lt;br /&gt; value: local!value,&lt;br /&gt; saveInto: local!value&lt;br /&gt; )&lt;br /&gt;)&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;You can concat local!commonvalue to any of you choice label and make a common rule so that its easy to be used any time&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Using text as italics in a dropdown field</title><link>https://community.appian.com/thread/108338?ContentTypeID=1</link><pubDate>Wed, 22 Feb 2023 15:59:13 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:ae8a16bf-abcc-4b0e-a6f3-195c42b47eb2</guid><dc:creator>Stewart Burchell</dc:creator><description>&lt;p&gt;There are other ways if you want to draw attention to specific items in the list...like the use of Unicode values for symbols...like as follows:&lt;/p&gt;
&lt;p&gt;&lt;img src="/resized-image/__size/320x240/__key/communityserver-discussions-components-files/13/pastedimage1677081594938v1.png" alt=" " /&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Using text as italics in a dropdown field</title><link>https://community.appian.com/thread/108336?ContentTypeID=1</link><pubDate>Wed, 22 Feb 2023 15:35:10 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:f560db93-599e-4d8b-aeec-b8dc353ab88f</guid><dc:creator>Paolo C</dc:creator><description>&lt;p&gt;Good Day Ghanashyam,&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Appian doesn&amp;#39;t support this functionality yet in a drop down component. Alas, you can take your choice labels, and utilize a rich text display field inside of an a!forEach. This will return the desired display for each field. From there, you can utilize these values in another component that could provide similar functionalities as needed. I would definitely mind the size of your list you are utilizing due to the fact that it would be non-performant if your list is too large.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Best of luck!&amp;nbsp;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Using text as italics in a dropdown field</title><link>https://community.appian.com/thread/93774?ContentTypeID=1</link><pubDate>Tue, 19 Apr 2022 07:24:01 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:14a53d13-7354-4d81-87a3-c83a63144db5</guid><dc:creator>Stefan Helzle</dc:creator><description>&lt;p&gt;Got it. I would like to refer to what &lt;a href="/members/mikes0011"&gt;Mike Schmitt&lt;/a&gt; already said a few times. A requirement is about functionality, but not about the looks.&lt;/p&gt;
&lt;p&gt;Why do these need to be italic? Should the user prefer to select on of these? Could you sort these to the top?&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Using text as italics in a dropdown field</title><link>https://community.appian.com/thread/93773?ContentTypeID=1</link><pubDate>Tue, 19 Apr 2022 07:20:12 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:b6d3807b-1411-442e-80b9-d438fc3ca92d</guid><dc:creator>ghanashyamm0004</dc:creator><description>&lt;p&gt;I need to show some values in the dropdown in italics font like this below&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;img src="/resized-image/__size/320x240/__key/communityserver-discussions-components-files/13/pastedimage1650352795544v1.png" alt=" " /&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;You can see &amp;quot;Commonly Used icon &amp;quot; are in italics&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Using text as italics in a dropdown field</title><link>https://community.appian.com/thread/93755?ContentTypeID=1</link><pubDate>Mon, 18 Apr 2022 18:15:12 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:f29a7128-bc62-42e3-8006-941a52f0e484</guid><dc:creator>Stefan Helzle</dc:creator><description>&lt;p&gt;Drop down fields do not support any formatting. What is the use case here?&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Using text as italics in a dropdown field</title><link>https://community.appian.com/thread/93753?ContentTypeID=1</link><pubDate>Mon, 18 Apr 2022 17:37:51 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:4e1bd766-600d-4d5a-83dc-1f7e7013c0c1</guid><dc:creator>Naresh</dc:creator><description>&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;I don&amp;#39;t think Appian have that functionality. If you really want to display list of available options in italic use rich text display filed (to display your options) along with an selection Icon or card layout with rich text field.&amp;nbsp;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>