<?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>I have a editable grid with 3 columns: a id, question, grade.  I need the id col</title><link>https://community.appian.com/discussions/f/user-interface/4397/i-have-a-editable-grid-with-3-columns-a-id-question-grade-i-need-the-id-col</link><description>I have a editable grid with 3 columns: a id, question, grade. I need the id column to save off that value but I want to hide it from view to all users. How can I hide this column? OriginalPostID-140506 OriginalPostID-140506</description><dc:language>en-US</dc:language><generator>Telligent Community 12</generator><item><title>RE: I have a editable grid with 3 columns: a id, question, grade.  I need the id col</title><link>https://community.appian.com/thread/53746?ContentTypeID=1</link><pubDate>Thu, 29 Mar 2018 18:04:56 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:2c66ff3d-30e0-482b-8bd4-5f0418e313e8</guid><dc:creator>ankita0004</dc:creator><description>Hi &lt;br /&gt;
You can save this id using another field which is required like grade.&lt;br /&gt;
&lt;br /&gt;
you have to use this code into the saveInto parameter of grade dropdown &lt;br /&gt;
&lt;br /&gt;
In apply Components: &lt;br /&gt;
saveInto:{&lt;br /&gt;
a!save(ri!selectedIds[ri!index],ri!item[ri!index].id)&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
In foreach loop&lt;br /&gt;
saveInto:{&lt;br /&gt;
a!save(ri!selectedIds[fv!index],ri!item[fv!index].id)&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
Where ri!items is complete which have 3 fields id, question and grade&lt;br /&gt;
ri!index is the index of row for editable grid&lt;br /&gt;
ri!selectedId is the field in which we want to store id.&lt;br /&gt;
&lt;br /&gt;
Thanks&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: I have a editable grid with 3 columns: a id, question, grade.  I need the id col</title><link>https://community.appian.com/thread/53739?ContentTypeID=1</link><pubDate>Thu, 29 Mar 2018 11:35:20 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:256511ad-d359-4cfc-9ed7-08242d881677</guid><dc:creator>shafaly</dc:creator><description>If your use case is you have value in id and question column and user select grade from dropdown so for which row user selected grade you want to save id of that particular row then you don&amp;#39;t have to show id to users, you can use this code in saveInto of dropdown field.&lt;br /&gt;
&lt;br /&gt;
a!save(ri!SelectedIds,tointeger(index(index(local!Items,where(not(apply(isnull(_),local!Items.grade))),{}),&amp;quot;id&amp;quot;,{})))&lt;br /&gt;
&lt;br /&gt;
here SelectedIds is the variable of type list of number(integer) where you want to save selected ids. &lt;br /&gt;
Items is the type of cdt where you have these three columns.&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: I have a editable grid with 3 columns: a id, question, grade.  I need the id col</title><link>https://community.appian.com/thread/15832?ContentTypeID=1</link><pubDate>Thu, 05 Mar 2015 18:25:54 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:b432984f-4031-47d7-ba9d-5bf7321593ce</guid><dc:creator>mikec</dc:creator><description>Thanks guys.  Jackm829 the issue here is that a user is not selecting a row per se but answering a question via selecting a grade from a dropdown field.&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: I have a editable grid with 3 columns: a id, question, grade.  I need the id col</title><link>https://community.appian.com/thread/15815?ContentTypeID=1</link><pubDate>Thu, 05 Mar 2015 05:20:49 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:9534462a-feba-4f13-9d1a-8439fac009dc</guid><dc:creator>praveenj</dc:creator><description>This recipe would help: &lt;a href="https://forum.appian.com/suite/help/7.8/SAIL_Recipes.html#Use_Selection_For_Bulk_Actions_in_an_Inline_Editable_Grid"&gt;forum.appian.com/.../SAIL_Recipes.html&lt;/a&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: I have a editable grid with 3 columns: a id, question, grade.  I need the id col</title><link>https://community.appian.com/thread/15809?ContentTypeID=1</link><pubDate>Thu, 05 Mar 2015 03:45:15 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:49f0b15c-0b62-46a9-bd8a-a00af92a1cff</guid><dc:creator>jackm829</dc:creator><description>You can hide this column. When a user selects a certain row, it should save that row&amp;#39;s identifier (set this to your id) into the variable supplied in the selectionSaveInto attribute.  &lt;a href="https://forum.appian.com/suite/help/7.8/SAIL_Components.html#EditableGrid"&gt;forum.appian.com/.../SAIL_Components.html&lt;/a&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>