<?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 several textboxes that get created dynamically using a rule called rule!D</title><link>https://community.appian.com/discussions/f/general/2389/i-have-several-textboxes-that-get-created-dynamically-using-a-rule-called-rule-d</link><description>I have several textboxes that get created dynamically using a rule called rule!DCMIFS_CustomTextField which has the following code: a!textField(label:ri!label, value:ri!value, saveInto: ri!saveInto). Basically it is being used to create textFields. When</description><dc:language>en-US</dc:language><generator>Telligent Community 12</generator><item><title>RE: I have several textboxes that get created dynamically using a rule called rule!D</title><link>https://community.appian.com/thread/8420?ContentTypeID=1</link><pubDate>Wed, 26 Mar 2014 21:43:28 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:4db8b923-6429-4df3-ab06-04ca2c26ed1f</guid><dc:creator>jesse.triplett</dc:creator><description>I saw your other examples, did you actually try the above as written, without the [_] you were trying? I went ahead and made simple examples in my instance and have no problem saving the values.&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: I have several textboxes that get created dynamically using a rule called rule!D</title><link>https://community.appian.com/thread/8418?ContentTypeID=1</link><pubDate>Wed, 26 Mar 2014 21:33:58 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:9dbea969-74ca-4e36-8307-abdf58d05b24</guid><dc:creator>aswinb</dc:creator><description>That&amp;#39;s exactly what I have Jessse, but whatever I enter into these dynamically created textboxes disappear after I click the mouse outside.&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: I have several textboxes that get created dynamically using a rule called rule!D</title><link>https://community.appian.com/thread/8408?ContentTypeID=1</link><pubDate>Wed, 26 Mar 2014 18:22:46 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:b02503a7-0ca1-48de-8141-c04cbced8049</guid><dc:creator>jesse.triplett</dc:creator><description>Okay, I think a key takeaway is how the recipe is passing ri!guests (the saveInto value)&lt;br /&gt;&lt;br /&gt;Similar to what you wrote above, try a!applyComponents(function:rule!DCMIFS_TextField_ValidLength(label:_, value:ri!hours, saveInto:ri!hours),&lt;br /&gt; array:local!technicalOfficers)&lt;br /&gt;&lt;br /&gt;and see if that gets you closer. What I think will happen is that you&amp;#39;ll be able to write and save into every text field, but they&amp;#39;ll all hold the same value&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: I have several textboxes that get created dynamically using a rule called rule!D</title><link>https://community.appian.com/thread/8407?ContentTypeID=1</link><pubDate>Wed, 26 Mar 2014 18:22:22 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:4a17d1ac-a6b0-4205-b7fc-48dcdceaacde</guid><dc:creator>aswinb</dc:creator><description>also the applycomponents function in this example that you mentioned only has 1 parameter whereas I have 3 things...so its confusing as to how to map it.....&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: I have several textboxes that get created dynamically using a rule called rule!D</title><link>https://community.appian.com/thread/8405?ContentTypeID=1</link><pubDate>Wed, 26 Mar 2014 18:01:20 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:704bb55d-d67d-43ca-abf6-76979d53d629</guid><dc:creator>aswinb</dc:creator><description>I tried following up the recipe on dynamically creating textboxes but its too much away from my concept...i have to make textboxes based on the value of a local variable that gets populated from a query rule.&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: I have several textboxes that get created dynamically using a rule called rule!D</title><link>https://community.appian.com/thread/8391?ContentTypeID=1</link><pubDate>Tue, 25 Mar 2014 23:34:36 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:a53e25a3-5ee9-42f2-8fef-b7b75f9968d0</guid><dc:creator>jesse.triplett</dc:creator><description>Have you seen the SAIL_Recipes section available on forum? The following example should be of use.&lt;br /&gt;&lt;br /&gt;&lt;a href="https://forum.appian.com/suite/wiki/74/SAIL_Recipes#Add_Multiple_Text_Components_Dynamically"&gt;forum.appian.com/.../SAIL_Recipes&lt;/a&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: I have several textboxes that get created dynamically using a rule called rule!D</title><link>https://community.appian.com/thread/8390?ContentTypeID=1</link><pubDate>Tue, 25 Mar 2014 23:09:56 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:bd9ff208-cefa-4490-8ae6-7504bc4f4fe2</guid><dc:creator>aswinb</dc:creator><description>&lt;br /&gt;a!applyComponents(function:rule!DCMIFS_TextField_ValidLength(label:_, value:_, saveInto:_),&lt;br /&gt; array:merge(local!technicalOfficers,ri!hours, ri!hours))&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;This is the line where all the textFields are created dynamically....but whatever i enter intot these textFields disappear if I click outside...&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: I have several textboxes that get created dynamically using a rule called rule!D</title><link>https://community.appian.com/thread/8389?ContentTypeID=1</link><pubDate>Tue, 25 Mar 2014 23:07:51 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:df39b269-03cb-499e-9562-72cc5739d949</guid><dc:creator>aswinb</dc:creator><description>I tried using applyComponents but it didn&amp;#39;t solve the problem....any other suggestions...&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: I have several textboxes that get created dynamically using a rule called rule!D</title><link>https://community.appian.com/thread/8388?ContentTypeID=1</link><pubDate>Tue, 25 Mar 2014 22:44:46 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:5f0fbbcb-82e5-42d4-bc7d-d99a793c671e</guid><dc:creator>jesse.triplett</dc:creator><description>You&amp;#39;ll need to use a!applyComponents instead of apply()&lt;br /&gt;&lt;br /&gt;&lt;a href="https://forum.appian.com/suite/wiki/74/System_Functions#a!applyComponents.28.29"&gt;forum.appian.com/.../System_Functions&lt;/a&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>