<?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>Decimal Rating Component</title><link>https://community.appian.com/discussions/f/user-interface/28028/decimal-rating-component</link><description>We can do Numerical rating in appian , Is it possible to create a Decimal rating like , on click of star once (0.5,1,1.5,.,.....)</description><dc:language>en-US</dc:language><generator>Telligent Community 12</generator><item><title>RE: Decimal Rating Component</title><link>https://community.appian.com/thread/109068?ContentTypeID=1</link><pubDate>Thu, 09 Mar 2023 07:31:09 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:30bbf895-35db-4a91-9b7e-00cb269a406d</guid><dc:creator>Stefan Helzle</dc:creator><description>&lt;p&gt;Why not just go with 10 stars? That would make the user interaction way easier. But, what would be the difference between 6 and 7? I mean, do you really need that many steps? There is a reason Amazon uses only 5.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Decimal Rating Component</title><link>https://community.appian.com/thread/109064?ContentTypeID=1</link><pubDate>Thu, 09 Mar 2023 06:53:33 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:a06c969b-f74c-415a-b103-a78b4411b069</guid><dc:creator>Harshit Bumb (Appyzie)</dc:creator><description>&lt;p&gt;&lt;pre class="ui-code" data-mode="text"&gt;a!localVariables(
  local!index,
  local!rating,
  a!richTextDisplayField(
    labelPosition: &amp;quot;COLLAPSED&amp;quot;,
    value: a!forEach(
      items: enumerate(5),
      expression: a!richTextIcon(
        icon: if(
          tointeger(local!index) &amp;gt; fv!index,
          &amp;quot;star&amp;quot;,
          and(
            tointeger(local!index) = fv!index,
            todecimal(local!rating) = 0.5
          ),
          &amp;quot;star-half-o&amp;quot;,
          and(
            tointeger(local!index) = fv!index,
            tointeger(local!rating) = 1
          ),
          &amp;quot;star&amp;quot;,
          &amp;quot;star-o&amp;quot;
        ),
        size: &amp;quot;LARGE&amp;quot;,
        link: a!dynamicLink(
          saveInto: {
            a!save(
              local!rating,
              if(
                or(
                  tointeger(local!index) &amp;lt;&amp;gt; fv!index,
                  a!isNullOrEmpty(local!rating)
                ),
                0.5,
                1
              )
            ),
            a!save(local!index, fv!index),
            
          }
        )
      )
    )
  )
)&lt;/pre&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Decimal Rating Component</title><link>https://community.appian.com/thread/109063?ContentTypeID=1</link><pubDate>Thu, 09 Mar 2023 06:43:14 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:303e5486-5741-4f25-aafb-cb210081f194</guid><dc:creator>venkatrea696188</dc:creator><description>&lt;p&gt;But it&amp;#39;s static. I want it dynamic like selectable&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Decimal Rating Component</title><link>https://community.appian.com/thread/109062?ContentTypeID=1</link><pubDate>Thu, 09 Mar 2023 06:41:40 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:e9d06a32-caa3-4576-9a85-7c91ef725677</guid><dc:creator>venkatrea696188</dc:creator><description>&lt;p&gt;Hey Harshit , Yeah i was thinking the same way but the thing is how to control the user click options.(how to made it selectable twice)&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Decimal Rating Component</title><link>https://community.appian.com/thread/109060?ContentTypeID=1</link><pubDate>Thu, 09 Mar 2023 06:36:42 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:316fda1a-340e-42af-beae-e124bbe901b9</guid><dc:creator>Harshit Bumb (Appyzie)</dc:creator><description>&lt;p&gt;Yes. But not directly as Appian has a half-star icon but not a mirror image of it.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;So one way to do it is to let the user click once to fill half star and click twice to fill the entire star. Or, just give them a list of options when adding the rating along a representation of how many stars they are rating and show that rating using the styled icons.&amp;nbsp;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Decimal Rating Component</title><link>https://community.appian.com/thread/109059?ContentTypeID=1</link><pubDate>Thu, 09 Mar 2023 06:34:37 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:991d2b4e-8a28-45d6-bf2a-f1fd71890a1b</guid><dc:creator>ujjwalr0002</dc:creator><description>&lt;p&gt;Hi, check this&amp;nbsp;&lt;a href="https://docs.appian.com/suite/help/23.1/recipe-show-a-numeric-rating-as-rich-text-icons.html"&gt;https://docs.appian.com/suite/help/23.1/recipe-show-a-numeric-rating-as-rich-text-icons.html&lt;/a&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>