Changeset 12451 in main
- Timestamp:
- 12/05/16 17:01:23 (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
adopters/ky-epht/trunk/src/main/webapps/ehl-view/xslt/html/SiteSpecific.xslt
r12382 r12451 356 356 </xsl:template> 357 357 358 359 360 <xsl:template name="SelectionsList.processExpandableSelection" 361 ibis:doc="TEMP FIX UNTIL MOVE TO 3.0" 362 > 363 <xsl:param name="selection"/> 364 <xsl:param name="title" select="$selection/TITLE"/> 365 <xsl:param name="inputType" select="'checkbox'"/> 366 <xsl:param name="inputName"/> 367 <xsl:param name="href"/> 368 <xsl:param name="id" select="concat('ExpandableListInputControl.', generate-id(.))"/> 369 <xsl:param name="show"/> 370 371 <input id="{$id}" type="{$inputType}" title="Show/hide selection list control for {$title}"> 372 <xsl:if test="string-length($inputName) != 0"> 373 <xsl:attribute name="name" select="$inputName"/> 374 </xsl:if> 375 <xsl:if test="$show or exists($selection/SELECTIONS/SHOW)"> 376 <xsl:attribute name="checked" select="'checked'"/> 377 </xsl:if> 378 </input> 379 380 <label for="{$id}" title="{if($href > '')then concat('link to ', $title) else concat('show/hide the ', $title, ' selection list')}"> 381 <xsl:call-template name="SelectionsList.processSelection"> 382 <xsl:with-param name="selection" select="$selection"/> 383 <xsl:with-param name="href" select="$href"/> 384 </xsl:call-template> 385 </label> 386 387 </xsl:template> 388 358 389 </xsl:stylesheet> 359 390 <!-- ============================= End of File ============================= -->
Note: See TracChangeset
for help on using the changeset viewer.