<?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/"><channel><title>KB-1509 Adding multiple rows to an inline editable grid without adding the data causes data indexing issues</title><link>https://community.appian.com/support/w/kb/850/kb-1509-adding-multiple-rows-to-an-inline-editable-grid-without-adding-the-data-causes-data-indexing-issues</link><description /><dc:language>en-US</dc:language><generator>Telligent Community 12</generator><item><title>KB-1509 Adding multiple rows to an inline editable grid without adding the data causes data indexing issues</title><link>https://community.appian.com/support/w/kb/850/kb-1509-adding-multiple-rows-to-an-inline-editable-grid-without-adding-the-data-causes-data-indexing-issues</link><pubDate>Mon, 23 Jul 2018 03:22:55 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:67bfd41a-ca42-4fdf-befe-1bc9ad98ac73</guid><dc:creator>Parmida Borhani</dc:creator><comments>https://community.appian.com/support/w/kb/850/kb-1509-adding-multiple-rows-to-an-inline-editable-grid-without-adding-the-data-causes-data-indexing-issues#comments</comments><description>Current Revision posted to Appian Knowledge Base by Parmida Borhani on 7/23/2018 3:22:55 AM&lt;br /&gt;
&lt;h2&gt;Symptoms&lt;/h2&gt;
&lt;p&gt;Adding&amp;nbsp;multiple rows to an inline editable grid without adding data before each new row results in&amp;nbsp;overwriting data due to indexing issues. Any new data will repeatedly write over the data from the first row of the&amp;nbsp;block of newly added rows. This behavior&amp;nbsp;does not&amp;nbsp;persist if adding data to each row before creating a new row.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;img src="/cfs-file/__key/communityserver-wikis-components-files/00-00-00-00-11/editableGrid.gif" alt=" " /&gt;&lt;/p&gt;
&lt;h2&gt;Cause&lt;/h2&gt;
&lt;p&gt;This issue has been reported to the Appian Product Team. The reference number for this issue is &lt;strong&gt;AN-97061&lt;/strong&gt;.&lt;/p&gt;
&lt;h2&gt;Workaround&lt;/h2&gt;
&lt;p&gt;Make the Add Row link visible only if all rows have a value. Here is some sample SAIL code to modify for one method to achieve this functionality:&lt;/p&gt;
&lt;pre class="code-java"&gt;&lt;code&gt;addRowlink: &lt;span class="code-keyword"&gt;if&lt;/span&gt;(and(a!forEach(items:local!myRows, expression: not(fv!item = &amp;quot;&amp;quot;))),
              a!dynamicLink(
              ....
              ),
              &lt;span class="code-keyword"&gt;null&lt;/span&gt;)&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;Alternatively, change the&amp;nbsp;&lt;code&gt;value&lt;/code&gt; and&amp;nbsp;&lt;code&gt;saveInto&lt;/code&gt; parameters of the field referenced in &lt;code&gt;a!gridRowLayout&lt;/code&gt; to be&amp;nbsp;&lt;code&gt;ri!data[fv!index].cdtField&lt;/code&gt;:&lt;/p&gt;
&lt;pre&gt;a!gridRowLayout(&lt;br /&gt;  contents: {&lt;br /&gt;    a!textField(&lt;br /&gt;      required: true,&lt;br /&gt;      value: ri!data[fv!index].cdtField,&lt;br /&gt;      saveInto: ri!data[fv!index].cdtField&lt;br /&gt;    )&lt;br /&gt;  }&lt;br /&gt;)&lt;/pre&gt;
&lt;h2&gt;Affected Versions&lt;/h2&gt;
&lt;p&gt;This article applies to Appian 17.2 and later.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Last Reviewed: March 2018&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;

