<?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>Interface Date Field input customization</title><link>https://community.appian.com/discussions/f/general/39675/interface-date-field-input-customization</link><description>Within the Appian interface, the date field typically accepts dates separated by a forward slash (&amp;quot;/&amp;quot;). However, in our use case, there are scenarios where we need to support dates separated by a hyphen (&amp;quot;-&amp;quot;) or a pipe (&amp;quot;|&amp;quot;). To accommodate this requirement</description><dc:language>en-US</dc:language><generator>Telligent Community 12</generator><item><title>RE: Interface Date Field input customization</title><link>https://community.appian.com/thread/151367?ContentTypeID=1</link><pubDate>Mon, 08 Sep 2025 14:18:22 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:421845b5-9170-449e-9c40-127c9807bcd3</guid><dc:creator>Harsha Sharma</dc:creator><description>&lt;p&gt;It is not possible to format the date field available OOTB in Appian Interface object. You need to either use textField like Shubham suggested so that user&amp;#39;s enter dates with &amp;#39;-&amp;#39; or &amp;#39;|&amp;#39; . Otherwise have the users enter with default date field and then show with &amp;#39;-&amp;#39; or &amp;#39;|&amp;#39; when the field is read only for users.&amp;nbsp;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Interface Date Field input customization</title><link>https://community.appian.com/thread/151366?ContentTypeID=1</link><pubDate>Mon, 08 Sep 2025 13:51:56 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:796cb3e8-8b44-4f65-b848-01447a5102a4</guid><dc:creator>sanjuktab2257</dc:creator><description>&lt;p&gt;Thank you, Shubham. I&amp;rsquo;d like to integrate the date values directly into the date design object, ideally with calendar selection functionality included.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Interface Date Field input customization</title><link>https://community.appian.com/thread/151339?ContentTypeID=1</link><pubDate>Sat, 06 Sep 2025 08:19:59 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:85363e8b-8ec7-47be-8904-700aafe74819</guid><dc:creator>Shubham Aware</dc:creator><description>&lt;p&gt;Try below sample interface code..&lt;br /&gt;&lt;br /&gt;&lt;pre class="ui-code" data-mode="text"&gt;a!localVariables(
  local!dateInput: &amp;quot;&amp;quot;,
  local!formattedDate: if(
    isnull(local!dateInput),
    null,
    a!localVariables(
      local!separator: if(
        find(&amp;quot;-&amp;quot;, local!dateInput) &amp;gt; 0, &amp;quot;-&amp;quot;,
        if(find(&amp;quot;|&amp;quot;, local!dateInput) &amp;gt; 0, &amp;quot;|&amp;quot;,
        if(find(&amp;quot;.&amp;quot;, local!dateInput) &amp;gt; 0, &amp;quot;.&amp;quot;, &amp;quot;/&amp;quot;))
      ),
      local!parts: split(local!dateInput, local!separator),
      if(
        length(local!parts) = 3,
        concat(
          text(tointeger(local!parts[1]), &amp;quot;00&amp;quot;), &amp;quot;/&amp;quot;,
          text(tointeger(local!parts[2]), &amp;quot;00&amp;quot;), &amp;quot;/&amp;quot;,
          local!parts[3]
        ),
        &amp;quot;Invalid format&amp;quot;
      )
    )
  ),
  {
    a!textField(
      label: &amp;quot;Enter Date&amp;quot;,
      placeholder: &amp;quot;MM-DD-YYYY or MM.DD.YYYY or MM|DD|YYYY&amp;quot;,
      value: local!dateInput,
      saveInto: local!dateInput
    ),
    a!textField(
      label: &amp;quot;Formatted Date&amp;quot;,
      value: local!formattedDate,
      readOnly: true
    )
  }
)&lt;/pre&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>