<?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>&amp;quot;instructions&amp;quot; parameters is not applicable when using a textfield/datefield in an editable grid cell.</title><link>https://community.appian.com/discussions/f/user-interface/28969/instructions-parameters-is-not-applicable-when-using-a-textfield-datefield-in-an-editable-grid-cell</link><description>Hi, 
 Working in an editable grid, when adding an &amp;quot;instructions&amp;quot; parameter, it is not working and not giving any error as well. I mean, we can add &amp;quot;instructions&amp;quot; parameter value but it is not visible just below of that textfield or datefield. Is it like</description><dc:language>en-US</dc:language><generator>Telligent Community 12</generator><item><title>RE: "instructions" parameters is not applicable when using a textfield/datefield in an editable grid cell.</title><link>https://community.appian.com/thread/114421?ContentTypeID=1</link><pubDate>Thu, 15 Jun 2023 17:11:02 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:6d84774c-50e7-4470-8e23-e95d37134169</guid><dc:creator>Peter Lewis</dc:creator><description>&lt;p&gt;The only other option I can think of is to have three dropdowns with day / month / year that each use the formats you want, but that seems like it would be annoying to maintain. Plus you&amp;#39;d have to worry about validations and other stuff that you wouldn&amp;#39;t need to consider for the out-of-the-box date component.&lt;/p&gt;
