<?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>Special Characters on to the User Interface</title><link>https://community.appian.com/discussions/f/user-interface/13039/special-characters-on-to-the-user-interface</link><description>Hi All, 
 I have a scenario like, if user wants to enter any special characters, is there a way we can provide them a functionality of entering the data like how we do it in word document. 
 
 Basically, they need some kind of place on the screen to select</description><dc:language>en-US</dc:language><generator>Telligent Community 12</generator><item><title>RE: Special Characters on to the User Interface</title><link>https://community.appian.com/thread/58727?ContentTypeID=1</link><pubDate>Fri, 03 Aug 2018 17:12:22 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:5b16bbc8-e683-475d-918a-11d933f08f47</guid><dc:creator>gianninol</dc:creator><description>&lt;p&gt;You&amp;#39;re welcome! One thing to note is that this will only add the character onto the end of the text; there is no way to insert the character at the cursor, though the user can always cut-and-paste at that point.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Special Characters on to the User Interface</title><link>https://community.appian.com/thread/58726?ContentTypeID=1</link><pubDate>Fri, 03 Aug 2018 17:07:50 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:0c6df88c-fa25-4413-bf6a-196db0182c99</guid><dc:creator>harshav420</dc:creator><description>Excellent, thank you so much for the code, i will try this.!!!&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Special Characters on to the User Interface</title><link>https://community.appian.com/thread/58718?ContentTypeID=1</link><pubDate>Fri, 03 Aug 2018 14:07:29 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:ac13a158-04a1-4562-9dce-7b0dfbe7e2a9</guid><dc:creator>gianninol</dc:creator><description>&lt;p&gt;Here is one simple way something similar could be achieved (you can obviously play around with how the grid is shown / hidden, the list of symbols, use loops to create the grid, etc.):&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="text"&gt;load(
  local!textValue,
  local!isCollapsed: true,
  {
    a!linkField(
      links: a!dynamicLink(
        label: if(
          local!isCollapsed,
          &amp;quot;Show&amp;quot;,
          &amp;quot;Hide&amp;quot;
        ) &amp;amp; &amp;quot; special characters&amp;quot;,
        saveInto: a!save(
          local!isCollapsed,
          not(local!isCollapsed)
        )
      )
    ),
    a!columnsLayout(
      showWhen: not(local!isCollapsed),
      columns: {
        a!columnLayout(
          width: &amp;quot;NARROW&amp;quot;,
          contents: a!gridField(
            label: &amp;quot;Special Characters&amp;quot;,
            value: topaginginfo(
              1,
              - 1
            ),
            totalCount: 2,
            columns: {
              a!gridTextColumn(
                data: {
                  &amp;quot;&amp;#167;&amp;quot;,
                  &amp;quot;&amp;#198;&amp;quot;
                },
                links: {
                  a!dynamicLink(
                    saveInto: a!save(
                      local!textValue,
                      local!textValue &amp;amp; &amp;quot;&amp;#167;&amp;quot;
                    )
                  ),
                  a!dynamicLink(
                    saveInto: a!save(
                      local!textValue,
                      local!textValue &amp;amp; &amp;quot;&amp;#198;&amp;quot;
                    )
                  )
                }
              ),
              a!gridTextColumn(
                data: {
                  &amp;quot;&amp;#182;&amp;quot;,
                  &amp;quot;&amp;#162;&amp;quot;
                },
                links: {
                  a!dynamicLink(
                    saveInto: a!save(
                      local!textValue,
                      local!textValue &amp;amp; &amp;quot;&amp;#182;&amp;quot;
                    )
                  ),
                  a!dynamicLink(
                    saveInto: a!save(
                      local!textValue,
                      local!textValue &amp;amp; &amp;quot;&amp;#162;&amp;quot;
                    )
                  )
                }
              )
            }
          )
        )
      }
    ),
    a!paragraphField(
      label: &amp;quot;Text&amp;quot;,
      value: local!textValue,
      saveInto: local!textValue
    )
  }
)&lt;/pre&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>