<?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>How to call two interface through radio button</title><link>https://community.appian.com/discussions/f/new-to-appian/23874/how-to-call-two-interface-through-radio-button</link><description>Hello, can anyone help me for below case 
 I just want to create two interface and what i want , if I call those two interface through a radio button so what approached i need to use for the same.</description><dc:language>en-US</dc:language><generator>Telligent Community 12</generator><item><title>RE: How to call two interface through radio button</title><link>https://community.appian.com/thread/91854?ContentTypeID=1</link><pubDate>Thu, 03 Mar 2022 16:48:56 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:e0eb5df1-f824-4c15-83b5-04429d6e6296</guid><dc:creator>Mike Schmitt</dc:creator><description>&lt;p&gt;This will depend completely on what you have in your interface rules that you call.&amp;nbsp; The example code above with &amp;quot;rule!interface1&amp;quot; and &amp;quot;rule!interface2&amp;quot; is purely an example of how to implement such an interface picker - you will need to supply your own interface names in place of the above.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: How to call two interface through radio button</title><link>https://community.appian.com/thread/91853?ContentTypeID=1</link><pubDate>Thu, 03 Mar 2022 16:19:49 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:2b909b12-086a-4d7f-b1e9-8f9b1fd544f6</guid><dc:creator>madhup0003</dc:creator><description>&lt;p&gt;This code is working but it&amp;#39;s showing only a value in the form of true or false. I want to show data of the both interfaces&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: How to call two interface through radio button</title><link>https://community.appian.com/thread/91834?ContentTypeID=1</link><pubDate>Thu, 03 Mar 2022 13:51:00 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:571c7430-922e-40d5-969f-327cb3ad24e2</guid><dc:creator>GopalK</dc:creator><description>&lt;p&gt;Hi, You can configure two radio buttons and these two buttons you can save boolean values, and once its set as true , something like below,&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="text"&gt;a!localVariables(
  local!isRule1Visible:false,
  local!isRule2Visible:false,
  {
    a!radioButtonField(
      label: &amp;quot;Radio button 1&amp;quot;,
      choiceLabels: {&amp;quot;yes&amp;quot;,&amp;quot;No&amp;quot;},
      choiceValues: {true,false},
      value: local!isRule1Visible,
      saveInto: local!isRule1Visible
    ),
    a!radioButtonField(
      label: &amp;quot;Radio button 2&amp;quot;,
      choiceLabels: {&amp;quot;yes&amp;quot;,&amp;quot;No&amp;quot;},
      choiceValues: {true,false},
      value: local!isRule2Visible,
      saveInto: local!isRule2Visible
    ),
    if(
      local!isRule1Visible,
      rule!interface1,
      {}
    ),
    if(
      local!isRule2VisibleVisible,
      rule!interface2,
      {}
    )
  }
)&lt;/pre&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>