&lt;div style="font-size: 90%;"&gt;Tags: known issues, grid, application design, open issues&lt;/div&gt;
</description></item><item><title>KB-1509 Adding multiple rows to an inline editable grid without adding the data causes data indexing issues</title><link>https://community.appian.com/support/w/kb/850/kb-1509-adding-multiple-rows-to-an-inline-editable-grid-without-adding-the-data-causes-data-indexing-issues/revision/11</link><pubDate>Mon, 05 Mar 2018 10:58:34 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:67bfd41a-ca42-4fdf-befe-1bc9ad98ac73</guid><dc:creator>Nick Vigilante</dc:creator><comments>https://community.appian.com/support/w/kb/850/kb-1509-adding-multiple-rows-to-an-inline-editable-grid-without-adding-the-data-causes-data-indexing-issues#comments</comments><description>Revision 11 posted to Appian Knowledge Base by Nick Vigilante on 3/5/2018 10:58:34 AM&lt;br /&gt;
&lt;h2&gt;Symptoms&lt;/h2&gt;
&lt;p&gt;Adding&amp;nbsp;multiple rows to an inline editable grid without adding data before each new row results in&amp;nbsp;overwriting data due to indexing issues. Any new data will repeatedly write over the data from the first row of the&amp;nbsp;block of newly added rows. This behavior&amp;nbsp;does not&amp;nbsp;persist if adding data to each row before creating a new row.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;img src="/cfs-file/__key/communityserver-wikis-components-files/00-00-00-00-11/editableGrid.gif" alt=" " /&gt;&lt;/p&gt;
&lt;h2&gt;Cause&lt;/h2&gt;
&lt;p&gt;This issue has been reported to the Appian Product Team. The reference number for this issue is &lt;strong&gt;AN-97061&lt;/strong&gt;.&lt;/p&gt;
&lt;h2&gt;Workaround&lt;/h2&gt;
&lt;p&gt;Make the Add Row link visible only if all rows have a value. Here is some sample SAIL code to modify for one method to achieve this functionality:&lt;/p&gt;
&lt;pre class="code-java"&gt;&lt;code&gt;addRowlink: &lt;span class="code-keyword"&gt;if&lt;/span&gt;(and(a!forEach(items:local!myRows, expression: not(fv!item = &amp;quot;&amp;quot;))),
              a!dynamicLink(
              ....
              ),
              &lt;span class="code-keyword"&gt;null&lt;/span&gt;)&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;Alternatively, change the&amp;nbsp;&lt;code&gt;value&lt;/code&gt; and&amp;nbsp;&lt;code&gt;saveInto&lt;/code&gt; parameters of the field referenced in &lt;code&gt;a!gridRowLayout&lt;/code&gt; to be&amp;nbsp;&lt;code&gt;ri!data[fv!index].cdtField&lt;/code&gt;:&lt;/p&gt;
&lt;pre&gt;a!gridRowLayout(&lt;br /&gt;  contents: {&lt;br /&gt;    a!textField(&lt;br /&gt;      required: true,&lt;br /&gt;      value: ri!data[fv!index].cdtField,&lt;br /&gt;      saveInto: ri!data[fv!index].cdtField&lt;br /&gt;    )&lt;br /&gt;  }&lt;br /&gt;)&lt;/pre&gt;
&lt;h2&gt;Affected Versions&lt;/h2&gt;
&lt;p&gt;This article applies to Appian 17.2 and later.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Last Reviewed: March 2018&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;

&lt;div style="font-size: 90%;"&gt;Tags: known issues, grid, open issues&lt;/div&gt;
</description></item><item><title>KB-1509 Adding multiple rows to an inline editable grid without adding the data causes data indexing issues</title><link>https://community.appian.com/support/w/kb/850/kb-1509-adding-multiple-rows-to-an-inline-editable-grid-without-adding-the-data-causes-data-indexing-issues/revision/10</link><pubDate>Tue, 27 Feb 2018 15:08:40 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:67bfd41a-ca42-4fdf-befe-1bc9ad98ac73</guid><dc:creator>Nick Vigilante</dc:creator><comments>https://community.appian.com/support/w/kb/850/kb-1509-adding-multiple-rows-to-an-inline-editable-grid-without-adding-the-data-causes-data-indexing-issues#comments</comments><description>Revision 10 posted to Appian Knowledge Base by Nick Vigilante on 2/27/2018 3:08:40 PM&lt;br /&gt;
&lt;h2&gt;Symptoms&lt;/h2&gt;
&lt;p&gt;Adding&amp;nbsp;multiple rows to an inline editable grid without adding data before each new row results in&amp;nbsp;overwriting data due to indexing issues. Any new data will repeatedly write over the data from the first row of the&amp;nbsp;block of newly added rows. This behavior&amp;nbsp;does not&amp;nbsp;persist if adding data to each row before creating a new row.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;img src="/cfs-file/__key/communityserver-wikis-components-files/00-00-00-00-11/editableGrid.gif" alt=" " /&gt;&lt;/p&gt;
&lt;h2&gt;Cause&lt;/h2&gt;
&lt;p&gt;This issue has been reported to the Appian Product Team. The reference number for this issue is &lt;strong&gt;AN-97061&lt;/strong&gt;.&lt;/p&gt;
&lt;h2&gt;Workaround&lt;/h2&gt;
&lt;p&gt;Make the Add Row link visible only if all rows have a value. Here is some sample SAIL code to modify for one method to achieve this functionality:&lt;/p&gt;
&lt;pre class="code-java"&gt;&lt;code&gt;addRowlink: &lt;span class="code-keyword"&gt;if&lt;/span&gt;(and(a!forEach(items:local!myRows, expression: not(fv!item = &amp;quot;&amp;quot;))),
              a!dynamicLink(
              ....
              ),
              &lt;span class="code-keyword"&gt;null&lt;/span&gt;)&lt;/code&gt;&lt;/pre&gt;
