<?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>Can we edit the dropdown label which will populated dynamically and save that into table</title><link>https://community.appian.com/discussions/f/user-interface/39443/can-we-edit-the-dropdown-label-which-will-populated-dynamically-and-save-that-into-table</link><description>Hi I have a requirement I want to edit the prepopulated dropdown label name which will be coming from ref table and save that into other table. My first doubt is can we do that ?</description><dc:language>en-US</dc:language><generator>Telligent Community 12</generator><item><title>RE: Can we edit the dropdown label which will populated dynamically and save that into table</title><link>https://community.appian.com/thread/149910?ContentTypeID=1</link><pubDate>Mon, 14 Jul 2025 18:24:04 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:eceea852-f8cb-4772-95ad-e674b33f496f</guid><dc:creator>Shubham Aware</dc:creator><description>&lt;p&gt;Ohkay understood now.&lt;br /&gt;&lt;br /&gt;&lt;span&gt;I named new table/record as override &lt;/span&gt;&lt;br /&gt;&lt;br /&gt;When users select multiple plans from the multi-select dropdown (like 5 plans), they can click an &amp;quot;Edit Names&amp;quot; button which opens a grid interface. This grid displays each selected plan in rows with two columns - the original plan name as read-only text and an editable text field for the custom name. Users can edit names for any or all selected plans directly in the grid, then click a single Save button to store all customizations at once to the Override record. This approach is efficient for bulk editing since users can see all their selections together, make multiple changes, and save everything in one action rather than editing plans individually.&lt;br /&gt;These custom names get saved to the Override table while the main plans table stays untouched.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Can we edit the dropdown label which will populated dynamically and save that into table</title><link>https://community.appian.com/thread/149898?ContentTypeID=1</link><pubDate>Mon, 14 Jul 2025 15:15:03 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:001471a5-a674-44d8-9800-041e05e75aa8</guid><dc:creator>iswarya2812</dc:creator><description>&lt;p&gt;Hi&amp;nbsp;&lt;a href="/members/shubhama926776"&gt;Shubham Aware&lt;/a&gt;&amp;nbsp; Sorry I&amp;nbsp;misunderstood something here , I have multiple dropdown fields they may need plan as much they want but they might want to edit some plans as they needed . And I have get to know that I might not touch the main plan table until its unavoidable. So is there any alternative implementation you can suggest me . Sorry for the trouble.&amp;nbsp; And May I know what is override ?&amp;nbsp;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Can we edit the dropdown label which will populated dynamically and save that into table</title><link>https://community.appian.com/thread/149896?ContentTypeID=1</link><pubDate>Mon, 14 Jul 2025 14:51:59 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:d23f3222-ab08-4b36-bb38-749afe71302d</guid><dc:creator>Shubham Aware</dc:creator><description>&lt;p&gt;No, you only need one textField.&amp;nbsp;Dropdown is replaced by ONE text field showing only the selected plan&amp;rsquo;s name.&lt;/p&gt;
&lt;p&gt;This makes interface simple for dev and user experience.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Can we edit the dropdown label which will populated dynamically and save that into table</title><link>https://community.appian.com/thread/149895?ContentTypeID=1</link><pubDate>Mon, 14 Jul 2025 14:45:24 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:0db7ee13-cb1a-4b8a-9518-a0207cd543f9</guid><dc:creator>iswarya2812</dc:creator><description>&lt;p&gt;HI &lt;a href="/members/shubhama926776"&gt;Shubham Aware&lt;/a&gt;&amp;nbsp;, thanks&amp;nbsp; you so much for providing the detailed implementation. one question if 5 plans are there in the dropdown then I need to show 5 text field right.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Can we edit the dropdown label which will populated dynamically and save that into table</title><link>https://community.appian.com/thread/149879?ContentTypeID=1</link><pubDate>Mon, 14 Jul 2025 12:42:16 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:de64f126-710b-461b-b687-f24684f08c57</guid><dc:creator>Shubham Aware</dc:creator><description>&lt;p class="whitespace-normal break-words"&gt;Create Override Record Type with fields : id, clientId, planId, overrideName, etc...&lt;br /&gt;&lt;br /&gt;Add Relationship &amp;amp; Custom Field : In your existing Main Plans Record Type, add a one-to-many relationship to the Override record using planId as the common field. Create a custom record field called &amp;quot;displayName&amp;quot; that checks if an override exists - if yes, show the overrideName&amp;nbsp;from the override record, otherwise show the original plan name.&lt;br /&gt;&lt;br /&gt;Query Expression Rule: &lt;span&gt;Build an expression rule named that accepts clientId as input. Query the Main Plans record type filtered by clientId and include the related Plan Name Override records also filtered by the same clientId. The query should return planId, original planName, and the custom displayName field.&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Interface Setup :&amp;nbsp;&lt;span&gt;Create an interface with local variables for storing the plans query result, selected plan ID, edit mode flag, and temporary custom name(local!tempName). Display a dropdown field that uses the displayName from your query results as labels and planId as values. Place an Edit link next to the dropdown.&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Implement Edit Mode When Edit link is clicked, switch the interface to show a text field instead of dropdown. Pre-populate the text field with the current display name. Change the Edit link to show Save. The text field should save into your local custom name variable(local!tempName).&lt;br /&gt;&lt;br /&gt;Save the Override On Save click, use writeRecords to create or update a record in the Override record type with the clientId, planId, and custom name(local!tempName.). After successful save, refresh your plans query to show the updated name and switch back to dropdown view.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Can we edit the dropdown label which will populated dynamically and save that into table</title><link>https://community.appian.com/thread/149878?ContentTypeID=1</link><pubDate>Mon, 14 Jul 2025 12:39:12 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:487a8e9a-651f-4e36-b8ab-a0d6b9314812</guid><dc:creator>Harsha Sharma</dc:creator><description>&lt;p&gt;In that case when you query the dropdown can you put a filter with particular client only &amp;#39;Other&amp;#39; option is visible and not for others&lt;/p&gt;
[quote userid="265251" url="~/discussions/f/user-interface/39443/can-we-edit-the-dropdown-label-which-will-populated-dynamically-and-save-that-into-table/149869"]f I add others then i need to add&amp;nbsp; &amp;nbsp;it for all the clients right.[/quote]&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Can we edit the dropdown label which will populated dynamically and save that into table</title><link>https://community.appian.com/thread/149877?ContentTypeID=1</link><pubDate>Mon, 14 Jul 2025 12:15:01 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:08f921fb-6ca2-476f-80e1-5b3924ce7812</guid><dc:creator>iswarya2812</dc:creator><description>&lt;p&gt;Hi, Can you elaborate it more please. Thank you.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Can we edit the dropdown label which will populated dynamically and save that into table</title><link>https://community.appian.com/thread/149875?ContentTypeID=1</link><pubDate>Mon, 14 Jul 2025 12:08:41 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:9c1d9c41-2cd9-4c74-9109-a7241be73dd1</guid><dc:creator>Shubham Aware</dc:creator><description>&lt;p&gt;Yes, it&amp;#39;s possible. Create a separate override table to store client-specific plan names. When displaying, check override table first - if custom name exists, show that; otherwise show original. Editing saves only to override table, never touching your main plans table.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Can we edit the dropdown label which will populated dynamically and save that into table</title><link>https://community.appian.com/thread/149869?ContentTypeID=1</link><pubDate>Mon, 14 Jul 2025 11:49:48 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:d364f2b4-3ee3-4b3a-9b14-8b4ba523822d</guid><dc:creator>iswarya2812</dc:creator><description>&lt;p&gt;Hi I think I failed to explain the requirements properly. ref table is not really like ref table its the main table also plan id plan name everything is there&amp;nbsp; so for a particular client multiple plans lined for them is stored in there and it will used across multiple applications .If I add others then i need to add&amp;nbsp; &amp;nbsp;it for all the clients right. I want to edit the pre displaying plan name without affecting the original table .&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Can we edit the dropdown label which will populated dynamically and save that into table</title><link>https://community.appian.com/thread/149867?ContentTypeID=1</link><pubDate>Mon, 14 Jul 2025 11:35:42 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:53891056-8151-4a2b-a472-38d601f2e400</guid><dc:creator>Harsha Sharma</dc:creator><description>&lt;p&gt;Got it. In cases like this, generally below approach is followed :&amp;nbsp;&lt;/p&gt;
&lt;p&gt;In the reference table,&amp;nbsp; include a value labelled&lt;span&gt;&amp;nbsp;&lt;/span&gt;&lt;strong&gt;&amp;#39;Other&amp;#39;&lt;/strong&gt;. If a user wants to input something that isn&amp;#39;t available in the dropdown list, they can select&lt;span&gt;&amp;nbsp;&lt;/span&gt;&lt;strong&gt;&amp;#39;Other&amp;#39;&lt;/strong&gt;&lt;span&gt;&amp;nbsp;&lt;/span&gt;from the dropdown.&lt;/p&gt;
&lt;p&gt;As a developer, when the user selects&lt;span&gt;&amp;nbsp;&lt;/span&gt;&lt;strong&gt;&amp;#39;Other&amp;#39;&lt;/strong&gt;, you should display a&lt;span&gt;&amp;nbsp;&lt;/span&gt;&lt;strong&gt;text field&lt;/strong&gt;&lt;span&gt;&amp;nbsp;&lt;/span&gt;near the dropdown. This allows the user to manually enter their custom value.&lt;/p&gt;
&lt;p&gt;In the main data table where you store the selected dropdown value, you should save the&lt;span&gt;&amp;nbsp;&lt;/span&gt;&lt;strong&gt;ID corresponding to &amp;#39;Other&amp;#39;&lt;/strong&gt;. Additionally, you&amp;rsquo;ll need a&lt;span&gt;&amp;nbsp;&lt;/span&gt;&lt;strong&gt;separate column&lt;/strong&gt;&lt;span&gt;&amp;nbsp;&lt;/span&gt;to store the&lt;span&gt;&amp;nbsp;&lt;/span&gt;&lt;strong&gt;custom value&lt;/strong&gt;&lt;span&gt;&amp;nbsp;&lt;/span&gt;entered by the user in the text field.&lt;/p&gt;
&lt;p&gt;Whenever&lt;span&gt;&amp;nbsp;&lt;/span&gt;&lt;strong&gt;&amp;#39;Other&amp;#39;&lt;/strong&gt;&lt;span&gt;&amp;nbsp;&lt;/span&gt;is selected, this custom value field becomes&lt;span&gt;&amp;nbsp;&lt;/span&gt;&lt;strong&gt;mandatory&lt;/strong&gt;&lt;span&gt;&amp;nbsp;&lt;/span&gt;and must be filled in before the data can be saved.&lt;/p&gt;
&lt;p&gt;In other tasks you can add an if condition checking if selected dropdown value relates to &amp;#39;Other&amp;#39; then show the value from the related otherColumn in record else show the value from ref table.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Hope that clears things up!&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Can we edit the dropdown label which will populated dynamically and save that into table</title><link>https://community.appian.com/thread/149865?ContentTypeID=1</link><pubDate>Mon, 14 Jul 2025 11:26:44 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:662e9cb2-5c31-46b7-8fa9-52324407b7d6</guid><dc:creator>iswarya2812</dc:creator><description>&lt;p&gt;Yes as you said only Ids will be getting stored in the table.&amp;nbsp; in my case also&amp;nbsp; for a particular client some pre existing plans are coming from ref table which i will be showing in the drop down&amp;nbsp; and User can select some plans from the dropdown and selected plan ids are getting stored into new&amp;nbsp; client plan table. later using the query for I am displaying those plan in another task . this is easy normal flow. But now I want to edit the plan names which showing in the dropdown it should not affect the ref table value but to show in the other task it need to be edited.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Can we edit the dropdown label which will populated dynamically and save that into table</title><link>https://community.appian.com/thread/149860?ContentTypeID=1</link><pubDate>Mon, 14 Jul 2025 11:15:28 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:7360390c-10a5-446c-9525-03da98555d54</guid><dc:creator>Harsha Sharma</dc:creator><description>&lt;p&gt;Can you elaborate on your use case? Normally labels are not saved it database but the respective values are stored in fields in the table.&amp;nbsp;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>