<?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>Read-only grid in interface is not updating</title><link>https://community.appian.com/discussions/f/user-interface/30096/read-only-grid-in-interface-is-not-updating</link><description>I made some changes in my interface through the Edit List function but when I save changes and update the interface, this changes do not apply to the read-only grid. I tried to eliminate this read-only grid and add it again and this way the changes were</description><dc:language>en-US</dc:language><generator>Telligent Community 12</generator><item><title>RE: Read-only grid in interface is not updating</title><link>https://community.appian.com/thread/119689?ContentTypeID=1</link><pubDate>Sat, 23 Sep 2023 07:09:27 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:f3fac6d6-aaa6-478c-82c4-a38499a5b255</guid><dc:creator>VarunTejaGurrapu</dc:creator><description>&lt;p&gt;Remove whole read only grid and add it again in your interface to see changes made. There is a problem, when you make update in record list it wont update itself(Read Only Grid).&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Read-only grid in interface is not updating</title><link>https://community.appian.com/thread/119646?ContentTypeID=1</link><pubDate>Fri, 22 Sep 2023 10:56:25 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:3025731f-460e-43ff-9e2c-70150ce44759</guid><dc:creator>Stefan Helzle</dc:creator><description>&lt;p&gt;Got it. The issue here is that when you put a read only grid onto an interface, it copies the columns configuration from the record list config. But it does not update that later on.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Read-only grid in interface is not updating</title><link>https://community.appian.com/thread/119642?ContentTypeID=1</link><pubDate>Fri, 22 Sep 2023 08:42:42 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:98b626ce-ee5b-42a2-ba56-abb42ec46c7a</guid><dc:creator>xabieruranga</dc:creator><description>&lt;p&gt;My steps were the following:&lt;/p&gt;
&lt;p&gt;1) I Opened edit record list to include my changes in a column:&lt;/p&gt;
&lt;p&gt;&lt;img src="/resized-image/__size/640x480/__key/communityserver-discussions-components-files/13/pastedimage1695371599561v2.png" alt=" " /&gt;&lt;/p&gt;
&lt;p&gt;2) I included the following code to show the &amp;quot;&amp;euro;&amp;quot; sign next to the values in the column &amp;quot;importe&amp;quot;.&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="text"&gt;a!gridColumn(
  label: &amp;quot;Importe&amp;quot;,
  sortField: &amp;#39;recordType!{495578a9-1b23-4253-8145-6418faabe727}CPF Lineas Pedido.fields.{beb59a89-a332-46d3-b718-a8285f58f942}Importe&amp;#39;,
  value: a!currency(
    isoCode: &amp;quot;EUR&amp;quot;,
    indicatorAlignment: &amp;quot;END&amp;quot;,
    value: if(
      isnull(
        fv!row[&amp;#39;recordType!{495578a9-1b23-4253-8145-6418faabe727}CPF Lineas Pedido.fields.{beb59a89-a332-46d3-b718-a8285f58f942}Importe&amp;#39;]
      ),
      fv!row[&amp;#39;recordType!{495578a9-1b23-4253-8145-6418faabe727}CPF Lineas Pedido.fields.{beb59a89-a332-46d3-b718-a8285f58f942}Importe&amp;#39;],
      fixed(
        fv!row[&amp;#39;recordType!{495578a9-1b23-4253-8145-6418faabe727}CPF Lineas Pedido.fields.{beb59a89-a332-46d3-b718-a8285f58f942}Importe&amp;#39;],
        2
      )
    )
  ),
  align: &amp;quot;END&amp;quot;
)&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;3) The changes are applied correctly and now I can view my changes:&lt;/p&gt;
&lt;p&gt;&lt;img src="/resized-image/__size/640x480/__key/communityserver-discussions-components-files/13/pastedimage1695371670811v3.png" alt=" " /&gt;&lt;/p&gt;
&lt;p&gt;4) The problem is now, when I open the interface corresponding to that record, my changes are not shown and the view is the following:&lt;/p&gt;
&lt;p&gt;&lt;img src="/resized-image/__size/640x480/__key/communityserver-discussions-components-files/13/pastedimage1695371941841v4.png" alt=" " /&gt;&lt;/p&gt;
&lt;p&gt;Notice the column &amp;quot;importe&amp;quot; is not showing the same in the edit record list view and the read-only grid in the interface.&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Read-only grid in interface is not updating</title><link>https://community.appian.com/thread/119641?ContentTypeID=1</link><pubDate>Fri, 22 Sep 2023 08:18:44 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:d258f2f5-11ab-4274-89e3-627aaa672f03</guid><dc:creator>Stefan Helzle</dc:creator><description>&lt;p&gt;Can you explain what &amp;quot;switch to read-only grid in the interface&amp;quot; means an what update you expect?&lt;/p&gt;
&lt;p&gt;Then, what is &amp;quot;when I delete the read-only grid completely and create it again from scratch, then it does show the new changes&amp;quot; and which changes do you see?&lt;/p&gt;
&lt;p&gt;Sorry for the questions, but I really have a hard time understanding what is going on. And I want to avoid giving tips based in too many assumptions.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Read-only grid in interface is not updating</title><link>https://community.appian.com/thread/119639?ContentTypeID=1</link><pubDate>Fri, 22 Sep 2023 08:07:13 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:412caa65-5a5e-4d1d-b307-d5b8c7b06727</guid><dc:creator>xabieruranga</dc:creator><description>&lt;p&gt;I think it is more a synchronization issue. The fixed() expression is working correctly because it is showing the &amp;quot;&amp;euro;&amp;quot; sign in the edit list view. However, when you switch to read-only grid in the interface it doesn&amp;#39;t update.&lt;/p&gt;
&lt;p&gt;Also, when I delete the read-only grid completely and create it again from scratch, then it does show the new changes. This is why I think it is a synchronization problem. I am looking for a way to update the read-only grid without having to delete it completely.&amp;nbsp;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Read-only grid in interface is not updating</title><link>https://community.appian.com/thread/119620?ContentTypeID=1</link><pubDate>Thu, 21 Sep 2023 17:21:55 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:30deaa5e-3b0a-4750-a035-47e19f507fa8</guid><dc:creator>Stefan Helzle</dc:creator><description>&lt;p&gt;Do you have a specific reason to use fixed()? It turns that decimal value into a string. Depending on your locale, it uses a comma as the separator which the currency() function then will have a hard time to cast back into a decimal.&lt;/p&gt;
&lt;p&gt;Could that be the problem?&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Read-only grid in interface is not updating</title><link>https://community.appian.com/thread/119619?ContentTypeID=1</link><pubDate>Thu, 21 Sep 2023 17:14:08 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:eb921032-f37a-48db-8a9f-3f702c68b89a</guid><dc:creator>xabieruranga</dc:creator><description>&lt;p&gt;I just added the &amp;quot;a!currency&amp;quot; expression to add the &amp;quot;&amp;euro;&amp;quot; sing&amp;nbsp;following the values in the &amp;quot;Importe&amp;quot; column.&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="text"&gt;a!gridColumn(
  label: &amp;quot;Importe&amp;quot;,
  sortField: &amp;#39;recordType!{495578a9-1b23-4253-8145-6418faabe727}CPF Lineas Pedido.fields.{beb59a89-a332-46d3-b718-a8285f58f942}Importe&amp;#39;,
  value: a!currency(
    isoCode: &amp;quot;EUR&amp;quot;,
    indicatorAlignment: &amp;quot;END&amp;quot;,
    value: if(
      isnull(
        fv!row[&amp;#39;recordType!{495578a9-1b23-4253-8145-6418faabe727}CPF Lineas Pedido.fields.{beb59a89-a332-46d3-b718-a8285f58f942}Importe&amp;#39;]
      ),
      fv!row[&amp;#39;recordType!{495578a9-1b23-4253-8145-6418faabe727}CPF Lineas Pedido.fields.{beb59a89-a332-46d3-b718-a8285f58f942}Importe&amp;#39;],
      fixed(
        fv!row[&amp;#39;recordType!{495578a9-1b23-4253-8145-6418faabe727}CPF Lineas Pedido.fields.{beb59a89-a332-46d3-b718-a8285f58f942}Importe&amp;#39;],
        2
      )
    )
  ),
  align: &amp;quot;END&amp;quot;
)&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;That was the only change I made.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Read-only grid in interface is not updating</title><link>https://community.appian.com/thread/119616?ContentTypeID=1</link><pubDate>Thu, 21 Sep 2023 16:51:53 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:064f6367-93e8-4f19-8298-89b270dc9c00</guid><dc:creator>Stefan Helzle</dc:creator><description>&lt;p&gt;To me, it is pretty much unclear what you did. Could you explain your first sentence in more detail?&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>