&lt;h2&gt;Affected Versions&lt;/h2&gt;
&lt;p&gt;This article applies to Appian 17.2 and later.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Last Reviewed: February 2018&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;

&lt;div style="font-size: 90%;"&gt;Tags: known issues, grid, open issues&lt;/div&gt;
</description></item><item><title>KB-1509 Adding multiple rows to an inline editable grid without adding the data causes data indexing issues</title><link>https://community.appian.com/support/w/kb/850/kb-1509-adding-multiple-rows-to-an-inline-editable-grid-without-adding-the-data-causes-data-indexing-issues/revision/9</link><pubDate>Tue, 27 Feb 2018 10:08:40 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:67bfd41a-ca42-4fdf-befe-1bc9ad98ac73</guid><dc:creator>Nick Vigilante</dc:creator><comments>https://community.appian.com/support/w/kb/850/kb-1509-adding-multiple-rows-to-an-inline-editable-grid-without-adding-the-data-causes-data-indexing-issues#comments</comments><description>Revision 9 posted to Appian Knowledge Base by Nick Vigilante on 2/27/2018 10:08:40 AM&lt;br /&gt;
&lt;h2&gt;Symptoms&lt;/h2&gt;
&lt;p&gt;Adding&amp;nbsp;multiple rows to an inline editable grid without adding data before each new row results in&amp;nbsp;overwriting data due to indexing issues. Any new data will repeatedly write over the data from the first row of the&amp;nbsp;block of newly added rows. This behavior&amp;nbsp;does not&amp;nbsp;persist if adding data to each row before creating a new row.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;img src="/cfs-file/__key/communityserver-wikis-components-files/00-00-00-00-13/editableGrid.gif" alt=" " /&gt;&lt;/p&gt;
&lt;h2&gt;Cause&lt;/h2&gt;
&lt;p&gt;This issue has been reported to the Appian Product Team. The reference number for this issue is &lt;strong&gt;AN-97061&lt;/strong&gt;.&lt;/p&gt;
&lt;h2&gt;Workaround&lt;/h2&gt;
&lt;p&gt;Make the Add Row link visible only if all rows have a value. Here is some sample SAIL code to modify for one method to achieve this functionality:&lt;/p&gt;
&lt;pre class="code-java"&gt;&lt;code&gt;addRowlink: &lt;span class="code-keyword"&gt;if&lt;/span&gt;(and(a!forEach(items:local!myRows, expression: not(fv!item = &amp;quot;&amp;quot;))),
              a!dynamicLink(
              ....
              ),
              &lt;span class="code-keyword"&gt;null&lt;/span&gt;)&lt;/code&gt;&lt;/pre&gt;
&lt;h2&gt;Affected Versions&lt;/h2&gt;
&lt;p&gt;This article applies to Appian 17.2 and later.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Last Reviewed: February 2018&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;