&lt;p&gt;In general with this stuff I&amp;#39;d suggest just using the out-of-the-box component - you can still get different date formats based on the locale (i.e. all locales except en_US go day-month-year) and it&amp;#39;s much easier to configure than a custom solution.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: "instructions" parameters is not applicable when using a textfield/datefield in an editable grid cell.</title><link>https://community.appian.com/thread/114411?ContentTypeID=1</link><pubDate>Thu, 15 Jun 2023 14:50:14 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:c95282fd-cdb0-4ed1-a9c1-2e781cb49e19</guid><dc:creator>Mike Schmitt</dc:creator><description>[quote userid="63803" url="~/discussions/f/user-interface/28969/instructions-parameters-is-not-applicable-when-using-a-textfield-datefield-in-an-editable-grid-cell/114364#114364"]Hence, I want to use &amp;#39;instructions&amp;#39; parameter. if anyone has any round about to achieve this then please help/suggest.[/quote]
&lt;p&gt;Help Tooltips on the column, as I mentioned earlier.&amp;nbsp; This is definitely 100% the way to go about this.&lt;/p&gt;
&lt;p&gt;Also I&amp;#39;m not sure what you&amp;#39;re expecting to happen in your Date Field - they don&amp;#39;t support arbitrary formatting after the user inputs the date. My suggestion would be to simply allow the standard Date Picker to do its thing.&amp;nbsp; The only alternative is to force the user to &lt;em&gt;manually type&lt;/em&gt; a date in a specified format, which is a nightmare, and IMHO, pretty useless.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: "instructions" parameters is not applicable when using a textfield/datefield in an editable grid cell.</title><link>https://community.appian.com/thread/114397?ContentTypeID=1</link><pubDate>Thu, 15 Jun 2023 12:19:56 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:afb70701-a6ab-4c4b-8b4a-f07f46e32932</guid><dc:creator>sanchitg0002</dc:creator><description>&lt;p&gt;Sorry, but it is not possible to provide the similar experience of &amp;quot;instructions&amp;quot; parameter. As far as I can tell, you can either show the formatted date in another column next to it (which is ofc not good looking) or can try this code that I have written for you which displays the formatted date in rich text after user selects in the dateField and shows an edit icon to select the date again.&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="java"&gt;a!localVariables(
  local!date,
  local!showDate: a!isNullOrEmpty(local!date),
  {
    a!gridLayout(
      label: &amp;quot;Editable Grid&amp;quot;,
      labelPosition: &amp;quot;ABOVE&amp;quot;,
      headerCells: { a!gridLayoutHeaderCell(label: &amp;quot;Date&amp;quot;) },
      columnConfigs: {},
      rows: {
        a!gridRowLayout(
          contents: {
            if(
              local!showDate,
              a!dateField(
                value: local!date,
                saveInto: {
                  local!date,
                  a!save(local!showDate, false)
                }
              ),
              a!richTextDisplayField(
                value: {
                  text(local!date, &amp;quot;dd MMM yyyy&amp;quot;),
                  &amp;quot;  &amp;quot;,
                  a!richTextIcon(
                    icon: &amp;quot;pencil&amp;quot;,
                    caption: &amp;quot;Edit&amp;quot;,
                    link: a!dynamicLink(saveInto: a!save(local!showDate, true)),
                    linkStyle: &amp;quot;STANDALONE&amp;quot;
                  )
                }
              )
            )
          }
        )
      },
      selectionSaveInto: {},
      validations: {},
      shadeAlternateRows: true
    )
  }
)&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;Hope it helps!&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: "instructions" parameters is not applicable when using a textfield/datefield in an editable grid cell.</title><link>https://community.appian.com/thread/114364?ContentTypeID=1</link><pubDate>Thu, 15 Jun 2023 05:32:46 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:6c5307d9-8d63-4c53-830b-87bfa538dd4e</guid><dc:creator>kiranjorwekar</dc:creator><description>&lt;p&gt;from that editable grid, I have a date field and when user select date, I want to show that date format as dd MMM yyyy into that instruction text so that user should understand that what date he has selected or when someone open that editable grid, anyone can understand date because of format.&lt;/p&gt;
&lt;p&gt;Hence, I want to use &amp;#39;instructions&amp;#39; parameter. if anyone has any round about to achieve this then please help/suggest. Thanks in advance.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: "instructions" parameters is not applicable when using a textfield/datefield in an editable grid cell.</title><link>https://community.appian.com/thread/114324?ContentTypeID=1</link><pubDate>Wed, 14 Jun 2023 14:09:52 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:6cf1d71a-671e-48e4-957d-b59ff5a57854</guid><dc:creator>Mike Schmitt</dc:creator><description>&lt;p&gt;Instructions on an editable grid cell also don&amp;#39;t really make sense.&amp;nbsp; What is it that you hope to accomplish?&amp;nbsp; I&amp;#39;ve personally made a lot of use of Placeholder Text (in applicable fields) when dealing with editable grid inputs, and it&amp;#39;s a lot more friendly-looking.&amp;nbsp; Also note that you can add per-column Help Tooltips in any type of grid.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: "instructions" parameters is not applicable when using a textfield/datefield in an editable grid cell.</title><link>https://community.appian.com/thread/114318?ContentTypeID=1</link><pubDate>Wed, 14 Jun 2023 11:46:09 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:8ccd3e68-bad5-46b4-8ed4-0e8def591730</guid><dc:creator>Stefan Helzle</dc:creator><description>&lt;p&gt;You can add help tooltips on the column level.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: "instructions" parameters is not applicable when using a textfield/datefield in an editable grid cell.</title><link>https://community.appian.com/thread/114317?ContentTypeID=1</link><pubDate>Wed, 14 Jun 2023 11:41:59 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:e0c1835f-baa7-42f0-b5cc-e589f7ebe35b</guid><dc:creator>Mathieu Drouin</dc:creator><description>&lt;p&gt;Yes, this is normal - same goes for the label.&lt;/p&gt;
&lt;p&gt;If you need labels/instructions and detailed error messages for a field, I would suggest you use a master detail type pattern.&lt;/p&gt;
&lt;p&gt;&lt;a href="https://docs.appian.com/suite/help/23.2/recipe-use-links-in-a-grid-to-show-more-details-and-edit-data.html"&gt;docs.appian.com/.../recipe-use-links-in-a-grid-to-show-more-details-and-edit-data.html&lt;/a&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: "instructions" parameters is not applicable when using a textfield/datefield in an editable grid cell.</title><link>https://community.appian.com/thread/114316?ContentTypeID=1</link><pubDate>Wed, 14 Jun 2023 11:40:04 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:02d1d6e1-f076-4455-af27-9a966ea04d04</guid><dc:creator>sanchitg0002</dc:creator><description>&lt;p&gt;Yes, this is the expected behaviour and it is also documented in Appian Docs&lt;/p&gt;
&lt;p&gt;&lt;img alt=" " src="/resized-image/__size/320x240/__key/communityserver-discussions-components-files/13/pastedimage1686742787068v1.png" /&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>