<?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>I want to add new field in Appian UI with number associated with Increment and Decrement icons. can I know where they are in UI Design. I am unable to figure it out in Appian Site where I am trying to develop.</title><link>https://community.appian.com/discussions/f/appian-community-edition/37331/i-want-to-add-new-field-in-appian-ui-with-number-associated-with-increment-and-decrement-icons-can-i-know-where-they-are-in-ui-design-i-am-unable-to-figure-it-out-in-appian-site-where-i-am-trying-to-develop</link><description>I wan to implement a field as below in Appian UI. 
 
 
 
 This component I have searched in Pallete on all tabs 1) Components 2) Patterns . 
 
 Along this few more questions, please confirm, 
 1)If i want to create a check box field, the data type in</description><dc:language>en-US</dc:language><generator>Telligent Community 12</generator><item><title>RE: I want to add new field in Appian UI with number associated with Increment and Decrement icons. can I know where they are in UI Design. I am unable to figure it out in Appian Site where I am trying to develop.</title><link>https://community.appian.com/thread/139782?ContentTypeID=1</link><pubDate>Wed, 21 Aug 2024 07:17:35 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:475fefa3-f183-4807-a928-5401134f9a0b</guid><dc:creator>vinays024987</dc:creator><description>&lt;p&gt;Is this how you want it to be displayed ? or do you want the number and operator&amp;nbsp;to be in the same column as well ?&lt;br /&gt;&lt;img style="max-height:240px;max-width:320px;" alt=" " src="/resized-image/__size/640x480/__key/communityserver-discussions-components-files/67/Screenshot-2024_2D00_08_2D00_21-124355.png" /&gt;&lt;br /&gt;&lt;pre class="ui-code" data-mode="text"&gt;a!localVariables(
  local!counter: 1,
  {
    a!richTextDisplayField(
      label: &amp;quot;Number of Invoices&amp;quot;,
      labelPosition: &amp;quot;ABOVE&amp;quot;
    ),
    a!columnsLayout(
      spacing: &amp;quot;NONE&amp;quot;,
      columns: {
        a!columnLayout(
          width: &amp;quot;EXTRA_NARROW&amp;quot;,
          contents: a!cardLayout(
            contents: {
              a!richTextDisplayField(
                labelPosition: &amp;quot;COLLAPSED&amp;quot;,
                align: &amp;quot;CENTER&amp;quot;,
                value: a!richTextItem(text: &amp;quot;-&amp;quot;, style: &amp;quot;STRONG&amp;quot;, ),
                marginBelow: &amp;quot;NONE&amp;quot;
              )
            },
            link: a!dynamicLink(
              saveInto: { a!save(local!counter, local!counter - 1) }
            ),
            tooltip: &amp;quot;Subtract 1&amp;quot;
          )
        ),
        a!columnLayout(
          width: &amp;quot;EXTRA_NARROW&amp;quot;,
          contents: a!cardLayout(
            contents: {
              a!richTextDisplayField(
                labelPosition: &amp;quot;COLLAPSED&amp;quot;,
                value: a!richTextItem(style: &amp;quot;STRONG&amp;quot;, text: local!counter),
                marginBelow: &amp;quot;NONE&amp;quot;,
                align: &amp;quot;CENTER&amp;quot;
              )
            }
          )
        ),
        a!columnLayout(
          width: &amp;quot;EXTRA_NARROW&amp;quot;,
          contents: a!cardLayout(
            contents: {
              a!richTextDisplayField(
                labelPosition: &amp;quot;COLLAPSED&amp;quot;,
                align: &amp;quot;CENTER&amp;quot;,
                value: a!richTextItem(text: &amp;quot;+&amp;quot;, style: &amp;quot;STRONG&amp;quot;, ),
                marginBelow: &amp;quot;NONE&amp;quot;
              )
            },
            link: a!dynamicLink(
              saveInto: { a!save(local!counter, local!counter + 1) }
            ),
            tooltip: &amp;quot;Add 1&amp;quot;
          )
        )
      }
    )
  }
)&lt;/pre&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: I want to add new field in Appian UI with number associated with Increment and Decrement icons. can I know where they are in UI Design. I am unable to figure it out in Appian Site where I am trying to develop.</title><link>https://community.appian.com/thread/139779?ContentTypeID=1</link><pubDate>Tue, 20 Aug 2024 22:02:08 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:6c799f9a-78c4-43d8-b250-cbb794d2fe96</guid><dc:creator>lakshmipramodchakravarthyv0584</dc:creator><description>&lt;p&gt;Hi &lt;a href="/members/mikes0011"&gt;Mike Schmitt&lt;/a&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;I want to customize the yesterday interface component : Number Input with Incremental and Decremental operator&lt;/p&gt;
&lt;p&gt;I want to&amp;nbsp;place this field in a &lt;strong&gt;single column&lt;/strong&gt; and richTextDisplayField at the Top and component and operators below with side by side layout.&lt;/p&gt;
&lt;p&gt;As of now, It looks absurd.&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/67/pastedimage1724190984844v1.png" alt=" " /&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Code Snippet for this field in Appian UI.&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;a!columnsLayout(&lt;br /&gt; columns: {&lt;br /&gt; a!columnLayout(&lt;br /&gt; contents: {&lt;br /&gt; a!richTextDisplayField(&lt;br /&gt; label: &amp;quot;Number of Invoices&amp;quot;,&lt;br /&gt; labelPosition: &amp;quot;ABOVE&amp;quot;&lt;br /&gt; &lt;br /&gt; ),&lt;br /&gt; &lt;br /&gt; &lt;br /&gt; a!cardLayout(&lt;/p&gt;
&lt;p&gt;contents: {&lt;/p&gt;
&lt;p&gt;a!richTextDisplayField(&lt;br /&gt; label: &amp;quot;Number of Invoices&amp;quot;,&lt;br /&gt; labelPosition: &amp;quot;COLLAPSED&amp;quot;,&lt;br /&gt; value: a!richTextItem(&lt;br /&gt; text: &amp;quot;-&amp;quot;,&lt;br /&gt; size: &amp;quot;SMALL&amp;quot;&lt;br /&gt; ),&lt;br /&gt; align: &amp;quot;CENTER&amp;quot;&lt;br /&gt; )&lt;/p&gt;
&lt;p&gt;},&lt;br /&gt; link: a!dynamicLink(&lt;br /&gt; saveInto: {&lt;br /&gt; a!save(local!counter, local!counter-1)&lt;br /&gt; }&lt;br /&gt; ),&lt;br /&gt; tooltip: &amp;quot;Subtract 1&amp;quot;&lt;br /&gt; ),&lt;br /&gt; a!cardLayout(&lt;br /&gt; contents: {&lt;br /&gt; &lt;br /&gt; a!richTextDisplayField(&lt;br /&gt; labelPosition: &amp;quot;COLLAPSED&amp;quot;,&lt;br /&gt; value: a!richTextItem(&lt;br /&gt; text: local!counter,&lt;br /&gt; size: &amp;quot;SMALL&amp;quot;&lt;br /&gt; )&lt;br /&gt; )&lt;br /&gt; }&lt;br /&gt; ),&lt;br /&gt; a!cardLayout(&lt;br /&gt; contents: {&lt;br /&gt; a!richTextDisplayField(&lt;br /&gt; labelPosition: &amp;quot;COLLAPSED&amp;quot;,&lt;br /&gt; value: a!richTextItem(&lt;br /&gt; text: &amp;quot;+&amp;quot;,&lt;br /&gt; size: &amp;quot;SMALL&amp;quot;&lt;br /&gt; )&lt;br /&gt; )&lt;br /&gt; },&lt;br /&gt; link: a!dynamicLink(&lt;br /&gt; saveInto: {&lt;br /&gt; a!save(local!counter,local!counter+1)&lt;br /&gt; }&lt;br /&gt; ),&lt;br /&gt; tooltip: &amp;quot;Add 1&amp;quot;&lt;br /&gt; )&lt;br /&gt; },&lt;br /&gt; width: &amp;quot;EXTRA_NARROW&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; )&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: I want to add new field in Appian UI with number associated with Increment and Decrement icons. can I know where they are in UI Design. I am unable to figure it out in Appian Site where I am trying to develop.</title><link>https://community.appian.com/thread/139740?ContentTypeID=1</link><pubDate>Mon, 19 Aug 2024 17:12:14 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:6f5692e2-c244-4138-ab95-c14a64e46f96</guid><dc:creator>lakshmipramodchakravarthyv0584</dc:creator><description>&lt;p&gt;Thanks &lt;a href="/members/mikes0011"&gt;Mike Schmitt&lt;/a&gt;&amp;nbsp;, that helped a lot by clarifying my doubt.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: I want to add new field in Appian UI with number associated with Increment and Decrement icons. can I know where they are in UI Design. I am unable to figure it out in Appian Site where I am trying to develop.</title><link>https://community.appian.com/thread/139735?ContentTypeID=1</link><pubDate>Mon, 19 Aug 2024 16:15:42 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:f096c066-978e-4e0d-aa24-437403c4fdf8</guid><dc:creator>Mike Schmitt</dc:creator><description>&lt;p&gt;The interface pattern is pretty simple - i whipped this up real quick for you as a working example.&lt;/p&gt;
&lt;p&gt;&lt;img style="max-height:240px;max-width:320px;" alt=" " src="/resized-image/__size/640x480/__key/communityserver-discussions-components-files/67/pastedimage1724084124175v2.png" /&gt;&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="java"&gt;a!localVariables(
  local!counter: 1,

  a!columnsLayout(
    spacing: &amp;quot;NONE&amp;quot;,
    columns: {
      a!columnLayout(
        width: &amp;quot;EXTRA_NARROW&amp;quot;,
        contents: a!cardLayout(
          contents: {
            a!richTextDisplayField(
              labelPosition: &amp;quot;COLLAPSED&amp;quot;,
              align: &amp;quot;CENTER&amp;quot;,
              value: a!richTextItem(
                text: &amp;quot;-&amp;quot;,
                size: &amp;quot;LARGE&amp;quot;
              )
            )
          },
          link: a!dynamicLink(
            saveInto: {
              a!save(local!counter, local!counter - 1)
            }
          ),
          tooltip: &amp;quot;Subtract 1&amp;quot;
        )
      ),
      a!columnLayout(
        width: &amp;quot;EXTRA_NARROW&amp;quot;,
        contents: a!cardLayout(
          contents: {
            a!richTextDisplayField(
              labelPosition: &amp;quot;COLLAPSED&amp;quot;,
              value: a!richTextItem(
                size: &amp;quot;LARGE&amp;quot;,
                text: local!counter
              )
            )
          }
        )
      ),
      a!columnLayout(
        width: &amp;quot;EXTRA_NARROW&amp;quot;,
        contents: a!cardLayout(
          contents: {
            a!richTextDisplayField(
              labelPosition: &amp;quot;COLLAPSED&amp;quot;,
              align: &amp;quot;CENTER&amp;quot;,
              value: a!richTextItem(
                text: &amp;quot;+&amp;quot;,
                size: &amp;quot;LARGE&amp;quot;
              )
            )
          },
          link: a!dynamicLink(
            saveInto: {
              a!save(local!counter, local!counter + 1)
            }
          ),
          tooltip: &amp;quot;Add 1&amp;quot;
        )
      )
    }
  )
)&lt;/pre&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: I want to add new field in Appian UI with number associated with Increment and Decrement icons. can I know where they are in UI Design. I am unable to figure it out in Appian Site where I am trying to develop.</title><link>https://community.appian.com/thread/139734?ContentTypeID=1</link><pubDate>Mon, 19 Aug 2024 16:08:19 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:237cea4c-6576-48a4-84cf-fc0f8e02bb93</guid><dc:creator>lakshmipramodchakravarthyv0584</dc:creator><description>&lt;p&gt;Hi &lt;a href="/members/mikes0011"&gt;Mike Schmitt&lt;/a&gt;&amp;nbsp;,&lt;/p&gt;
&lt;p&gt;Thanks for the reply.&lt;/p&gt;
&lt;p&gt;I want to increment or decrement Invoices generated for a Banking Payment process. So I want this option&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: I want to add new field in Appian UI with number associated with Increment and Decrement icons. can I know where they are in UI Design. I am unable to figure it out in Appian Site where I am trying to develop.</title><link>https://community.appian.com/thread/139733?ContentTypeID=1</link><pubDate>Mon, 19 Aug 2024 15:52:41 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:f96f9450-b384-4e23-9cd1-743628ff2653</guid><dc:creator>Mike Schmitt</dc:creator><description>&lt;p&gt;You could probably do this with side-by-side Cards and the number (in the middle card) is just a rich text component with its size set to &amp;quot;LARGE&amp;quot; (or whatever you prefer).&amp;nbsp; Depending on, of course, exactly what you want this control to *do* (simply increment a locally-stored number value, or something more complex than that, you haven&amp;#39;t really specified).&lt;/p&gt;
[quote userid="283830" url="~/discussions/f/appian-community-edition/37331/i-want-to-add-new-field-in-appian-ui-with-number-associated-with-increment-and-decrement-icons-can-i-know-where-they-are-in-ui-design-i-am-unable-to-figure-it-out-in-appian-site-where-i-am-trying-to-develop"]If i want to create a drop down field with values associated in it, the data type should be stored as group [/quote]
&lt;p&gt;Dropdowns use standard Array values (text for the labels, whatever data type you want for the values) - this doesn&amp;#39;t have much to do with &amp;quot;group&amp;quot;.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>