From: <ssk...@vh...> - 2005-12-07 10:40:36
|
Author: sskracic Date: 2005-12-07 11:38:04 +0100 (Wed, 07 Dec 2005) New Revision: 1036 Modified: trunk/ccm-core/web/packages/search/xsl/search.xsl Log: Modified the category widget so that the additional checkbox is displayed to enable subcategory match. Modified: trunk/ccm-core/web/packages/search/xsl/search.xsl =================================================================== --- trunk/ccm-core/web/packages/search/xsl/search.xsl 2005-12-06 16:23:05 UTC (rev 1035) +++ trunk/ccm-core/web/packages/search/xsl/search.xsl 2005-12-07 10:38:04 UTC (rev 1036) @@ -166,6 +166,16 @@ </option> </xsl:for-each> </select> + <br/> + <input type="checkbox" value="true"> + <xsl:attribute name="name"> + <xsl:value-of select="search:includeSubCats/@name"/> + </xsl:attribute> + <xsl:if test="search:includeSubCats/@value = 'true'"> + <xsl:attribute name="checked">checked</xsl:attribute> + </xsl:if> + </input> + Include subcategories </td> </xsl:template> |