&lt;div style="font-size: 90%;"&gt;Tags: known issues, grid, open issues&lt;/div&gt;
</description></item><item><title>DRAFT KB-XXXX: Adding multiple rows to an inline editable grid without adding the data causes data indexing issues</title><link>https://community.appian.com/support/w/kb/850/kb-1509-adding-multiple-rows-to-an-inline-editable-grid-without-adding-the-data-causes-data-indexing-issues/revision/8</link><pubDate>Mon, 26 Feb 2018 15:15:25 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:67bfd41a-ca42-4fdf-befe-1bc9ad98ac73</guid><dc:creator>Emily Egan</dc:creator><comments>https://community.appian.com/support/w/kb/850/kb-1509-adding-multiple-rows-to-an-inline-editable-grid-without-adding-the-data-causes-data-indexing-issues#comments</comments><description>Revision 8 posted to Appian Knowledge Base by Emily Egan on 2/26/2018 3:15:25 PM&lt;br /&gt;
&lt;h2&gt;Symptoms&lt;/h2&gt;
&lt;p&gt;Adding&amp;nbsp;multiple rows to an inline editable grid without adding data before each new row results in&amp;nbsp;overwriting data due to indexing issues. Any new data will repeatedly write over the data from the first row of the&amp;nbsp;block of newly added rows. This behavior&amp;nbsp;does not&amp;nbsp;persist if adding data to each row before creating a new row.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;img src="/cfs-file/__key/communityserver-wikis-components-files/00-00-00-00-13/editableGrid.gif" alt=" " /&gt;&lt;/p&gt;
&lt;h2&gt;Cause&lt;/h2&gt;
&lt;p&gt;This issue has been reported to the Appian Product Team. The reference number for this issue is &lt;strong&gt;AN-97061&lt;/strong&gt;.&lt;/p&gt;
&lt;h2&gt;Workaround&lt;/h2&gt;
&lt;p&gt;Make the Add Row link visible only if all rows have a value. Here is some sample SAIL code to modify for one method to achieve this functionality:&lt;/p&gt;
&lt;pre class="code-java"&gt;&lt;code&gt;addRowlink: &lt;span class="code-keyword"&gt;if&lt;/span&gt;(and(a!forEach(items:local!myRows, expression: not(fv!item = &amp;quot;&amp;quot;))),
              a!dynamicLink(
              ....
              ),
              &lt;span class="code-keyword"&gt;null&lt;/span&gt;)&lt;/code&gt;&lt;/pre&gt;
&lt;h2&gt;Affected Versions&lt;/h2&gt;
&lt;p&gt;This article applies to Appian 17.2 and later.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Last Reviewed: February 2018&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;

&lt;div style="font-size: 90%;"&gt;Tags: grid, open issues&lt;/div&gt;
</description></item><item><title>DRAFT KB-XXXX: Adding multiple rows to an inline editable grid without adding the data causes data indexing issues</title><link>https://community.appian.com/support/w/kb/850/kb-1509-adding-multiple-rows-to-an-inline-editable-grid-without-adding-the-data-causes-data-indexing-issues/revision/7</link><pubDate>Mon, 26 Feb 2018 15:13:53 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:67bfd41a-ca42-4fdf-befe-1bc9ad98ac73</guid><dc:creator>Emily Egan</dc:creator><comments>https://community.appian.com/support/w/kb/850/kb-1509-adding-multiple-rows-to-an-inline-editable-grid-without-adding-the-data-causes-data-indexing-issues#comments</comments><description>Revision 7 posted to Appian Knowledge Base by Emily Egan on 2/26/2018 3:13:53 PM&lt;br /&gt;
&lt;h2&gt;Symptoms&lt;/h2&gt;
&lt;p&gt;Adding&amp;nbsp;multiple rows to an inline editable grid without adding data before each new row results in&amp;nbsp;overwriting data due to indexing issues. Any new data will repeatedly write over the data from the first row of the&amp;nbsp;block of newly added rows. This behavior&amp;nbsp;does not&amp;nbsp;persist if adding data to each row before creating a new row.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;img src="/cfs-file/__key/communityserver-wikis-components-files/00-00-00-00-13/editableGrid.gif" alt=" " /&gt;&lt;/p&gt;
&lt;h2&gt;Cause&lt;/h2&gt;
&lt;p&gt;This issue has been reported to the Appian Product Team. The reference number for this issue is &lt;strong&gt;AN-97061&lt;/strong&gt;.&lt;/p&gt;
&lt;h2&gt;Workaround&lt;/h2&gt;
&lt;p&gt;Make the Add Row link visible only if all rows have a value. Here is some sample code to modify for one method to achieve this functionality:&lt;/p&gt;
&lt;pre class="code-java"&gt;&lt;code&gt;addRowlink: &lt;span class="code-keyword"&gt;if&lt;/span&gt;(and(a!forEach(items:local!myRows, expression: not(fv!item = &amp;quot;&amp;quot;))),
              a!dynamicLink(
              ....
              ),
              &lt;span class="code-keyword"&gt;null&lt;/span&gt;)&lt;/code&gt;&lt;/pre&gt;
