<?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>Having trouble with a cascading dropdown. Basically, I have an editable grid tha</title><link>https://community.appian.com/discussions/f/rules/6008/having-trouble-with-a-cascading-dropdown-basically-i-have-an-editable-grid-tha</link><description>Having trouble with a cascading dropdown. Basically, I have an editable grid that has 3 dropdowns. The user selects a user from the first dropdown, assigns a role to the user with the second dropdown and assigns an area of expertise with the third dropdown</description><dc:language>en-US</dc:language><generator>Telligent Community 12</generator><item><title>RE: Having trouble with a cascading dropdown. Basically, I have an editable grid tha</title><link>https://community.appian.com/thread/23252?ContentTypeID=1</link><pubDate>Fri, 02 Oct 2015 01:10:17 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:2aa09652-575d-428b-b8a3-da800be50115</guid><dc:creator>sikhivahans</dc:creator><description>@judym Happens some times with most of us.! Glad to hear that the problem is resolved. :)&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Having trouble with a cascading dropdown. Basically, I have an editable grid tha</title><link>https://community.appian.com/thread/23251?ContentTypeID=1</link><pubDate>Fri, 02 Oct 2015 01:07:25 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:67a63956-945d-47d4-a2d6-b7539be620d1</guid><dc:creator>judym598</dc:creator><description>That was it! I knew it had to be a simple thing. I&amp;#39;m so used to saving the &amp;#39;id&amp;#39; that I didn&amp;#39;t pick up on that. Thank you SO much!&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Having trouble with a cascading dropdown. Basically, I have an editable grid tha</title><link>https://community.appian.com/thread/23249?ContentTypeID=1</link><pubDate>Fri, 02 Oct 2015 00:59:27 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:b29159ce-d770-4b6e-be19-e6ba826ab116</guid><dc:creator>sikhivahans</dc:creator><description>@judym Got it, very simple. You are trying to use a field which is not present in your data structure.&lt;br /&gt;&lt;br /&gt;So let' see the below line which is of "Area of Expertise" dropdown:&lt;br /&gt;choiceValues: index(local!expertise.data,"id",{})&lt;br /&gt;Here we are trying to access a column by name 'id' in the queried data. As it isn't present, you are not able to obtain any values for 'choiceValues' attribute.&lt;br /&gt;&lt;br /&gt;So your actual code should look like this I guess:&lt;br /&gt;choiceValues: index(local!expertise.data,"expertiseId",{})&lt;br /&gt;&lt;br /&gt;If my assumption is correct, please try the attached file once again and have a keen look at "Area of Expertise" dropdown.&lt;br /&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Having trouble with a cascading dropdown. Basically, I have an editable grid tha</title><link>https://community.appian.com/thread/23248?ContentTypeID=1</link><pubDate>Fri, 02 Oct 2015 00:48:22 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:50f46340-11a9-456e-8bf3-af7a9fb7ed6d</guid><dc:creator>judym598</dc:creator><description>Column Names are: expertiseLinkId (int), userId (int), lastName(text), firstName(text), expertiseId (int), expertise(text).  rule!ips_getExpertiseByUserId() is a query rule with input being &amp;#39;userId&amp;#39; and query conditions userId = userId, sort by expertise. &lt;br /&gt;I&amp;#39;m not sure I tested the code above correctly. I created an expression rule and put &lt;br /&gt;=with(&lt;br /&gt;local!expertise: rule!ips_getExpertiseByUserId(ri!userId),&lt;br /&gt;local!expertise_datasubset: todatasubset(local!expertise),&lt;br /&gt;index(local!expertise_datasubset,&amp;quot;id&amp;quot;,{})&lt;br /&gt;) &lt;br /&gt;with one input (userId[int]), assigned a test value of &amp;#39;6&amp;#39; that should bring back results and got {} &lt;br /&gt;Attached is a screen shot.&lt;br /&gt;&lt;br /&gt;&lt;p&gt;&lt;a href="/cfs-filesystemfile/__key/communityserver-discussions-components-files/15/expression-rule.png"&gt;&lt;img src="/cfs-filesystemfile/__key/communityserver-discussions-components-files/15/expression-rule.png" alt=" " /&gt;&lt;/a&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Having trouble with a cascading dropdown. Basically, I have an editable grid tha</title><link>https://community.appian.com/thread/23247?ContentTypeID=1</link><pubDate>Fri, 02 Oct 2015 00:38:44 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:f60cbbd0-b03e-4b3c-8ed7-661a3b3e5f86</guid><dc:creator>sikhivahans</dc:creator><description>@judym Some more information please - May I know the column names exactly and also if rule!ips_getExpertiseByUserId() is a query rule?&lt;br /&gt;&lt;br /&gt;Meanwhile could you please test the following code in an expression rule separately and do let me know the outcome?&lt;br /&gt;&lt;br /&gt;with(&lt;br /&gt;\          tlocal!expertise: rule!ips_getExpertiseByUserId(&lt;hard code a valid user id here so that you will obtain results&gt;),&lt;br /&gt;\          tlocal!expertise_datasubset: todatasubset(local!expertise),&lt;br /&gt;\          tindex(local!expertise_datasubset,"id",{})&lt;br /&gt;\t   )&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Having trouble with a cascading dropdown. Basically, I have an editable grid tha</title><link>https://community.appian.com/thread/23246?ContentTypeID=1</link><pubDate>Fri, 02 Oct 2015 00:26:59 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:6769587d-dc76-47b6-ab83-de7e3554e8c9</guid><dc:creator>judym598</dc:creator><description>You are correct with your assumption. expertiseId is of type integer and expertise is of type text. The query rule basically gets all data where &amp;#39;userId = userId&amp;#39; and sorts by expertise.  The actual data type has an id (a/I), userId, expertiseId, and expertise. So userId 4 may have 3 records (areas of expertise) in the table whereas userId 6 may have 2 areas of expertise.  All users have at least 1 record in the table. Does that help?&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Having trouble with a cascading dropdown. Basically, I have an editable grid tha</title><link>https://community.appian.com/thread/23245?ContentTypeID=1</link><pubDate>Fri, 02 Oct 2015 00:20:52 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:b652d951-0701-4d59-8e22-55a11d07a844</guid><dc:creator>sikhivahans</dc:creator><description>@judym As I said earlier, it's not a valid version because I am explicitly saving null value into expertiseId. Because I guess expertiseId is of type integer and local!expertise.data.expertise might evaluate to a string and trying to store string into integer will create a new error. So I have just changed the display and also saving null value into expertiseId explicitly. Please take a keen look below:&lt;br /&gt;a!dropdownField(&lt;br /&gt;        label: "Area of Expertise",&lt;br /&gt;        choiceLabels: local!expertise.data.expertise,&lt;br /&gt;        choiceValues: local!expertise.data.expertise,  &lt;br /&gt;        placeholderLabel: "---Assign Area of Expertise---",&lt;br /&gt;\          t/*Null handling being done for value attribute*/&lt;br /&gt;        value: if(rule!APN_isEmpty(ri!newTeamLink_cdt[ri!index]),null,if(rule!APN_isBlank(ri!newTeamLink_cdt[ri!index].expertiseId),null,ri!newTeamLink_cdt[ri!index].expertiseId)),&lt;br /&gt;        saveInto: {&lt;br /&gt;\                    ta!save(ri!newTeamLink_cdt[ri!index].expertiseId,null)&lt;br /&gt;\          t},&lt;br /&gt;        required: true(),&lt;br /&gt;        readOnly: false()&lt;br /&gt;       )&lt;br /&gt;&lt;br /&gt;If you could let me know the data structure of expertise and the definition of rule!ips_getExpertiseByUserId() I could try to help you debug the issue.&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Having trouble with a cascading dropdown. Basically, I have an editable grid tha</title><link>https://community.appian.com/thread/23244?ContentTypeID=1</link><pubDate>Fri, 02 Oct 2015 00:15:18 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:6aee71ab-b8f3-4d41-ba97-f6c2ba34d6ce</guid><dc:creator>judym598</dc:creator><description>What you sent DID allow me to see the correct values (filtered based on userId) in the dropdown. It&amp;#39;s just not saving them now. I think I&amp;#39;m close now!&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Having trouble with a cascading dropdown. Basically, I have an editable grid tha</title><link>https://community.appian.com/thread/23243?ContentTypeID=1</link><pubDate>Fri, 02 Oct 2015 00:14:10 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:d0334102-107a-4072-a59a-b213765783fb</guid><dc:creator>sikhivahans</dc:creator><description>@judym Great, please keep posted here if you have further issues. Still if you are not able to spot out the issue, Appian practitioners are here to help you always.&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Having trouble with a cascading dropdown. Basically, I have an editable grid tha</title><link>https://community.appian.com/thread/23242?ContentTypeID=1</link><pubDate>Fri, 02 Oct 2015 00:10:38 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:e4374815-eacb-4df3-8fda-c42ab4d85dd8</guid><dc:creator>judym598</dc:creator><description>I wondered the same thing so I just created an expression rule to test my query rule and it does bring back values. I&amp;#39;ll take a look at what you&amp;#39;ve sent. Thank you again.&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Having trouble with a cascading dropdown. Basically, I have an editable grid tha</title><link>https://community.appian.com/thread/23241?ContentTypeID=1</link><pubDate>Fri, 02 Oct 2015 00:06:01 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:0bb43533-87ce-41a4-9451-b842b49a9619</guid><dc:creator>sikhivahans</dc:creator><description>@judym No problem at all. Now everything looks good to me so far.&lt;br /&gt;&lt;br /&gt;Are you sure that the value configured by you - index(local!expertise.data,"id",{}) for 'choiceValues' for "Area of Expertise" is returning valid values? I doubt this, because the error is clearly saying that choiceLabels are perfectly populated where as the choiceValues aren't. &lt;br /&gt;&lt;br /&gt;Just in case if you aren't sure about the above question, I am sending you an other version(please find attached the code snippet), which is not valid but will help you skip the error and load the interface and then you can start debugging.&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Having trouble with a cascading dropdown. Basically, I have an editable grid tha</title><link>https://community.appian.com/thread/23240?ContentTypeID=1</link><pubDate>Thu, 01 Oct 2015 23:54:44 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:01d232fb-b4e5-428f-9256-2b6868fcd977</guid><dc:creator>judym598</dc:creator><description>Argh! I really appreciate your help @sikhivahans...Unfortunately, I&amp;#39;m still getting an error. &lt;br /&gt;Expression evaluation error in rule &amp;#39;ips_assignuserrolesgrid&amp;#39; (called by rule &amp;#39;ips_assignuserrolesmain&amp;#39;) at function a!applyComponents [line 100]: A dropdown component [label=“Area of Expertise”] has an invalid value for “choiceValues”. The choiceLabels and choiceValues arrays must be the same length, but choiceLabels was length 4 and choiceValues was length 0.&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Having trouble with a cascading dropdown. Basically, I have an editable grid tha</title><link>https://community.appian.com/thread/23239?ContentTypeID=1</link><pubDate>Thu, 01 Oct 2015 23:45:44 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:151d1223-d29d-41c6-9c5c-c3d6719aa24e</guid><dc:creator>sikhivahans</dc:creator><description>@judym I have just made one more change. Please find attached the code snippet. Do let me know if there are any issues again.&lt;br /&gt;&lt;br /&gt;Actually there is some confusion because of the todatasubset() conversions which were being done in the interface and they aren't actually needed as said by me earlier in the post. Let's remove these conversions when you get the interface up and working. Coming to if conditions, they are needed because your interface fails if null values aren't handled properly. But you could test the interface rigorously and remove them if needed at a later point.&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Having trouble with a cascading dropdown. Basically, I have an editable grid tha</title><link>https://community.appian.com/thread/23236?ContentTypeID=1</link><pubDate>Thu, 01 Oct 2015 23:40:24 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:d5024cc3-6132-442f-ab3c-3d9f6651f4ce</guid><dc:creator>judym598</dc:creator><description>I just found in the documentation that you need to initialize the local variable to a null integer because local variables have no type.  In the example they did the following:&lt;br /&gt;local!make: tointeger(null) I&amp;#39;m going to try doing that to the &amp;#39;null&amp;#39; values in the initial local variable.  &lt;br /&gt; &lt;br /&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Having trouble with a cascading dropdown. Basically, I have an editable grid tha</title><link>https://community.appian.com/thread/23235?ContentTypeID=1</link><pubDate>Thu, 01 Oct 2015 23:31:35 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:b64204dd-3b01-4db3-8b60-fea6a6342470</guid><dc:creator>judym598</dc:creator><description>Just realized you changed something else, so I made that change and now the error I&amp;#39;m getting (before I select a user now): Expression evaluation error in rule &amp;#39;ips_assignuserrolesgrid&amp;#39; (called by rule &amp;#39;ips_assignuserrolesmain&amp;#39;) at function a!applyComponents [line 100]: Cannot compare incompatible operands of type Null and type Number (Integer).&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Having trouble with a cascading dropdown. Basically, I have an editable grid tha</title><link>https://community.appian.com/thread/23234?ContentTypeID=1</link><pubDate>Thu, 01 Oct 2015 23:27:56 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:8f3a5675-df17-4bd0-b2d2-716580252b2b</guid><dc:creator>judym598</dc:creator><description>Actually, it is up there. There are so many &amp;#39;if&amp;#39; statements in this rule, it&amp;#39;s confusing.&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Having trouble with a cascading dropdown. Basically, I have an editable grid tha</title><link>https://community.appian.com/thread/23233?ContentTypeID=1</link><pubDate>Thu, 01 Oct 2015 23:26:12 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:53835d20-1a6d-4e0e-81fe-7cdaacb77b43</guid><dc:creator>judym598</dc:creator><description>Still not working. I got this error: Expression evaluation error in rule &amp;#39;ips_assignuserrolesgrid&amp;#39; (called by rule &amp;#39;ips_assignuserrolesmain&amp;#39;) at function a!applyComponents [line 100]: A dropdown component [label=“Area of Expertise”] has an invalid value for “choiceValues”. The choiceLabels and choiceValues arrays must be the same length, but choiceLabels was length 4 and choiceValues was length 0.&lt;br /&gt;&lt;br /&gt;Shouldn&amp;#39;t I have the todatasubset text at the top where I have it for the other dropdowns?&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Having trouble with a cascading dropdown. Basically, I have an editable grid tha</title><link>https://community.appian.com/thread/23232?ContentTypeID=1</link><pubDate>Thu, 01 Oct 2015 23:18:15 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:48e4908a-9054-48e5-8006-53c742f10807</guid><dc:creator>sikhivahans</dc:creator><description>@judym Please try the attached code snippet. FYI, I have just wrapped the query rules in todatasubset(). I hope that choiceLabels and choiceValues of &amp;quot;Area of Expertise&amp;quot; gives a valid set of values.&lt;br /&gt;&lt;p&gt;&lt;a href="/cfs-filesystemfile/__key/communityserver-discussions-components-files/15/4213.ips_5F00_assignUserRolesGrid_5F00_new3.txt"&gt;ips_assignUserRolesGrid_new3.txt&lt;/a&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Having trouble with a cascading dropdown. Basically, I have an editable grid tha</title><link>https://community.appian.com/thread/23230?ContentTypeID=1</link><pubDate>Thu, 01 Oct 2015 23:07:09 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:bcf71e28-5450-4224-9f25-f374fe13fba5</guid><dc:creator>judym598</dc:creator><description>I got the error after I tried to select a value from the 3rd dropdown. The first two worked. &lt;br /&gt;&lt;p&gt;&lt;a href="/cfs-filesystemfile/__key/communityserver-discussions-components-files/15/ips_5F00_assignUserRolesGrid_5F00_new3.txt"&gt;ips_assignUserRolesGrid_new3.txt&lt;/a&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Having trouble with a cascading dropdown. Basically, I have an editable grid tha</title><link>https://community.appian.com/thread/23228?ContentTypeID=1</link><pubDate>Thu, 01 Oct 2015 23:01:01 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:da51d106-709a-4a52-953e-2c32369448fe</guid><dc:creator>sikhivahans</dc:creator><description>@judym Could you upload the code snippet again which you are using as it would help me to see the correct 100th line? Also if possible I would like to suggest to check the logs as they might give you a clear idea of where the error is. Also are you not able to see the interface initially or are you experiencing the error after after the selection of Employee Role?&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Having trouble with a cascading dropdown. Basically, I have an editable grid tha</title><link>https://community.appian.com/thread/23224?ContentTypeID=1</link><pubDate>Thu, 01 Oct 2015 22:51:31 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:40adb473-98d7-4ea8-8abc-04d740e9dae9</guid><dc:creator>judym598</dc:creator><description>Nope - didn&amp;#39;t work. Still no values in the dropdown and now I&amp;#39;m getting this error:Expression evaluation error in rule &amp;#39;ips_assignuserrolesgrid&amp;#39; (called by rule &amp;#39;ips_assignuserrolesmain&amp;#39;) at function a!applyComponents [line 100]:  (which basically points to the grid rule.&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Having trouble with a cascading dropdown. Basically, I have an editable grid tha</title><link>https://community.appian.com/thread/23222?ContentTypeID=1</link><pubDate>Thu, 01 Oct 2015 22:39:11 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:51353eef-3ba2-49ab-8ac0-93b6c96d64d6</guid><dc:creator>sikhivahans</dc:creator><description>@judy We missed populating the local!expertise when the value of the userId is set via 'Active Employees' Dropdown. Trying the below dropdown for 'Active Employees' might be worth.&lt;br /&gt;&lt;br /&gt;a!dropdownField(&lt;br /&gt;        label: "Active Employees",&lt;br /&gt;        choiceLabels: apply(rule!ips_formatUserName, local!users.data),&lt;br /&gt;        choiceValues: index(&lt;br /&gt;          local!users.data, &lt;br /&gt;          "id",&lt;br /&gt;          {}&lt;br /&gt;        ),&lt;br /&gt;        placeholderLabel: "---Select User---",&lt;br /&gt;        value: if(rule!APN_isEmpty(ri!newTeamLink_cdt[ri!index]),null,if(rule!APN_isBlank(ri!newTeamLink_cdt[ri!index].userId),null,ri!newTeamLink_cdt[ri!index].userId)),&lt;br /&gt;        saveInto: {&lt;br /&gt;          ri!newTeamLink_cdt[ri!index].userId,&lt;br /&gt;\          t  /*Populate the local!expertise based on the value set for userId*/&lt;br /&gt;\          t  a!save(&lt;br /&gt;\                    tlocal!expertise, &lt;br /&gt;\                    tif(&lt;br /&gt;\                              trule!APN_isBlank(ri!newTeamLink_cdt[ri!index].userId),&lt;br /&gt;\                              tnull,&lt;br /&gt;\                              trule!ips_getExpertiseByUserId(ri!newTeamLink_cdt[ri!index].userId)&lt;br /&gt;\                              t)&lt;br /&gt;\          t )&lt;br /&gt;\          t  /*Always set expertiseId to null because expertise dropdown data changes upon the change in the value of userId. So you should also set expertiseId to null.*/&lt;br /&gt;\          t  a!save(ri!newTeamLink_cdt[ri!index].expertiseId,null)&lt;br /&gt;          },&lt;br /&gt;        required: true(),&lt;br /&gt;        readOnly: false()&lt;br /&gt;      )&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Having trouble with a cascading dropdown. Basically, I have an editable grid tha</title><link>https://community.appian.com/thread/23221?ContentTypeID=1</link><pubDate>Thu, 01 Oct 2015 22:33:21 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:46c2da79-e79a-4ce5-be9b-4741628ba297</guid><dc:creator>judym598</dc:creator><description>Found the missing parenthesis and now I&amp;#39;m not getting any errors but there are no values displayed for the last dropdown.&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Having trouble with a cascading dropdown. Basically, I have an editable grid tha</title><link>https://community.appian.com/thread/23219?ContentTypeID=1</link><pubDate>Thu, 01 Oct 2015 22:30:54 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:ffedbf3a-cc6d-44e5-a2c5-6acc34e99953</guid><dc:creator>sikhivahans</dc:creator><description>@judym Great, no worries. By the way I haven&amp;#39;t checked the syntax as I just wanted to put forward my idea. You could let me know if you are struck again.&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Having trouble with a cascading dropdown. Basically, I have an editable grid tha</title><link>https://community.appian.com/thread/23218?ContentTypeID=1</link><pubDate>Thu, 01 Oct 2015 22:27:53 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:550d7942-84dc-4cb2-bafe-530e7d2e551b</guid><dc:creator>judym598</dc:creator><description>Thanks @sikhivahans.  I understand what you did.  I&amp;#39;m testing this now but there seems to be an unmatched open parenthesis....I&amp;#39;ll let you know how it goes once I find it.&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>