<?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>Save a value in a custom Picker</title><link>https://community.appian.com/discussions/f/general/28970/save-a-value-in-a-custom-picker</link><description>Hello, does anyone know how I can make a custom picker to save the value if it is not in the list? 
 The code is that:</description><dc:language>en-US</dc:language><generator>Telligent Community 12</generator><item><title>RE: Save a value in a custom Picker</title><link>https://community.appian.com/thread/114336?ContentTypeID=1</link><pubDate>Wed, 14 Jun 2023 16:22:11 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:2dc24f20-31d1-4192-b9a3-409aa5b3532b</guid><dc:creator>Harshit Bumb (Appyzie)</dc:creator><description>&lt;p&gt;Duplicate thread -&amp;nbsp;&lt;a href="https://community.appian.com/discussions/f/rules/28971/save-value-in-a-custom-picker"&gt;community.appian.com/.../save-value-in-a-custom-picker&lt;/a&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Save a value in a custom Picker</title><link>https://community.appian.com/thread/114329?ContentTypeID=1</link><pubDate>Wed, 14 Jun 2023 14:52:42 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:ca41f96f-c572-433e-b60d-d3af12ee60dc</guid><dc:creator>Andrei Alexandru Mois</dc:creator><description>&lt;pre class="tw-data-text tw-text-large tw-ta" id="tw-target-text" dir="ltr"&gt;&lt;span class="Y2IQFc" style="font-family:arial, helvetica, sans-serif;" lang="en"&gt;Yes, this works, thank you very much!!!&lt;/span&gt;&lt;/pre&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Save a value in a custom Picker</title><link>https://community.appian.com/thread/114328?ContentTypeID=1</link><pubDate>Wed, 14 Jun 2023 14:49:38 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:4458a758-cd06-4305-a9ed-5810f3cc826a</guid><dc:creator>Miriam</dc:creator><description>&lt;p&gt;Try this into your suggestFuction:&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="text"&gt;if(
    count(local!matches) &amp;gt; 0,
    a!dataSubset(
      data: index(ri!labels, local!matches),
      identifiers: index(ri!identifiers, local!matches)
    ),
    a!dataSubset(data: ri!filter, identifiers: ri!filter)
  ),
  
)&lt;/pre&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Save a value in a custom Picker</title><link>https://community.appian.com/thread/114327?ContentTypeID=1</link><pubDate>Wed, 14 Jun 2023 14:42:47 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:abd3110e-c40b-4541-8a57-58137570d2fb</guid><dc:creator>mikels7956</dc:creator><description>&lt;p&gt;You can take his concept of appending new values to the list.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Have a text input side by side with the pickerfield with a button add to list.&lt;/p&gt;
&lt;p&gt;If you search in pickerfield and it does not exist type it in the textbox and click add to list button. You can even append it to the selected values in the pickerfield in the buttons save parameter using a!save() like this you don&amp;#39;t need to retype it in the picker field. If you don&amp;#39;t like the button you can just keep the textbox by itself and save on&amp;nbsp;&lt;span&gt;UNFOCUS etc&lt;/span&gt;&amp;nbsp;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Save a value in a custom Picker</title><link>https://community.appian.com/thread/114326?ContentTypeID=1</link><pubDate>Wed, 14 Jun 2023 14:36:32 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:3fdf41fa-d5a5-4bc7-8af1-d09040e30e23</guid><dc:creator>Mike Schmitt</dc:creator><description>[quote userid="176649" url="~/discussions/f/general/28970/save-a-value-in-a-custom-picker/114323#114323"]You have any solution to do?[/quote]
&lt;p&gt;Again... Stefan spells out exactly how to do this in his blog post.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Save a value in a custom Picker</title><link>https://community.appian.com/thread/114323?ContentTypeID=1</link><pubDate>Wed, 14 Jun 2023 14:06:35 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:ff2dff67-e878-404c-b92f-fe336b4f0dba</guid><dc:creator>Andrei Alexandru Mois</dc:creator><description>&lt;p&gt;You have any solution to do?&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Save a value in a custom Picker</title><link>https://community.appian.com/thread/114321?ContentTypeID=1</link><pubDate>Wed, 14 Jun 2023 14:02:05 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:92d764e3-3166-4351-a219-a2f7ca8518ba</guid><dc:creator>Stefan Helzle</dc:creator><description>&lt;p&gt;Well, the pattern I describe is how to get started. Maybe I misunderstand your intention.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Save a value in a custom Picker</title><link>https://community.appian.com/thread/114320?ContentTypeID=1</link><pubDate>Wed, 14 Jun 2023 13:19:33 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:4d0821ad-6253-423f-aa1e-9c8cebe73128</guid><dc:creator>Andrei Alexandru Mois</dc:creator><description>&lt;p&gt;Hello, but that is not what I am looking for, what I want is that if they write a word inside the custom picker and it does not exist, it is saved in the indicated variable to use it in the future&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Save a value in a custom Picker</title><link>https://community.appian.com/thread/114319?ContentTypeID=1</link><pubDate>Wed, 14 Jun 2023 12:07:31 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:e5fc819a-a1aa-488d-a203-74f18a69241d</guid><dc:creator>Stefan Helzle</dc:creator><description>&lt;p&gt;I described this in my blog:&amp;nbsp;&lt;a href="https://appian.rocks/2022/12/22/create-new-items-using-a-custom-picker/"&gt;https://appian.rocks/2022/12/22/create-new-items-using-a-custom-picker/&lt;/a&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>