&lt;h2&gt;Affected Versions&lt;/h2&gt;
&lt;p&gt;This article applies to Appian 17.2 and later.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Last Reviewed: February 2018&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;

&lt;div style="font-size: 90%;"&gt;Tags: grid, open issues&lt;/div&gt;
</description></item><item><title>DRAFT KB-XXXX: Adding multiple rows to an inline editable grid without adding the data causes data indexing issues</title><link>https://community.appian.com/support/w/kb/850/kb-1509-adding-multiple-rows-to-an-inline-editable-grid-without-adding-the-data-causes-data-indexing-issues/revision/6</link><pubDate>Mon, 26 Feb 2018 15:08:59 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:67bfd41a-ca42-4fdf-befe-1bc9ad98ac73</guid><dc:creator>Emily Egan</dc:creator><comments>https://community.appian.com/support/w/kb/850/kb-1509-adding-multiple-rows-to-an-inline-editable-grid-without-adding-the-data-causes-data-indexing-issues#comments</comments><description>Revision 6 posted to Appian Knowledge Base by Emily Egan on 2/26/2018 3:08:59 PM&lt;br /&gt;
&lt;h2&gt;Symptoms&lt;/h2&gt;
&lt;p&gt;Adding&amp;nbsp;multiple rows to an inline editable grid without adding data before each new row results in&amp;nbsp;overwriting data due to indexing issues. Any new data will repeatedly write over the data from the first row of the&amp;nbsp;block of newly added rows. This behavior&amp;nbsp;does not&amp;nbsp;persist if adding data to each row before creating a new row.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;img src="/cfs-file/__key/communityserver-wikis-components-files/00-00-00-00-13/editableGrid.gif" alt=" " /&gt;&lt;/p&gt;
&lt;h2&gt;Cause&lt;/h2&gt;
&lt;p&gt;This issue has been reported to the Appian Product Team. The reference number for this issue is &lt;strong&gt;AN-97061&lt;/strong&gt;.&lt;/p&gt;
&lt;h2&gt;Workaround&lt;/h2&gt;
&lt;p&gt;Make the Add Row link visible only if all rows have a value. Here is some sample code to modify:&lt;/p&gt;
&lt;pre class="code-java"&gt;&lt;code&gt;addRowlink: &lt;span class="code-keyword"&gt;if&lt;/span&gt;(and(a!forEach(items:local!myRows, expression: not(fv!item = &amp;quot;&amp;quot;))),
              a!dynamicLink(
              ....
              ),
              &lt;span class="code-keyword"&gt;null&lt;/span&gt;)&lt;/code&gt;&lt;/pre&gt;
&lt;h2&gt;Affected Versions&lt;/h2&gt;
&lt;p&gt;This article applies to Appian 17.2 and later.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Last Reviewed: February 2018&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;

