<?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>UI design</title><link>https://community.appian.com/discussions/f/user-interface/12425/ui-design</link><description>Can we achieve this in an interface?Only the red part. I need underline only under EMPLOYEES. Bullet must be of red color. 
 
 Thanks in advance.</description><dc:language>en-US</dc:language><generator>Telligent Community 12</generator><item><title>RE: UI design</title><link>https://community.appian.com/thread/58645?ContentTypeID=1</link><pubDate>Thu, 02 Aug 2018 06:27:34 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:9d79f51a-02e3-471e-920f-30a7f39ff3d1</guid><dc:creator>swarajd0001</dc:creator><description>Please find the below code&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
 =load(&lt;br /&gt;
  local!Employee:{&amp;quot;AAAAA&amp;quot;,&amp;quot;BBBBB&amp;quot;,&amp;quot;CCCC&amp;quot;},&lt;br /&gt;
  &lt;br /&gt;
  a!richTextDisplayField(&lt;br /&gt;
    value:&lt;br /&gt;
    {&lt;br /&gt;
     a!richTextItem(&lt;br /&gt;
       text:&amp;quot;List of &amp;quot;,&lt;br /&gt;
       style:&amp;quot;STRONG&amp;quot;,&lt;br /&gt;
       color :&amp;quot;NEGATIVE&amp;quot;&lt;br /&gt;
     ),&lt;br /&gt;
     &lt;br /&gt;
     a!richTextItem(&lt;br /&gt;
       text:a!richTextItem(&lt;br /&gt;
              text:a!richTextItem(&lt;br /&gt;
                     text:&amp;quot;Employees&amp;quot;,&lt;br /&gt;
                     style:&amp;quot;UNDERLINE&amp;quot;,&lt;br /&gt;
                     color :&amp;quot;NEGATIVE&amp;quot;&lt;br /&gt;
                   ),&lt;br /&gt;
              style:&amp;quot;UNDERLINE&amp;quot;&lt;br /&gt;
            ),&lt;br /&gt;
       style:&amp;quot;STRONG&amp;quot;&lt;br /&gt;
     ),&lt;br /&gt;
     a!richTextItem(&lt;br /&gt;
       text:char(10)&lt;br /&gt;
     ),&lt;br /&gt;
     a!forEach(&lt;br /&gt;
        items:local!Employee,&lt;br /&gt;
        expression:&lt;br /&gt;
         {&lt;br /&gt;
              a!richTextItem(&lt;br /&gt;
                  style:&amp;quot;UNDERLINE&amp;quot;,&lt;br /&gt;
                  color :&amp;quot;NEGATIVE&amp;quot;,&lt;br /&gt;
                  text:a!richTextItem(&lt;br /&gt;
                         text:char(&amp;quot;•&amp;quot;),&lt;br /&gt;
                         style:&amp;quot;STRONG&amp;quot;&lt;br /&gt;
                       )&lt;br /&gt;
                ),&lt;br /&gt;
               a!richTextItem(&lt;br /&gt;
                 text:&amp;quot;  &amp;quot;&lt;br /&gt;
               ),&lt;br /&gt;
              a!richTextItem(&lt;br /&gt;
                  style:&amp;quot;UNDERLINE&amp;quot;,&lt;br /&gt;
                  color :&amp;quot;NEGATIVE&amp;quot;,&lt;br /&gt;
                  text:a!richTextItem(&lt;br /&gt;
                        text:a!richTextItem(&lt;br /&gt;
                               text:a!richTextItem(&lt;br /&gt;
                                      text:fv!item,&lt;br /&gt;
                                      style:&amp;quot;EMPHASIS&amp;quot;&lt;br /&gt;
                                    ),&lt;br /&gt;
                               style:&amp;quot;UNDERLINE&amp;quot;&lt;br /&gt;
                             ),&lt;br /&gt;
                        style:&amp;quot;STRONG&amp;quot;&lt;br /&gt;
                      )&lt;br /&gt;
                ),&lt;br /&gt;
             a!richTextItem(&lt;br /&gt;
                 text:char(13)&lt;br /&gt;
               )&lt;br /&gt;
        }&lt;br /&gt;
     )&lt;br /&gt;
    }&lt;br /&gt;
  )&lt;br /&gt;
)&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: UI design</title><link>https://community.appian.com/thread/55686?ContentTypeID=1</link><pubDate>Fri, 25 May 2018 09:39:54 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:f2dc8be5-c45c-45b3-9a57-40873b009bed</guid><dc:creator>deviratnamv</dc:creator><description>Hi ,&lt;br /&gt;
I hope below code is help to you....&lt;br /&gt;
&lt;br /&gt;
{&lt;br /&gt;
a!richTextDisplayField(&lt;br /&gt;
  value: {&lt;br /&gt;
    a!richTextItem(&lt;br /&gt;
      text: &amp;quot;List of&amp;quot;,&lt;br /&gt;
      style: &amp;quot;NEGATIVE&amp;quot;&lt;br /&gt;
    ),&lt;br /&gt;
    a!richTextItem(&lt;br /&gt;
      style: &amp;quot;NEGATIVE&amp;quot;,&lt;br /&gt;
      text: {&lt;br /&gt;
        a!richTextItem(&lt;br /&gt;
        style:&amp;quot;EMPHASIS&amp;quot;,&lt;br /&gt;
        text:&lt;br /&gt;
            a!richTextItem(&lt;br /&gt;
   text: &amp;quot;  Employee&amp;quot;,&lt;br /&gt;
   style:{ &amp;quot;UNDERLINE&amp;quot;}&lt;br /&gt;
)&lt;br /&gt;
)&lt;br /&gt;
      }&lt;br /&gt;
    )&lt;br /&gt;
&lt;br /&gt;
  }&lt;br /&gt;
),&lt;br /&gt;
a!richTextDisplayField(&lt;br /&gt;
  value: {&lt;br /&gt;
    a!richTextIcon(&lt;br /&gt;
      icon: &amp;quot;circle&amp;quot;,&lt;br /&gt;
      color: &amp;quot;NEGATIVE&amp;quot;&lt;br /&gt;
    ),&lt;br /&gt;
    a!richTextItem(&lt;br /&gt;
      style:&amp;quot;EMPHASIS&amp;quot;,&lt;br /&gt;
      text:&lt;br /&gt;
    a!richTextItem(&lt;br /&gt;
      text:&amp;quot;     Tushar&amp;quot;,&lt;br /&gt;
      style: &amp;quot;NEGATIVE&amp;quot;&lt;br /&gt;
    )&lt;br /&gt;
    )&lt;br /&gt;
  }&lt;br /&gt;
),&lt;br /&gt;
a!richTextDisplayField(&lt;br /&gt;
  value: {&lt;br /&gt;
    a!richTextIcon(&lt;br /&gt;
      icon: &amp;quot;circle&amp;quot;,&lt;br /&gt;
      color: &amp;quot;NEGATIVE&amp;quot;&lt;br /&gt;
    ),&lt;br /&gt;
    a!richTextItem(&lt;br /&gt;
      style: &amp;quot;EMPHASIS&amp;quot;,&lt;br /&gt;
      text:&lt;br /&gt;
    &lt;br /&gt;
    a!richTextItem(&lt;br /&gt;
      text:&amp;quot;      Pawan&amp;quot;,&lt;br /&gt;
      style: &amp;quot;NEGATIVE&amp;quot;&lt;br /&gt;
    )&lt;br /&gt;
    )&lt;br /&gt;
  }&lt;br /&gt;
)&lt;br /&gt;
}&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: UI design</title><link>https://community.appian.com/thread/55154?ContentTypeID=1</link><pubDate>Tue, 15 May 2018 08:14:58 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:92371f57-543f-4951-aee3-aacfbcfc4563</guid><dc:creator>ravalik</dc:creator><description>Hi digantas,&lt;br /&gt;
&lt;br /&gt;
As Vinay said to obtain the bullets in red colour unfortunately it is not possible in Appian .But to get the bullets you can use a!richTextBulletedList.&lt;br /&gt;
&lt;br /&gt;
Thanks,&lt;br /&gt;
ravalik&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: UI design</title><link>https://community.appian.com/thread/55146?ContentTypeID=1</link><pubDate>Tue, 15 May 2018 07:45:31 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:9c92f1b0-dde8-4a55-beb9-3d19eebc5f81</guid><dc:creator>Vinay Kumar Rai</dc:creator><description>&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;For showing the bullet in red color in Appian is not possible, so I used unicode character to achieve the bullet in red color.&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="text"&gt;=load(
  local!Employee:{&amp;quot;AAAAA&amp;quot;,&amp;quot;BBBBB&amp;quot;,&amp;quot;CCCC&amp;quot;},
  
  a!richTextDisplayField(
    value:
    {
     a!richTextItem(
       text:&amp;quot;List of &amp;quot;,
       style:&amp;quot;NEGATIVE&amp;quot;
     ),
     a!richTextItem(
       text:a!richTextItem(
              text:a!richTextItem(
                     text:&amp;quot;employees&amp;quot;,
                     style:&amp;quot;NEGATIVE&amp;quot;
                   ),
              style:&amp;quot;UNDERLINE&amp;quot;
            ),
       style:&amp;quot;STRONG&amp;quot;
     ),
     a!richTextItem(
       text:char(10)
     ),
     a!forEach(
        items:local!Employee,
        expression:
         {
              a!richTextItem(
                  style:&amp;quot;NEGATIVE&amp;quot;,
                  text:a!richTextItem(
                         text:char(&amp;quot;•&amp;quot;),
                         style:&amp;quot;STRONG&amp;quot;
                       )
                ),
               a!richTextItem(
                 text:&amp;quot;  &amp;quot;
               ),
              a!richTextItem(
                  style:&amp;quot;NEGATIVE&amp;quot;,
                  text:a!richTextItem(
                        text:a!richTextItem(
                               text:a!richTextItem(
                                      text:fv!item,
                                      style:&amp;quot;EMPHASIS&amp;quot;
                                    ),
                               style:&amp;quot;UNDERLINE&amp;quot;
                             ),
                        style:&amp;quot;STRONG&amp;quot;
                      )
                ),
             a!richTextItem(
                 text:char(13)
               )
        }
     )
    }
  )
)&lt;/pre&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Thanks&lt;/p&gt;
&lt;p&gt;Vinay&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>