<?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>is there any way to display to single date field instead of month calender?</title><link>https://community.appian.com/discussions/f/general/19685/is-there-any-way-to-display-to-single-date-field-instead-of-month-calender</link><description /><dc:language>en-US</dc:language><generator>Telligent Community 12</generator><item><title>RE: is there any way to display to single date field instead of month calender?</title><link>https://community.appian.com/thread/77065?ContentTypeID=1</link><pubDate>Fri, 09 Oct 2020 05:53:20 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:350d6785-a56d-41b5-8a50-e8ee6e995052</guid><dc:creator>swethasri</dc:creator><description>&lt;p&gt;Thank you chris,&lt;br /&gt;somewhat issue is resolved.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: is there any way to display to single date field instead of month calender?</title><link>https://community.appian.com/thread/77058?ContentTypeID=1</link><pubDate>Thu, 08 Oct 2020 19:51:54 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:d95b9234-9405-4f70-8caf-5a59c0dbcd84</guid><dc:creator>Chris</dc:creator><description>&lt;p&gt;Yes, we will need a little bit of additional information.&amp;nbsp; Are you looking to select just a date value vs seeing an entire month calendar, etc?&amp;nbsp; Something like a dropdown with date ranges?&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="csharp"&gt;a!localVariables(
  local!rangePrior: 3,
  local!rangeAfter: 10,
  local!dates: a!forEach(
    items: append({-local!rangePrior+enumerate(local!rangePrior)},{enumerate(local!rangeAfter+1)}),
    expression: today()+fv!item
  ),
  local!selected: today(),

  a!dropdownField(
    label: &amp;quot;Date&amp;quot;,
    choiceLabels: local!dates,
    choiceValues: local!dates,
    value: local!selected,
    saveInto: local!selected
  )
)

&lt;/pre&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: is there any way to display to single date field instead of month calender?</title><link>https://community.appian.com/thread/77040?ContentTypeID=1</link><pubDate>Thu, 08 Oct 2020 15:01:05 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:ad080df7-e7fa-448b-8ffb-4a6619ce1b44</guid><dc:creator>davel001150</dc:creator><description>&lt;p&gt;Honestly, there&amp;#39;s a whole host of components that you could combine in ways that would all slightly alter the look and feel.&amp;nbsp; The added customizations to all the various layouts now mean you can really get something very close to exactly what you want by rolling your own.&lt;/p&gt;
&lt;p&gt;You could use card layouts, box layouts, a billboard layout with a side-by-side nested inside, side-by-side text inputs, columns layouts with 7 columns, all manner of richText, or a milestone with 7 items, any number of things to get the look and feel you want.&lt;/p&gt;
&lt;p&gt;For the contents of the headers, and options for the boxes underneath, consider the whole suite of dateTime functions available in the documentation.&amp;nbsp; Don&amp;#39;t limit yourself to the Date input field; consider a custom picker, a text input, a simple integer input, or whether you could get a lot out of the type-ahead feature they just added to the dropdown component.&amp;nbsp; One thing to keep in mind is that as you limit the possible responses, you also limit the user&amp;#39;s ability to do something wrong by accident, which is a VERY good thing.&lt;/p&gt;
&lt;p&gt;My strong advice is to explore all the various different ways to roll your own version of this interface that&amp;#39;s exactly what you want.&amp;nbsp; If it turns out really good, sell the component template on the AppStore.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>