<?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>Timer in SAIL</title><link>https://community.appian.com/discussions/f/user-interface/39561/timer-in-sail</link><description>Hi Folks, 
 In my interface if i delete anything i want to display a banner says Success!(Image added below) 
 One i click delete as soon as the banner should display and after 5 seconds the banner should hide. how to achieve it. 
 i have gone through</description><dc:language>en-US</dc:language><generator>Telligent Community 12</generator><item><title>RE: Timer in SAIL</title><link>https://community.appian.com/thread/150640?ContentTypeID=1</link><pubDate>Mon, 04 Aug 2025 11:21:17 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:61c81a9e-35a1-4f77-a7aa-6d7c9b703571</guid><dc:creator>Shubham Aware</dc:creator><description>&lt;p&gt;You can achieve this using the plugin below. I tried it in my environment and it worked for me.&lt;br /&gt; Deploy this plugin and test the attached code below. It should work.&lt;br /&gt;&lt;br /&gt;&lt;a href="/b/appmarket/posts/auto-hide-text"&gt;https://community.appian.com/b/appmarket/posts/auto-hide-text&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;img style="max-height:240px;max-width:320px;" alt=" " src="/cfs-file/__key/communityserver-discussions-components-files/13/Auto-Refresh-Field.gif" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;pre class="ui-code" data-mode="text"&gt;a!localVariables(
  local!showSuccess: false,
  {
    /* Delete Button - Wrapped in buttonLayout */
    a!buttonLayout(
      primaryButtons: a!buttonWidget(
        label: &amp;quot;Delete&amp;quot;,
        style: &amp;quot;GHOST&amp;quot;,
        saveInto: {
          a!save(local!showSuccess, true)
          /* Add your delete logic here */
        }
      )
    ),

    /* Auto Hide Success Banner */
    autoHideTextDisplayField(
      icon: &amp;quot;fa fa-check-circle&amp;quot;,
      information: &amp;quot;Success!&amp;quot;,
      textBackgroundColor: &amp;quot;SUCCESS&amp;quot;,
      textColor: &amp;quot;STANDARD&amp;quot;,
      standbyTime: 5,
      showBannerValue: local!showSuccess,
      showBannerSaveInto: local!showSuccess,
      iconColor: &amp;quot;POSITIVE&amp;quot;,
      textStyle: &amp;quot;EMPHASIS&amp;quot;
    )
  }
)&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;Let me know if you need any inputs.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Timer in SAIL</title><link>https://community.appian.com/thread/150636?ContentTypeID=1</link><pubDate>Mon, 04 Aug 2025 10:40:11 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:ccf167ba-8382-4031-9dc5-e0c61f53bb43</guid><dc:creator>Harsha Sharma</dc:creator><description>[quote userid="289184" url="~/discussions/f/user-interface/39561/timer-in-sail"]after 5 seconds the banner should hide[/quote]
&lt;p&gt;5 seconds is not possible, minimum 30s you can configure. Possible alternatives are&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Provide a link or button to user saying &amp;#39;Dismiss&amp;#39; and when they click the banner hides. There is a pattern &amp;#39;Action Banner&amp;#39; in interface for this behaviour which you can check as reference. If user click is not accepted by users then,&lt;/li&gt;
&lt;li&gt;Have the refresh depend on&amp;nbsp;the main variable changes in your UI. So if user interacts to modify some variable that toggles the showWhen for this banner.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;In case user doesn&amp;#39;t delete anything and the banner refreshes in interval is not optimal from performance perspective anyway!&amp;nbsp;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Timer in SAIL</title><link>https://community.appian.com/thread/150632?ContentTypeID=1</link><pubDate>Mon, 04 Aug 2025 10:32:00 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:3e5d9b5c-72f2-4eea-9872-210cbbf39b66</guid><dc:creator>Stefan Helzle</dc:creator><description>[quote userid="289184" url="~/discussions/f/user-interface/39561/timer-in-sail"]t did not worked as i expected[/quote]
&lt;p&gt;It is not clear what you mean by this.&lt;/p&gt;
&lt;p&gt;The minimum refresh interval is 30 seconds.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>