&lt;div style="font-size: 90%;"&gt;Tags: grid, open issues&lt;/div&gt;
</description></item><item><title>DRAFT KB-XXXX: Adding multiple rows to an inline editable grid without adding the data causes data indexing issues</title><link>https://community.appian.com/support/w/kb/850/kb-1509-adding-multiple-rows-to-an-inline-editable-grid-without-adding-the-data-causes-data-indexing-issues/revision/5</link><pubDate>Mon, 26 Feb 2018 10:38:37 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:67bfd41a-ca42-4fdf-befe-1bc9ad98ac73</guid><dc:creator>Emily Egan</dc:creator><comments>https://community.appian.com/support/w/kb/850/kb-1509-adding-multiple-rows-to-an-inline-editable-grid-without-adding-the-data-causes-data-indexing-issues#comments</comments><description>Revision 5 posted to Appian Knowledge Base by Emily Egan on 2/26/2018 10:38:37 AM&lt;br /&gt;
&lt;h2&gt;Symptoms&lt;/h2&gt;
&lt;p&gt;Adding&amp;nbsp;multiple rows to an inline editable grid without adding data before each new row results in&amp;nbsp;overwriting data due to indexing issues. Any new data will repeatedly write over the data from the first row of the&amp;nbsp;block of newly added rows. This behavior&amp;nbsp;does not&amp;nbsp;persist if adding data to each row before creating a new row.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;img src="/cfs-file/__key/communityserver-wikis-components-files/00-00-00-00-13/editableGrid.gif" alt=" " /&gt;&lt;/p&gt;
&lt;h2&gt;Cause&lt;/h2&gt;
&lt;p&gt;This issue has been reported to the Appian Product Team. The reference number for this issue is &lt;strong&gt;AN-97061&lt;/strong&gt;.&lt;/p&gt;
&lt;h2&gt;Workaround&lt;/h2&gt;
&lt;p&gt;Add data to each new row before adding additional rows.&amp;nbsp;&lt;/p&gt;
&lt;h2&gt;Affected Versions&lt;/h2&gt;
&lt;p&gt;This article applies to Appian 17.2 and later.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Last Reviewed: February 2018&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;

&lt;div style="font-size: 90%;"&gt;Tags: grid, open issues&lt;/div&gt;
</description></item><item><title>DRAFT KB-XXXX: Adding multiple rows to an inline editable grid without adding the data causes data indexing issues</title><link>https://community.appian.com/support/w/kb/850/kb-1509-adding-multiple-rows-to-an-inline-editable-grid-without-adding-the-data-causes-data-indexing-issues/revision/4</link><pubDate>Mon, 26 Feb 2018 10:10:45 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:67bfd41a-ca42-4fdf-befe-1bc9ad98ac73</guid><dc:creator>Emily Egan</dc:creator><comments>https://community.appian.com/support/w/kb/850/kb-1509-adding-multiple-rows-to-an-inline-editable-grid-without-adding-the-data-causes-data-indexing-issues#comments</comments><description>Revision 4 posted to Appian Knowledge Base by Emily Egan on 2/26/2018 10:10:45 AM&lt;br /&gt;
&lt;h2&gt;Symptoms&lt;/h2&gt;
&lt;p&gt;Adding&amp;nbsp;multiple rows to an inline editable grid without also adding data before each new row&amp;nbsp;creates data indexing issues. This results in the new data repeatedly writing over the original data in the row that was added first. This behavior&amp;nbsp;does not&amp;nbsp;persist if adding data to each row before creating a new row.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;img src="/cfs-file/__key/communityserver-wikis-components-files/00-00-00-00-13/editableGrid.gif" alt=" " /&gt;&lt;/p&gt;
&lt;h2&gt;Cause&lt;/h2&gt;
&lt;p&gt;This issue has been reported to the Appian Product Team. The reference number for this issue is &lt;strong&gt;AN-97061&lt;/strong&gt;.&lt;/p&gt;
&lt;h2&gt;Workaround&lt;/h2&gt;
&lt;p&gt;Add data to each new row before adding additional rows.&amp;nbsp;&lt;/p&gt;
&lt;h2&gt;Affected Versions&lt;/h2&gt;
&lt;p&gt;This article applies to Appian 17.2 and later.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Last Reviewed: February 2018&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;

