<?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>A question related to calender date selection</title><link>https://community.appian.com/discussions/f/user-interface/21511/a-question-related-to-calender-date-selection</link><description>after selecting year from the dropdown list..., we should able to see the calender of that selected year(in dropdown) &amp;amp;within that calender we should able to months forward and backward &amp;amp; also we shoud able to select a date in particular month..., how</description><dc:language>en-US</dc:language><generator>Telligent Community 12</generator><item><title>RE: A question related to calender date selection</title><link>https://community.appian.com/thread/84046?ContentTypeID=1</link><pubDate>Mon, 26 Jul 2021 14:53:27 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:b1b7025a-86dd-49e5-94b6-1c3ce31a683c</guid><dc:creator>gayathris876948</dc:creator><description>&lt;p&gt;Showing only specific year calendar is not available as far as I know.&lt;br /&gt;&lt;br /&gt;May be you can try doing work around by adding a validation. Have a look at below code, as soon year has been picked we are defaulting to first day of that year, if they select other year&amp;#39;s of date you can show them a validation.&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;img src="/resized-image/__size/320x240/__key/communityserver-discussions-components-files/13/pastedimage1627311123412v1.png" alt=" " /&gt;&lt;/p&gt;
&lt;p&gt;&lt;img src="/resized-image/__size/320x240/__key/communityserver-discussions-components-files/13/pastedimage1627311155091v2.png" alt=" " /&gt;&lt;pre class="ui-code" data-mode="text"&gt;a!localVariables(
  local!year,
  local!date,
  {
    a!dropdownField(
      value: local!year,
      saveInto: {
        local!year,
        a!save(local!date, date(local!year, 1, 1))
      },
      /* give all years using logic*/
      choiceLabels: { 2019, 2020, 2021 },
      choiceValues: { 2019, 2020, 2021 },
      placeholder: &amp;quot;--&amp;quot;,
      
    ),
    a!dateField(
      label: &amp;quot;Select a date&amp;quot;,
      value: local!date,
      saveInto: local!date,
      validations: if(
        isnull(local!date),
        &amp;quot;&amp;quot;,
        if(
          year(local!date) &amp;lt;&amp;gt; local!year,
          &amp;quot;Please select date of year &amp;quot; &amp;amp; local!year,
          &amp;quot;&amp;quot;
        )
      )
    )
  }
)&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>