I am working on Radio Button list, where on selecting a radio button in the page (representing cities),I need to show list of Institutions in the city in XSLT Sitecore .Here I get the list of institutions from an external webservice, so I need to pass as unique ID of the city(which is stored as value of a radio button) to the webservice. Below is the code that I am using to do the same.
<xsl:variable name="city" select="sc:GetCityUniqueID()"/>
<xsl:variable name="ID" select="sc:item($city,.)" />
<table cellpadding="0" cellspacing="0">
<tr>
<td valign="top">
<!--In the SiteCore Content Tree we are maintaining Institutions as Child Nodes to Cities.So using for each I am populating radio buttons with those many institutions under a city.Here Please note that I am setting Value to the ID which I need to pass to the Helpwr Function sc:GetInstitutions below-->
<xsl:variable name="cities" select="$content/child::item[@template='city institution details']"/>
<xsl:if test="$cities " >
<xsl:for-each select="$icities" >
<xsl:variable name="current" select="."></xsl:variable>
<input type="radio" Groupname="citylist">
<xsl:attribute name="id" >
city<xsl:value-of select="position()"/>
</xsl:attribute>
<xsl:attribute name="name" >city</xsl:attribute>
<xsl:attribute name="value" >
<sc:text field="Institute ID" select="$current" />
</xsl:attribute>
</input>
<span class="chooseCity">
<sc:text field="Name" select="$current" />
</span>
<br/>
</xsl:for-each>
</xsl:if>
</td>
</tr>
</table>
<div class="institution_results">
Institutions are:
</div>
<div class="paddAll">
<!--Here 123456 should be the selected radio buttons value above,which I am passing to external webservice call done in the helper to populate Institutions-->
<xsl:value-of select="sc:GetInstitutions('123456’)" disable-output-escaping="yes"/>
</div>
The problem I am facing here is how can I pass the selected radio button value to the XSL Helper function to get the list of Institutions and display the results in the same page below.
Any Suggestions will be helpful.