&lt;div style="font-size: 90%;"&gt;Tags: grid, open issues&lt;/div&gt;
</description></item><item><title>DRAFT KB-XXXX: Adding multiple rows without adding the data in inline editable grids causing data indexing issues</title><link>https://community.appian.com/support/w/kb/850/kb-1509-adding-multiple-rows-to-an-inline-editable-grid-without-adding-the-data-causes-data-indexing-issues/revision/3</link><pubDate>Mon, 26 Feb 2018 10:08:22 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:67bfd41a-ca42-4fdf-befe-1bc9ad98ac73</guid><dc:creator>Emily Egan</dc:creator><comments>https://community.appian.com/support/w/kb/850/kb-1509-adding-multiple-rows-to-an-inline-editable-grid-without-adding-the-data-causes-data-indexing-issues#comments</comments><description>Revision 3 posted to Appian Knowledge Base by Emily Egan on 2/26/2018 10:08:22 AM&lt;br /&gt;
&lt;h2&gt;Symptoms&lt;/h2&gt;
&lt;p&gt;Adding&amp;nbsp;multiple rows to an inline editable grid without also adding data before each new row&amp;nbsp;creates data indexing issues. This results in the new data repeatedly writing over the original data in the row that was added first. This behavior&amp;nbsp;does not&amp;nbsp;persist if adding data to each row before creating a new row.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;img src="/cfs-file/__key/communityserver-wikis-components-files/00-00-00-00-13/editableGrid.gif" alt=" " /&gt;&lt;/p&gt;
&lt;h2&gt;Cause&lt;/h2&gt;
&lt;p&gt;This issue has been reported to the Appian Product Team. The reference number for this issue is &lt;strong&gt;AN-97061&lt;/strong&gt;.&lt;/p&gt;
&lt;h2&gt;Workaround&lt;/h2&gt;
&lt;p&gt;Add data to each new row before adding additional rows.&amp;nbsp;&lt;/p&gt;
&lt;h2&gt;Affected Versions&lt;/h2&gt;
&lt;p&gt;This article applies to Appian 17.2 and later.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Last Reviewed: February 2018&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;

&lt;div style="font-size: 90%;"&gt;Tags: grid, open issues&lt;/div&gt;
</description></item><item><title>DRAFT KB-XXXX: Duplicate Identifiers in Inline Editable Grids Causing Data Indexing Issues</title><link>https://community.appian.com/support/w/kb/850/kb-1509-adding-multiple-rows-to-an-inline-editable-grid-without-adding-the-data-causes-data-indexing-issues/revision/1</link><pubDate>Fri, 23 Feb 2018 22:01:50 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:67bfd41a-ca42-4fdf-befe-1bc9ad98ac73</guid><dc:creator>Emily Egan</dc:creator><comments>https://community.appian.com/support/w/kb/850/kb-1509-adding-multiple-rows-to-an-inline-editable-grid-without-adding-the-data-causes-data-indexing-issues#comments</comments><description>Revision 1 posted to Appian Knowledge Base by Emily Egan on 2/23/2018 10:01:50 PM&lt;br /&gt;
&lt;p&gt;&lt;img src="/cfs-file/__key/communityserver-wikis-components-files/00-00-00-00-13/editableGrid.gif" alt=" " /&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;

&lt;div style="font-size: 90%;"&gt;Tags: grid, open issues&lt;/div&gt;
</description></item><item><title>DRAFT KB-XXXX: Duplicate Identifiers in Inline Editable Grids Causing Data Indexing Issues</title><link>https://community.appian.com/support/w/kb/850/kb-1509-adding-multiple-rows-to-an-inline-editable-grid-without-adding-the-data-causes-data-indexing-issues/revision/2</link><pubDate>Fri, 23 Feb 2018 17:06:00 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:67bfd41a-ca42-4fdf-befe-1bc9ad98ac73</guid><dc:creator>Emily Egan</dc:creator><comments>https://community.appian.com/support/w/kb/850/kb-1509-adding-multiple-rows-to-an-inline-editable-grid-without-adding-the-data-causes-data-indexing-issues#comments</comments><description>Revision 2 posted to Appian Knowledge Base by Emily Egan on 2/23/2018 5:06:00 PM&lt;br /&gt;
&lt;p&gt;Symptoms&lt;/p&gt;
&lt;p&gt;Adding multiple rows to an inline editable grid and then returning to the new rows to add data causes duplicate identifiers to be created. This causes the data entered in these rows to repeatedly write over the value.&lt;/p&gt;
&lt;p&gt;&lt;img src="/cfs-file/__key/communityserver-wikis-components-files/00-00-00-00-13/editableGrid.gif" alt=" " /&gt;&lt;/p&gt;
&lt;div style="clear:both;"&gt;&lt;/div&gt;

&lt;div style="font-size: 90%;"&gt;Tags: grid, open issues&lt;/div&gt;
</description></item></channel></rss>