<?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>Editable grid problem</title><link>https://community.appian.com/discussions/f/user-interface/18627/editable-grid-problem</link><description>Hello. 
 I am working on the editable grid. I want to be able to add multiple row on the same time, with different value. 
 But all the row that I add works like one. The result that I got is multiple rows , with the same value. 
 What is the problem</description><dc:language>en-US</dc:language><generator>Telligent Community 12</generator><item><title>RE: Editable grid problem</title><link>https://community.appian.com/thread/73347?ContentTypeID=1</link><pubDate>Wed, 15 Apr 2020 14:28:59 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:d2b347ae-31f2-441f-b5a4-089cab91726f</guid><dc:creator>Kiara Shakaj</dc:creator><description>&lt;p&gt;Thank you for your time The idea was to be able to choose different value for each record, for example The second row I want to choose another name, not Julia...but once I change it ...change in each row. I fix for the moment, I think that it was due to the lack of the index. But still I have an issue: how to display conditionally some columns of the grid? To show if another field in the interface is not null?&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Editable grid problem</title><link>https://community.appian.com/thread/73345?ContentTypeID=1</link><pubDate>Wed, 15 Apr 2020 14:21:24 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:52cb8ef0-a52a-45b5-ba25-aa0491183600</guid><dc:creator>Kiara Shakaj</dc:creator><description>&lt;p&gt;Thank you for the answer. It was a problem of rule input.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Editable grid problem</title><link>https://community.appian.com/thread/73344?ContentTypeID=1</link><pubDate>Wed, 15 Apr 2020 14:18:17 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:c47139be-c827-43ef-827a-69237a18cb41</guid><dc:creator>Stewart Burchell</dc:creator><description>&lt;p&gt;It&amp;#39;s pretty hard to know what the problem is without:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;exactly what you&amp;#39;re trying to achieve&amp;nbsp;&lt;/li&gt;
&lt;li&gt;the code you&amp;#39;ve implemented so far&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;I can see that you have an &amp;#39;Add Resource&amp;#39; option on your grid - is this what you&amp;#39;re wanting to use to add multiple rows? Or are you using something else with a list?&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Editable grid problem</title><link>https://community.appian.com/thread/73338?ContentTypeID=1</link><pubDate>Wed, 15 Apr 2020 12:56:34 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:7696d0b9-39ae-4593-bbe5-42fb8f465431</guid><dc:creator>Peter Lewis</dc:creator><description>&lt;p&gt;What are the different values you want to add to each row? For example, did you want the Skill 1 column to increment (i.e. 1, 2, 3, 4, etc)? The main thing you have to do is update the logic that adds a new row to be dynamic depending on your data. For example, suppose I want to increment the skill like I mentioned above. You could set up your addRowLink like this to dynamically calculate the skill value by counting how many items are in the array:&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="text"&gt;a!localVariables(
  local!gridData,
  a!gridLayout(
    ...
    addRowLink: a!dynamicLink(
      label: &amp;quot;Add Row&amp;quot;,
      saveInto: a!save(
        target: local!gridData,
        value: append(
          local!gridData, 
          {
            name: &amp;quot;John Doe&amp;quot;, 
            skill: if(
              isnull(local!gridData),
              1,
              count(local!gridData) + 1
            )
          }
        )
      )
    )
  )
)&lt;/pre&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Editable grid problem</title><link>https://community.appian.com/thread/73332?ContentTypeID=1</link><pubDate>Wed, 15 Apr 2020 11:06:54 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:743de093-6378-46a8-a589-fbe5513ab673</guid><dc:creator>amanit0001</dc:creator><description>&lt;p&gt;Hope the problem is, a &lt;strong&gt;rule input&lt;/strong&gt; could be mentioned under &lt;strong&gt;saveInto&lt;/strong&gt; of the fields in gridLayout instead of &lt;strong&gt;fv!item.&amp;#39;columnName&amp;#39;.&amp;nbsp;&lt;/strong&gt;Please refer the below link for more details.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;a href="https://docs.appian.com/suite/help/20.1/recipe-add-edit-and-remove-data-in-an-inline-editable-grid.html"&gt;https://docs.appian.com/suite/help/20.1/recipe-add-edit-and-remove-data-in-an-inline-editable-grid.html&lt;/a&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>